Trait bevy::hierarchy::DespawnRecursiveExt
pub trait DespawnRecursiveExt {
// Required methods
fn despawn_recursive(self);
fn despawn_descendants(&mut self) -> &mut Self;
}
Expand description
Trait that holds functions for despawning recursively down the transform hierarchy
Required Methods§
fn despawn_recursive(self)
fn despawn_recursive(self)
Despawns the provided entity alongside all descendants.
fn despawn_descendants(&mut self) -> &mut Self
fn despawn_descendants(&mut self) -> &mut Self
Despawns all descendants of the given entity.