We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d043288 commit a1837adCopy full SHA for a1837ad
Assets/Scripts/Characters/CharacterInputController.cs
@@ -180,7 +180,6 @@ protected void Update ()
180
#if UNITY_EDITOR || UNITY_STANDALONE || UNITY_WEBGL
181
// Use key input in editor or standalone
182
// disabled if it's tutorial and not thecurrent right tutorial level (see func TutorialMoveCheck)
183
-
184
if (Input.GetKeyDown(KeyCode.LeftArrow) && TutorialMoveCheck(0))
185
{
186
ChangeLane(-1);
@@ -198,7 +197,9 @@ protected void Update ()
198
197
if(!m_Sliding)
199
Slide();
200
}
201
-#else
+#endif
+
202
+#if UNITY_ANDROID || UNITY_IOS || UNITY_IPHONE || UNITY_WEBGL
203
// Use touch input on mobile
204
if (Input.touchCount == 1)
205
0 commit comments