Enum ark_api::world::EntityQueryType
source · [−]Expand description
Represents an entity query type that can be used with entity queries to specify what the query should include before filtering.
Variants
AllEntities
Query all entities in the world. Filtering by layer is optional.
TransformChildren(Entity)
Query all direct children, excluding the root. Always filters by layer.
TransformDescendants(Entity)
Query all indirect and direct children, excluding the root. Always filters by layer.
Trait Implementations
sourceimpl Clone for EntityQueryType
impl Clone for EntityQueryType
sourcefn clone(&self) -> EntityQueryType
fn clone(&self) -> EntityQueryType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for EntityQueryType
Auto Trait Implementations
impl RefUnwindSafe for EntityQueryType
impl Send for EntityQueryType
impl Sync for EntityQueryType
impl Unpin for EntityQueryType
impl UnwindSafe for EntityQueryType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more