Enum specs_hierarchy::HierarchyEvent[][src]

pub enum HierarchyEvent {
    Modified(Entity),
    Removed(Entity),
}

Hierarchy events.

These are the events that are sent through the internal EventChannel in the Hierarchy resource.

Variants

Entity was either inserted or modified in the Hierarchy

Entity was removed from the Hierarchy. Note that this does not mean the Parent component was removed from the component storage, just that the Entity will no longer be considered to be a part of the Hierarchy.

Auto Trait Implementations