Scene script code

This commit is contained in:
2026-06-04 13:36:35 -05:00
parent 2b3abbe13b
commit 3c8b6cb2cc
19 changed files with 958 additions and 33 deletions
+11
View File
@@ -1,3 +1,5 @@
const platformNames = {
[System.PLATFORM_LINUX]: 'Linux',
[System.PLATFORM_KNULLI]: 'Knulli',
@@ -9,3 +11,12 @@ const platformNames = {
Console.print('Platform: ' + (platformNames[System.platform] || 'Unknown'));
// Scene.set('testscene.js');
// Console.print('Loading scene...');
// requireAsync('./testscene.js', function(scene) {
// throw "test";
// Console.print('Initializing scene...');
// var batch = scene.load();
// batch.lock();
// batch.requireLoaded();
// scene.init();
// });