pub fn get_entities(
world: &Instance,
source_entity: Option<Entity>,
aabb: &AABB,
predicate: &dyn Fn(Entity) -> bool,
physics_query: &PhysicsQuery<'_, '_, '_>,
) -> Vec<(Entity, AABB)>
Expand description
Return all entities that are colliding with the given bounding box and match the given predicate.
source_entity
is the entity that the bounding box belongs to, and won’t be
one of the returned entities.