Node System
From Moviesandbox
Here's a brief description on how the node system works.
Nodes are visual representations of instructions that are executed sequentially (or depending on the connections of the Nodes amongst each other) when the scene is running. They all start with a Root, either a CharacterRoot which is connected to a character, a ScriptRoot Every Node can be connected through the NodeIn and NodeOut buttons to another node - this creates so called Node Trees. The Controller has a list of every node in the scene. Every RootNode is the beginning of a Node Tree. The Controller will call the execute() function of the current Node in every tree.
Code Calling Order
It all starts in the controller, and, well, we need a rootNode.
The current node has it's