pub trait DespawnRecursiveExt {
    // Required methods
    fn despawn_recursive(self);
    fn despawn_descendants(&mut self);
}
Expand description

Trait that holds functions for despawning recursively down the transform hierarchy

Required Methods§

fn despawn_recursive(self)

Despawns the provided entity alongside all descendants.

fn despawn_descendants(&mut self)

Despawns all descendants of the given entity.

Implementors§

§

impl<'w> DespawnRecursiveExt for EntityMut<'w>

§

impl<'w, 's, 'a> DespawnRecursiveExt for EntityCommands<'w, 's, 'a>