reverse call order

This commit is contained in:
QuantumCoderQC 2021-06-07 13:49:12 +02:00
parent 107dc730f4
commit 0e6ba5b0b0

View file

@ -10,8 +10,10 @@ class OncePerFrameNode extends LogicNode {
}
override function run(from: Int) {
if(c) runOutput(0);
c = false;
if(c) {
c = false;
runOutput(0);
}
}
function update() {