pub struct QueryFilter<'a> {
pub flags: QueryFilterFlags,
pub groups: Option<InteractionGroups>,
pub exclude_collider: Option<ColliderHandle>,
pub exclude_rigid_body: Option<RigidBodyHandle>,
pub predicate: Option<&'a dyn Fn(ColliderHandle, &Collider) -> bool>,
}
Expand description
A filter that describes what collider should be included or excluded from a scene query.
Fields§
§flags: QueryFilterFlags
Flags indicating what particular type of colliders should be excluded from the scene query.
groups: Option<InteractionGroups>
If set, only colliders with collision groups compatible with this one will be included in the scene query.
exclude_collider: Option<ColliderHandle>
If set, this collider will be excluded from the scene query.
exclude_rigid_body: Option<RigidBodyHandle>
If set, any collider attached to this rigid-body will be excluded from the scene query.
predicate: Option<&'a dyn Fn(ColliderHandle, &Collider) -> bool>
If set, any collider for which this closure returns false will be excluded from the scene query.
Implementations§
Source§impl QueryFilter<'_>
impl QueryFilter<'_>
Sourcepub fn test(
&self,
bodies: &RigidBodySet,
handle: ColliderHandle,
collider: &Collider,
) -> bool
pub fn test( &self, bodies: &RigidBodySet, handle: ColliderHandle, collider: &Collider, ) -> bool
Applies the filters described by self
to a collider to determine if it has to be
included in a scene query (true
) or not (false
).
Source§impl<'a> QueryFilter<'a>
impl<'a> QueryFilter<'a>
Sourcepub fn exclude_fixed() -> Self
pub fn exclude_fixed() -> Self
Exclude from the query any collider attached to a fixed rigid-body and colliders with no rigid-body attached.
Sourcepub fn exclude_kinematic() -> Self
pub fn exclude_kinematic() -> Self
Exclude from the query any collider attached to a kinematic rigid-body.
Sourcepub fn exclude_dynamic() -> Self
pub fn exclude_dynamic() -> Self
Exclude from the query any collider attached to a dynamic rigid-body.
Sourcepub fn only_dynamic() -> Self
pub fn only_dynamic() -> Self
Excludes all colliders not attached to a dynamic rigid-body.
Sourcepub fn only_kinematic() -> Self
pub fn only_kinematic() -> Self
Excludes all colliders not attached to a kinematic rigid-body.
Sourcepub fn only_fixed() -> Self
pub fn only_fixed() -> Self
Exclude all colliders attached to a non-fixed rigid-body (this will not exclude colliders not attached to any rigid-body).
Sourcepub fn exclude_sensors(self) -> Self
pub fn exclude_sensors(self) -> Self
Exclude from the query any collider that is a sensor.
Sourcepub fn exclude_solids(self) -> Self
pub fn exclude_solids(self) -> Self
Exclude from the query any collider that is not a sensor.
Sourcepub fn groups(self, groups: InteractionGroups) -> Self
pub fn groups(self, groups: InteractionGroups) -> Self
Only colliders with collision groups compatible with this one will be included in the scene query.
Sourcepub fn exclude_collider(self, collider: ColliderHandle) -> Self
pub fn exclude_collider(self, collider: ColliderHandle) -> Self
Set the collider that will be excluded from the scene query.
Sourcepub fn exclude_rigid_body(self, rigid_body: RigidBodyHandle) -> Self
pub fn exclude_rigid_body(self, rigid_body: RigidBodyHandle) -> Self
Set the rigid-body that will be excluded from the scene query.
Trait Implementations§
Source§impl<'a> Clone for QueryFilter<'a>
impl<'a> Clone for QueryFilter<'a>
Source§fn clone(&self) -> QueryFilter<'a>
fn clone(&self) -> QueryFilter<'a>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<'a> Default for QueryFilter<'a>
impl<'a> Default for QueryFilter<'a>
Source§fn default() -> QueryFilter<'a>
fn default() -> QueryFilter<'a>
Source§impl From<InteractionGroups> for QueryFilter<'_>
impl From<InteractionGroups> for QueryFilter<'_>
Source§fn from(groups: InteractionGroups) -> Self
fn from(groups: InteractionGroups) -> Self
Source§impl From<QueryFilterFlags> for QueryFilter<'_>
impl From<QueryFilterFlags> for QueryFilter<'_>
Source§fn from(flags: QueryFilterFlags) -> Self
fn from(flags: QueryFilterFlags) -> Self
impl<'a> Copy for QueryFilter<'a>
Auto Trait Implementations§
impl<'a> Freeze for QueryFilter<'a>
impl<'a> !RefUnwindSafe for QueryFilter<'a>
impl<'a> !Send for QueryFilter<'a>
impl<'a> !Sync for QueryFilter<'a>
impl<'a> Unpin for QueryFilter<'a>
impl<'a> !UnwindSafe for QueryFilter<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.