TowerDefenseGame/Assets/Scripts/Runtime/Tests/TestInputLag.cs
2025-07-05 00:58:54 -07:00

12 lines
244 B
C#

using UnityEngine;
public class TestInputLag : MonoBehaviour {
private void Update() {
if (Input.GetMouseButton(0)) return;
if (Input.GetKey(KeyCode.D)) Debug.Log("DDDDD");
if (Input.GetKey(KeyCode.S)) Debug.Log("SSSS");
}
}