EarthSDK
    正在准备搜索索引...

    类型别名 SceneTreeItemJsonValue

    表示场景树项的 JSON 值类型。

    type SceneTreeItemJsonValue = {
        children?: SceneTreeItemJsonValue[];
        collapsed?: boolean;
        extras?: JsonValue;
        name?: string;
        sceneObj?: JsonValue;
        show?: boolean;
    }
    索引

    属性

    子场景树项的 JSON 值数组。

    collapsed?: boolean

    场景树项是否折叠,默认为 false。

    extras?: JsonValue

    额外的 JSON 数据。

    name?: string

    场景树项的名称。

    sceneObj?: JsonValue

    场景对象的 JSON 值。

    show?: boolean

    场景树项是否显示,默认为 true。