This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
dragengine:modules:dragonscript:behavior_statemachine [2025/05/03 16:28] – [path] dragonlord | dragengine:modules:dragonscript:behavior_statemachine [2025/05/09 19:04] (current) – dragonlord | ||
---|---|---|---|
Line 55: | Line 55: | ||
* Type: string | * Type: string | ||
* Default Value: empty string | * Default Value: empty string | ||
- | * Example (*.deeclass) <code xml>< | + | * Example (*.deeclass) <code xml>< |
===== Events ===== | ===== Events ===== | ||
Line 82: | Line 82: | ||
===== stateMachine.event ===== | ===== stateMachine.event ===== | ||
- | Run event on state machine. Action returns BTResult.success no matter if current state understands event or not unless '' | + | Run event on state machine. |
^Parameter^Value^Description^ | ^Parameter^Value^Description^ | ||
|id|string|Identifier of event to run| | |id|string|Identifier of event to run| | ||
- | |required| |If present action fails if current state does not understand event| | ||
This is an example of using this action: | This is an example of using this action: | ||
Line 108: | Line 107: | ||
|state.contains|string|Current state identifier contains string value| | |state.contains|string|Current state identifier contains string value| | ||
|state.contains.not|string|Current state identifier does not contain string value| | |state.contains.not|string|Current state identifier does not contain string value| | ||
- | |event|string|Current state understands event matching string value| | + | |wait| |If present action returns BTResult.running instead of BTResult.failed to wait until the checks are all fulfilled| |
- | |event.not|string|Current state does not understand event matching string value| | + | |
This is an example of using this action: | This is an example of using this action: | ||
Line 138: | Line 136: | ||
|stateMachine.state.contains|string|Current state identifier contains string value| | |stateMachine.state.contains|string|Current state identifier contains string value| | ||
|stateMachine.state.contains.not|string|Current state identifier does not contain string value| | |stateMachine.state.contains.not|string|Current state identifier does not contain string value| | ||
- | |stateMachine.event|string|Current state understands event matching string value| | ||
- | |stateMachine.event.not|string|Current state does not understand event matching string value| | ||
This is an example of using this condition: | This is an example of using this condition: |