summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Input
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-09-15 19:58:59 +0800
committerchai <chaifix@163.com>2021-09-15 19:58:59 +0800
commit28b89971f0d3fd246443450c87f33996716facb3 (patch)
treef7ab8055490d06a39ea52de6ab8f6f701c6b3733 /Assets/Scripts/Input
parent5c559adec82205c3ce9427d6bfef5535867e2553 (diff)
*misc
Diffstat (limited to 'Assets/Scripts/Input')
-rw-r--r--Assets/Scripts/Input/InputManager.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Assets/Scripts/Input/InputManager.cs b/Assets/Scripts/Input/InputManager.cs
index 6b200462..06e4f02f 100644
--- a/Assets/Scripts/Input/InputManager.cs
+++ b/Assets/Scripts/Input/InputManager.cs
@@ -39,11 +39,11 @@ public class InputManager : SingletonMB<InputManager>
cmd.time = Time.time;
m_CommandQueue.Add(cmd);
- //Debug.Log(cmd.time);
- //string cmdStr = "";
- //m_CommandQueue.ForEach(s => cmdStr += s.key.ToString() + ",");
- //Debug.Log(cmdStr);
- }
+ //Debug.Log(cmd.time);
+ string cmdStr = "";
+ m_CommandQueue.ForEach(s => cmdStr += s.key.ToString() + ",");
+ Debug.Log(cmdStr);
+ }
}
float curTime = Time.time;
int removeCount = 0;