pub trait ChildPusher<'w, 's, 'a>: ParentCommands<'w, 's, 'a> {
    fn push_children(&mut self, children: &[Entity]) -> &mut Self { ... }
}

Provided Methods

Add multiple children to the current entity by id.

Implementors