forked from LeenkxTeam/Leenkx_Examples
update
This commit is contained in:
@ -0,0 +1,16 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user