The SettingsManager (accessible from the ExtensionContext) is responsible for the management all player settings.
export class SettingsManager { private constructor(); readonly audio: AudioSettings; readonly graphics: GraphicsSettings; readonly speed: SpeedSettings; readonly theme: ThemeSettings;} Copy
export class SettingsManager { private constructor(); readonly audio: AudioSettings; readonly graphics: GraphicsSettings; readonly speed: SpeedSettings; readonly theme: ThemeSettings;}
Private
Readonly
Manages graphics settings properties.
This property can't be read in early-execution mode.
The SettingsManager (accessible from the ExtensionContext) is responsible for the management all player settings.
Source