summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Input
diff options
context:
space:
mode:
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;