Build script on PSP, Dolphin and Engine.

This commit is contained in:
2026-04-28 21:34:09 -05:00
parent 194255bffe
commit bd248ee91c
12 changed files with 367 additions and 1883 deletions
+2 -1
View File
@@ -22,6 +22,7 @@ var Cube = {
var dz = inputAxis(INPUT_ACTION_UP, INPUT_ACTION_DOWN);
this._e.position.x += dx * speed * TIME.delta;
this._e.position.z += dz * speed * TIME.delta;
this._e.material.setColor(colorRainbow());
},
dispose: function() {
@@ -29,4 +30,4 @@ var Cube = {
}
};
Cube;
Cube;
+2
View File
@@ -1,5 +1,7 @@
var Cube = include('entities/cube.js');
print('Screen.aspect in JavaScript: ' + Screen.aspect);
var cam;
var cube;