PhysX work

This commit is contained in:
2025-07-11 01:39:46 +02:00
parent 7e354b0417
commit 5f61c04912
5 changed files with 129 additions and 41 deletions

View File

@@ -159,7 +159,11 @@ coven_run :: (game_update_proc: (float), game_editor_update_proc: (float), game_
update_animators(clamped_dt);
update_mesh_colliders(engine.current_scene);
update_physics(engine.current_scene, clamped_dt);
tick_physx(engine.current_scene.physx_scene, clamped_dt);
pre_physx_sync(engine.current_scene);
tick_physx(*engine.current_scene.physx_scene, clamped_dt);
post_physx_sync(engine.current_scene);
game_update_post_physics_proc(clamped_dt);
}
} else {