pub struct ChildBuilder<'w, 's, 'a> { /* private fields */ }Expand description
Struct for building children onto an entity
Implementations§
Source§impl<'w, 's, 'a> ChildBuilder<'w, 's, 'a>
impl<'w, 's, 'a> ChildBuilder<'w, 's, 'a>
Sourcepub fn spawn_bundle(
&mut self,
bundle: impl Bundle,
) -> EntityCommands<'w, 's, '_>
pub fn spawn_bundle( &mut self, bundle: impl Bundle, ) -> EntityCommands<'w, 's, '_>
Spawns an entity with the given bundle and inserts it into the children defined by the ChildBuilder
Sourcepub fn spawn(&mut self) -> EntityCommands<'w, 's, '_>
pub fn spawn(&mut self) -> EntityCommands<'w, 's, '_>
Spawns an Entity with no components and inserts it into the children defined by the ChildBuilder which adds the Parent component to it.
Sourcepub fn parent_entity(&self) -> Entity
pub fn parent_entity(&self) -> Entity
Returns the parent entity of this ChildBuilder
Sourcepub fn add_command<C>(&mut self, command: C) -> &mut ChildBuilder<'w, 's, 'a>where
C: Command + 'static,
pub fn add_command<C>(&mut self, command: C) -> &mut ChildBuilder<'w, 's, 'a>where
C: Command + 'static,
Adds a command to this ChildBuilder
Auto Trait Implementations§
impl<'w, 's, 'a> Freeze for ChildBuilder<'w, 's, 'a>
impl<'w, 's, 'a> RefUnwindSafe for ChildBuilder<'w, 's, 'a>
impl<'w, 's, 'a> Send for ChildBuilder<'w, 's, 'a>
impl<'w, 's, 'a> Sync for ChildBuilder<'w, 's, 'a>
impl<'w, 's, 'a> Unpin for ChildBuilder<'w, 's, 'a>
impl<'w, 's, 'a> !UnwindSafe for ChildBuilder<'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.