User Guide
Quick Reference
Modding
Development
User Guide
Quick Reference
Modding
Development
Module that provides access to the input subsystem.
bindEvent ( eventSpec : Text, command : Text )
Creates an event binding for the provided event. Whenever the event is received, the specified command will be executed. Returns True or False to indicate successful creation of the binding.
Input.bindEvent("key-k-down", 'echo "K was pressed!"')
This function works the same way as the console command bindevent
.