We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 900cb00 commit 5f14a42Copy full SHA for 5f14a42
Assets/2Scripts/MobileInputManager.cs
@@ -0,0 +1,27 @@
1
+using System.Collections;
2
+using System.Collections.Generic;
3
+using UnityEngine;
4
+
5
+public class MobileInputManager : MonoBehaviour
6
+{
7
+ Vector3 position;
8
9
+ [SerializeField] GameObject left;
10
+ [SerializeField] GameObject right;
11
+ [SerializeField] GameObject up;
12
+ [SerializeField] GameObject down;
13
+ [SerializeField] GameObject space;
14
15
+ int fingerId;
16
+ bool isTouch;
17
18
+ void Start()
19
+ {
20
21
+ }
22
23
+ void Update()
24
25
26
27
+}
0 commit comments