What is a Data Flow?
Data flow is the flow of data for passing the processing result of a node to other nodes.
Connecting data input / output slots allows you to take advantage of data flow.
Example
In the example using the built-in script, the following data flow can be easily assembled.
- InstantiateGameObject instantiated prefab.
- Output instantiated GameObject.
- Get the Rigidbody component with Rigidbody.Get.
- Add force with AddForceRigidbody to the received Rigidbody.
Data flow can be used in BehaviourTree as well.