📖
FlowReactor
  • 👋Welcome
  • Installation
  • Interface
    • Graph Library
    • Graph Explorer
  • FlowReactorComponent
  • Settings
  • Addons / Packages
  • Guides
    • Introduction
    • Create custom node
    • Variables & Blackboards
      • Type conversions
    • Using the EventSystem
      • Sequencing Events
  • In-depth
    • Node Attributes
    • Long running nodes
    • Node Modules
      • FRNodeControllable
      • FRNodeEventDispatcher
      • Custom node utility modules
    • Assembly Defintion
  • API
    • Nodes
    • Blackboard
    • Eventboard
    • FlowReactorComponent
    • FRVariables
      • FREnum
      • FRAttributes
    • INodeControllable
Powered by GitBook
On this page
  • Namespace
  • OnNodeInitialize
  • OnNodeExecute
  • OnNodeStopExecute
  • OnNode
  1. API

INodeControllable

Namespace

using FlowReactor.NodeUtilityModules

OnNodeInitialize

void OnNodeInitialize(Node _node);

Automatically called on node initialization

OnNodeExecute

void OnNodeExecute();

Automatically called on node execution

OnNodeStopExecute

void OnNodeStopExecute();

Automatically called on node stop execution

OnNode

void OnNode(Node _node, params object[] _parameters);

Method for manual controllable method calls

PreviousFRAttributes

Last updated 2 years ago