The event boundary which manages this event. Propagation can only occur within the boundary's jurisdiction.
Readonly
AT_Readonly
BUBBLING_Readonly
CAPTURING_Readonly
NONEFlags whether this event bubbles. This will take effect only if it is set before propagation.
since 7.0.0
Readonly
cancelableFlags whether this event can be canceled using PIXI.FederatedEvent.preventDefault. This is always false (for now).
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.
{@link PIXI.FederatedEvent.NONE}
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.
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 {@code target} is at the end.
Flags whether propagation was immediately stopped.
Flags whether propagation was stopped.
since 7.0.0
since 7.0.0
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.
since 7.0.0
Fallback for the deprecated @code{PIXI.InteractionEvent.data}.
since 7.0.0
The propagation path for this event. Alias for PIXI.EventBoundary.propagationPath.
Unimplemented method included for implementing the DOM interface {@code UIEvent}. It will throw an {@code Error}.
Optional
_bubblesArg: booleanOptional
_cancelableArg: booleanOptional
_viewArg: null | WindowOptional
_detailArg: numberGenerated using TypeDoc
An DOM-compatible synthetic event implementation that is "forwarded" on behalf of an original FederatedEvent or native Event.
Memberof
PIXI