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 d280a0b9a5
commit 8b5a6167eb
13 changed files with 697 additions and 43 deletions

9
physics/Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[package]
name = "raidillon_physics"
version = "0.1.0"
edition = "2024"
[dependencies]
rapier3d = "0.30.1"
raidillon_ecs = { path = "../ecs" }
glam = "0.30.8"