diff options
author | chai <chaifix@163.com> | 2021-09-15 19:58:59 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-09-15 19:58:59 +0800 |
commit | 28b89971f0d3fd246443450c87f33996716facb3 (patch) | |
tree | f7ab8055490d06a39ea52de6ab8f6f701c6b3733 /Assets/Scripts/Input | |
parent | 5c559adec82205c3ce9427d6bfef5535867e2553 (diff) |
*misc
Diffstat (limited to 'Assets/Scripts/Input')
-rw-r--r-- | Assets/Scripts/Input/InputManager.cs | 10 |
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;
|