interface Object3DJSONObject {
    animations?: string[];
    castShadow?: boolean;
    children?: string[];
    frustumCulled?: boolean;
    layers: number;
    material?: string | string[];
    matrix: Matrix4Tuple;
    matrixAutoUpdate?: boolean;
    name?: string;
    receiveShadow?: boolean;
    renderOrder?: number;
    type: string;
    up: Vector3Tuple;
    userData?: Record<string, unknown>;
    uuid: string;
    visible?: boolean;
}

Hierarchy (view full)

Properties

animations?: string[]
castShadow?: boolean
children?: string[]
frustumCulled?: boolean
layers: number
material?: string | string[]
matrix: Matrix4Tuple
matrixAutoUpdate?: boolean
name?: string
receiveShadow?: boolean
renderOrder?: number
type: string
userData?: Record<string, unknown>
uuid: string
visible?: boolean