Moving some things over to the InputData system.

This commit is contained in:
Dan Foster
2026-02-12 00:02:53 +00:00
parent 2abadf0b3e
commit 13ccde8e96
6 changed files with 142 additions and 261 deletions

View File

@@ -0,0 +1,9 @@
using UnityEngine;
public class InputHelper : MonoBehaviour
{
protected void Update()
{
InputData.Update( Time.unscaledTime );
}
}