WIP allow interpreting more instructions into a movie

This commit is contained in:
2025-09-14 21:41:02 -05:00
parent 4ed505d87c
commit 32571c656e
2 changed files with 13 additions and 1 deletions

View File

@@ -929,3 +929,9 @@
(unless doingSomething (set doingSomething true)
(flxDirector.sceneSelection ->:Void {})))))
})
(method expandInstructions [scriptFile]
(let [stream (kiss.Stream.fromFile scriptFile)
interp (new hollywoo_flixel.HollywooInterp)]
(until (stream.isEmpty)
(interp.evalCC stream ->v {}))))

View File

@@ -0,0 +1,6 @@
package hollywoo_flixel;
import kiss.Prelude;
@:build(kiss.KissInterp2.build())
class HollywooInterp {}