Interface IObject3DEvent<T>

interface IObject3DEvent<T extends string = IObject3DEventTypes> {
    bubbleToParent?: boolean;
    change?: string;
    geometry?: IGeometry;
    material?: IMaterial | IMaterial[];
    object?: IObject3D;
    oldGeometry?: IGeometry;
    oldMaterial?: IMaterial | IMaterial[];
    source?: any;
    type: T;
    [attachment: string]: any;
}

Type Parameters

Hierarchy (View Summary)

Indexable

  • [attachment: string]: any

Properties

bubbleToParent?: boolean
change?: string
geometry?: IGeometry
material?: IMaterial | IMaterial[]
object?: IObject3D
oldGeometry?: IGeometry
oldMaterial?: IMaterial | IMaterial[]
source?: any
type: T