Event nodes
A group of nodes that wait for and execute events.
Node types
- Start
Called when the graph is started. - Update
Called by the MonoBehaviour's Update message.
It stops execution immediately after being called, so it does not wait for the completion of Task nodes, etc. - Fixed Update
Called by the MonoBehaviour's FixedUpdate message.
It stops execution immediately after being called, so it does not wait for the completion of Task nodes, etc. - Late Update
Called by the MonoBehaviour's LateUpdate message.
It stops execution immediately after being called, so it does not wait for the completion of Task nodes, etc. - Event
This is the node that is executed when the event is called by EventComponent.