Initial commit

This commit is contained in:
2026-01-08 16:37:17 +03:00
commit 4a4a7f0213
10 changed files with 278 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();