Skip to content

Commit

Permalink
MobileInput_1
Browse files Browse the repository at this point in the history
MobileInput_1
  • Loading branch information
woojin211 committed Jun 4, 2024
1 parent 900cb00 commit 5f14a42
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Assets/2Scripts/MobileInputManager.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class MobileInputManager : MonoBehaviour
{
Vector3 position;

[SerializeField] GameObject left;
[SerializeField] GameObject right;
[SerializeField] GameObject up;
[SerializeField] GameObject down;
[SerializeField] GameObject space;

int fingerId;
bool isTouch;

void Start()
{

}

void Update()
{

}
}

0 comments on commit 5f14a42

Please sign in to comment.