feat(physics): add detect_collisions ECS integration

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-25 10:17:26 +09:00
parent 0570d3c4ba
commit c1c84cdbff
2 changed files with 183 additions and 0 deletions

View File

@@ -2,7 +2,9 @@ pub mod bvh;
pub mod collider;
pub mod contact;
pub mod narrow;
pub mod collision;
pub use bvh::BvhTree;
pub use collider::Collider;
pub use contact::ContactPoint;
pub use collision::detect_collisions;