Physics Support

- NEW CRATE: raidillon_physics.
- Added new models to be able to test the physics support.
- Added a new system "PhysicsSystem" to apply physics calculations to the ECS world.
- NEW COMPONENT: RigidBodyComponent
This commit is contained in:
reo 2025-10-19 17:40:51 +03:00
parent 4b97bd98d2
commit db1b427e2a
13 changed files with 697 additions and 43 deletions

3
physics/src/lib.rs Normal file
View file

@ -0,0 +1,3 @@
mod physics;
pub use crate::physics::Physics;