The event boundary which manages this event. Propagation can only occur within the boundary's jurisdiction.
Readonly
Advanced
AT_The event propagation phase AT_TARGET that indicates that the event is at the target.
Flags whether this event bubbles. This will take effect only if it is set before propagation.
Readonly
Advanced
BUBBLING_The event propagation phase BUBBLING_PHASE that indicates that the event is in the bubbling phase.
Readonly
cancelableFlags whether this event can be canceled using FederatedEvent.preventDefault. This is always false (for now).
Readonly
Advanced
CAPTURING_The event propagation phase CAPTURING_PHASE that indicates that the event is in the capturing phase.
The listeners of the event target that are being notified.
Flags whether the default response of the user agent was prevent through this event.
Event-specific detail
The propagation phase.
Flags whether this is a user-trusted event
The coordinates of the event relative to the nearest DOM layer. This is a non-standard property.
Readonly
managerThe EventBoundary that manages this event. Null for root events.
The native event that caused the foremost original event.
Readonly
Advanced
NONEThe event propagation phase NONE that indicates that the event is not in any phase.
The original event that caused this event, if any.
The coordinates of the event relative to the DOM document. This is a non-standard property.
The composed path of the event's propagation. The target
is at the end.
Flags whether propagation was immediately stopped.
Flags whether propagation was stopped.
The event target that this will be dispatched to.
The timestamp of when the event was created.
The type of event, e.g. "mouseup"
.
The global Window object.
Advanced
The propagation path for this event. Alias for EventBoundary.propagationPath.
Prevent default behavior of both PixiJS and the user agent.
Stop this event from propagating to any additional listeners, including those on the current target and any following targets in the propagation path.
Stop this event from propagating to the next target in the propagation path. The rest of the listeners on the current target will still be notified.
A DOM-compatible synthetic event implementation for PixiJS's event system. This class implements the standard DOM Event interface while providing additional functionality specific to PixiJS events.
You wont receive an instance of this class directly, but rather a subclass of this class, such as FederatedPointerEvent, FederatedMouseEvent, or FederatedWheelEvent. This class is the base for all federated events.
Example
Remarks
See