From 5bff20087406e44ca3b6541ab7a224bf517c08ef Mon Sep 17 00:00:00 2001 From: Julien Ignace Date: Mon, 27 Apr 2020 10:53:19 +0200 Subject: [PATCH 1/2] Fixed an error about procedural sky being logged by mistake. --- .../Runtime/Sky/VisualEnvironment.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.unity.render-pipelines.high-definition/Runtime/Sky/VisualEnvironment.cs b/com.unity.render-pipelines.high-definition/Runtime/Sky/VisualEnvironment.cs index 531e03b333f..94618852e64 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Sky/VisualEnvironment.cs +++ b/com.unity.render-pipelines.high-definition/Runtime/Sky/VisualEnvironment.cs @@ -11,7 +11,7 @@ namespace UnityEngine.Rendering.HighDefinition public sealed class VisualEnvironment : VolumeComponent { /// Type of sky that should be used for rendering. - public IntParameter skyType = new IntParameter(0); + public NoInterpIntParameter skyType = new NoInterpIntParameter(0); /// Defines the way the ambient probe should be computed. public SkyAmbientModeParameter skyAmbientMode = new SkyAmbientModeParameter(SkyAmbientMode.Static); From 1d9e3539cd7a21577c06ef3728a07d36ea6c74db Mon Sep 17 00:00:00 2001 From: Julien Ignace Date: Mon, 27 Apr 2020 10:53:51 +0200 Subject: [PATCH 2/2] Update changelog --- com.unity.render-pipelines.high-definition/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/com.unity.render-pipelines.high-definition/CHANGELOG.md b/com.unity.render-pipelines.high-definition/CHANGELOG.md index 9a44d272973..64441edc4bb 100644 --- a/com.unity.render-pipelines.high-definition/CHANGELOG.md +++ b/com.unity.render-pipelines.high-definition/CHANGELOG.md @@ -564,6 +564,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Fixed issue when toggling anything in HDRP asset that will produce an error (case 1238155) - Fixed shader warning in PCSS code when using Vulkan. - Fixed decal that aren't working without Metal and Ambient Occlusion option enabled. +- Fixed an error about procedural sky being logged by mistake. ### Changed - Improve MIP selection for decals on Transparents