Update Files
This commit is contained in:
15
leenkx/Sources/leenkx/logicnode/OnAnimationTreeUpdateNode.hx
Normal file
15
leenkx/Sources/leenkx/logicnode/OnAnimationTreeUpdateNode.hx
Normal file
@ -0,0 +1,15 @@
|
||||
package leenkx.logicnode;
|
||||
|
||||
class OnAnimationTreeUpdateNode extends LogicNode {
|
||||
|
||||
public function new(tree: LogicTree) {
|
||||
super(tree);
|
||||
}
|
||||
|
||||
override function get(from: Int):Dynamic {
|
||||
return function (value: Dynamic) {
|
||||
inputs[0].get()(value);
|
||||
runOutput(1);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user