Editor API Reference - v1.1.4
    Preparing search index...

    Class SceneSettings

    The Scene Settings API provides access to the settings of the currently loaded scene.

    Hierarchy

    • Events
      • SceneSettings
    Index

    Constructors

    Accessors

    Methods

    Constructors

    Accessors

    • get history(): ObserverHistory

      Gets the history object for this entity

      Returns ObserverHistory

    Methods

    • Gets value at path. See the SceneSettings overview for a full list of properties.

      Parameters

      • path: string

        The path

      Returns any

      The value

      console.log(editor.settings.scene.get('render.fog'));
      
    • Checks if path exists. See the SceneSettings overview for a full list of properties.

      Parameters

      • path: string

        The path

      Returns boolean

      True if path exists

      console.log(editor.settings.scene.has('render.fog'));
      
    • Returns JSON representation of scene settings data

      Returns Record<string, any>

      • The data
      console.log(editor.settings.scene.json());
      
    • Sets value at path. See the SceneSettings overview for a full list of properties.

      Parameters

      • path: string

        The path

      • value: any

        The value

      Returns boolean

      Whether the value was set

      editor.settings.scene.set('render.fog', 'none');