This commit is contained in:
2026-05-06 17:52:45 -07:00
parent 9fc3f35125
commit 1463c23334
402 changed files with 3758 additions and 0 deletions

View File

@ -0,0 +1,11 @@
package lnx;
class EvalJS {
public function new() {
// Evaluate bundled JS, usually you would embed JS into .html file instead
iron.data.Data.getBlob("my_plugin.js", function(blob:kha.Blob) {
js.Syntax.code("(1, eval)({0})", blob.toString());
});
}
}