fix approval stat; save game; customize color

This commit is contained in:
Evan Scamehorn
2025-12-04 12:51:32 -06:00
parent e501a2c480
commit 8fc551ad68
8 changed files with 451 additions and 199 deletions

View File

@@ -55,7 +55,6 @@ function init() {
vehicleSystem = new VehicleSystem(scene);
routeManager.setVehicleSystem(vehicleSystem); // Inject into RouteManager
gameManager.start(); // Start the loop
// 3. Input
inputManager = new InputManager(camera, renderer.domElement, scene, controls);
@@ -88,6 +87,7 @@ function init() {
]).then(([visual, routing]) => {
routeManager.initGraph(routing);
renderCity(visual);
gameManager.start(); // Start the loop
});
animate();