pub struct RootCommands<'w, 's, 'a> { /* private fields */ }
Trait Implementations§
Source§impl<'w, 's, 'a> ChildPusher<'w, 's, 'a> for RootCommands<'w, 's, 'a>
impl<'w, 's, 'a> ChildPusher<'w, 's, 'a> for RootCommands<'w, 's, 'a>
Source§fn push_children(&mut self, children: &[Entity]) -> &mut Self
fn push_children(&mut self, children: &[Entity]) -> &mut Self
Add multiple children to the current entity by id.
Source§impl<'w, 's, 'a> ParentCommands<'w, 's, 'a> for RootCommands<'w, 's, 'a>
impl<'w, 's, 'a> ParentCommands<'w, 's, 'a> for RootCommands<'w, 's, 'a>
Source§fn insert(&mut self, component: impl Component) -> &mut Self
fn insert(&mut self, component: impl Component) -> &mut Self
add a component to the current entity
Source§fn insert_bundle(&mut self, bundle: impl Bundle) -> &mut Self
fn insert_bundle(&mut self, bundle: impl Bundle) -> &mut Self
add a bundle of components to the current entity
Source§fn with_child<T>(&mut self, bundle: T) -> ChildCommands<'w, 's, '_>where
T: Bundle,
fn with_child<T>(&mut self, bundle: T) -> ChildCommands<'w, 's, '_>where
T: Bundle,
Create a child entity with components from bundle
with the current entity as its parent.
Then make it the current entity
Source§fn with_empty_child<T>(&mut self) -> ChildCommands<'w, 's, '_>
fn with_empty_child<T>(&mut self) -> ChildCommands<'w, 's, '_>
create a child entity and make it the current entity
Source§fn with_descendants(
&mut self,
local_root: impl FnOnce(&mut RootCommands<'_, '_, '_>),
) -> &mut Self
fn with_descendants( &mut self, local_root: impl FnOnce(&mut RootCommands<'_, '_, '_>), ) -> &mut Self
makes the current entity the root of a new local hierachy
Source§fn add_child(&mut self, child: Entity) -> &mut Self
fn add_child(&mut self, child: Entity) -> &mut Self
create a child entity but don’t advance to it.
Source§fn with_child_batch<I>(&mut self, bundles_iter: I) -> &mut Self
fn with_child_batch<I>(&mut self, bundles_iter: I) -> &mut Self
create multiple children each spawned with the same bundle of components.
Auto Trait Implementations§
impl<'w, 's, 'a> Freeze for RootCommands<'w, 's, 'a>
impl<'w, 's, 'a> RefUnwindSafe for RootCommands<'w, 's, 'a>
impl<'w, 's, 'a> Send for RootCommands<'w, 's, 'a>
impl<'w, 's, 'a> Sync for RootCommands<'w, 's, 'a>
impl<'w, 's, 'a> Unpin for RootCommands<'w, 's, 'a>
impl<'w, 's, 'a> !UnwindSafe for RootCommands<'w, 's, '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
Mutably borrows from an owned value. Read more
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>
Convert
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>
Convert
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)
Convert
&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)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.