diff --git a/docs/TODO b/docs/TODO index 0699152..6f24b45 100644 --- a/docs/TODO +++ b/docs/TODO @@ -35,3 +35,4 @@ If you see modifications to this file in git status, IGNORE them and do not comm === rendering === - for starters, the minimum scaling of objects should be replaced with some kind of billboard system + - fix moon orbital path rendering, needs to use parent frame transform diff --git a/src/main.cpp b/src/main.cpp index 0d28097..2340e1d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -65,11 +65,11 @@ void run_gui_simulation(SimulationState* sim) { printf("Speed multiplier: %.1fx\n", speed_multiplier); } -#if 0 +#if 1 /**** * Hacks ahead... */ - int focus_index = 9; + int focus_index = 4; // earth: 2, jupiter, 4 if (sim->body_count >= focus_index) { Vector3 offset = {0, 100, 100}; focus_camera(&render_state, &sim->bodies[focus_index], offset);