feat(physics): add RigidBody component and PhysicsConfig

This commit is contained in:
2026-03-25 10:35:16 +09:00
parent 7d91e204cc
commit 9bdb502f8f
2 changed files with 88 additions and 0 deletions

View File

@@ -3,8 +3,10 @@ pub mod collider;
pub mod contact;
pub mod narrow;
pub mod collision;
pub mod rigid_body;
pub use bvh::BvhTree;
pub use collider::Collider;
pub use contact::ContactPoint;
pub use collision::detect_collisions;
pub use rigid_body::{RigidBody, PhysicsConfig};