AsyncEmbeddedScript2 running property

This commit is contained in:
Trent Nelson
2023-08-02 16:45:50 -07:00
parent e77c64b836
commit a31e32fb25

View File

@@ -165,7 +165,10 @@ class AsyncEmbeddedScript2 {
private var skipTarget:Null<Int> = null;
public var running(default, null):Bool = false;
private function runInstruction(instructionPointer:Int, withBreakPoints = true) {
running = true;
var skipping = false;
if (skipTarget != null) {
if (instructionPointer == skipTarget) {