bevy::ecs::prelude

Trait Event

source
pub trait Event: Component {
    type Traversal: Traversal;

    const AUTO_PROPAGATE: bool = false;
}
Expand description

Something that “happens” and might be read / observed by app logic.

Events can be stored in an Events<E> resource You can conveniently access events using the EventReader and EventWriter system parameter.

Events can also be “triggered” on a World, which will then cause any Observer of that trigger to run.

This trait can be derived.

Events implement the Component type (and they automatically do when they are derived). Events are (generally) not directly inserted as components. More often, the ComponentId is used to identify the event type within the context of the ECS.

Events must be thread-safe.

Provided Associated Constants§

source

const AUTO_PROPAGATE: bool = false

When true, this event will always attempt to propagate when triggered, without requiring a call to Trigger::propagate.

Required Associated Types§

source

type Traversal: Traversal

The component that describes which Entity to propagate this event to next, when propagation is enabled.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl Event for AppExit
where AppExit: Send + Sync + 'static,

source§

impl Event for HierarchyEvent
where HierarchyEvent: Send + Sync + 'static,

source§

impl Event for GamepadEvent
where GamepadEvent: Send + Sync + 'static,

source§

impl Event for GamepadRumbleRequest
where GamepadRumbleRequest: Send + Sync + 'static,

source§

impl Event for RawGamepadEvent
where RawGamepadEvent: Send + Sync + 'static,

source§

impl Event for GamepadAxisChangedEvent
where GamepadAxisChangedEvent: Send + Sync + 'static,

source§

impl Event for GamepadButtonChangedEvent
where GamepadButtonChangedEvent: Send + Sync + 'static,

source§

impl Event for GamepadButtonStateChangedEvent

source§

impl Event for GamepadConnectionEvent
where GamepadConnectionEvent: Send + Sync + 'static,

source§

impl Event for RawGamepadAxisChangedEvent

source§

impl Event for RawGamepadButtonChangedEvent

source§

impl Event for DoubleTapGesture
where DoubleTapGesture: Send + Sync + 'static,

source§

impl Event for PanGesture
where PanGesture: Send + Sync + 'static,

source§

impl Event for PinchGesture
where PinchGesture: Send + Sync + 'static,

source§

impl Event for RotationGesture
where RotationGesture: Send + Sync + 'static,

source§

impl Event for KeyboardFocusLost
where KeyboardFocusLost: Send + Sync + 'static,

source§

impl Event for KeyboardInput
where KeyboardInput: Send + Sync + 'static,

source§

impl Event for MouseButtonInput
where MouseButtonInput: Send + Sync + 'static,

source§

impl Event for MouseMotion
where MouseMotion: Send + Sync + 'static,

source§

impl Event for MouseWheel
where MouseWheel: Send + Sync + 'static,

source§

impl Event for TouchInput
where TouchInput: Send + Sync + 'static,

source§

impl Event for RemovedComponentEntity
where RemovedComponentEntity: Send + Sync + 'static,

source§

impl Event for OnAdd
where OnAdd: Send + Sync + 'static,

source§

impl Event for OnInsert
where OnInsert: Send + Sync + 'static,

source§

impl Event for OnRemove
where OnRemove: Send + Sync + 'static,

source§

impl Event for OnReplace
where OnReplace: Send + Sync + 'static,