mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-18 15:07:49 +08:00
fix: remove debug in IsUserCopyPasting
This commit is contained in:
parent
65a4f4540c
commit
396dc1a1c1
@ -201,9 +201,8 @@ The following helper methods are available:
|
|||||||
|
|
||||||
internal static bool IsUserCopyPasting()
|
internal static bool IsUserCopyPasting()
|
||||||
{
|
{
|
||||||
return inputsWithinThreshold > inputThreshold;
|
return ((InputManager.GetKey(KeyCode.LeftControl) || InputManager.GetKey(KeyCode.RightControl))
|
||||||
return (InputManager.GetKey(KeyCode.LeftControl) || InputManager.GetKey(KeyCode.RightControl))
|
&& InputManager.GetKeyDown(KeyCode.V)) || inputsWithinThreshold > inputThreshold;
|
||||||
&& InputManager.GetKeyDown(KeyCode.V);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void UpdateConsole()
|
public void UpdateConsole()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user