UNPKG

@awayjs/view

Version:
22 lines (18 loc) 478 B
import { EventBase } from '@awayjs/core'; export class ContainerNodeEvent extends EventBase { /** * */ public static INVALIDATE_MATRIX3D: string = 'invalidateMatrix3D'; public static INVALIDATE_COLOR_TRANSFORM: string = 'invalidateColorTransform'; constructor(type: string) { super(type); } /** * Clones the event. * @return An exact duplicate of the current object. */ public clone(): ContainerNodeEvent { return new ContainerNodeEvent(this.type); } }