thread DLSystem for mp3s

This commit is contained in:
2022-07-07 02:30:55 +00:00
parent 21dfb34baf
commit 64204ae041
3 changed files with 30 additions and 5 deletions

View File

@@ -173,6 +173,17 @@ class Macros {
prepareForConditional(conditionInterp, k);
try {
var hscriptStr = Prelude.convertToHScript(conditionStr);
// TODO are there more properties of target that need to be added?
// Context.definedValue only returns a string so if there's a whole
// object, I don't know how to get it
conditionInterp.variables["target"] = {
threaded:
#if target.threaded
true
#else
false
#end
};
#if test
Prelude.print("#if condition hscript: " + hscriptStr);
#end