Transform: Fixed bug in euler to quaternion conversions | Static_Array: Added overload for operator []= | Widgets: Added changed bool to textfields

This commit is contained in:
2024-12-11 23:28:14 +01:00
parent c4073d7d91
commit 36c6bc5fe7
6 changed files with 36 additions and 15 deletions

View File

@@ -80,7 +80,7 @@ coven_init :: (window_title: string, window_width: u32, window_height: u32, full
}
}
coven_run :: (game_update_proc: (float), game_update_post_physics_proc: (float)) {
coven_run :: (game_update_proc: (float), game_editor_update_proc: (float), game_update_post_physics_proc: (float)) {
time = xx seconds_since_init();
while !quit {
@@ -124,6 +124,8 @@ coven_run :: (game_update_proc: (float), game_update_post_physics_proc: (float))
game_update_post_physics_proc(clamped_dt);
}
} else {
game_editor_update_proc(clamped_dt);
if engine.current_scene != null {
update_trigger_mesh_colliders(engine.current_scene);
}