Create test script
This commit is contained in:
parent
6e5bda31bd
commit
b42889e325
11
Assets/Scripts/Runtime/Tests/TestInputLag.cs
Normal file
11
Assets/Scripts/Runtime/Tests/TestInputLag.cs
Normal file
@ -0,0 +1,11 @@
|
||||
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");
|
||||
}
|
||||
|
||||
}
|
||||
2
Assets/Scripts/Runtime/Tests/TestInputLag.cs.meta
Normal file
2
Assets/Scripts/Runtime/Tests/TestInputLag.cs.meta
Normal file
@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6faec7367d9d58f459ad95b4138fa6a8
|
||||
Loading…
Reference in New Issue
Block a user