forked from LeenkxTeam/Leenkx_Examples
17 lines
274 B
Haxe
17 lines
274 B
Haxe
package leenkx.logicnode;
|
|
|
|
class TestNode extends LogicNode {
|
|
|
|
public function new(tree:LogicTree) {
|
|
super(tree);
|
|
}
|
|
|
|
override function run(from:Int) {
|
|
// Logic for this node
|
|
trace("Hello, World!");
|
|
|
|
// Execute next action linked to this node
|
|
runOutput(0);
|
|
}
|
|
}
|