The event boundary which manages this event. Propagation can only occur within the boundary's jurisdiction.
Readonly
AT_Flags whether this event bubbles. This will take effect only if it is set before propagation.
Readonly
BUBBLING_Readonly
cancelableFlags whether this event can be canceled using PIXI.FederatedEvent.preventDefault. This is always false (for now).
Readonly
CAPTURING_Readonly
composedFlag added for compatibility with DOM {@code Event}. It is not used in the Federated Events API.
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 evnet relative to the nearest DOM layer. This is a non-standard property.
Readonly
managerThe PIXI.EventBoundary that manages this event. Null for root events.
The native event that caused the foremost original event.
Readonly
NONEThe 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 {@code 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. {@code "mouseup"}.
The global Window object.
Not supported.
The propagation path for this event. Alias for PIXI.EventBoundary.propagationPath.
Prevent default behavior of PixiJS and the user agent.
Stop this event from propagating to any addition listeners, including on the PIXI.FederatedEventTarget.currentTarget currentTarget and also the following event targets on the propagation path.
Stop this event from propagating to the next PIXI.FederatedEventTarget. The rest of the listeners on the PIXI.FederatedEventTarget.currentTarget currentTarget will still be notified.
An DOM-compatible synthetic event implementation that is "forwarded" on behalf of an original FederatedEvent or native Event.
Memberof
PIXI