Interface ISceneEvent<T>

interface ISceneEvent<T extends string = ISceneEventTypes> {
    bubbleToParent?: boolean;
    change?: string;
    geometry?: IGeometry;
    hierarchyChanged?: boolean;
    material?: IMaterial | IMaterial[];
    object?: IObject3D;
    oldGeometry?: IGeometry;
    oldMaterial?: IMaterial | IMaterial[];
    scene?: null | IScene;
    source?: any;
    type: T;
    [attachment: string]: any;
}

Type Parameters

Hierarchy (View Summary)

Indexable

  • [attachment: string]: any

Properties

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