âĻïļInputService
Service for tracking user input.
Example usage:
Functions
registerInputBegan(keyCode: KeyCode, function: (player: Player) => nil)
Begins tracking the beginning of user input of the key code from all players. The callback function will run every time the key code is pressed.
registerInputEnded(keyCode: KeyCode, function: (player: Player) => nil)
Begins tracking the end of user input of the key code from all players. The callback function will run every time the key code is pressed.
Last updated