LogoPixi’VN
pixi-jsType aliases

Type Alias: TrackingData

> TrackingData = object

Defined in: node_modules/pixi.js/lib/events/EventBoundaryTypes.d.ts:26

Internal

The tracking data for each pointer held in the state of an EventBoundary.

pressTargetsByButton: {
    [id: number]: Container[];
};
clicksByButton: {
    [id: number]: {
        clickCount: number;
        target: Container;
        timeStamp: number;
    };
};
overTargets: Container[];

Properties

clicksByButton

> clicksByButton: object

Defined in: node_modules/pixi.js/lib/events/EventBoundaryTypes.d.ts:30

Holds clicking data for each button of the pointer.

Index Signature

[id: number]: object


overTargets

> overTargets: Container[]

Defined in: node_modules/pixi.js/lib/events/EventBoundaryTypes.d.ts:37

The Container propagation path over which the pointer is hovering.


pressTargetsByButton

> pressTargetsByButton: object

Defined in: node_modules/pixi.js/lib/events/EventBoundaryTypes.d.ts:27

The pressed containers' propagation paths by each button of the pointer.

Index Signature

[id: number]: Container<ContainerChild>[]