interface SceneControl {
    name: string;
    title: string;
    layer: string;
    icon: string;
    visible: boolean;
    tools: SceneControlTool[];
    activeTool: string;
}

Properties

name: string
title: string
layer: string
icon: string
visible: boolean
activeTool: string