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