WIP allow interpreting more instructions into a movie
This commit is contained in:
@@ -928,4 +928,10 @@
|
|||||||
->cc
|
->cc
|
||||||
(unless doingSomething (set doingSomething true)
|
(unless doingSomething (set doingSomething true)
|
||||||
(flxDirector.sceneSelection ->:Void {})))))
|
(flxDirector.sceneSelection ->:Void {})))))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
(method expandInstructions [scriptFile]
|
||||||
|
(let [stream (kiss.Stream.fromFile scriptFile)
|
||||||
|
interp (new hollywoo_flixel.HollywooInterp)]
|
||||||
|
(until (stream.isEmpty)
|
||||||
|
(interp.evalCC stream ->v {}))))
|
6
src/hollywoo_flixel/HollywooInterp.hx
Normal file
6
src/hollywoo_flixel/HollywooInterp.hx
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
package hollywoo_flixel;
|
||||||
|
|
||||||
|
import kiss.Prelude;
|
||||||
|
|
||||||
|
@:build(kiss.KissInterp2.build())
|
||||||
|
class HollywooInterp {}
|
Reference in New Issue
Block a user