API reference
Every public class, method, and event in @codexo/exojs. Generated from source.
classInteractionEvent
DOM-Event-shaped envelope dispatched by InteractionManager to interactive scene nodes. Bubbles up the parent chain — `target` stays pinned to the hit-deepest node while `currentTarget` advances to each ancestor that receives the event. Handlers may call InteractionEvent.stopPropagation to halt the bubble.
import { InteractionEvent } from '@codexo/exojs' DOM-Event-shaped envelope dispatched by InteractionManager to interactive scene nodes. Bubbles up the parent chain — `target` stays pinned to the hit-deepest node while `currentTarget` advances to each ancestor that receives the event. Handlers may call InteractionEvent.stopPropagation to halt the bubble.
new(type: InteractionEventType, target: RenderNode, pointer: Pointer, worldX: number, worldY: number): InteractionEvent stopPropagation(): void currentTarget: RenderNode pointer: Pointer target: RenderNode type: InteractionEventType worldX: number worldY: number propagationStopped: boolean