The Bindable
.
Optional
priority: numberThe "priority" of this handler compared to other handlers. Higher priorities are executed first.
Registers a handler for every frame in which anything is held down.
Must be the string "anything"
.
Optional
priority: numberThe "priority" of this handler compared to other handlers. Higher priorities are executed first.
Registers a handler for every frame in which anything is held down. This handler will always be executed, even if other handlers also matched the catalyst.
The Bindable
, or the string "anything"
(to handle when anything is held).
The "priority" of this handler compared to other handlers. Higher priorities are executed first.
Must be true
.
Generated using TypeDoc
Registers a handler for every frame in which the given
Bindable
is held down.Your decorated method should return whether or not the bindable is actually held. (For example, if the mouse was in the right spot and the action can currently be executed.) If you return
true
, no other@Bind.onHolding
handlers will be run. If you returnfalse
, other matching@Bind.onHolding
handlers will be run.