GetKeyUp
Last updated
Was this helpful?
Last updated
Was this helpful?
bool GetKeyUp(string description) bool GetKeyUp(int descriptionHash)
description: The name of the key, as defined in . descriptionHash: The hashcode of the name of the key, as defined in .
bool: Returns true
only once each time the key is released.
Use this to determine if a key has been released during this frame. GetKeyUp()
returns true
only once when the key is first released.
The use of is recommended if you want to trigger an event repeatedly while the key is being held down, e.g., for continuous movement.