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§

source

fn despawn_recursive(self)

Despawns the provided entity alongside all descendants.

source

fn despawn_descendants(&mut self)

Despawns all descendants of the given entity.

Implementations on Foreign Types§

source§

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

source§

fn despawn_recursive(self)

Despawns the provided entity and its children.

source§

fn despawn_descendants(&mut self)

source§

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

source§

fn despawn_recursive(self)

Despawns the provided entity and its children.

source§

fn despawn_descendants(&mut self)

Implementors§