Trait bevy_internal::transform::hierarchy::BuildChildren[][src]

pub trait BuildChildren {
    fn with_children(
        &mut self,
        f: impl FnOnce(&mut ChildBuilder<'_, '_, '_>)
    ) -> &mut Self;
fn push_children(&mut self, children: &[Entity]) -> &mut Self;
fn insert_children(
        &mut self,
        index: usize,
        children: &[Entity]
    ) -> &mut Self;
fn remove_children(&mut self, children: &[Entity]) -> &mut Self;
fn add_child(&mut self, child: Entity) -> &mut Self; }

Required methods

Implementors