armory/Sources/armory/logicnode/PauseTilesheetNode.hx
2019-12-19 23:54:08 +01:00

21 lines
326 B
Haxe

package armory.logicnode;
import iron.object.MeshObject;
class PauseTilesheetNode extends LogicNode {
public function new(tree: LogicTree) {
super(tree);
}
override function run(from: Int) {
var object: MeshObject = inputs[1].get();
if (object == null) return;
object.tilesheet.pause();
runOutput(0);
}
}