summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Input
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/Scripts/Input')
-rw-r--r--Assets/Scripts/Input/InputManager.cs9
1 files changed, 5 insertions, 4 deletions
diff --git a/Assets/Scripts/Input/InputManager.cs b/Assets/Scripts/Input/InputManager.cs
index 838409b5..4ad6ec02 100644
--- a/Assets/Scripts/Input/InputManager.cs
+++ b/Assets/Scripts/Input/InputManager.cs
@@ -38,10 +38,11 @@ public class InputManager : SingletonMB<InputManager>
cmd.key = vKey;
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;