FRNodeControllable
The FRNodeControllable module allows you to control an external MonoBehaviour script in the scene β which implements the INodeControllable interface β from a node. See the demo scene: NodeModules
Example
The simplest way of using this, is by adding the External Script Controller node to your graph. FlowReactor then shows you all nodes which have the FRNodeControllable module added in the FlowRector Component.

Next create a new Monobehaviour script and add the INodeControllable interface to it like this:
INodeControllable interface
Add FRNodeControllable to custom node
If you want to implement the FRNodeControllable or any other node module to a custom node, you simply have to create a new instance of the module like this:
Then you can execute the methods in your custom node:
Last updated