User Tools

Site Tools


script:module:input

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
script:module:input [2019-11-17 19:44] – [Functions] skyjakescript:module:input [2019-12-16 07:23] (current) – [Functions] skyjake
Line 1: Line 1:
 +====== Input (Module) ======
 +
 +
 +Module that provides access to the input subsystem.
 +
 +
 +===== Functions =====
 +
 +
 +#@Identifier_HTML~bindEvent~@# (
 + #@Arg_HTML~Text,eventSpec~@#,
 + #@Arg_HTML~Text,command~@# )
 +
 +Creates an [[guide: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''.
 +
 +