Merge branch 'disable-effects-default' of https://github.com/Duroxxigar/FlaxEngine into Duroxxigar-disable-effects-default

This commit is contained in:
2026-08-13 11:38:11 +02:00
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1152,7 +1152,7 @@ API_ENUM(Attributes="Flags") enum class ViewFlags : uint64
/// <summary>
/// Default flags for materials/models previews generating.
/// </summary>
DefaultAssetPreview = Reflections | Decals | DirectionalLights | PointLights | SpotLights | SkyLights | SpecularLight | AntiAliasing | Bloom | ToneMapping | EyeAdaptation | CameraArtifacts | LensFlares | ContactShadows | Sky | Particles,
DefaultAssetPreview = Reflections | Decals | DirectionalLights | PointLights | SpotLights | SkyLights | SpecularLight | AntiAliasing | Bloom | ToneMapping | CameraArtifacts | LensFlares | ContactShadows | Sky | Particles,
/// <summary>
/// All flags enabled.
+2 -2
View File
@@ -986,7 +986,7 @@ API_STRUCT() struct FLAXENGINE_API EyeAdaptationSettings : ISerializable
/// The effect rendering mode used for the exposure processing.
/// </summary>
API_FIELD(Attributes="EditorOrder(0), PostProcessSetting((int)EyeAdaptationSettingsOverride.Mode)")
EyeAdaptationMode Mode = EyeAdaptationMode::AutomaticHistogram;
EyeAdaptationMode Mode = EyeAdaptationMode::None;
/// <summary>
/// The speed at which the exposure changes when the scene brightness moves from a dark area to a bright area (brightness goes up).
@@ -1616,7 +1616,7 @@ API_STRUCT() struct FLAXENGINE_API MotionBlurSettings : ISerializable
/// If checked, the motion blur effect will be rendered.
/// </summary>
API_FIELD(Attributes="EditorOrder(0), PostProcessSetting((int)MotionBlurSettingsOverride.Enabled)")
bool Enabled = true;
bool Enabled = false;
/// <summary>
/// The blur effect strength. A value of 0 disables it, while higher values increase the effect.