Fix input issues

This commit is contained in:
Michal Adam Pikulski
2025-10-21 15:58:13 +02:00
parent 00f6d2c6c6
commit 3aed47b183
6 changed files with 239 additions and 107 deletions

View File

@@ -0,0 +1,36 @@
using UnityEngine;
public class BackpackInput : MonoBehaviour, ITouchInputConsumer
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
public void OnTap(Vector2 position)
{
return;
}
public void OnHoldStart(Vector2 position)
{
return;
}
public void OnHoldMove(Vector2 position)
{
return;
}
public void OnHoldEnd(Vector2 position)
{
return;
}
}