// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; namespace FlaxEditor.Content.Settings { /// /// The base class for all the settings assets. /// public abstract class SettingsBase { } partial class GraphicsSettings { /// /// Renamed UeeHDRProbes into UseHDRProbes /// [Deprecated on 12.10.2022, expires on 12.10.2024] /// [Serialize, Obsolete, NoUndo] private bool UeeHDRProbes { get => UseHDRProbes; set => UseHDRProbes = value; } /// /// Initializes a new instance of the . /// public GraphicsSettings() { // Initialize PostFx settings with default options (C# structs don't support it) PostProcessSettings = PostProcessSettings.Default; } } }