pub trait IsColliderContainer3D {
// Required methods
fn any_element_collides_with_collider(
&self,
other: &dyn HasColliders3D,
) -> bool;
fn any_element_collides_with_bounding(
&self,
other: &dyn HasBoundingBox3D,
) -> bool;
}
Expand description
Trait for containers with 3D colliders