Clean start: remove large .spp files from history

This commit is contained in:
2026-02-21 16:06:11 +03:00
commit a600a7ad21
11 changed files with 2720 additions and 0 deletions

11
js/main.js Normal file
View File

@@ -0,0 +1,11 @@
import { scene, renderer } from './scene.js';
import { camera } from './camera.js';
import { controls } from './controls.js';
function animate() {
requestAnimationFrame(animate);
controls.update();
renderer.render(scene, camera);
}
animate();