forked from LeenkxTeam/LNXSDK
14 lines
203 B
Haxe
14 lines
203 B
Haxe
package leenkx.logicnode;
|
|
|
|
class OnRemoveNode extends LogicNode {
|
|
|
|
public function new(tree: LogicTree) {
|
|
super(tree);
|
|
tree.notifyOnRemove(onRemove);
|
|
}
|
|
|
|
function onRemove() {
|
|
runOutput(0);
|
|
}
|
|
}
|