The Scene Settings API provides access to the settings of the currently loaded scene.
Creates new instance of the API
Gets the history object for this entity
Gets value at path. See the SceneSettings overview for a full list of properties.
The path
The value
console.log(editor.settings.scene.get('render.fog')); Copy
console.log(editor.settings.scene.get('render.fog'));
Checks if path exists. See the SceneSettings overview for a full list of properties.
True if path exists
console.log(editor.settings.scene.has('render.fog')); Copy
console.log(editor.settings.scene.has('render.fog'));
Returns JSON representation of scene settings data
console.log(editor.settings.scene.json()); Copy
console.log(editor.settings.scene.json());
Sets value at path. See the SceneSettings overview for a full list of properties.
Whether the value was set
editor.settings.scene.set('render.fog', 'none'); Copy
editor.settings.scene.set('render.fog', 'none');
The Scene Settings API provides access to the settings of the currently loaded scene.