summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Input/InputManager.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-09-01 17:47:20 +0800
committerchai <chaifix@163.com>2021-09-01 17:47:20 +0800
commitf900853952635a6e82e24fe62548d171823afda0 (patch)
tree0d2c0bce3f7411c8ab61c13a5ade65bddbac6375 /Assets/Scripts/Input/InputManager.cs
parenta93ea925263c23d5c08b5fca546eef81d6d4fec3 (diff)
*修改粒子系统在编辑器下的播放
Diffstat (limited to 'Assets/Scripts/Input/InputManager.cs')
-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;