From 3d7922041a4f86e2114c681e0bf8ff58de3729ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Leli=C3=A8vre?= Date: Wed, 17 Jun 2020 17:08:05 +0200 Subject: [PATCH 01/32] Exposed DisableDecals, DisableSSR, DisableSSRTransparent, PreserveSpecular, AddPrecomputedVelocity, TransparentWriteMotionvector and DepthOffset --- .../Editor/Material/Eye/ShaderGraph/EyeGUI.cs | 6 +- .../Material/Fabric/ShaderGraph/FabricGUI.cs | 7 +- .../Material/Hair/ShaderGraph/HairGUI.cs | 7 +- .../Editor/Material/Lit/BaseLitGUI.cs | 7 +- .../Material/Lit/ShaderGraph/HDLitGUI.cs | 5 +- .../Editor/Material/ShaderGraph/HDFields.cs | 8 -- .../Material/ShaderGraph/HDShaderPasses.cs | 2 +- .../ShaderGraph/HDSubShaderUtilities.cs | 6 + .../Editor/Material/ShaderGraph/HDTarget.cs | 105 ++++++++++++++---- .../Material/ShaderGraph/LightingSubTarget.cs | 13 ++- .../Material/ShaderGraph/SurfaceSubTarget.cs | 46 ++++---- .../ShaderGraph/Templates/ShaderPass.template | 19 +--- .../StackLit/ShaderGraph/StackLitGUI.cs | 7 +- .../UIBlocks/AdvancedOptionsUIBlock.cs | 3 +- .../Material/UIBlocks/SurfaceOptionUIBlock.cs | 8 +- .../Editor/Material/Unlit/HDShaderGUI.cs | 2 +- .../Material/Unlit/ShaderGraph/HDUnlitGUI.cs | 4 +- .../RenderPipeline/HDStringConstants.cs | 1 + 18 files changed, 162 insertions(+), 94 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeGUI.cs index 083a42d386d..dfa1b9a615c 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeGUI.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeGUI.cs @@ -12,14 +12,16 @@ namespace UnityEditor.Rendering.HighDefinition class EyeGUI : HDShaderGUI { // For surface option shader graph we only want all unlit features but alpha clip, back then front rendering and SSR - const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Unlit + const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Lit ^ SurfaceOptionUIBlock.Features.AlphaCutoffThreshold - ^ SurfaceOptionUIBlock.Features.ShowAfterPostProcessPass; + ^ SurfaceOptionUIBlock.Features.ShowAfterPostProcessPass + | SurfaceOptionUIBlock.Features.ShowDepthOffsetOnly; MaterialUIBlockList uiBlocks = new MaterialUIBlockList { new SurfaceOptionUIBlock(MaterialUIBlock.Expandable.Base, features: surfaceOptionFeatures), new ShaderGraphUIBlock(MaterialUIBlock.Expandable.ShaderGraph), + new AdvancedOptionsUIBlock(MaterialUIBlock.Expandable.Advance, ~AdvancedOptionsUIBlock.Features.SpecularOcclusion) }; protected override void OnMaterialGUI(MaterialEditor materialEditor, MaterialProperty[] props) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Fabric/ShaderGraph/FabricGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Fabric/ShaderGraph/FabricGUI.cs index 5f6a6d7df02..be845bf1d36 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Fabric/ShaderGraph/FabricGUI.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/Fabric/ShaderGraph/FabricGUI.cs @@ -12,15 +12,16 @@ namespace UnityEditor.Rendering.HighDefinition class FabricGUI : HDShaderGUI { // For surface option shader graph we only want all unlit features but alpha clip, back then front rendering and SSR - const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Unlit + const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Lit ^ SurfaceOptionUIBlock.Features.AlphaCutoffThreshold - ^ SurfaceOptionUIBlock.Features.BackThenFrontRendering - ^ SurfaceOptionUIBlock.Features.ShowAfterPostProcessPass; + ^ SurfaceOptionUIBlock.Features.ShowAfterPostProcessPass + | SurfaceOptionUIBlock.Features.ShowDepthOffsetOnly; MaterialUIBlockList uiBlocks = new MaterialUIBlockList { new SurfaceOptionUIBlock(MaterialUIBlock.Expandable.Base, features: surfaceOptionFeatures), new ShaderGraphUIBlock(MaterialUIBlock.Expandable.ShaderGraph), + new AdvancedOptionsUIBlock(MaterialUIBlock.Expandable.Advance, ~AdvancedOptionsUIBlock.Features.SpecularOcclusion) }; protected override void OnMaterialGUI(MaterialEditor materialEditor, MaterialProperty[] props) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Hair/ShaderGraph/HairGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Hair/ShaderGraph/HairGUI.cs index 5aae48b1a33..98fc71dd39f 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Hair/ShaderGraph/HairGUI.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/Hair/ShaderGraph/HairGUI.cs @@ -12,15 +12,16 @@ namespace UnityEditor.Rendering.HighDefinition class HairGUI : HDShaderGUI { // For surface option shader graph we only want all unlit features but alpha clip and back then front rendering - const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Unlit + const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Lit ^ SurfaceOptionUIBlock.Features.AlphaCutoffThreshold - ^ SurfaceOptionUIBlock.Features.BackThenFrontRendering - ^ SurfaceOptionUIBlock.Features.ShowAfterPostProcessPass; + ^ SurfaceOptionUIBlock.Features.ShowAfterPostProcessPass + | SurfaceOptionUIBlock.Features.ShowDepthOffsetOnly; MaterialUIBlockList uiBlocks = new MaterialUIBlockList { new SurfaceOptionUIBlock(MaterialUIBlock.Expandable.Base, features: surfaceOptionFeatures), new ShaderGraphUIBlock(MaterialUIBlock.Expandable.ShaderGraph), + new AdvancedOptionsUIBlock(MaterialUIBlock.Expandable.Advance, ~AdvancedOptionsUIBlock.Features.SpecularOcclusion) }; protected override void OnMaterialGUI(MaterialEditor materialEditor, MaterialProperty[] props) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Lit/BaseLitGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Lit/BaseLitGUI.cs index b9bddb7d48c..3ace404101a 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Lit/BaseLitGUI.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/Lit/BaseLitGUI.cs @@ -11,7 +11,6 @@ abstract class BaseLitGUI { // Properties for Base Lit material keyword setup protected const string kDoubleSidedNormalMode = "_DoubleSidedNormalMode"; - protected const string kDepthOffsetEnable = "_DepthOffsetEnable"; protected const string kDisplacementMode = "_DisplacementMode"; protected const string kDisplacementLockObjectScale = "_DisplacementLockObjectScale"; @@ -79,6 +78,12 @@ static public void SetupBaseLitKeywords(Material material) bool depthOffsetEnable = (material.GetFloat(kDepthOffsetEnable) > 0.0f) && enablePixelDisplacement; CoreUtils.SetKeyword(material, "_DEPTHOFFSET_ON", depthOffsetEnable); } + else if (material.HasProperty(kDepthOffsetEnable)) // ShaderGraphs don't have the displacement mode but they have a depth offset + { + // Depth offset is only enabled if per pixel displacement is + bool depthOffsetEnable = (material.GetFloat(kDepthOffsetEnable) > 0.0f); + CoreUtils.SetKeyword(material, "_DEPTHOFFSET_ON", depthOffsetEnable); + } CoreUtils.SetKeyword(material, "_VERTEX_WIND", false); diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Lit/ShaderGraph/HDLitGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Lit/ShaderGraph/HDLitGUI.cs index e74586f523c..fa9b11c221f 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Lit/ShaderGraph/HDLitGUI.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/Lit/ShaderGraph/HDLitGUI.cs @@ -12,14 +12,15 @@ namespace UnityEditor.Rendering.HighDefinition class HDLitGUI : HDShaderGUI { // For surface option shader graph we only want all unlit features but alpha clip and back then front rendering - const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Unlit + const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Lit ^ SurfaceOptionUIBlock.Features.AlphaCutoffThreshold - ^ SurfaceOptionUIBlock.Features.BackThenFrontRendering; + | SurfaceOptionUIBlock.Features.ShowDepthOffsetOnly; MaterialUIBlockList uiBlocks = new MaterialUIBlockList { new SurfaceOptionUIBlock(MaterialUIBlock.Expandable.Base, features: surfaceOptionFeatures), new ShaderGraphUIBlock(MaterialUIBlock.Expandable.ShaderGraph), + new AdvancedOptionsUIBlock(MaterialUIBlock.Expandable.Advance, ~AdvancedOptionsUIBlock.Features.SpecularOcclusion) }; protected override void OnMaterialGUI(MaterialEditor materialEditor, MaterialProperty[] props) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDFields.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDFields.cs index 67d4d191ff1..47b32791bbd 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDFields.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDFields.cs @@ -53,21 +53,13 @@ static class HDFields public static FieldDescriptor DoAlphaTestPrepass = new FieldDescriptor(string.Empty, "DoAlphaTestPrepass", "_DO_ALPHA_TEST_PREPASS 1"); public static FieldDescriptor DoAlphaTestPostpass = new FieldDescriptor(string.Empty, "DoAlphaTestPostpass", "_DO_ALPHA_TEST_POSTPASS 1"); public static FieldDescriptor AlphaFog = new FieldDescriptor(string.Empty, "AlphaFog", "_ENABLE_FOG_ON_TRANSPARENT 1"); - public static FieldDescriptor BlendPreserveSpecular = new FieldDescriptor(Fields.kBlendMode, "PreserveSpecular", "_BLENDMODE_PRESERVE_SPECULAR_LIGHTING 1"); - public static FieldDescriptor DisableDecals = new FieldDescriptor(string.Empty, "DisableDecals", "_DISABLE_DECALS 1"); - public static FieldDescriptor DisableSSR = new FieldDescriptor(string.Empty, "DisableSSR", "_DISABLE_SSR 1"); - public static FieldDescriptor DisableSSRTransparent = new FieldDescriptor(string.Empty, "DisableSSRTransparent", "_DISABLE_SSR_TRANSPARENT 1"); public static FieldDescriptor BentNormal = new FieldDescriptor(string.Empty, "BentNormal", "_BENT_NORMAL 1"); public static FieldDescriptor AmbientOcclusion = new FieldDescriptor(string.Empty, "AmbientOcclusion", "_AMBIENT_OCCLUSION 1"); public static FieldDescriptor CoatMask = new FieldDescriptor(string.Empty, "CoatMask", "_COAT_MASK 1"); public static FieldDescriptor Tangent = new FieldDescriptor(string.Empty, "Tangent", "_TANGENT 1"); public static FieldDescriptor LightingGI = new FieldDescriptor(string.Empty, "LightingGI", "_LIGHTING_GI 1"); public static FieldDescriptor BackLightingGI = new FieldDescriptor(string.Empty, "BackLightingGI", "_BACK_LIGHTING_GI 1"); - public static FieldDescriptor DepthOffset = new FieldDescriptor(string.Empty, "DepthOffset", "_DEPTH_OFFSET 1"); - public static FieldDescriptor TransparentWritesMotionVec = new FieldDescriptor(string.Empty, "TransparentWritesMotionVec", "_WRITE_TRANSPARENT_MOTION_VECTOR 1"); public static FieldDescriptor TransparentBackFace = new FieldDescriptor(string.Empty, "TransparentBackFace", string.Empty); - public static FieldDescriptor TransparentDepthPrePass = new FieldDescriptor(string.Empty, "TransparentDepthPrePass", string.Empty); - public static FieldDescriptor TransparentDepthPostPass = new FieldDescriptor(string.Empty, "TransparentDepthPostPass", string.Empty); public static FieldDescriptor RayTracing = new FieldDescriptor(string.Empty, "RayTracing", string.Empty); public static FieldDescriptor Unlit = new FieldDescriptor(string.Empty, "Unlit", string.Empty); diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs index 8cd14696c30..040a134eba9 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs @@ -520,7 +520,7 @@ DefineCollection GenerateDefines() var defines = new DefineCollection{ { RayTracingNode.GetRayTracingKeyword(), 0 } }; if (supportLighting) - defines.Add(CoreKeywordDescriptors.WriteNormalBufferDefine, 1, new FieldCondition(HDFields.DisableSSRTransparent, false)); + defines.Add( new DefineCollection{ { CoreKeywordDescriptors.WriteNormalBuffer, 0 } }); return defines; } diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDSubShaderUtilities.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDSubShaderUtilities.cs index 8f6a4e3685e..a331e20c9a7 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDSubShaderUtilities.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDSubShaderUtilities.cs @@ -72,12 +72,16 @@ public static void AddStencilShaderProperties(PropertyCollector collector, Syste bool ssrStencil = false; bool receiveSSROpaque = false; bool receiveSSRTransparent = false; + bool receiveDecals = false; + bool blendPreserveSpecular = false; if (lightingData != null) { ssrStencil = systemData.surfaceType == SurfaceType.Opaque ? lightingData.receiveSSR : lightingData.receiveSSRTransparent; receiveSSROpaque = lightingData.receiveSSR; receiveSSRTransparent = lightingData.receiveSSRTransparent; + receiveDecals = lightingData.receiveDecals; + blendPreserveSpecular = lightingData.blendPreserveSpecular; } BaseLitGUI.ComputeStencilProperties(ssrStencil, splitLighting, out int stencilRef, out int stencilWriteMask, @@ -105,6 +109,8 @@ public static void AddStencilShaderProperties(PropertyCollector collector, Syste collector.AddToggleProperty(kUseSplitLighting, splitLighting); collector.AddToggleProperty(kReceivesSSR, receiveSSROpaque); collector.AddToggleProperty(kReceivesSSRTransparent, receiveSSRTransparent); + collector.AddToggleProperty(kSupportDecals, receiveDecals); + collector.AddToggleProperty(kEnableBlendModePreserveSpecularLighting, blendPreserveSpecular); } public static void AddBlendingStatesShaderProperties( diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs index b3cea2344a4..a80ebab0825 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs @@ -485,8 +485,6 @@ static class CoreFieldDependencies new FieldDependency(StructFields.SurfaceDescriptionInputs.uv3, HDStructFields.FragInputs.texCoord3), new FieldDependency(StructFields.SurfaceDescriptionInputs.VertexColor, HDStructFields.FragInputs.color), new FieldDependency(StructFields.SurfaceDescriptionInputs.FaceSign, HDStructFields.FragInputs.IsFrontFace), - - new FieldDependency(HDFields.DepthOffset, HDStructFields.FragInputs.positionRWS), }; public static DependencyCollection Default = new DependencyCollection @@ -820,23 +818,27 @@ static class CorePragmas #region Keywords static class CoreKeywords { - public static KeywordCollection HDBase = new KeywordCollection + public static KeywordCollection HDBaseNoCrossFade = new KeywordCollection { - { CoreKeywordDescriptors.LodFadeCrossfade, new FieldCondition(Fields.LodCrossFade, true) }, { CoreKeywordDescriptors.SurfaceTypeTransparent }, { CoreKeywordDescriptors.BlendMode }, { CoreKeywordDescriptors.DoubleSided, new FieldCondition(HDFields.Unlit, false) }, + { CoreKeywordDescriptors.DisableDecals, new FieldCondition(HDFields.Unlit, false) }, + { CoreKeywordDescriptors.DisableSSR, new FieldCondition(HDFields.Unlit, false) }, + { CoreKeywordDescriptors.DisableSSRTransparent, new FieldCondition(HDFields.Unlit, false) }, + // { CoreKeywordDescriptors.EnableGeometricSpecularAA, new FieldCondition(HDFields.Unlit, false) }, + { CoreKeywordDescriptors.BlendModePreserveSpecularLighting, new FieldCondition(HDFields.Unlit, false) }, + { CoreKeywordDescriptors.AddPrecomputedVelocity }, + { CoreKeywordDescriptors.TransparentWritesMotionVector }, + { CoreKeywordDescriptors.DepthOffset }, { CoreKeywordDescriptors.FogOnTransparent }, { CoreKeywordDescriptors.AlphaTest, new FieldCondition(Fields.AlphaTest, true) }, }; - public static KeywordCollection HDBaseNoCrossFade = new KeywordCollection + public static KeywordCollection HDBase = new KeywordCollection { - { CoreKeywordDescriptors.SurfaceTypeTransparent }, - { CoreKeywordDescriptors.BlendMode }, - { CoreKeywordDescriptors.DoubleSided, new FieldCondition(HDFields.Unlit, false) }, - { CoreKeywordDescriptors.FogOnTransparent }, - { CoreKeywordDescriptors.AlphaTest, new FieldCondition(Fields.AlphaTest, true) }, + { CoreKeywordDescriptors.LodFadeCrossfade, new FieldCondition(Fields.LodCrossFade, true) }, + { HDBaseNoCrossFade } }; public static KeywordCollection Lightmaps = new KeywordCollection @@ -917,7 +919,7 @@ static class CoreDefines public static DefineCollection TransparentDepthPrepass = new DefineCollection { { RayTracingNode.GetRayTracingKeyword(), 0 }, - { CoreKeywordDescriptors.WriteNormalBufferDefine, 1, new FieldCondition(HDFields.DisableSSRTransparent, false) }, + { CoreKeywordDescriptors.WriteNormalBuffer, 1 }, }; public static DefineCollection Forward = new DefineCollection @@ -1042,15 +1044,6 @@ static class CoreIncludes #region KeywordDescriptors static class CoreKeywordDescriptors { - public static KeywordDescriptor WriteNormalBufferDefine = new KeywordDescriptor() - { - displayName = "Write Normal Buffer", - referenceName = "WRITE_NORMAL_BUFFER", - type = KeywordType.Boolean, - definition = KeywordDefinition.Predefined, - scope = KeywordScope.Global, - }; - public static KeywordDescriptor WriteNormalBuffer = new KeywordDescriptor() { displayName = "Write Normal Buffer", @@ -1290,6 +1283,78 @@ static class CoreKeywordDescriptors definition = KeywordDefinition.MultiCompile, scope = KeywordScope.Global }; + + public static KeywordDescriptor DisableDecals = new KeywordDescriptor + { + displayName = "Disable Decals", + referenceName = "_DISABLE_DECALS", + type = KeywordType.Boolean, + definition = KeywordDefinition.ShaderFeature, + scope = KeywordScope.Local, + }; + + public static KeywordDescriptor DisableSSR = new KeywordDescriptor + { + displayName = "Disable SSR", + referenceName = "_DISABLE_SSR", + type = KeywordType.Boolean, + definition = KeywordDefinition.ShaderFeature, + scope = KeywordScope.Local, + }; + + public static KeywordDescriptor DisableSSRTransparent = new KeywordDescriptor + { + displayName = "Disable SSR Transparent", + referenceName = "_DISABLE_SSR_TRANSPARENT", + type = KeywordType.Boolean, + definition = KeywordDefinition.ShaderFeature, + scope = KeywordScope.Local, + }; + + public static KeywordDescriptor EnableGeometricSpecularAA = new KeywordDescriptor + { + displayName = "Enable Geometric Specular AA", + referenceName = "_ENABLE_GEOMETRIC_SPECULAR_AA", + type = KeywordType.Boolean, + definition = KeywordDefinition.ShaderFeature, + scope = KeywordScope.Local, + }; + + public static KeywordDescriptor BlendModePreserveSpecularLighting = new KeywordDescriptor + { + displayName = "BlendMode Preserve Specular Lighting", + referenceName = "_BLENDMODE_PRESERVE_SPECULAR_LIGHTING", + type = KeywordType.Boolean, + definition = KeywordDefinition.ShaderFeature, + scope = KeywordScope.Local, + }; + + public static KeywordDescriptor AddPrecomputedVelocity = new KeywordDescriptor + { + displayName = "Add Precomputed Velocity", + referenceName = "_ADD_PRECOMPUTED_VELOCITY", + type = KeywordType.Boolean, + definition = KeywordDefinition.ShaderFeature, + scope = KeywordScope.Local, + }; + + public static KeywordDescriptor TransparentWritesMotionVector = new KeywordDescriptor + { + displayName = "Transparent Writes Motion Vector", + referenceName = "_TRANSPARENT_WRITES_MOTION_VEC", + type = KeywordType.Boolean, + definition = KeywordDefinition.ShaderFeature, + scope = KeywordScope.Local, + }; + + public static KeywordDescriptor DepthOffset = new KeywordDescriptor + { + displayName = "Depth Offset", + referenceName = "_DEPTHOFFSET_ON", + type = KeywordType.Boolean, + definition = KeywordDefinition.ShaderFeature, + scope = KeywordScope.Local, + }; } #endregion } diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/LightingSubTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/LightingSubTarget.cs index b94a70682a4..8212e43d042 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/LightingSubTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/LightingSubTarget.cs @@ -73,10 +73,6 @@ public override void GetFields(ref TargetFieldContext context) var descs = context.blocks.Select(x => x.descriptor); // Misc - context.AddField(BlendPreserveSpecular, systemData.surfaceType != SurfaceType.Opaque && lightingData.blendPreserveSpecular); - context.AddField(DisableDecals, !lightingData.receiveDecals); - context.AddField(DisableSSR, !lightingData.receiveSSR); - context.AddField(DisableSSRTransparent, !lightingData.receiveSSRTransparent); context.AddField(SpecularAA, lightingData.specularAA && context.pass.validPixelBlocks.Contains(HDBlockFields.SurfaceDescription.SpecularAAThreshold) && context.pass.validPixelBlocks.Contains(HDBlockFields.SurfaceDescription.SpecularAAScreenSpaceVariance)); @@ -127,5 +123,14 @@ public override void CollectShaderProperties(PropertyCollector collector, Genera // Add all shader properties required by the inspector HDSubShaderUtilities.AddStencilShaderProperties(collector, systemData, lightingData, requireSplitLighting); } + + public override void ProcessPreviewMaterial(Material material) + { + base.ProcessPreviewMaterial(material); + + material.SetFloat(kEnableBlendModePreserveSpecularLighting, lightingData.blendPreserveSpecular ? 1 : 0); + material.SetFloat(kReceivesSSR, lightingData.receiveSSR ? 1 : 0); + material.SetFloat(kReceivesSSRTransparent, lightingData.receiveSSRTransparent ? 1 : 0); + } } } diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs index 6dfffa84e9b..46103840e89 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs @@ -79,24 +79,18 @@ PassCollection GetPasses() HDShaderPasses.GenerateSceneSelection(supportLighting), HDShaderPasses.GenerateMotionVectors(supportLighting, supportForward), { HDShaderPasses.GenerateBackThenFront(supportLighting), new FieldCondition(HDFields.TransparentBackFace, true)}, - { HDShaderPasses.GenerateTransparentDepthPostpass(supportLighting), new FieldCondition(HDFields.TransparentDepthPostPass, true) }, + { HDShaderPasses.GenerateTransparentDepthPostpass(supportLighting) }, }; if (supportLighting) { - passes.Add(HDShaderPasses.GenerateTransparentDepthPrepass(supportLighting), new FieldCondition[]{ - new FieldCondition(HDFields.TransparentDepthPrePass, true), - new FieldCondition(HDFields.DisableSSRTransparent, true) }); - passes.Add(HDShaderPasses.GenerateTransparentDepthPrepass(supportLighting), new FieldCondition[]{ - new FieldCondition(HDFields.TransparentDepthPrePass, true), - new FieldCondition(HDFields.DisableSSRTransparent, false) }); - passes.Add(HDShaderPasses.GenerateTransparentDepthPrepass(supportLighting), new FieldCondition[]{ - new FieldCondition(HDFields.TransparentDepthPrePass, false), - new FieldCondition(HDFields.DisableSSRTransparent, false) }); + passes.Add(HDShaderPasses.GenerateTransparentDepthPrepass(supportLighting)); + passes.Add(HDShaderPasses.GenerateTransparentDepthPrepass(supportLighting)); + passes.Add(HDShaderPasses.GenerateTransparentDepthPrepass(supportLighting)); } else { - passes.Add(HDShaderPasses.GenerateTransparentDepthPrepass(supportLighting), new FieldCondition(HDFields.TransparentDepthPrePass, true)); + passes.Add(HDShaderPasses.GenerateTransparentDepthPrepass(supportLighting)); } if (supportForward) @@ -248,18 +242,14 @@ public override void GetFields(ref TargetFieldContext context) context.AddField(HDFields.DoAlphaTestPostpass, systemData.alphaTest && systemData.alphaTestDepthPostpass && isTransparentDepthPostpass && context.pass.validPixelBlocks.Contains(HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPostpass)); - - context.AddField(HDFields.TransparentDepthPrePass, systemData.surfaceType != SurfaceType.Opaque && systemData.alphaTestDepthPrepass); - context.AddField(HDFields.TransparentDepthPostPass, systemData.surfaceType != SurfaceType.Opaque && systemData.alphaTestDepthPostpass); - // Features & Misc context.AddField(Fields.LodCrossFade, systemData.supportLodCrossFade); - context.AddField(Fields.VelocityPrecomputed, builtinData.addPrecomputedVelocity); - context.AddField(HDFields.TransparentWritesMotionVec, systemData.surfaceType != SurfaceType.Opaque && builtinData.transparentWritesMotionVec); context.AddField(Fields.AlphaToMask, systemData.alphaTest && context.pass.validPixelBlocks.Contains(BlockFields.SurfaceDescription.AlphaClipThreshold) && builtinData.alphaToMask); - context.AddField(HDFields.DepthOffset, builtinData.depthOffset && context.pass.validPixelBlocks.Contains(HDBlockFields.SurfaceDescription.DepthOffset)); context.AddField(HDFields.AlphaFog, systemData.surfaceType != SurfaceType.Opaque && builtinData.transparencyFog); context.AddField(HDFields.TransparentBackFace, systemData.surfaceType != SurfaceType.Opaque && builtinData.backThenFrontRendering); + + // Depth offset needs positionRWS and is now a multi_compile + context.AddField(HDStructFields.FragInputs.positionRWS); } protected void AddDistortionFields(ref TargetFieldContext context) @@ -336,15 +326,19 @@ public override void CollectShaderProperties(PropertyCollector collector, Genera }); //See SG-ADDITIONALVELOCITY-NOTE - if (builtinData.addPrecomputedVelocity) + collector.AddShaderProperty(new BooleanShaderProperty { - collector.AddShaderProperty(new BooleanShaderProperty - { - value = true, - hidden = true, - overrideReferenceName = kAddPrecomputedVelocity, - }); - } + value = builtinData.addPrecomputedVelocity, + hidden = true, + overrideReferenceName = kAddPrecomputedVelocity, + }); + + collector.AddShaderProperty(new BooleanShaderProperty + { + value = builtinData.depthOffset, + hidden = true, + overrideReferenceName = kDepthOffsetEnable + }); // Common properties for all "surface" master nodes HDSubShaderUtilities.AddAlphaCutoffShaderProperties(collector, systemData.alphaTest, builtinData.alphaTestShadow); diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template index 8538b795546..4f3df7269c2 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template @@ -27,17 +27,6 @@ Pass // -------------------------------------------------- // Defines - // Lighting Material only (will not affect unlit) - $DisableDecals: #define _DISABLE_DECALS 1 - $DisableSSR: #define _DISABLE_SSR 1 - $DisableSSRTransparent: #define _DISABLE_SSR_TRANSPARENT 1 - $BlendMode.PreserveSpecular: #define _BLENDMODE_PRESERVE_SPECULAR_LIGHTING 1 - - // Precomputed velocity is used for alembic - $AddPrecomputedVelocity: #define _ADD_PRECOMPUTED_VELOCITY - $TransparentWritesMotionVec: #define _TRANSPARENT_WRITES_MOTION_VEC 1 - $DepthOffset: #define _DEPTHOFFSET_ON 1 - // Attribute $AttributesMesh.normalOS: #define ATTRIBUTES_NEED_NORMAL $AttributesMesh.tangentOS: #define ATTRIBUTES_NEED_TANGENT @@ -166,8 +155,8 @@ Pass $DoAlphaTestShadow: GENERIC_ALPHA_TEST(surfaceDescription.Alpha, surfaceDescription.AlphaClipThresholdShadow); #endif - #if !defined(SHADER_STAGE_RAY_TRACING) - $DepthOffset: ApplyDepthOffsetPositionInput(V, surfaceDescription.DepthOffset, GetViewForwardDir(), GetWorldToHClipMatrix(), posInput); + #if !defined(SHADER_STAGE_RAY_TRACING) && _DEPTHOFFSET_ON + ApplyDepthOffsetPositionInput(V, surfaceDescription.DepthOffset, GetViewForwardDir(), GetWorldToHClipMatrix(), posInput); #endif #ifndef SHADER_UNLIT @@ -212,7 +201,9 @@ Pass // This is a limitation of the current MRT approach. $SurfaceDescription.VTPackedFeedback: builtinData.vtPackedFeedback = surfaceDescription.VTPackedFeedback; - $DepthOffset: builtinData.depthOffset = surfaceDescription.DepthOffset; + #if _DEPTHOFFSET_ON + builtinData.depthOffset = surfaceDescription.DepthOffset; + #endif // TODO: We should generate distortion / distortionBlur for non distortion pass #if (SHADERPASS == SHADERPASS_DISTORTION) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/StackLit/ShaderGraph/StackLitGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/StackLit/ShaderGraph/StackLitGUI.cs index 1af452e47e6..bc8d22ccb2b 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/StackLit/ShaderGraph/StackLitGUI.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/StackLit/ShaderGraph/StackLitGUI.cs @@ -12,15 +12,16 @@ namespace UnityEditor.Rendering.HighDefinition class StackLitGUI : HDShaderGUI { // For surface option shader graph we only want all unlit features but alpha clip and back then front rendering - const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Unlit + const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Lit ^ SurfaceOptionUIBlock.Features.AlphaCutoffThreshold - ^ SurfaceOptionUIBlock.Features.BackThenFrontRendering - ^ SurfaceOptionUIBlock.Features.ShowAfterPostProcessPass; + ^ SurfaceOptionUIBlock.Features.ShowAfterPostProcessPass + | SurfaceOptionUIBlock.Features.ShowDepthOffsetOnly; MaterialUIBlockList uiBlocks = new MaterialUIBlockList { new SurfaceOptionUIBlock(MaterialUIBlock.Expandable.Base, features: surfaceOptionFeatures), new ShaderGraphUIBlock(MaterialUIBlock.Expandable.ShaderGraph), + new AdvancedOptionsUIBlock(MaterialUIBlock.Expandable.Advance, ~AdvancedOptionsUIBlock.Features.SpecularOcclusion) }; protected override void OnMaterialGUI(MaterialEditor materialEditor, MaterialProperty[] props) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/AdvancedOptionsUIBlock.cs b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/AdvancedOptionsUIBlock.cs index f5185ea04b1..490fcbd5bfd 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/AdvancedOptionsUIBlock.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/AdvancedOptionsUIBlock.cs @@ -77,8 +77,7 @@ void DrawAdvancedOptionsGUI() { if ( addPrecomputedVelocity != null) materialEditor.ShaderProperty(addPrecomputedVelocity, Styles.addPrecomputedVelocityText); + } } } } -} - diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs index 8478ce8d074..b3968ea65ad 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs @@ -27,8 +27,9 @@ public enum Features ShowAfterPostProcessPass = 1 << 9, AlphaToMask = 1 << 10, ShowPrePassAndPostPass = 1 << 11, + ShowDepthOffsetOnly = 1 << 12, Unlit = Surface | BlendMode | DoubleSided | DoubleSidedNormalMode | AlphaCutoff | AlphaCutoffShadowThreshold | AlphaCutoffThreshold | BackThenFrontRendering | ShowAfterPostProcessPass | AlphaToMask, - Lit = All, + Lit = All ^ ShowDepthOffsetOnly, All = ~0, } @@ -185,7 +186,6 @@ internal static class Styles const string kDisplacementLockTilingScale = "_DisplacementLockTilingScale"; MaterialProperty depthOffsetEnable = null; - const string kDepthOffsetEnable = "_DepthOffsetEnable"; MaterialProperty tessellationMode = null; const string kTessellationMode = "_TessellationMode"; @@ -769,7 +769,9 @@ void DrawLitSurfaceOptions() } } - if (displacementMode != null) + if ((m_Features & Features.ShowDepthOffsetOnly) != 0) + materialEditor.ShaderProperty(depthOffsetEnable, Styles.depthOffsetEnableText); + else if (displacementMode != null) { EditorGUI.BeginChangeCheck(); FilterDisplacementMode(); diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/HDShaderGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/HDShaderGUI.cs index bfdc596a810..d0c45b15c4f 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/HDShaderGUI.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/HDShaderGUI.cs @@ -90,7 +90,7 @@ protected static void ResetMaterialCustomRenderQueue(Material material) } readonly static string[] floatPropertiesToSynchronize = { - "_UseShadowThreshold", kReceivesSSR, kReceivesSSRTransparent, kUseSplitLighting, + "_UseShadowThreshold", kUseSplitLighting, kTransparentDepthPrepassEnable, kTransparentDepthPostpassEnable }; diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/ShaderGraph/HDUnlitGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/ShaderGraph/HDUnlitGUI.cs index a3f577a6075..33c99cd3d68 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/ShaderGraph/HDUnlitGUI.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/ShaderGraph/HDUnlitGUI.cs @@ -16,12 +16,14 @@ class HDUnlitGUI : HDShaderGUI const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Unlit ^ SurfaceOptionUIBlock.Features.AlphaCutoffThreshold ^ SurfaceOptionUIBlock.Features.DoubleSidedNormalMode - ^ SurfaceOptionUIBlock.Features.BackThenFrontRendering; + ^ SurfaceOptionUIBlock.Features.BackThenFrontRendering + | SurfaceOptionUIBlock.Features.ShowDepthOffsetOnly; MaterialUIBlockList uiBlocks = new MaterialUIBlockList { new SurfaceOptionUIBlock(MaterialUIBlock.Expandable.Base, features: surfaceOptionFeatures), new ShaderGraphUIBlock(MaterialUIBlock.Expandable.ShaderGraph, ShaderGraphUIBlock.Features.Unlit), + new AdvancedOptionsUIBlock(MaterialUIBlock.Expandable.Advance, ~AdvancedOptionsUIBlock.Features.SpecularOcclusion) }; protected override void OnMaterialGUI(MaterialEditor materialEditor, MaterialProperty[] props) diff --git a/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/HDStringConstants.cs b/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/HDStringConstants.cs index 416b9d06d01..6a12e91c48f 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/HDStringConstants.cs +++ b/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/HDStringConstants.cs @@ -928,6 +928,7 @@ static class HDMaterialProperties public const string kReceivesSSRTransparent = "_ReceivesSSRTransparent"; public const string kAddPrecomputedVelocity = "_AddPrecomputedVelocity"; public const string kShadowMatteFilter = "_ShadowMatteFilter"; + public const string kDepthOffsetEnable = "_DepthOffsetEnable"; public static readonly Color[] kLayerColors = { From 8428cbf8975505c0212af3140f2e7360be7eb646 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Leli=C3=A8vre?= Date: Wed, 17 Jun 2020 17:49:01 +0200 Subject: [PATCH 02/32] Added transparent write MV --- .../Editor/Material/ShaderGraph/SurfaceSubTarget.cs | 7 +++++++ .../Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs | 1 - 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs index 46103840e89..1627be626d3 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs @@ -340,6 +340,13 @@ public override void CollectShaderProperties(PropertyCollector collector, Genera overrideReferenceName = kDepthOffsetEnable }); + collector.AddShaderProperty(new BooleanShaderProperty + { + value = builtinData.transparentWritesMotionVec, + hidden = true, + overrideReferenceName = kTransparentWritingMotionVec + }); + // Common properties for all "surface" master nodes HDSubShaderUtilities.AddAlphaCutoffShaderProperties(collector, systemData.alphaTest, builtinData.alphaTestShadow); HDSubShaderUtilities.AddDoubleSidedProperty(collector, systemData.doubleSidedMode); diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs index b3968ea65ad..6188b4740cf 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs @@ -134,7 +134,6 @@ internal static class Styles MaterialProperty transparentSortPriority = null; const string kTransparentSortPriority = HDMaterialProperties.kTransparentSortPriority; MaterialProperty transparentWritingMotionVec = null; - const string kTransparentWritingMotionVec = "_TransparentWritingMotionVec"; MaterialProperty doubleSidedEnable = null; const string kDoubleSidedEnable = "_DoubleSidedEnable"; MaterialProperty blendMode = null; From 4d53ddb7717e7a29183ea70c431fac6b4a194591 Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Wed, 17 Jun 2020 21:49:00 +0200 Subject: [PATCH 03/32] always generate transparent Depth Prepass --- .../Editor/Material/ShaderGraph/SurfaceSubTarget.cs | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs index 1627be626d3..9927ed984ec 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs @@ -82,16 +82,7 @@ PassCollection GetPasses() { HDShaderPasses.GenerateTransparentDepthPostpass(supportLighting) }, }; - if (supportLighting) - { - passes.Add(HDShaderPasses.GenerateTransparentDepthPrepass(supportLighting)); - passes.Add(HDShaderPasses.GenerateTransparentDepthPrepass(supportLighting)); - passes.Add(HDShaderPasses.GenerateTransparentDepthPrepass(supportLighting)); - } - else - { - passes.Add(HDShaderPasses.GenerateTransparentDepthPrepass(supportLighting)); - } + passes.Add(HDShaderPasses.GenerateTransparentDepthPrepass(supportLighting)); if (supportForward) { From 11d81af0b4020c71476cfda66e7ec10dda620952 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Leli=C3=A8vre?= Date: Thu, 18 Jun 2020 18:43:27 +0200 Subject: [PATCH 04/32] Added material migration step --- .../AssetProcessors/MaterialPostProcessor.cs | 27 +++++++++ .../Editor/Material/Eye/ShaderGraph/EyeGUI.cs | 55 ------------------- .../Material/Eye/ShaderGraph/EyeGUI.cs.meta | 11 ---- .../Material/Eye/ShaderGraph/EyeSubTarget.cs | 2 +- .../Material/Fabric/ShaderGraph/FabricGUI.cs | 54 ------------------ .../Fabric/ShaderGraph/FabricGUI.cs.meta | 11 ---- .../Fabric/ShaderGraph/FabricSubTarget.cs | 2 +- .../Material/Hair/ShaderGraph/HairGUI.cs | 55 ------------------- .../Hair/ShaderGraph/HairSubTarget.cs | 2 +- .../Material/Lit/ShaderGraph/HDLitGUI.cs.meta | 11 ---- .../Lit/ShaderGraph/HDLitSubTarget.cs | 2 +- .../Material/ShaderGraph/HDShaderPasses.cs | 15 ++++- .../Editor/Material/ShaderGraph/HDTarget.cs | 21 ++++++- .../Material/ShaderGraph/SurfaceSubTarget.cs | 2 +- .../ShaderGraph/Templates/ShaderPass.template | 21 ++++--- .../StackLit/ShaderGraph/StackLitGUI.cs | 54 ------------------ .../StackLit/ShaderGraph/StackLitGUI.cs.meta | 11 ---- .../StackLit/ShaderGraph/StackLitSubTarget.cs | 2 +- .../{Unlit => UIBlocks}/HDShaderGUI.cs | 3 +- .../{Unlit => UIBlocks}/HDShaderGUI.cs.meta | 0 .../LightingShaderGraphGUI.cs} | 13 ++--- .../LightingShaderGraphGUI.cs.meta} | 2 +- .../Material/UIBlocks/SurfaceOptionUIBlock.cs | 19 +++++-- .../Editor/RenderPipeline/HDShaderUtils.cs | 8 +-- 24 files changed, 105 insertions(+), 298 deletions(-) delete mode 100644 com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeGUI.cs delete mode 100644 com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeGUI.cs.meta delete mode 100644 com.unity.render-pipelines.high-definition/Editor/Material/Fabric/ShaderGraph/FabricGUI.cs delete mode 100644 com.unity.render-pipelines.high-definition/Editor/Material/Fabric/ShaderGraph/FabricGUI.cs.meta delete mode 100644 com.unity.render-pipelines.high-definition/Editor/Material/Hair/ShaderGraph/HairGUI.cs delete mode 100644 com.unity.render-pipelines.high-definition/Editor/Material/Lit/ShaderGraph/HDLitGUI.cs.meta delete mode 100644 com.unity.render-pipelines.high-definition/Editor/Material/StackLit/ShaderGraph/StackLitGUI.cs delete mode 100644 com.unity.render-pipelines.high-definition/Editor/Material/StackLit/ShaderGraph/StackLitGUI.cs.meta rename com.unity.render-pipelines.high-definition/Editor/Material/{Unlit => UIBlocks}/HDShaderGUI.cs (97%) rename com.unity.render-pipelines.high-definition/Editor/Material/{Unlit => UIBlocks}/HDShaderGUI.cs.meta (100%) rename com.unity.render-pipelines.high-definition/Editor/Material/{Lit/ShaderGraph/HDLitGUI.cs => UIBlocks/LightingShaderGraphGUI.cs} (91%) rename com.unity.render-pipelines.high-definition/Editor/Material/{Hair/ShaderGraph/HairGUI.cs.meta => UIBlocks/LightingShaderGraphGUI.cs.meta} (83%) diff --git a/com.unity.render-pipelines.high-definition/Editor/AssetProcessors/MaterialPostProcessor.cs b/com.unity.render-pipelines.high-definition/Editor/AssetProcessors/MaterialPostProcessor.cs index 1af4d13b30b..8972fc47c26 100644 --- a/com.unity.render-pipelines.high-definition/Editor/AssetProcessors/MaterialPostProcessor.cs +++ b/com.unity.render-pipelines.high-definition/Editor/AssetProcessors/MaterialPostProcessor.cs @@ -193,6 +193,7 @@ static void OnPostprocessAllAssets(string[] importedAssets, string[] deletedAsse ZWriteForTransparent, RenderQueueUpgrade, ShaderGraphStack, + MoreMaterialSurfaceOptionFromShaderGraph, }; #region Migrations @@ -393,6 +394,32 @@ static void ShaderGraphStack(Material material, HDShaderUtils.ShaderID id) HDShaderUtils.ResetMaterialKeywords(material); } + static void MoreMaterialSurfaceOptionFromShaderGraph(Material material, HDShaderUtils.ShaderID id) + { + if (material.shader.IsShaderGraph()) + { + // Synchronize properties we exposed from SG to the material + ResetFloatProperty(kReceivesSSR); + ResetFloatProperty(kReceivesSSRTransparent); + ResetFloatProperty(kEnableDecals); + ResetFloatProperty(kEnableBlendModePreserveSpecularLighting); + ResetFloatProperty(kTransparentWritingMotionVec); + ResetFloatProperty(kAddPrecomputedVelocity); + ResetFloatProperty(kDepthOffsetEnable); + } + + void ResetFloatProperty(string propName) + { + int propIndex = material.shader.FindPropertyIndex(propName); + if (propIndex == -1) + return; + float defaultValue = material.shader.GetPropertyDefaultFloatValue(propIndex); + material.SetFloat(propName, defaultValue); + } + + HDShaderUtils.ResetMaterialKeywords(material); + } + #region Serialization_API //Methods in this region interact on the serialized material //without filtering on what used shader knows diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeGUI.cs deleted file mode 100644 index dfa1b9a615c..00000000000 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeGUI.cs +++ /dev/null @@ -1,55 +0,0 @@ -using UnityEngine; -using UnityEngine.Rendering; - -// Include material common properties names -using static UnityEngine.Rendering.HighDefinition.HDMaterialProperties; - -namespace UnityEditor.Rendering.HighDefinition -{ - /// - /// GUI for HDRP Eye shader graphs - /// - class EyeGUI : HDShaderGUI - { - // For surface option shader graph we only want all unlit features but alpha clip, back then front rendering and SSR - const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Lit - ^ SurfaceOptionUIBlock.Features.AlphaCutoffThreshold - ^ SurfaceOptionUIBlock.Features.ShowAfterPostProcessPass - | SurfaceOptionUIBlock.Features.ShowDepthOffsetOnly; - - MaterialUIBlockList uiBlocks = new MaterialUIBlockList - { - new SurfaceOptionUIBlock(MaterialUIBlock.Expandable.Base, features: surfaceOptionFeatures), - new ShaderGraphUIBlock(MaterialUIBlock.Expandable.ShaderGraph), - new AdvancedOptionsUIBlock(MaterialUIBlock.Expandable.Advance, ~AdvancedOptionsUIBlock.Features.SpecularOcclusion) - }; - - protected override void OnMaterialGUI(MaterialEditor materialEditor, MaterialProperty[] props) - { - using (var changed = new EditorGUI.ChangeCheckScope()) - { - uiBlocks.OnGUI(materialEditor, props); - ApplyKeywordsAndPassesIfNeeded(changed.changed, uiBlocks.materials); - } - } - - public static void SetupMaterialKeywordsAndPass(Material material) - { - SynchronizeShaderGraphProperties(material); - - BaseLitGUI.SetupBaseLitKeywords(material); - BaseLitGUI.SetupBaseLitMaterialPass(material); - - bool receiveSSR = material.HasProperty(kReceivesSSR) ? material.GetInt(kReceivesSSR) != 0 : false; - bool useSplitLighting = material.HasProperty(kUseSplitLighting) ? material.GetInt(kUseSplitLighting) != 0: false; - BaseLitGUI.SetupStencil(material, receiveSSR, useSplitLighting); - if (material.HasProperty(kAddPrecomputedVelocity)) - { - CoreUtils.SetKeyword(material, "_ADD_PRECOMPUTED_VELOCITY", material.GetInt(kAddPrecomputedVelocity) != 0); - } - - } - - protected override void SetupMaterialKeywordsAndPassInternal(Material material) => SetupMaterialKeywordsAndPass(material); - } -} diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeGUI.cs.meta b/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeGUI.cs.meta deleted file mode 100644 index 84abf7fc806..00000000000 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeGUI.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 1664b7f0f74e9984aa08311658a6f3da -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeSubTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeSubTarget.cs index 38ae87472ed..74fb4ad68af 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeSubTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeSubTarget.cs @@ -25,7 +25,7 @@ sealed partial class EyeSubTarget : LightingSubTarget, ILegacyTarget, IRequiresD }; protected override string[] templateMaterialDirectories => passTemplateMaterialDirectories; - protected override string customInspector => "Rendering.HighDefinition.EyeGUI"; + protected override string customInspector => "Rendering.HighDefinition.LightingShaderGraphGUI"; protected override string subTargetAssetGuid => "864e4e09d6293cf4d98457f740bb3301"; protected override ShaderID shaderID => HDShaderUtils.ShaderID.SG_Eye; protected override string subShaderInclude => "Packages/com.unity.render-pipelines.high-definition/Runtime/Material/Eye/Eye.hlsl"; diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Fabric/ShaderGraph/FabricGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Fabric/ShaderGraph/FabricGUI.cs deleted file mode 100644 index be845bf1d36..00000000000 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Fabric/ShaderGraph/FabricGUI.cs +++ /dev/null @@ -1,54 +0,0 @@ -using UnityEngine; -using UnityEngine.Rendering; - -// Include material common properties names -using static UnityEngine.Rendering.HighDefinition.HDMaterialProperties; - -namespace UnityEditor.Rendering.HighDefinition -{ - /// - /// GUI for HDRP Fabric shader graphs - /// - class FabricGUI : HDShaderGUI - { - // For surface option shader graph we only want all unlit features but alpha clip, back then front rendering and SSR - const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Lit - ^ SurfaceOptionUIBlock.Features.AlphaCutoffThreshold - ^ SurfaceOptionUIBlock.Features.ShowAfterPostProcessPass - | SurfaceOptionUIBlock.Features.ShowDepthOffsetOnly; - - MaterialUIBlockList uiBlocks = new MaterialUIBlockList - { - new SurfaceOptionUIBlock(MaterialUIBlock.Expandable.Base, features: surfaceOptionFeatures), - new ShaderGraphUIBlock(MaterialUIBlock.Expandable.ShaderGraph), - new AdvancedOptionsUIBlock(MaterialUIBlock.Expandable.Advance, ~AdvancedOptionsUIBlock.Features.SpecularOcclusion) - }; - - protected override void OnMaterialGUI(MaterialEditor materialEditor, MaterialProperty[] props) - { - using (var changed = new EditorGUI.ChangeCheckScope()) - { - uiBlocks.OnGUI(materialEditor, props); - ApplyKeywordsAndPassesIfNeeded(changed.changed, uiBlocks.materials); - } - } - - public static void SetupMaterialKeywordsAndPass(Material material) - { - SynchronizeShaderGraphProperties(material); - - BaseLitGUI.SetupBaseLitKeywords(material); - BaseLitGUI.SetupBaseLitMaterialPass(material); - bool receiveSSR = material.GetSurfaceType() == SurfaceType.Opaque ? (material.HasProperty(kReceivesSSR) ? material.GetInt(kReceivesSSR) != 0 : false) - : (material.HasProperty(kReceivesSSRTransparent) ? material.GetInt(kReceivesSSRTransparent) != 0 : false); - bool useSplitLighting = material.HasProperty(kUseSplitLighting) ? material.GetInt(kUseSplitLighting) != 0: false; - BaseLitGUI.SetupStencil(material, receiveSSR, useSplitLighting); - if (material.HasProperty(kAddPrecomputedVelocity)) - { - CoreUtils.SetKeyword(material, "_ADD_PRECOMPUTED_VELOCITY", material.GetInt(kAddPrecomputedVelocity) != 0); - } - } - - protected override void SetupMaterialKeywordsAndPassInternal(Material material) => SetupMaterialKeywordsAndPass(material); - } -} diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Fabric/ShaderGraph/FabricGUI.cs.meta b/com.unity.render-pipelines.high-definition/Editor/Material/Fabric/ShaderGraph/FabricGUI.cs.meta deleted file mode 100644 index eb951f6bc7c..00000000000 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Fabric/ShaderGraph/FabricGUI.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 771870527d8c38a4692f6a237d0b183e -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Fabric/ShaderGraph/FabricSubTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Fabric/ShaderGraph/FabricSubTarget.cs index a0d9edec048..c477cc86ef2 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Fabric/ShaderGraph/FabricSubTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/Fabric/ShaderGraph/FabricSubTarget.cs @@ -26,7 +26,7 @@ sealed partial class FabricSubTarget : LightingSubTarget, ILegacyTarget, IRequir protected override string[] templateMaterialDirectories => passTemplateMaterialDirectories; protected override string subTargetAssetGuid => "74f1a4749bab90d429ac01d094be0aeb"; // FabricSubTarget.cs - protected override string customInspector => "Rendering.HighDefinition.FabricGUI"; + protected override string customInspector => "Rendering.HighDefinition.LightingShaderGraphGUI"; protected override ShaderID shaderID => HDShaderUtils.ShaderID.SG_Fabric; protected override string subShaderInclude => "Packages/com.unity.render-pipelines.high-definition/Runtime/Material/Fabric/Fabric.hlsl"; protected override string raytracingInclude => CoreIncludes.kFabricRaytracing; diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Hair/ShaderGraph/HairGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Hair/ShaderGraph/HairGUI.cs deleted file mode 100644 index 98fc71dd39f..00000000000 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Hair/ShaderGraph/HairGUI.cs +++ /dev/null @@ -1,55 +0,0 @@ -using UnityEngine; -using UnityEngine.Rendering; - -// Include material common properties names -using static UnityEngine.Rendering.HighDefinition.HDMaterialProperties; - -namespace UnityEditor.Rendering.HighDefinition -{ - /// - /// GUI for HDRP Hair shader graphs - /// - class HairGUI : HDShaderGUI - { - // For surface option shader graph we only want all unlit features but alpha clip and back then front rendering - const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Lit - ^ SurfaceOptionUIBlock.Features.AlphaCutoffThreshold - ^ SurfaceOptionUIBlock.Features.ShowAfterPostProcessPass - | SurfaceOptionUIBlock.Features.ShowDepthOffsetOnly; - - MaterialUIBlockList uiBlocks = new MaterialUIBlockList - { - new SurfaceOptionUIBlock(MaterialUIBlock.Expandable.Base, features: surfaceOptionFeatures), - new ShaderGraphUIBlock(MaterialUIBlock.Expandable.ShaderGraph), - new AdvancedOptionsUIBlock(MaterialUIBlock.Expandable.Advance, ~AdvancedOptionsUIBlock.Features.SpecularOcclusion) - }; - - protected override void OnMaterialGUI(MaterialEditor materialEditor, MaterialProperty[] props) - { - using (var changed = new EditorGUI.ChangeCheckScope()) - { - uiBlocks.OnGUI(materialEditor, props); - ApplyKeywordsAndPassesIfNeeded(changed.changed, uiBlocks.materials); - } - } - - public static void SetupMaterialKeywordsAndPass(Material material) - { - SynchronizeShaderGraphProperties(material); - - BaseLitGUI.SetupBaseLitKeywords(material); - BaseLitGUI.SetupBaseLitMaterialPass(material); - bool receiveSSR = material.GetSurfaceType() == SurfaceType.Opaque ? (material.HasProperty(kReceivesSSR) ? material.GetInt(kReceivesSSR) != 0 : false) - : (material.HasProperty(kReceivesSSRTransparent) ? material.GetInt(kReceivesSSRTransparent) != 0 : false); - bool useSplitLighting = material.HasProperty(kUseSplitLighting) ? material.GetInt(kUseSplitLighting) != 0: false; - BaseLitGUI.SetupStencil(material, receiveSSR, useSplitLighting); - if (material.HasProperty(kAddPrecomputedVelocity)) - { - CoreUtils.SetKeyword(material, "_ADD_PRECOMPUTED_VELOCITY", material.GetInt(kAddPrecomputedVelocity) != 0); - } - - } - - protected override void SetupMaterialKeywordsAndPassInternal(Material material) => SetupMaterialKeywordsAndPass(material); - } -} diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Hair/ShaderGraph/HairSubTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Hair/ShaderGraph/HairSubTarget.cs index 85826fa0a43..f7d00bd6919 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Hair/ShaderGraph/HairSubTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/Hair/ShaderGraph/HairSubTarget.cs @@ -25,7 +25,7 @@ sealed partial class HairSubTarget : LightingSubTarget, ILegacyTarget, IRequires }; protected override string[] templateMaterialDirectories => passTemplateMaterialDirectories; - protected override string customInspector => "Rendering.HighDefinition.HairGUI"; + protected override string customInspector => "Rendering.HighDefinition.LightingShaderGraphGUI"; protected override string subTargetAssetGuid => "7e681cc79dd8e6c46ba1e8412d519e26"; // HairSubTarget.cs protected override ShaderID shaderID => HDShaderUtils.ShaderID.SG_Hair; protected override string subShaderInclude => CoreIncludes.kHair; diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Lit/ShaderGraph/HDLitGUI.cs.meta b/com.unity.render-pipelines.high-definition/Editor/Material/Lit/ShaderGraph/HDLitGUI.cs.meta deleted file mode 100644 index 8202caacd28..00000000000 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Lit/ShaderGraph/HDLitGUI.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 9932957a675f26c4f80761ce43958e89 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Lit/ShaderGraph/HDLitSubTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Lit/ShaderGraph/HDLitSubTarget.cs index 21c8e958318..2f17dd7c09f 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Lit/ShaderGraph/HDLitSubTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/Lit/ShaderGraph/HDLitSubTarget.cs @@ -39,7 +39,7 @@ public HDLitData litData }; protected override string[] templateMaterialDirectories => passTemplateMaterialDirectories; - protected override string customInspector => "Rendering.HighDefinition.HDLitGUI"; + protected override string customInspector => "Rendering.HighDefinition.LightingShaderGraphGUI"; protected override string subTargetAssetGuid => "caab952c840878340810cca27417971c"; // HDLitSubTarget.cs protected override string postDecalsInclude => "Packages/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitDecalData.hlsl"; protected override ShaderID shaderID => HDShaderUtils.ShaderID.SG_Lit; diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs index 040a134eba9..64f0f10fd2b 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs @@ -499,6 +499,9 @@ public static PassDescriptor GenerateTransparentDepthPrepass(bool supportLightin { BlockFields.SurfaceDescription.Alpha, HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPrepass, + BlockFields.SurfaceDescription.AlphaClipThreshold, + HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPostpass, + HDBlockFields.SurfaceDescription.AlphaClipThresholdShadow, HDBlockFields.SurfaceDescription.DepthOffset, BlockFields.SurfaceDescription.NormalTS, BlockFields.SurfaceDescription.NormalWS, @@ -519,6 +522,8 @@ DefineCollection GenerateDefines() { var defines = new DefineCollection{ { RayTracingNode.GetRayTracingKeyword(), 0 } }; + defines.Add( CoreKeywordDescriptors.DepthPrepassCutoff,0); + if (supportLighting) defines.Add( new DefineCollection{ { CoreKeywordDescriptors.WriteNormalBuffer, 0 } }); @@ -607,16 +612,24 @@ public static PassDescriptor GenerateTransparentDepthPostpass(bool supportLighti BlockFields.SurfaceDescription.Alpha, HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPostpass, HDBlockFields.SurfaceDescription.DepthOffset, + BlockFields.SurfaceDescription.AlphaClipThreshold, }, // Collections renderStates = GenerateRenderState(), pragmas = CorePragmas.DotsInstancedInV1AndV2, - defines = CoreDefines.ShaderGraphRaytracingHigh, + defines = GenerateDefines(), keywords = CoreKeywords.HDBase, includes = GenerateIncludes(), }; + DefineCollection GenerateDefines() + { + var defines = new DefineCollection{ CoreDefines.ShaderGraphRaytracingHigh }; + defines.Add(CoreKeywordDescriptors.DepthPostpassCutoff, 0); + return defines; + } + IncludeCollection GenerateIncludes() { var includes = new IncludeCollection(); diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs index a80ebab0825..339f392d3ad 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs @@ -873,7 +873,7 @@ static class CoreKeywords { CoreKeywordDescriptors.ShadowsShadowmask }, { CoreKeywordDescriptors.Shadow }, { CoreKeywordDescriptors.Decals }, - { CoreKeywordDescriptors.LightList, new FieldCondition(Fields.SurfaceOpaque, true) }, + { CoreKeywordDescriptors.LightList }, }; public static KeywordCollection RaytracingIndirect = new KeywordCollection @@ -925,7 +925,6 @@ static class CoreDefines public static DefineCollection Forward = new DefineCollection { { CoreKeywordDescriptors.HasLightloop, 1 }, - { CoreKeywordDescriptors.LightList, 1, new FieldCondition(Fields.SurfaceTransparent, true) }, { RayTracingNode.GetRayTracingKeyword(), 0, new FieldCondition(Fields.SurfaceTransparent, true) }, }; } @@ -1355,6 +1354,24 @@ static class CoreKeywordDescriptors definition = KeywordDefinition.ShaderFeature, scope = KeywordScope.Local, }; + + public static KeywordDescriptor DepthPrepassCutoff = new KeywordDescriptor() + { + displayName = "Depth Prepass Cutoff", + referenceName = "CUTOFF_TRANSPARENT_DEPTH_PREPASS", + type = KeywordType.Boolean, + definition = KeywordDefinition.Predefined, + scope = KeywordScope.Global, + }; + + public static KeywordDescriptor DepthPostpassCutoff = new KeywordDescriptor() + { + displayName = "Depth Postpass Cutoff", + referenceName = "CUTOFF_TRANSPARENT_DEPTH_POSTPASS", + type = KeywordType.Boolean, + definition = KeywordDefinition.Predefined, + scope = KeywordScope.Global, + }; } #endregion } diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs index 9927ed984ec..e91a276cc69 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs @@ -376,7 +376,7 @@ public override void ProcessPreviewMaterial(Material material) // No sorting priority for shader graph preview material.renderQueue = (int)HDRenderQueue.ChangeType(systemData.renderingPass, offset: 0, alphaTest: systemData.alphaTest); - HDLitGUI.SetupMaterialKeywordsAndPass(material); + LightingShaderGraphGUI.SetupMaterialKeywordsAndPass(material); } } } diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template index 4f3df7269c2..509036f12ba 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template @@ -149,10 +149,17 @@ Pass // Perform alpha test very early to save performance (a killed pixel will not sample textures) // TODO: split graph evaluation to grab just alpha dependencies first? tricky.. #ifdef _ALPHATEST_ON - $DoAlphaTest: GENERIC_ALPHA_TEST(surfaceDescription.Alpha, surfaceDescription.AlphaClipThreshold); - $DoAlphaTestPrepass: GENERIC_ALPHA_TEST(surfaceDescription.Alpha, surfaceDescription.AlphaClipThresholdDepthPrepass); - $DoAlphaTestPostpass: GENERIC_ALPHA_TEST(surfaceDescription.Alpha, surfaceDescription.AlphaClipThresholdDepthPostpass); - $DoAlphaTestShadow: GENERIC_ALPHA_TEST(surfaceDescription.Alpha, surfaceDescription.AlphaClipThresholdShadow); + float alphaCutoff = surfaceDescription.AlphaClipThreshold; + $DoAlphaTestPrepass: alphaCutoff = surfaceDescription.AlphaClipThresholdDepthPrepass; + $DoAlphaTestPostpass: alphaCutoff = surfaceDescription.AlphaClipThresholdDepthPostpass; + + #if SHADERPASS == SHADERPASS_SHADOWS + float alphaTestShadow = alphaCutoff; + $DoAlphaTestShadow: alphaTestShadow = _UseShadowThreshold ? surfaceDescription.AlphaClipThresholdShadow : alphaCutoff; + GENERIC_ALPHA_TEST(surfaceDescription.Alpha, alphaTestShadow); + #else + GENERIC_ALPHA_TEST(surfaceDescription.Alpha, alphaCutoff); + #endif #endif #if !defined(SHADER_STAGE_RAY_TRACING) && _DEPTHOFFSET_ON @@ -184,10 +191,8 @@ Pass #ifdef _ALPHATEST_ON // Used for sharpening by alpha to mask - $DoAlphaTest: builtinData.alphaClipTreshold = surfaceDescription.AlphaClipThreshold; - $DoAlphaTestPrepass: builtinData.alphaClipTreshold = surfaceDescription.AlphaClipThresholdDepthPrepass; - $DoAlphaTestPostpass: builtinData.alphaClipTreshold = surfaceDescription.AlphaClipThresholdDepthPostpass; - $DoAlphaTestShadow: builtinData.alphaClipTreshold = surfaceDescription.AlphaClipThresholdShadow; + builtinData.alphaClipTreshold = alphaCutoff; + $DoAlphaTestShadow: builtinData.alphaClipTreshold = _UseShadowThreshold ? surfaceDescription.AlphaClipThresholdShadow : alphaCutoff; #endif // override sampleBakedGI - not used by Unlit diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/StackLit/ShaderGraph/StackLitGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/StackLit/ShaderGraph/StackLitGUI.cs deleted file mode 100644 index bc8d22ccb2b..00000000000 --- a/com.unity.render-pipelines.high-definition/Editor/Material/StackLit/ShaderGraph/StackLitGUI.cs +++ /dev/null @@ -1,54 +0,0 @@ -using UnityEngine; -using UnityEngine.Rendering; - -// Include material common properties names -using static UnityEngine.Rendering.HighDefinition.HDMaterialProperties; - -namespace UnityEditor.Rendering.HighDefinition -{ - /// - /// GUI for HDRP StackLit shader graphs - /// - class StackLitGUI : HDShaderGUI - { - // For surface option shader graph we only want all unlit features but alpha clip and back then front rendering - const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Lit - ^ SurfaceOptionUIBlock.Features.AlphaCutoffThreshold - ^ SurfaceOptionUIBlock.Features.ShowAfterPostProcessPass - | SurfaceOptionUIBlock.Features.ShowDepthOffsetOnly; - - MaterialUIBlockList uiBlocks = new MaterialUIBlockList - { - new SurfaceOptionUIBlock(MaterialUIBlock.Expandable.Base, features: surfaceOptionFeatures), - new ShaderGraphUIBlock(MaterialUIBlock.Expandable.ShaderGraph), - new AdvancedOptionsUIBlock(MaterialUIBlock.Expandable.Advance, ~AdvancedOptionsUIBlock.Features.SpecularOcclusion) - }; - - protected override void OnMaterialGUI(MaterialEditor materialEditor, MaterialProperty[] props) - { - using (var changed = new EditorGUI.ChangeCheckScope()) - { - uiBlocks.OnGUI(materialEditor, props); - ApplyKeywordsAndPassesIfNeeded(changed.changed, uiBlocks.materials); - } - } - - public static void SetupMaterialKeywordsAndPass(Material material) - { - SynchronizeShaderGraphProperties(material); - - BaseLitGUI.SetupBaseLitKeywords(material); - BaseLitGUI.SetupBaseLitMaterialPass(material); - bool receiveSSR = material.GetSurfaceType() == SurfaceType.Opaque ? (material.HasProperty(kReceivesSSR) ? material.GetInt(kReceivesSSR) != 0 : false) - : (material.HasProperty(kReceivesSSRTransparent) ? material.GetInt(kReceivesSSRTransparent) != 0 : false); - bool useSplitLighting = material.HasProperty(kUseSplitLighting) ? material.GetInt(kUseSplitLighting) != 0: false; - BaseLitGUI.SetupStencil(material, receiveSSR, useSplitLighting); - if (material.HasProperty(kAddPrecomputedVelocity)) - { - CoreUtils.SetKeyword(material, "_ADD_PRECOMPUTED_VELOCITY", material.GetInt(kAddPrecomputedVelocity) != 0); - } - } - - protected override void SetupMaterialKeywordsAndPassInternal(Material material) => SetupMaterialKeywordsAndPass(material); - } -} diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/StackLit/ShaderGraph/StackLitGUI.cs.meta b/com.unity.render-pipelines.high-definition/Editor/Material/StackLit/ShaderGraph/StackLitGUI.cs.meta deleted file mode 100644 index a4095e8dd47..00000000000 --- a/com.unity.render-pipelines.high-definition/Editor/Material/StackLit/ShaderGraph/StackLitGUI.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: afc8242902cdb3b45be946c5b8a09c19 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/StackLit/ShaderGraph/StackLitSubTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/StackLit/ShaderGraph/StackLitSubTarget.cs index 2ab81d5ea2b..ccdbfeea445 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/StackLit/ShaderGraph/StackLitSubTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/StackLit/ShaderGraph/StackLitSubTarget.cs @@ -28,7 +28,7 @@ sealed partial class StackLitSubTarget : LightingSubTarget, ILegacyTarget, IRequ }; protected override string[] templateMaterialDirectories => passTemplateMaterialDirectories; - protected override string customInspector => "Rendering.HighDefinition.StackLitGUI"; + protected override string customInspector => "Rendering.HighDefinition.LightingShaderGraphGUI"; protected override string subTargetAssetGuid => "5f7ba34a143e67647b202a662748dae3"; // StackLitSubTarget.cs protected override ShaderID shaderID => HDShaderUtils.ShaderID.SG_StackLit; protected override FieldDescriptor subShaderField => new FieldDescriptor(kSubShader, "StackLit SubShader", ""); diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/HDShaderGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/HDShaderGUI.cs similarity index 97% rename from com.unity.render-pipelines.high-definition/Editor/Material/Unlit/HDShaderGUI.cs rename to com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/HDShaderGUI.cs index d0c45b15c4f..c3ad656bd62 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/HDShaderGUI.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/HDShaderGUI.cs @@ -90,8 +90,7 @@ protected static void ResetMaterialCustomRenderQueue(Material material) } readonly static string[] floatPropertiesToSynchronize = { - "_UseShadowThreshold", kUseSplitLighting, - kTransparentDepthPrepassEnable, kTransparentDepthPostpassEnable + kUseSplitLighting, kTransparentBackfaceEnable }; protected static void SynchronizeShaderGraphProperties(Material material) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/HDShaderGUI.cs.meta b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/HDShaderGUI.cs.meta similarity index 100% rename from com.unity.render-pipelines.high-definition/Editor/Material/Unlit/HDShaderGUI.cs.meta rename to com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/HDShaderGUI.cs.meta diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Lit/ShaderGraph/HDLitGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/LightingShaderGraphGUI.cs similarity index 91% rename from com.unity.render-pipelines.high-definition/Editor/Material/Lit/ShaderGraph/HDLitGUI.cs rename to com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/LightingShaderGraphGUI.cs index fa9b11c221f..3f577ddb419 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Lit/ShaderGraph/HDLitGUI.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/LightingShaderGraphGUI.cs @@ -7,13 +7,13 @@ namespace UnityEditor.Rendering.HighDefinition { /// - /// GUI for HDRP Lit shader graphs + /// Common GUI for Lit ShaderGraphs /// - class HDLitGUI : HDShaderGUI + class LightingShaderGraphGUI : HDShaderGUI { // For surface option shader graph we only want all unlit features but alpha clip and back then front rendering const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Lit - ^ SurfaceOptionUIBlock.Features.AlphaCutoffThreshold + ^ SurfaceOptionUIBlock.Features.ShowAfterPostProcessPass | SurfaceOptionUIBlock.Features.ShowDepthOffsetOnly; MaterialUIBlockList uiBlocks = new MaterialUIBlockList @@ -44,14 +44,11 @@ public static void SetupMaterialKeywordsAndPass(Material material) receiveSSR = material.HasProperty(kReceivesSSRTransparent) ? material.GetFloat(kReceivesSSRTransparent) != 0 : false; else receiveSSR = material.HasProperty(kReceivesSSR) ? material.GetFloat(kReceivesSSR) != 0 : false; - - bool useSplitLighting = material.HasProperty(kUseSplitLighting) ? material.GetInt(kUseSplitLighting) != 0 : false; + bool useSplitLighting = material.HasProperty(kUseSplitLighting) ? material.GetInt(kUseSplitLighting) != 0: false; BaseLitGUI.SetupStencil(material, receiveSSR, useSplitLighting); + if (material.HasProperty(kAddPrecomputedVelocity)) - { CoreUtils.SetKeyword(material, "_ADD_PRECOMPUTED_VELOCITY", material.GetInt(kAddPrecomputedVelocity) != 0); - } - } protected override void SetupMaterialKeywordsAndPassInternal(Material material) => SetupMaterialKeywordsAndPass(material); diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Hair/ShaderGraph/HairGUI.cs.meta b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/LightingShaderGraphGUI.cs.meta similarity index 83% rename from com.unity.render-pipelines.high-definition/Editor/Material/Hair/ShaderGraph/HairGUI.cs.meta rename to com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/LightingShaderGraphGUI.cs.meta index 9c88e31c392..51427843e30 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Hair/ShaderGraph/HairGUI.cs.meta +++ b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/LightingShaderGraphGUI.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 246699d388f28e94eabfefbb894d65bd +guid: bf12bd036361b6c418e28ca948dc860f MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs index 6188b4740cf..eef6494b5bb 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs @@ -3,6 +3,7 @@ using UnityEngine; using UnityEngine.Rendering.HighDefinition; using UnityEngine.Rendering; +using UnityEditor.ShaderGraph; // Include material common properties names using static UnityEngine.Rendering.HighDefinition.HDMaterialProperties; @@ -402,7 +403,13 @@ void DrawAlphaCutoffGUI() if ((m_Features & Features.AlphaCutoffThreshold) != 0) { - if (useShadowThreshold != null) + // For shadergraphs we show this slider only if the feature is enabled in the shader settings. + bool showUseShadowThreshold = useShadowThreshold != null; + var shader = materials[0].shader; + if (showUseShadowThreshold && shader.IsShaderGraph()) + showUseShadowThreshold = shader.GetPropertyDefaultFloatValue(shader.FindPropertyIndex(kUseShadowThreshold)) > 0.0f; + + if (showUseShadowThreshold) materialEditor.ShaderProperty(useShadowThreshold, Styles.useShadowThresholdText); if (alphaCutoffShadow != null && useShadowThreshold != null && useShadowThreshold.floatValue == 1.0f && (m_Features & Features.AlphaCutoffShadowThreshold) != 0) @@ -423,6 +430,7 @@ void DrawAlphaCutoffGUI() // This allow to get a better sorting (with prepass), better shadow (better silhouettes fidelity) etc... if (surfaceTypeValue == SurfaceType.Transparent) { + // TODO: check if passes exists if (transparentDepthPrepassEnable != null && transparentDepthPrepassEnable.floatValue == 1.0f) { if (alphaCutoffPrepass != null) @@ -512,15 +520,18 @@ void DrawSurfaceGUI() if (enableFogOnTransparent != null) materialEditor.ShaderProperty(enableFogOnTransparent, Styles.enableTransparentFogText); - if (transparentBackfaceEnable != null) + bool shaderHasBackThenFrontPass = materials[0].FindPass(HDShaderPassNames.s_TransparentBackfaceStr) != -1; + if (shaderHasBackThenFrontPass && transparentBackfaceEnable != null) materialEditor.ShaderProperty(transparentBackfaceEnable, Styles.transparentBackfaceEnableText); if ((m_Features & Features.ShowPrePassAndPostPass) != 0) { - if (transparentDepthPrepassEnable != null) + bool shaderHasDepthPrePass = materials[0].FindPass(HDShaderPassNames.s_TransparentDepthPrepassStr) != -1; + if (shaderHasDepthPrePass && transparentDepthPrepassEnable != null) materialEditor.ShaderProperty(transparentDepthPrepassEnable, Styles.transparentDepthPrepassEnableText); - if (transparentDepthPostpassEnable != null) + bool shaderHasDepthPostPass = materials[0].FindPass(HDShaderPassNames.s_TransparentDepthPostpassStr) != -1; + if (shaderHasDepthPostPass && transparentDepthPostpassEnable != null) materialEditor.ShaderProperty(transparentDepthPostpassEnable, Styles.transparentDepthPostpassEnableText); } diff --git a/com.unity.render-pipelines.high-definition/Editor/RenderPipeline/HDShaderUtils.cs b/com.unity.render-pipelines.high-definition/Editor/RenderPipeline/HDShaderUtils.cs index 320dfbba9e9..69c21aa42e1 100644 --- a/com.unity.render-pipelines.high-definition/Editor/RenderPipeline/HDShaderUtils.cs +++ b/com.unity.render-pipelines.high-definition/Editor/RenderPipeline/HDShaderUtils.cs @@ -64,10 +64,10 @@ internal enum ShaderID { ShaderID.TerrainLit, TerrainLitGUI.SetupMaterialKeywordsAndPass }, { ShaderID.AxF, AxFGUI.SetupMaterialKeywordsAndPass }, { ShaderID.SG_Unlit, HDUnlitGUI.SetupMaterialKeywordsAndPass }, - { ShaderID.SG_Lit, HDLitGUI.SetupMaterialKeywordsAndPass }, - { ShaderID.SG_Hair, HairGUI.SetupMaterialKeywordsAndPass }, - { ShaderID.SG_Fabric, FabricGUI.SetupMaterialKeywordsAndPass }, - { ShaderID.SG_StackLit, StackLitGUI.SetupMaterialKeywordsAndPass }, + { ShaderID.SG_Lit, LightingShaderGraphGUI.SetupMaterialKeywordsAndPass }, + { ShaderID.SG_Hair, LightingShaderGraphGUI.SetupMaterialKeywordsAndPass }, + { ShaderID.SG_Fabric, LightingShaderGraphGUI.SetupMaterialKeywordsAndPass }, + { ShaderID.SG_StackLit, LightingShaderGraphGUI.SetupMaterialKeywordsAndPass }, // no entry for ShaderID.SG_Decal // no entry for ShaderID.SG_Eye }; From 6786384b932665e867b9cdb6d9c667624045758f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Leli=C3=A8vre?= Date: Thu, 18 Jun 2020 20:07:16 +0200 Subject: [PATCH 05/32] Trying to fix transparent SSR bug --- .../Editor/Material/ShaderGraph/HDFields.cs | 1 - .../Material/ShaderGraph/HDShaderPasses.cs | 17 ++++++++++++----- .../Material/ShaderGraph/SurfaceSubTarget.cs | 3 --- .../Editor/Material/UIBlocks/HDShaderGUI.cs | 8 ++++++++ 4 files changed, 20 insertions(+), 9 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDFields.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDFields.cs index 47b32791bbd..f90c7b470d2 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDFields.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDFields.cs @@ -48,7 +48,6 @@ static class HDFields public static FieldDescriptor SpecularOcclusionCustom = new FieldDescriptor(string.Empty, "SpecularOcclusionCustom", "_SPECULAR_OCCLUSION_CUSTOM 1"); // Misc - public static FieldDescriptor DoAlphaTest = new FieldDescriptor(string.Empty, "DoAlphaTest", "_DO_ALPHA_TEST 1"); public static FieldDescriptor DoAlphaTestShadow = new FieldDescriptor(string.Empty, "DoAlphaTestShadow", "_DO_ALPHA_TEST_SHADOW 1"); public static FieldDescriptor DoAlphaTestPrepass = new FieldDescriptor(string.Empty, "DoAlphaTestPrepass", "_DO_ALPHA_TEST_PREPASS 1"); public static FieldDescriptor DoAlphaTestPostpass = new FieldDescriptor(string.Empty, "DoAlphaTestPostpass", "_DO_ALPHA_TEST_POSTPASS 1"); diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs index 64f0f10fd2b..4e667fcaf6e 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs @@ -514,7 +514,7 @@ public static PassDescriptor GenerateTransparentDepthPrepass(bool supportLightin renderStates = GenerateRenderState(), pragmas = CorePragmas.DotsInstancedInV1AndV2, defines = GenerateDefines(), - keywords = CoreKeywords.HDBase, + keywords = GenerateKeywords(), includes = GenerateIncludes(), }; @@ -522,14 +522,21 @@ DefineCollection GenerateDefines() { var defines = new DefineCollection{ { RayTracingNode.GetRayTracingKeyword(), 0 } }; - defines.Add( CoreKeywordDescriptors.DepthPrepassCutoff,0); - - if (supportLighting) - defines.Add( new DefineCollection{ { CoreKeywordDescriptors.WriteNormalBuffer, 0 } }); + defines.Add(CoreKeywordDescriptors.DepthPrepassCutoff, 0); return defines; } + KeywordCollection GenerateKeywords() + { + KeywordCollection keywords = new KeywordCollection { CoreKeywords.HDBase }; + + if (supportLighting) + keywords.Add(CoreKeywordDescriptors.WriteNormalBuffer); + + return keywords; + } + RenderStateCollection GenerateRenderState() { var renderState = new RenderStateCollection diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs index e91a276cc69..2c9329126ad 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs @@ -220,9 +220,6 @@ public override void GetFields(ref TargetFieldContext context) bool isShadowPass = context.pass.lightMode == "ShadowCaster"; bool isTransparentDepthPrepass = context.pass.lightMode == "TransparentDepthPrepass"; bool isTransparentDepthPostpass = context.pass.lightMode == "TransparentDepthPostpass"; - context.AddField(HDFields.DoAlphaTest, systemData.alphaTest && (context.pass.validPixelBlocks.Contains(BlockFields.SurfaceDescription.AlphaClipThreshold) && - !(isShadowPass && builtinData.alphaTestShadow && context.pass.validPixelBlocks.Contains(HDBlockFields.SurfaceDescription.AlphaClipThresholdShadow)) - )); // Shadow use the specific alpha test only if user have ask to override it context.AddField(HDFields.DoAlphaTestShadow, systemData.alphaTest && builtinData.alphaTestShadow && isShadowPass && diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/HDShaderGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/HDShaderGUI.cs index c3ad656bd62..dd39cb40d5b 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/HDShaderGUI.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/HDShaderGUI.cs @@ -99,6 +99,14 @@ protected static void SynchronizeShaderGraphProperties(Material material) foreach (var floatToSync in floatPropertiesToSynchronize) if (material.HasProperty(floatToSync)) material.SetFloat(floatToSync, defaultProperties.GetFloat(floatToSync)); + + // Reset properties that are not enabled in the shader graph: + if (defaultProperties.HasProperty("_AlphaCutoffShadow") && defaultProperties.GetFloat("_AlphaCutoffShadow") == 0.0f) + material.SetFloat("_AlphaCutoffShadow", 0.0f); + if (defaultProperties.HasProperty(kTransparentWritingMotionVec) && defaultProperties.GetFloat(kTransparentWritingMotionVec) == 0.0f) + material.SetFloat(kTransparentWritingMotionVec, 0.0f); + + CoreUtils.Destroy(defaultProperties); defaultProperties = null; } } From 5e9f2909ef060b2e2eb558590b58d4bb731daff3 Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 21 Jun 2020 17:57:24 +0200 Subject: [PATCH 06/32] Bump HDRP project settings version to 5 so yamato can run --- .../HDRP_HybridTests/ProjectSettings/HDRPProjectSettings.asset | 2 +- .../ProjectSettings/HDRPProjectSettings.asset | 2 +- .../HDRP_RuntimeTests/ProjectSettings/HDRPProjectSettings.asset | 2 +- .../HDRP_Tests/ProjectSettings/HDRPProjectSettings.asset | 2 +- .../SRP_SmokeTest/ProjectSettings/HDRPProjectSettings.asset | 2 +- .../ProjectSettings/HDRPProjectSettings.asset | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/TestProjects/HDRP_HybridTests/ProjectSettings/HDRPProjectSettings.asset b/TestProjects/HDRP_HybridTests/ProjectSettings/HDRPProjectSettings.asset index 790b9e50395..4a8969d4d38 100644 --- a/TestProjects/HDRP_HybridTests/ProjectSettings/HDRPProjectSettings.asset +++ b/TestProjects/HDRP_HybridTests/ProjectSettings/HDRPProjectSettings.asset @@ -22,4 +22,4 @@ MonoBehaviour: m_WizardActiveTab: 0 m_WizardNeedRestartAfterChangingToDX12: 0 m_WizardNeedToRunFixAllAgainAfterDomainReload: 0 - m_LastMaterialVersion: 4 + m_LastMaterialVersion: 5 diff --git a/TestProjects/HDRP_PerformanceTests/ProjectSettings/HDRPProjectSettings.asset b/TestProjects/HDRP_PerformanceTests/ProjectSettings/HDRPProjectSettings.asset index 474a353f44b..396b7a34b6a 100644 --- a/TestProjects/HDRP_PerformanceTests/ProjectSettings/HDRPProjectSettings.asset +++ b/TestProjects/HDRP_PerformanceTests/ProjectSettings/HDRPProjectSettings.asset @@ -22,4 +22,4 @@ MonoBehaviour: m_WizardActiveTab: 0 m_WizardNeedRestartAfterChangingToDX12: 0 m_WizardNeedToRunFixAllAgainAfterDomainReload: 0 - m_LastMaterialVersion: 4 + m_LastMaterialVersion: 5 diff --git a/TestProjects/HDRP_RuntimeTests/ProjectSettings/HDRPProjectSettings.asset b/TestProjects/HDRP_RuntimeTests/ProjectSettings/HDRPProjectSettings.asset index c3b1e121026..d1b2277884b 100644 --- a/TestProjects/HDRP_RuntimeTests/ProjectSettings/HDRPProjectSettings.asset +++ b/TestProjects/HDRP_RuntimeTests/ProjectSettings/HDRPProjectSettings.asset @@ -22,4 +22,4 @@ MonoBehaviour: m_WizardActiveTab: 0 m_WizardNeedRestartAfterChangingToDX12: 0 m_WizardNeedToRunFixAllAgainAfterDomainReload: 0 - m_LastMaterialVersion: 4 + m_LastMaterialVersion: 5 diff --git a/TestProjects/HDRP_Tests/ProjectSettings/HDRPProjectSettings.asset b/TestProjects/HDRP_Tests/ProjectSettings/HDRPProjectSettings.asset index 474a353f44b..396b7a34b6a 100644 --- a/TestProjects/HDRP_Tests/ProjectSettings/HDRPProjectSettings.asset +++ b/TestProjects/HDRP_Tests/ProjectSettings/HDRPProjectSettings.asset @@ -22,4 +22,4 @@ MonoBehaviour: m_WizardActiveTab: 0 m_WizardNeedRestartAfterChangingToDX12: 0 m_WizardNeedToRunFixAllAgainAfterDomainReload: 0 - m_LastMaterialVersion: 4 + m_LastMaterialVersion: 5 diff --git a/TestProjects/SRP_SmokeTest/ProjectSettings/HDRPProjectSettings.asset b/TestProjects/SRP_SmokeTest/ProjectSettings/HDRPProjectSettings.asset index 1bcee60c90c..3d732e41574 100644 --- a/TestProjects/SRP_SmokeTest/ProjectSettings/HDRPProjectSettings.asset +++ b/TestProjects/SRP_SmokeTest/ProjectSettings/HDRPProjectSettings.asset @@ -18,4 +18,4 @@ MonoBehaviour: m_ProjectSettingFolderPath: HDRPDefaultResources m_WizardPopupAtStart: 0 m_WizardActiveTab: 0 - m_LastMaterialVersion: 4 + m_LastMaterialVersion: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/ProjectSettings/HDRPProjectSettings.asset b/TestProjects/VisualEffectGraph_HDRP/ProjectSettings/HDRPProjectSettings.asset index 1a57960fd77..8e073ba2a69 100644 --- a/TestProjects/VisualEffectGraph_HDRP/ProjectSettings/HDRPProjectSettings.asset +++ b/TestProjects/VisualEffectGraph_HDRP/ProjectSettings/HDRPProjectSettings.asset @@ -21,4 +21,4 @@ MonoBehaviour: m_WizardActiveTab: 0 m_WizardNeedRestartAfterChangingToDX12: 0 m_WizardNeedToRunFixAllAgainAfterDomainReload: 0 - m_LastMaterialVersion: 4 + m_LastMaterialVersion: 5 From 3dea6187dd813c3745185c0c400a3624e1b8b730 Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 21 Jun 2020 18:57:58 +0200 Subject: [PATCH 07/32] Cleanup of alpha test + alpha mask + fix shader warning --- .../ShaderGraph/Templates/ShaderPass.template | 11 ++++------- .../Runtime/Material/AxF/AxFData.hlsl | 6 +++--- .../Runtime/Material/Decal/DecalData.hlsl | 4 ++-- .../Runtime/Material/Lit/LitData.hlsl | 6 +++--- 4 files changed, 12 insertions(+), 15 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template index 509036f12ba..d39399c194b 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template @@ -154,12 +154,10 @@ Pass $DoAlphaTestPostpass: alphaCutoff = surfaceDescription.AlphaClipThresholdDepthPostpass; #if SHADERPASS == SHADERPASS_SHADOWS - float alphaTestShadow = alphaCutoff; - $DoAlphaTestShadow: alphaTestShadow = _UseShadowThreshold ? surfaceDescription.AlphaClipThresholdShadow : alphaCutoff; - GENERIC_ALPHA_TEST(surfaceDescription.Alpha, alphaTestShadow); - #else - GENERIC_ALPHA_TEST(surfaceDescription.Alpha, alphaCutoff); + alphaCutoff = _UseShadowThreshold ? surfaceDescription.AlphaClipThresholdShadow : alphaCutoff; #endif + + GENERIC_ALPHA_TEST(surfaceDescription.Alpha, alphaCutoff); #endif #if !defined(SHADER_STAGE_RAY_TRACING) && _DEPTHOFFSET_ON @@ -190,9 +188,8 @@ Pass #endif // SHADER_UNLIT #ifdef _ALPHATEST_ON - // Used for sharpening by alpha to mask + // Used for sharpening by alpha to mask - Alpha to covertage is only used with depth only and forward pass (no shadow pass, no transparent pass) builtinData.alphaClipTreshold = alphaCutoff; - $DoAlphaTestShadow: builtinData.alphaClipTreshold = _UseShadowThreshold ? surfaceDescription.AlphaClipThresholdShadow : alphaCutoff; #endif // override sampleBakedGI - not used by Unlit diff --git a/com.unity.render-pipelines.high-definition/Runtime/Material/AxF/AxFData.hlsl b/com.unity.render-pipelines.high-definition/Runtime/Material/AxF/AxFData.hlsl index 5a58b7cdeed..8236fea5d4b 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Material/AxF/AxFData.hlsl +++ b/com.unity.render-pipelines.high-definition/Runtime/Material/AxF/AxFData.hlsl @@ -509,10 +509,10 @@ void GetSurfaceAndBuiltinData(FragInputs input, float3 V, inout PositionInputs p float alphaCutoff = _AlphaCutoff; #if SHADERPASS == SHADERPASS_SHADOWS - GENERIC_ALPHA_TEST(alpha, _UseShadowThreshold ? _AlphaCutoffShadow : alphaCutoff); - #else - GENERIC_ALPHA_TEST(alpha, alphaCutoff); + alphaCutoff = _UseShadowThreshold ? surfaceDescription.AlphaClipThresholdShadow : alphaCutoff; #endif + + GENERIC_ALPHA_TEST(alpha, alphaCutoff); #endif surfaceData.ambientOcclusion = 1.0; diff --git a/com.unity.render-pipelines.high-definition/Runtime/Material/Decal/DecalData.hlsl b/com.unity.render-pipelines.high-definition/Runtime/Material/Decal/DecalData.hlsl index a71afd0b49a..f74301959f3 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Material/Decal/DecalData.hlsl +++ b/com.unity.render-pipelines.high-definition/Runtime/Material/Decal/DecalData.hlsl @@ -23,9 +23,9 @@ void GetSurfaceData(FragInputs input, float3 V, PositionInputs posInput, out Dec ZERO_INITIALIZE(DecalSurfaceData, surfaceData); surfaceData.baseColor = _BaseColor; - surfaceData.emissive = _EmissiveColor * fadeFactor; + surfaceData.emissive = _EmissiveColor.rgb * fadeFactor; #ifdef _EMISSIVEMAP - surfaceData.emissive *= SAMPLE_TEXTURE2D(_EmissiveColorMap, sampler_EmissiveColorMap, texCoords); + surfaceData.emissive *= SAMPLE_TEXTURE2D(_EmissiveColorMap, sampler_EmissiveColorMap, texCoords).rgb; #endif // Inverse pre-expose using _EmissiveExposureWeight weight diff --git a/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl b/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl index 5d1d048151e..7cceb990e85 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl +++ b/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl @@ -226,10 +226,10 @@ void GetSurfaceAndBuiltinData(FragInputs input, float3 V, inout PositionInputs p #endif #if SHADERPASS == SHADERPASS_SHADOWS - GENERIC_ALPHA_TEST(alphaValue, _UseShadowThreshold ? _AlphaCutoffShadow : alphaCutoff); - #else - GENERIC_ALPHA_TEST(alphaValue, alphaCutoff); + alphaCutoff = _UseShadowThreshold ? _AlphaCutoffShadow : alphaCutoff; #endif + + GENERIC_ALPHA_TEST(alphaValue, alphaCutoff); #endif // We perform the conversion to world of the normalTS outside of the GetSurfaceData From c680ccd1e99d46eb67e1f63f94949c161a4d4493 Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 21 Jun 2020 19:58:09 +0200 Subject: [PATCH 08/32] Fix AlphaTestShadow: issue --- .../Editor/Material/ShaderGraph/Templates/ShaderPass.template | 2 +- .../Runtime/Material/AxF/AxFData.hlsl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template index d39399c194b..0ceaa95825b 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template @@ -154,7 +154,7 @@ Pass $DoAlphaTestPostpass: alphaCutoff = surfaceDescription.AlphaClipThresholdDepthPostpass; #if SHADERPASS == SHADERPASS_SHADOWS - alphaCutoff = _UseShadowThreshold ? surfaceDescription.AlphaClipThresholdShadow : alphaCutoff; + $DoAlphaTestShadow: alphaCutoff = _UseShadowThreshold ? surfaceDescription.AlphaClipThresholdShadow : alphaCutoff; #endif GENERIC_ALPHA_TEST(surfaceDescription.Alpha, alphaCutoff); diff --git a/com.unity.render-pipelines.high-definition/Runtime/Material/AxF/AxFData.hlsl b/com.unity.render-pipelines.high-definition/Runtime/Material/AxF/AxFData.hlsl index 8236fea5d4b..dd7d19525a3 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Material/AxF/AxFData.hlsl +++ b/com.unity.render-pipelines.high-definition/Runtime/Material/AxF/AxFData.hlsl @@ -509,7 +509,7 @@ void GetSurfaceAndBuiltinData(FragInputs input, float3 V, inout PositionInputs p float alphaCutoff = _AlphaCutoff; #if SHADERPASS == SHADERPASS_SHADOWS - alphaCutoff = _UseShadowThreshold ? surfaceDescription.AlphaClipThresholdShadow : alphaCutoff; + alphaCutoff = _UseShadowThreshold ? _AlphaCutoffShadow : alphaCutoff; #endif GENERIC_ALPHA_TEST(alpha, alphaCutoff); From 1ec48d8ff069a34f8806c4e31efd1db216bf6eb4 Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sat, 27 Jun 2020 16:16:36 +0200 Subject: [PATCH 09/32] Fix various code (PS4 - >playstation) + Hidde colorPyramid --- .../Editor/Material/ShaderGraph/HDShaderPasses.cs | 1 - .../Runtime/Compositor/Shaders/AlphaInjection.shader | 4 ++-- .../Runtime/Compositor/Shaders/ChromaKeying.shader | 4 ++-- .../Runtime/Compositor/Shaders/CustomClear.shader | 2 +- .../Runtime/RenderPipeline/RenderPass/ColorPyramidPS.shader | 2 +- .../RenderPass/CustomPass/CustomPassUtils.shader | 2 +- .../Material/DefaultHDDecalMaterial.mat | 2 +- .../RenderPipelineResources/Material/DefaultHDMaterial.mat | 3 ++- .../Material/DefaultHDMirrorMaterial.mat | 3 ++- .../Material/DefaultHDParticleMaterial.mat | 3 ++- .../Material/DefaultHDTerrainMaterial.mat | 2 +- 11 files changed, 15 insertions(+), 13 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs index 4e667fcaf6e..d5e57daa05d 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs @@ -500,7 +500,6 @@ public static PassDescriptor GenerateTransparentDepthPrepass(bool supportLightin BlockFields.SurfaceDescription.Alpha, HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPrepass, BlockFields.SurfaceDescription.AlphaClipThreshold, - HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPostpass, HDBlockFields.SurfaceDescription.AlphaClipThresholdShadow, HDBlockFields.SurfaceDescription.DepthOffset, BlockFields.SurfaceDescription.NormalTS, diff --git a/com.unity.render-pipelines.high-definition/Runtime/Compositor/Shaders/AlphaInjection.shader b/com.unity.render-pipelines.high-definition/Runtime/Compositor/Shaders/AlphaInjection.shader index f91612067df..90ac3d581ec 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Compositor/Shaders/AlphaInjection.shader +++ b/com.unity.render-pipelines.high-definition/Runtime/Compositor/Shaders/AlphaInjection.shader @@ -1,9 +1,9 @@ -Shader "Hidden/Shader/AlphaInjection" +Shader "Hidden/Shader/AlphaInjection" { HLSLINCLUDE #pragma target 4.5 - #pragma only_renderers d3d11 ps4 xboxone vulkan metal switch + #pragma only_renderers d3d11 playstation xboxone vulkan metal switch #include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Common.hlsl" #include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Color.hlsl" diff --git a/com.unity.render-pipelines.high-definition/Runtime/Compositor/Shaders/ChromaKeying.shader b/com.unity.render-pipelines.high-definition/Runtime/Compositor/Shaders/ChromaKeying.shader index 5f865aabd74..1f2a41392e0 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Compositor/Shaders/ChromaKeying.shader +++ b/com.unity.render-pipelines.high-definition/Runtime/Compositor/Shaders/ChromaKeying.shader @@ -1,9 +1,9 @@ -Shader "Hidden/Shader/ChromaKeying" +Shader "Hidden/Shader/ChromaKeying" { HLSLINCLUDE #pragma target 4.5 - #pragma only_renderers d3d11 ps4 xboxone vulkan metal switch + #pragma only_renderers d3d11 playstation xboxone vulkan metal switch #include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Common.hlsl" #include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Color.hlsl" diff --git a/com.unity.render-pipelines.high-definition/Runtime/Compositor/Shaders/CustomClear.shader b/com.unity.render-pipelines.high-definition/Runtime/Compositor/Shaders/CustomClear.shader index e3c59cc1307..85feaa9ec27 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Compositor/Shaders/CustomClear.shader +++ b/com.unity.render-pipelines.high-definition/Runtime/Compositor/Shaders/CustomClear.shader @@ -3,7 +3,7 @@ Shader "Hidden/HDRP/CustomClear" HLSLINCLUDE #pragma target 4.5 - #pragma only_renderers d3d11 ps4 xboxone vulkan metal switch + #pragma only_renderers d3d11 playstation xboxone vulkan metal switch #include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Common.hlsl" #include "Packages/com.unity.render-pipelines.high-definition/Runtime/ShaderLibrary/ShaderVariables.hlsl" diff --git a/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/RenderPass/ColorPyramidPS.shader b/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/RenderPass/ColorPyramidPS.shader index 2d3c0bad80b..79c17e5494f 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/RenderPass/ColorPyramidPS.shader +++ b/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/RenderPass/ColorPyramidPS.shader @@ -1,4 +1,4 @@ -Shader "ColorPyramidPS" +Shader "Hidden/ColorPyramidPS" { SubShader { diff --git a/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/RenderPass/CustomPass/CustomPassUtils.shader b/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/RenderPass/CustomPass/CustomPassUtils.shader index 82f3ff92a6d..8d80e0b0aff 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/RenderPass/CustomPass/CustomPassUtils.shader +++ b/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/RenderPass/CustomPass/CustomPassUtils.shader @@ -5,7 +5,7 @@ Shader "Hidden/HDRP/CustomPassUtils" #pragma vertex Vert #pragma target 4.5 - #pragma only_renderers d3d11 ps4 xboxone vulkan metal switch + #pragma only_renderers d3d11 playstation xboxone vulkan metal switch #pragma enable_d3d11_debug_symbols #include "Packages/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/RenderPass/CustomPass/CustomPassCommon.hlsl" diff --git a/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDDecalMaterial.mat b/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDDecalMaterial.mat index 3b93a609424..ee970644b81 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDDecalMaterial.mat +++ b/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDDecalMaterial.mat @@ -315,4 +315,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDMaterial.mat b/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDMaterial.mat index 863b0d54012..2ed5298b469 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDMaterial.mat +++ b/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDMaterial.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -262,6 +262,7 @@ Material: - _NormalMapSpace: 0 - _NormalScale: 1 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDMirrorMaterial.mat b/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDMirrorMaterial.mat index a5fa5de3909..dd6beba57c7 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDMirrorMaterial.mat +++ b/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDMirrorMaterial.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -261,6 +261,7 @@ Material: - _NormalMapSpace: 0 - _NormalScale: 1 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDParticleMaterial.mat b/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDParticleMaterial.mat index 17b27b474e6..0a16b8eaa95 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDParticleMaterial.mat +++ b/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDParticleMaterial.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDTerrainMaterial.mat b/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDTerrainMaterial.mat index fd8bbc78087..c2b78a1eb82 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDTerrainMaterial.mat +++ b/com.unity.render-pipelines.high-definition/Runtime/RenderPipelineResources/Material/DefaultHDTerrainMaterial.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 From d3fc1c8f2de79d6d0dbb9ea8bfa388a4f780055f Mon Sep 17 00:00:00 2001 From: sebastienlagarde Date: Sat, 27 Jun 2020 16:48:21 +0200 Subject: [PATCH 10/32] switch HDRP DXR MaterialVersion to 5 --- .../HDRP_DXR_Tests/ProjectSettings/HDRPProjectSettings.asset | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TestProjects/HDRP_DXR_Tests/ProjectSettings/HDRPProjectSettings.asset b/TestProjects/HDRP_DXR_Tests/ProjectSettings/HDRPProjectSettings.asset index e536bbd68e8..d421a0c8270 100644 --- a/TestProjects/HDRP_DXR_Tests/ProjectSettings/HDRPProjectSettings.asset +++ b/TestProjects/HDRP_DXR_Tests/ProjectSettings/HDRPProjectSettings.asset @@ -22,4 +22,4 @@ MonoBehaviour: m_WizardActiveTab: 0 m_WizardNeedRestartAfterChangingToDX12: 0 m_WizardNeedToRunFixAllAgainAfterDomainReload: 0 - m_LastMaterialVersion: 4 + m_LastMaterialVersion: 5 From 43a62adcb422da09482ac2b71c295f8564dbd45b Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sat, 27 Jun 2020 20:01:03 +0200 Subject: [PATCH 11/32] Introduce concept of SHADERPASS_TRANSPARENT_DEPTH_PREPASS / SHADERPASS_TRANSPARENT_DEPTH_POSTPASS --- .../Upgrading-from-2020.1-to-2020.2.md | 2 + .../Material/ShaderGraph/HDShaderPasses.cs | 13 ++++--- .../ShaderGraph/Templates/ShaderPass.template | 16 ++++++++ .../Runtime/Debug/LightingDebug.cs.hlsl | 3 +- .../Runtime/Material/Lit/Lit.hlsl | 2 +- .../Runtime/Material/Lit/Lit.shader | 6 +-- .../Runtime/Material/Lit/LitData.hlsl | 4 +- .../Material/Lit/LitTessellation.shader | 6 +-- .../RenderPipeline/ShaderPass/ShaderPass.cs | 2 + .../ShaderPass/ShaderPass.cs.hlsl | 38 ++++++++++--------- .../ShaderPass/ShaderPassDepthOnly.hlsl | 2 +- 11 files changed, 58 insertions(+), 36 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Documentation~/Upgrading-from-2020.1-to-2020.2.md b/com.unity.render-pipelines.high-definition/Documentation~/Upgrading-from-2020.1-to-2020.2.md index 05afdc80ff3..4a9cce10e94 100644 --- a/com.unity.render-pipelines.high-definition/Documentation~/Upgrading-from-2020.1-to-2020.2.md +++ b/com.unity.render-pipelines.high-definition/Documentation~/Upgrading-from-2020.1-to-2020.2.md @@ -81,6 +81,8 @@ From Unity 2020.2, HDRP includes a new rectangular area shadow evaluation functi From Unity 2020.2, the macro ENABLE_RAYTRACING, SHADEROPTIONS_RAYTRACING, and RAYTRACING_ENABLED have been removed. A new multicompile is introduce for forward pass: SCREEN_SPACE_SHADOWS_OFF SCREEN_SPACE_SHADOWS_ON. This allow to enable raytracing effect without requiring edition of shader config file. +From Unity 2020.2,SHADERPASS for TransparentDepthPrepass and TransparentDepthPostpass identification is using respectively SHADERPASS_TRANSPARENT_DEPTH_PREPASS and SHADERPASS_TRANSPARENT_DEPTH_POSTPASS. Previously it was SHADERPASS_DEPTH_ONLY. Define CUTOFF_TRANSPARENT_DEPTH_PREPASS and CUTOFF_TRANSPARENT_DEPTH_POSTPASS and been removed as the new path macro can now be used. + ## Custom pass API The signature of the Execute function has changed to simplify the parameters, now it only takes a CustomPassContext as its input: diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs index d5e57daa05d..7bd75eb60ce 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs @@ -491,7 +491,7 @@ public static PassDescriptor GenerateTransparentDepthPrepass(bool supportLightin { // Definition displayName = "TransparentDepthPrepass", - referenceName = "SHADERPASS_DEPTH_ONLY", + referenceName = "SHADERPASS_TRANSPARENT_DEPTH_PREPASS", lightMode = "TransparentDepthPrepass", useInPreview = true, @@ -530,9 +530,12 @@ KeywordCollection GenerateKeywords() { KeywordCollection keywords = new KeywordCollection { CoreKeywords.HDBase }; - if (supportLighting) - keywords.Add(CoreKeywordDescriptors.WriteNormalBuffer); - + // For now we can generate WriteNormalBuffer the way we want with SG generator + // as it require a conditional define. So instead it is hard coded in + // ShaderPass.template. Looks for SHADERPASS_TRANSPARENT_DEPTH_PREPASS in the file + //if (supportLighting) + // keywords.Add(CoreKeywordDescriptors.WriteNormalBuffer); + return keywords; } @@ -609,7 +612,7 @@ public static PassDescriptor GenerateTransparentDepthPostpass(bool supportLighti { // Definition displayName = "TransparentDepthPostpass", - referenceName = "SHADERPASS_DEPTH_ONLY", + referenceName = "SHADERPASS_TRANSPARENT_DEPTH_POSTPASS", lightMode = "TransparentDepthPostpass", useInPreview = true, diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template index 0ceaa95825b..4659f8185d8 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template @@ -50,6 +50,22 @@ Pass $include("ShaderPassDefine.template.hlsl") // Caution: we can use the define SHADER_UNLIT onlit after the above Material include as it is the Unlit template who define it + // To handle SSR on transparent correctly with a possibility to enable/disable it per framesettings + // we should have a code like this: + // #if !defined(_DISABLE_SSR_TRANSPARENT) + // #pragma multi_compile _ WRITE_NORMAL_BUFFER + // #endif + // i.e we enable the multicompile only if we can receive SSR or not, and then C# code drive + // it based on if SSR transparent in frame settings and not (and stripper can strip it). + // this is currently not possible with our current preprocessor as _DISABLE_SSR_TRANSPARENT is a keyword not a define + // so instead we used this and chose to pay the extra cost of normal write even if SSR transaprent is disabled. + // Ideally the shader graph generator should handle it but condition below can't be handle correctly for now. + #if SHADERPASS == SHADERPASS_TRANSPARENT_DEPTH_PREPASS + #if !defined(_DISABLE_SSR_TRANSPARENT) + #define WRITE_NORMAL_BUFFER + #endif + #endif + #ifndef DEBUG_DISPLAY // In case of opaque we don't want to perform the alpha test, it is done in depth prepass and we use depth equal for ztest (setup from UI) // Don't do it with debug display mode as it is possible there is no depth prepass in this case diff --git a/com.unity.render-pipelines.high-definition/Runtime/Debug/LightingDebug.cs.hlsl b/com.unity.render-pipelines.high-definition/Runtime/Debug/LightingDebug.cs.hlsl index 65580776c7c..7fc211fe0a9 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Debug/LightingDebug.cs.hlsl +++ b/com.unity.render-pipelines.high-definition/Runtime/Debug/LightingDebug.cs.hlsl @@ -70,7 +70,8 @@ #define EXPOSUREDEBUGMODE_NONE (0) #define EXPOSUREDEBUGMODE_SCENE_EV100VALUES (1) #define EXPOSUREDEBUGMODE_HISTOGRAM_VIEW (2) -#define EXPOSUREDEBUGMODE_METERING_WEIGHTED (3) +#define EXPOSUREDEBUGMODE_FINAL_IMAGE_HISTOGRAM_VIEW (3) +#define EXPOSUREDEBUGMODE_METERING_WEIGHTED (4) // // UnityEngine.Rendering.HighDefinition.ProbeVolumeDebugMode: static fields diff --git a/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/Lit.hlsl b/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/Lit.hlsl index f944e94b1be..4bd1b0e3dbe 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/Lit.hlsl +++ b/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/Lit.hlsl @@ -354,7 +354,7 @@ NormalData ConvertSurfaceDataToNormalData(SurfaceData surfaceData) // Note: When we are in the prepass (depth only or motion vector) and we need to export the normal/roughness - Mean we are lit forward. In deferred the normal buffer will not be exported // If the fragment that we are processing has clear cloat, we want to export the clear coat's perceptual roughness and geometric normal // instead of the base layer's roughness and the shader normal to be use by SSR - #if SHADERPASS == SHADERPASS_DEPTH_ONLY || SHADERPASS == SHADERPASS_MOTION_VECTORS + #if (SHADERPASS == SHADERPASS_DEPTH_ONLY) || (SHADERPASS == SHADERPASS_MOTION_VECTORS) || (SHADERPASS == SHADERPASS_TRANSPARENT_DEPTH_PREPASS) if (HasFlag(surfaceData.materialFeatures, MATERIALFEATUREFLAGS_LIT_CLEAR_COAT)) { normalData.normalWS = surfaceData.geomNormalWS; diff --git a/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/Lit.shader b/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/Lit.shader index 5e52778b50b..e43a89af494 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/Lit.shader +++ b/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/Lit.shader @@ -686,8 +686,7 @@ Shader "HDRP/Lit" // enable dithering LOD crossfade #pragma multi_compile _ LOD_FADE_CROSSFADE - #define SHADERPASS SHADERPASS_DEPTH_ONLY - #define CUTOFF_TRANSPARENT_DEPTH_PREPASS + #define SHADERPASS SHADERPASS_TRANSPARENT_DEPTH_PREPASS // If the transparent surface should have reflections, then we should output normal #if !defined(_DISABLE_SSR_TRANSPARENT) @@ -876,8 +875,7 @@ Shader "HDRP/Lit" // enable dithering LOD crossfade #pragma multi_compile _ LOD_FADE_CROSSFADE - #define SHADERPASS SHADERPASS_DEPTH_ONLY - #define CUTOFF_TRANSPARENT_DEPTH_POSTPASS + #define SHADERPASS SHADERPASS_TRANSPARENT_DEPTH_POSTPASS #include "Packages/com.unity.render-pipelines.high-definition/Runtime/Material/Material.hlsl" #include "Packages/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/Lit.hlsl" #include "Packages/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/ShaderPass/LitDepthPass.hlsl" diff --git a/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl b/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl index 7cceb990e85..da7f6cf4925 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl +++ b/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl @@ -219,9 +219,9 @@ void GetSurfaceAndBuiltinData(FragInputs input, float3 V, inout PositionInputs p // Perform alha test very early to save performance (a killed pixel will not sample textures) float alphaCutoff = _AlphaCutoff; - #ifdef CUTOFF_TRANSPARENT_DEPTH_PREPASS + #if SHADERPASS == SHADERPASS_TRANSPARENT_DEPTH_PREPASS alphaCutoff = _AlphaCutoffPrepass; - #elif defined(CUTOFF_TRANSPARENT_DEPTH_POSTPASS) + #elif SHADERPASS == SHADERPASS_TRANSPARENT_DEPTH_POSTPASS alphaCutoff = _AlphaCutoffPostpass; #endif diff --git a/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitTessellation.shader b/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitTessellation.shader index 74898d6e0a1..5b3915797b2 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitTessellation.shader +++ b/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitTessellation.shader @@ -633,8 +633,7 @@ Shader "HDRP/LitTessellation" HLSLPROGRAM - #define SHADERPASS SHADERPASS_DEPTH_ONLY - #define CUTOFF_TRANSPARENT_DEPTH_PREPASS + #define SHADERPASS SHADERPASS_TRANSPARENT_DEPTH_PREPASS #include "Packages/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/Lit.hlsl" #include "Packages/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/ShaderPass/LitDepthPass.hlsl" #include "Packages/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl" @@ -789,8 +788,7 @@ Shader "HDRP/LitTessellation" HLSLPROGRAM - #define SHADERPASS SHADERPASS_DEPTH_ONLY - #define CUTOFF_TRANSPARENT_DEPTH_POSTPASS + #define SHADERPASS SHADERPASS_TRANSPARENT_DEPTH_POSTPASS #include "Packages/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/Lit.hlsl" #include "Packages/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/ShaderPass/LitDepthPass.hlsl" #include "Packages/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl" diff --git a/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/ShaderPass/ShaderPass.cs b/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/ShaderPass/ShaderPass.cs index 4cbe667b0a0..33b67deefe3 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/ShaderPass/ShaderPass.cs +++ b/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/ShaderPass/ShaderPass.cs @@ -11,6 +11,8 @@ enum ShaderPass ForwardUnlit, DeferredLighting, DepthOnly, + TransparentDepthPrepass, + TransparentDepthPostpass, MotionVectors, Distortion, LightTransport, diff --git a/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/ShaderPass/ShaderPass.cs.hlsl b/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/ShaderPass/ShaderPass.cs.hlsl index fa2fad1b720..b65e587248b 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/ShaderPass/ShaderPass.cs.hlsl +++ b/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/ShaderPass/ShaderPass.cs.hlsl @@ -12,24 +12,26 @@ #define SHADERPASS_FORWARD_UNLIT (2) #define SHADERPASS_DEFERRED_LIGHTING (3) #define SHADERPASS_DEPTH_ONLY (4) -#define SHADERPASS_MOTION_VECTORS (5) -#define SHADERPASS_DISTORTION (6) -#define SHADERPASS_LIGHT_TRANSPORT (7) -#define SHADERPASS_SHADOWS (8) -#define SHADERPASS_SUBSURFACE_SCATTERING (9) -#define SHADERPASS_VOLUMETRIC_LIGHTING (10) -#define SHADERPASS_DBUFFER_PROJECTOR (11) -#define SHADERPASS_DBUFFER_MESH (12) -#define SHADERPASS_FORWARD_EMISSIVE_PROJECTOR (13) -#define SHADERPASS_FORWARD_EMISSIVE_MESH (14) -#define SHADERPASS_RAYTRACING (15) -#define SHADERPASS_RAYTRACING_INDIRECT (16) -#define SHADERPASS_RAYTRACING_VISIBILITY (17) -#define SHADERPASS_RAYTRACING_FORWARD (18) -#define SHADERPASS_RAYTRACING_GBUFFER (19) -#define SHADERPASS_RAYTRACING_SUB_SURFACE (20) -#define SHADERPASS_PATH_TRACING (21) -#define SHADERPASS_CONSTANT (22) +#define SHADERPASS_TRANSPARENT_DEPTH_PREPASS (5) +#define SHADERPASS_TRANSPARENT_DEPTH_POSTPASS (6) +#define SHADERPASS_MOTION_VECTORS (7) +#define SHADERPASS_DISTORTION (8) +#define SHADERPASS_LIGHT_TRANSPORT (9) +#define SHADERPASS_SHADOWS (10) +#define SHADERPASS_SUBSURFACE_SCATTERING (11) +#define SHADERPASS_VOLUMETRIC_LIGHTING (12) +#define SHADERPASS_DBUFFER_PROJECTOR (13) +#define SHADERPASS_DBUFFER_MESH (14) +#define SHADERPASS_FORWARD_EMISSIVE_PROJECTOR (15) +#define SHADERPASS_FORWARD_EMISSIVE_MESH (16) +#define SHADERPASS_RAYTRACING (17) +#define SHADERPASS_RAYTRACING_INDIRECT (18) +#define SHADERPASS_RAYTRACING_VISIBILITY (19) +#define SHADERPASS_RAYTRACING_FORWARD (20) +#define SHADERPASS_RAYTRACING_GBUFFER (21) +#define SHADERPASS_RAYTRACING_SUB_SURFACE (22) +#define SHADERPASS_PATH_TRACING (23) +#define SHADERPASS_CONSTANT (24) #endif diff --git a/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/ShaderPass/ShaderPassDepthOnly.hlsl b/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/ShaderPass/ShaderPassDepthOnly.hlsl index dc1efab57c5..f2423ba37a0 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/ShaderPass/ShaderPassDepthOnly.hlsl +++ b/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/ShaderPass/ShaderPassDepthOnly.hlsl @@ -1,4 +1,4 @@ -#if (SHADERPASS != SHADERPASS_DEPTH_ONLY && SHADERPASS != SHADERPASS_SHADOWS) +#if (SHADERPASS != SHADERPASS_DEPTH_ONLY && SHADERPASS != SHADERPASS_SHADOWS && SHADERPASS != SHADERPASS_TRANSPARENT_DEPTH_PREPASS && SHADERPASS != SHADERPASS_TRANSPARENT_DEPTH_POSTPASS) #error SHADERPASS_is_not_correctly_define #endif From 26c0d9fa1d1163910011a74db47dd62e63742c68 Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 28 Jun 2020 02:36:57 +0200 Subject: [PATCH 12/32] Fix problem with Double sided, transparent and depth offset. --- .../Editor/Material/ShaderGraph/HDFields.cs | 3 +- .../Material/ShaderGraph/HDShaderPasses.cs | 4 +- .../Material/ShaderGraph/HDSubTarget.cs | 4 -- .../Editor/Material/ShaderGraph/HDTarget.cs | 46 ++----------------- .../Material/ShaderGraph/SurfaceSubTarget.cs | 38 ++++++--------- .../ShaderGraph/Templates/ShaderPass.template | 29 +++++++----- .../Templates/SharedCode.template.hlsl | 9 ++-- .../Runtime/Material/Lit/LitData.hlsl | 13 +++--- .../Generation/TargetResources/Fields.cs | 3 +- 9 files changed, 50 insertions(+), 99 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDFields.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDFields.cs index f90c7b470d2..f00ed4f01fc 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDFields.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDFields.cs @@ -50,8 +50,6 @@ static class HDFields // Misc public static FieldDescriptor DoAlphaTestShadow = new FieldDescriptor(string.Empty, "DoAlphaTestShadow", "_DO_ALPHA_TEST_SHADOW 1"); public static FieldDescriptor DoAlphaTestPrepass = new FieldDescriptor(string.Empty, "DoAlphaTestPrepass", "_DO_ALPHA_TEST_PREPASS 1"); - public static FieldDescriptor DoAlphaTestPostpass = new FieldDescriptor(string.Empty, "DoAlphaTestPostpass", "_DO_ALPHA_TEST_POSTPASS 1"); - public static FieldDescriptor AlphaFog = new FieldDescriptor(string.Empty, "AlphaFog", "_ENABLE_FOG_ON_TRANSPARENT 1"); public static FieldDescriptor BentNormal = new FieldDescriptor(string.Empty, "BentNormal", "_BENT_NORMAL 1"); public static FieldDescriptor AmbientOcclusion = new FieldDescriptor(string.Empty, "AmbientOcclusion", "_AMBIENT_OCCLUSION 1"); public static FieldDescriptor CoatMask = new FieldDescriptor(string.Empty, "CoatMask", "_COAT_MASK 1"); @@ -59,6 +57,7 @@ static class HDFields public static FieldDescriptor LightingGI = new FieldDescriptor(string.Empty, "LightingGI", "_LIGHTING_GI 1"); public static FieldDescriptor BackLightingGI = new FieldDescriptor(string.Empty, "BackLightingGI", "_BACK_LIGHTING_GI 1"); public static FieldDescriptor TransparentBackFace = new FieldDescriptor(string.Empty, "TransparentBackFace", string.Empty); + public static FieldDescriptor TransparentDepthPostPass = new FieldDescriptor(string.Empty, "TransparentDepthPostPass", string.Empty); public static FieldDescriptor RayTracing = new FieldDescriptor(string.Empty, "RayTracing", string.Empty); public static FieldDescriptor Unlit = new FieldDescriptor(string.Empty, "Unlit", string.Empty); diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs index 7bd75eb60ce..cfc251e5b64 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs @@ -521,8 +521,6 @@ DefineCollection GenerateDefines() { var defines = new DefineCollection{ { RayTracingNode.GetRayTracingKeyword(), 0 } }; - defines.Add(CoreKeywordDescriptors.DepthPrepassCutoff, 0); - return defines; } @@ -635,7 +633,7 @@ public static PassDescriptor GenerateTransparentDepthPostpass(bool supportLighti DefineCollection GenerateDefines() { var defines = new DefineCollection{ CoreDefines.ShaderGraphRaytracingHigh }; - defines.Add(CoreKeywordDescriptors.DepthPostpassCutoff, 0); + return defines; } diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDSubTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDSubTarget.cs index 89fefaf868f..bb801f40233 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDSubTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDSubTarget.cs @@ -79,10 +79,6 @@ public override void Setup(ref TargetSetupContext context) public override void GetFields(ref TargetFieldContext context) { // Common properties between all HD master nodes - // Surface Type - context.AddField(Fields.SurfaceOpaque, systemData.surfaceType == SurfaceType.Opaque); - context.AddField(Fields.SurfaceTransparent, systemData.surfaceType != SurfaceType.Opaque); - // Dots context.AddField(HDFields.DotsInstancing, systemData.dotsInstancing); } diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs index 2f360561954..7d165c3035c 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs @@ -664,17 +664,7 @@ public static class Uniforms { RenderState.Blend(Uniforms.srcBlend, Uniforms.dstBlend, Uniforms.alphaSrcBlend, Uniforms.alphaDstBlend) }, { RenderState.Cull(Uniforms.cullModeForward) }, { RenderState.ZWrite(Uniforms.zWrite) }, - { RenderState.ZTest(Uniforms.zTestDepthEqualForOpaque), new FieldCondition[] { - new FieldCondition(Fields.SurfaceOpaque, true), - new FieldCondition(Fields.AlphaTest, false) - } }, - { RenderState.ZTest(Uniforms.zTestDepthEqualForOpaque), new FieldCondition[] { - new FieldCondition(Fields.SurfaceOpaque, false), - } }, - { RenderState.ZTest(ZTest.Equal), new FieldCondition[] { - new FieldCondition(Fields.SurfaceOpaque, true), - new FieldCondition(Fields.AlphaTest, true) - } }, + { RenderState.ZTest(Uniforms.zTestDepthEqualForOpaque) }, { RenderState.Stencil(new StencilDescriptor() { WriteMask = Uniforms.stencilWriteMask, @@ -689,17 +679,7 @@ public static class Uniforms { RenderState.Blend(Uniforms.srcBlend, Uniforms.dstBlend, Uniforms.alphaSrcBlend, Uniforms.alphaDstBlend) }, { RenderState.Cull(Uniforms.cullModeForward) }, { RenderState.ZWrite(Uniforms.zWrite) }, - { RenderState.ZTest(Uniforms.zTestDepthEqualForOpaque), new FieldCondition[] { - new FieldCondition(Fields.SurfaceOpaque, true), - new FieldCondition(Fields.AlphaTest, false) - } }, - { RenderState.ZTest(Uniforms.zTestDepthEqualForOpaque), new FieldCondition[] { - new FieldCondition(Fields.SurfaceOpaque, false), - } }, - { RenderState.ZTest(ZTest.Equal), new FieldCondition[] { - new FieldCondition(Fields.SurfaceOpaque, true), - new FieldCondition(Fields.AlphaTest, true) - } }, + { RenderState.ZTest(Uniforms.zTestDepthEqualForOpaque) }, { RenderState.ColorMask("ColorMask [_ColorMaskTransparentVel] 1") }, { RenderState.Stencil(new StencilDescriptor() { @@ -830,7 +810,7 @@ static class CoreKeywords { CoreKeywordDescriptors.BlendModePreserveSpecularLighting, new FieldCondition(HDFields.Unlit, false) }, { CoreKeywordDescriptors.AddPrecomputedVelocity }, { CoreKeywordDescriptors.TransparentWritesMotionVector }, - { CoreKeywordDescriptors.DepthOffset }, + { CoreKeywordDescriptors.DepthOffset, new FieldCondition(Fields.DepthOffset, true) }, { CoreKeywordDescriptors.FogOnTransparent }, { CoreKeywordDescriptors.AlphaTest, new FieldCondition(Fields.AlphaTest, true) }, }; @@ -926,7 +906,7 @@ static class CoreDefines public static DefineCollection Forward = new DefineCollection { { CoreKeywordDescriptors.HasLightloop, 1 }, - { RayTracingNode.GetRayTracingKeyword(), 0, new FieldCondition(Fields.SurfaceTransparent, true) }, + { RayTracingNode.GetRayTracingKeyword(), 0 }, }; } #endregion @@ -1369,24 +1349,6 @@ static class CoreKeywordDescriptors definition = KeywordDefinition.ShaderFeature, scope = KeywordScope.Local, }; - - public static KeywordDescriptor DepthPrepassCutoff = new KeywordDescriptor() - { - displayName = "Depth Prepass Cutoff", - referenceName = "CUTOFF_TRANSPARENT_DEPTH_PREPASS", - type = KeywordType.Boolean, - definition = KeywordDefinition.Predefined, - scope = KeywordScope.Global, - }; - - public static KeywordDescriptor DepthPostpassCutoff = new KeywordDescriptor() - { - displayName = "Depth Postpass Cutoff", - referenceName = "CUTOFF_TRANSPARENT_DEPTH_POSTPASS", - type = KeywordType.Boolean, - definition = KeywordDefinition.Predefined, - scope = KeywordScope.Global, - }; } #endregion } diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs index 2c9329126ad..64ef91d730b 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs @@ -79,16 +79,17 @@ PassCollection GetPasses() HDShaderPasses.GenerateSceneSelection(supportLighting), HDShaderPasses.GenerateMotionVectors(supportLighting, supportForward), { HDShaderPasses.GenerateBackThenFront(supportLighting), new FieldCondition(HDFields.TransparentBackFace, true)}, - { HDShaderPasses.GenerateTransparentDepthPostpass(supportLighting) }, + // We always generate the TransparentDepthPrepass as it can be use with SSR transparent + HDShaderPasses.GenerateTransparentDepthPrepass(supportLighting), + { HDShaderPasses.GenerateTransparentDepthPostpass(supportLighting), new FieldCondition(HDFields.TransparentDepthPostPass, true)} }; - passes.Add(HDShaderPasses.GenerateTransparentDepthPrepass(supportLighting)); - if (supportForward) { passes.Add(HDShaderPasses.GenerateDepthForwardOnlyPass(supportLighting)); passes.Add(HDShaderPasses.GenereateForwardOnlyPass(supportLighting)); } + if (supportDistortion) passes.Add(HDShaderPasses.GenerateDistortionPass(supportLighting), new FieldCondition(HDFields.TransparentDistortion, true)); @@ -198,12 +199,7 @@ public override void GetFields(ref TargetFieldContext context) context.AddField(HDFields.Unlit); // Common properties between all "surface" master nodes (everything except decal right now) - context.AddField(HDStructFields.FragInputs.IsFrontFace, systemData.doubleSidedMode != DoubleSidedMode.Disabled && context.pass.referenceName != "SHADERPASS_MOTION_VECTORS"); - - // Blend Mode - context.AddField(Fields.BlendAdd, systemData.surfaceType != SurfaceType.Opaque && systemData.blendMode == BlendMode.Additive); - context.AddField(Fields.BlendAlpha, systemData.surfaceType != SurfaceType.Opaque && systemData.blendMode == BlendMode.Alpha); - context.AddField(Fields.BlendPremultiply, systemData.surfaceType != SurfaceType.Opaque && systemData.blendMode == BlendMode.Premultiply); + context.AddField(HDStructFields.FragInputs.IsFrontFace, systemData.doubleSidedMode != DoubleSidedMode.Disabled && context.pass.referenceName != "SHADERPASS_MOTION_VECTORS"); // Double Sided context.AddField(HDFields.DoubleSided, systemData.doubleSidedMode != DoubleSidedMode.Disabled); @@ -219,7 +215,6 @@ public override void GetFields(ref TargetFieldContext context) // Regular alpha test is only done if artist haven't ask to use the specific alpha test shadow one bool isShadowPass = context.pass.lightMode == "ShadowCaster"; bool isTransparentDepthPrepass = context.pass.lightMode == "TransparentDepthPrepass"; - bool isTransparentDepthPostpass = context.pass.lightMode == "TransparentDepthPostpass"; // Shadow use the specific alpha test only if user have ask to override it context.AddField(HDFields.DoAlphaTestShadow, systemData.alphaTest && builtinData.alphaTestShadow && isShadowPass && @@ -227,17 +222,17 @@ public override void GetFields(ref TargetFieldContext context) // Pre/post pass always use the specific alpha test provided for those pass context.AddField(HDFields.DoAlphaTestPrepass, systemData.alphaTest && systemData.alphaTestDepthPrepass && isTransparentDepthPrepass && context.pass.validPixelBlocks.Contains(HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPrepass)); - context.AddField(HDFields.DoAlphaTestPostpass, systemData.alphaTest && systemData.alphaTestDepthPostpass && isTransparentDepthPostpass && - context.pass.validPixelBlocks.Contains(HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPostpass)); // Features & Misc context.AddField(Fields.LodCrossFade, systemData.supportLodCrossFade); - context.AddField(Fields.AlphaToMask, systemData.alphaTest && context.pass.validPixelBlocks.Contains(BlockFields.SurfaceDescription.AlphaClipThreshold) && builtinData.alphaToMask); - context.AddField(HDFields.AlphaFog, systemData.surfaceType != SurfaceType.Opaque && builtinData.transparencyFog); - context.AddField(HDFields.TransparentBackFace, systemData.surfaceType != SurfaceType.Opaque && builtinData.backThenFrontRendering); + context.AddField(Fields.AlphaToMask, systemData.alphaTest); + context.AddField(HDFields.TransparentBackFace, builtinData.backThenFrontRendering); + + context.AddField(Fields.DepthOffset, builtinData.depthOffset && context.pass.validPixelBlocks.Contains(HDBlockFields.SurfaceDescription.DepthOffset)); // Depth offset needs positionRWS and is now a multi_compile - context.AddField(HDStructFields.FragInputs.positionRWS); + if (builtinData.depthOffset) + context.AddField(HDStructFields.FragInputs.positionRWS); } protected void AddDistortionFields(ref TargetFieldContext context) @@ -268,15 +263,12 @@ public override void GetActiveBlocks(ref TargetActiveBlockContext context) context.AddBlock(BlockFields.SurfaceDescription.AlphaClipThreshold, systemData.alphaTest); // Alpha Test - context.AddBlock(HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPrepass, - systemData.surfaceType == SurfaceType.Transparent && systemData.alphaTest && systemData.alphaTestDepthPrepass); - context.AddBlock(HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPostpass, - systemData.surfaceType == SurfaceType.Transparent && systemData.alphaTest && systemData.alphaTestDepthPostpass); - context.AddBlock(HDBlockFields.SurfaceDescription.AlphaClipThresholdShadow, - systemData.alphaTest && builtinData.alphaTestShadow); + context.AddBlock(HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPrepass, systemData.alphaTest && systemData.alphaTestDepthPrepass); + context.AddBlock(HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPostpass, systemData.alphaTest && systemData.alphaTestDepthPostpass); + context.AddBlock(HDBlockFields.SurfaceDescription.AlphaClipThresholdShadow, systemData.alphaTest && builtinData.alphaTestShadow); // Misc - context.AddBlock(HDBlockFields.SurfaceDescription.DepthOffset, builtinData.depthOffset); + context.AddBlock(HDBlockFields.SurfaceDescription.DepthOffset, builtinData.depthOffset); } protected void AddDistortionBlocks(ref TargetActiveBlockContext context) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template index 4659f8185d8..1cb5cc3de5b 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template @@ -42,10 +42,16 @@ Pass $VaryingsMeshToPS.texCoord2: #define VARYINGS_NEED_TEXCOORD2 $VaryingsMeshToPS.texCoord3: #define VARYINGS_NEED_TEXCOORD3 $VaryingsMeshToPS.color: #define VARYINGS_NEED_COLOR - $VaryingsMeshToPS.cullFace: #define VARYINGS_NEED_CULLFACE $features.graphVertex: #define HAVE_MESH_MODIFICATION $splice(GraphDefines) + #ifndef SHADER_UNLIT + // We need isFrontFace when using double sided - it is not required for unlit as in case of unlit double sided only drive the cullmode + #ifdef _DOUBLESIDED_ON + #define VARYINGS_NEED_CULLFACE + #endif + #endif + // Specific Material Define $include("ShaderPassDefine.template.hlsl") // Caution: we can use the define SHADER_UNLIT onlit after the above Material include as it is the Unlit template who define it @@ -78,13 +84,6 @@ Pass #endif #endif - #ifndef SHADER_UNLIT - // We need isFontFace when using double sided - #if defined(_DOUBLESIDED_ON) && !defined(VARYINGS_NEED_CULLFACE) - #define VARYINGS_NEED_CULLFACE - #endif - #endif - // Translate transparent motion vector define #if defined(_TRANSPARENT_WRITES_MOTION_VEC) && defined(_SURFACE_TYPE_TRANSPARENT) #define _WRITE_TRANSPARENT_MOTION_VECTOR @@ -166,11 +165,17 @@ Pass // TODO: split graph evaluation to grab just alpha dependencies first? tricky.. #ifdef _ALPHATEST_ON float alphaCutoff = surfaceDescription.AlphaClipThreshold; + #if SHADERPASS == SHADERPASS_TRANSPARENT_DEPTH_PREPASS + // The TransparentDepthPrepass is also used with SSR transparent. + // If an artists enable transaprent SSR but not the TransparentDepthPrepass itself, then we use AlphaClipThreshold + // otherwise if TransparentDepthPrepass is enabled we use AlphaClipThresholdDepthPrepass $DoAlphaTestPrepass: alphaCutoff = surfaceDescription.AlphaClipThresholdDepthPrepass; - $DoAlphaTestPostpass: alphaCutoff = surfaceDescription.AlphaClipThresholdDepthPostpass; - - #if SHADERPASS == SHADERPASS_SHADOWS - $DoAlphaTestShadow: alphaCutoff = _UseShadowThreshold ? surfaceDescription.AlphaClipThresholdShadow : alphaCutoff; + #elif SHADERPASS == SHADERPASS_TRANSPARENT_DEPTH_POSTPASS + // DepthPostpass always use its own alpha threshold + alphaCutoff = surfaceDescription.AlphaClipThresholdDepthPostpass; + #elif SHADERPASS == SHADERPASS_SHADOWS + // If use shadow threshold isn't enable we don't allow any test + $DoAlphaTestShadow: alphaCutoff = _UseShadowThreshold ? surfaceDescription.AlphaClipThresholdShadow : alphaCutoff; #endif GENERIC_ALPHA_TEST(surfaceDescription.Alpha, alphaCutoff); diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/SharedCode.template.hlsl b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/SharedCode.template.hlsl index c10f99c951e..e9830282f40 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/SharedCode.template.hlsl +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/SharedCode.template.hlsl @@ -16,11 +16,10 @@ FragInputs BuildFragInputs(VaryingsMeshToPS input) $FragInputs.texCoord2: output.texCoord2 = input.texCoord2; $FragInputs.texCoord3: output.texCoord3 = input.texCoord3; $FragInputs.color: output.color = input.color; - #if _DOUBLESIDED_ON && SHADER_STAGE_FRAGMENT + + #if defined(VARYINGS_NEED_CULLFACE) && SHADER_STAGE_FRAGMENT output.isFrontFace = IS_FRONT_VFACE(input.cullFace, true, false); - #elif SHADER_STAGE_FRAGMENT - $FragInputs.isFrontFace: output.isFrontFace = IS_FRONT_VFACE(input.cullFace, true, false); - #endif // SHADER_STAGE_FRAGMENT + #endif return output; } @@ -70,4 +69,4 @@ FragInputs UnpackVaryingsMeshToFragInputs(PackedVaryingsMeshToPS input) UNITY_SETUP_INSTANCE_ID(input); VaryingsMeshToPS unpacked= UnpackVaryingsMeshToPS(input); return BuildFragInputs(unpacked); -} \ No newline at end of file +} diff --git a/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl b/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl index da7f6cf4925..6b1f899717a 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl +++ b/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl @@ -218,15 +218,14 @@ void GetSurfaceAndBuiltinData(FragInputs input, float3 V, inout PositionInputs p float alphaValue = SAMPLE_UVMAPPING_TEXTURE2D(_BaseColorMap, sampler_BaseColorMap, layerTexCoord.base).a * _BaseColor.a; // Perform alha test very early to save performance (a killed pixel will not sample textures) - float alphaCutoff = _AlphaCutoff; #if SHADERPASS == SHADERPASS_TRANSPARENT_DEPTH_PREPASS - alphaCutoff = _AlphaCutoffPrepass; + float alphaCutoff = _AlphaCutoffPrepass; #elif SHADERPASS == SHADERPASS_TRANSPARENT_DEPTH_POSTPASS - alphaCutoff = _AlphaCutoffPostpass; - #endif - - #if SHADERPASS == SHADERPASS_SHADOWS - alphaCutoff = _UseShadowThreshold ? _AlphaCutoffShadow : alphaCutoff; + float alphaCutoff = _AlphaCutoffPostpass; + #elif SHADERPASS == SHADERPASS_SHADOWS + float alphaCutoff = _UseShadowThreshold ? _AlphaCutoffShadow : alphaCutoff; + #else + float alphaCutoff = _AlphaCutoff; #endif GENERIC_ALPHA_TEST(alphaValue, alphaCutoff); diff --git a/com.unity.shadergraph/Editor/Generation/TargetResources/Fields.cs b/com.unity.shadergraph/Editor/Generation/TargetResources/Fields.cs index bc7cf4e0104..a7bcb486c6a 100644 --- a/com.unity.shadergraph/Editor/Generation/TargetResources/Fields.cs +++ b/com.unity.shadergraph/Editor/Generation/TargetResources/Fields.cs @@ -1,4 +1,4 @@ -namespace UnityEditor.ShaderGraph +namespace UnityEditor.ShaderGraph { [GenerationAPI] internal static class Fields @@ -30,6 +30,7 @@ internal static class Fields public static FieldDescriptor IsPreview = new FieldDescriptor(string.Empty, "isPreview", "SHADERGRAPH_PREVIEW"); public static FieldDescriptor LodCrossFade = new FieldDescriptor(string.Empty, "LodCrossFade", "_LODCROSSFADE 1"); public static FieldDescriptor AlphaToMask = new FieldDescriptor(string.Empty, "AlphaToMask", "_ALPHATOMASK_ON 1"); + public static FieldDescriptor DepthOffset = new FieldDescriptor(string.Empty, "DepthOffset", "_DEPTH_OFFSET 1"); #endregion } } From d5fa1a33a9f03ba19deef8cdb67440c699e1007f Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 28 Jun 2020 02:42:40 +0200 Subject: [PATCH 13/32] Move Depth offset from Field to HDField --- .../Editor/Material/ShaderGraph/HDFields.cs | 1 + .../Editor/Material/ShaderGraph/HDTarget.cs | 2 +- .../Editor/Material/ShaderGraph/SurfaceSubTarget.cs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDFields.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDFields.cs index f00ed4f01fc..29aa3ddf7c8 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDFields.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDFields.cs @@ -56,6 +56,7 @@ static class HDFields public static FieldDescriptor Tangent = new FieldDescriptor(string.Empty, "Tangent", "_TANGENT 1"); public static FieldDescriptor LightingGI = new FieldDescriptor(string.Empty, "LightingGI", "_LIGHTING_GI 1"); public static FieldDescriptor BackLightingGI = new FieldDescriptor(string.Empty, "BackLightingGI", "_BACK_LIGHTING_GI 1"); + public static FieldDescriptor DepthOffset = new FieldDescriptor(string.Empty, "DepthOffset", "_DEPTH_OFFSET 1"); public static FieldDescriptor TransparentBackFace = new FieldDescriptor(string.Empty, "TransparentBackFace", string.Empty); public static FieldDescriptor TransparentDepthPostPass = new FieldDescriptor(string.Empty, "TransparentDepthPostPass", string.Empty); public static FieldDescriptor RayTracing = new FieldDescriptor(string.Empty, "RayTracing", string.Empty); diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs index 7d165c3035c..9f543738cd8 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs @@ -810,7 +810,7 @@ static class CoreKeywords { CoreKeywordDescriptors.BlendModePreserveSpecularLighting, new FieldCondition(HDFields.Unlit, false) }, { CoreKeywordDescriptors.AddPrecomputedVelocity }, { CoreKeywordDescriptors.TransparentWritesMotionVector }, - { CoreKeywordDescriptors.DepthOffset, new FieldCondition(Fields.DepthOffset, true) }, + { CoreKeywordDescriptors.DepthOffset, new FieldCondition(HDFields.DepthOffset, true) }, { CoreKeywordDescriptors.FogOnTransparent }, { CoreKeywordDescriptors.AlphaTest, new FieldCondition(Fields.AlphaTest, true) }, }; diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs index 64ef91d730b..ac4ee729e46 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs @@ -228,7 +228,7 @@ public override void GetFields(ref TargetFieldContext context) context.AddField(Fields.AlphaToMask, systemData.alphaTest); context.AddField(HDFields.TransparentBackFace, builtinData.backThenFrontRendering); - context.AddField(Fields.DepthOffset, builtinData.depthOffset && context.pass.validPixelBlocks.Contains(HDBlockFields.SurfaceDescription.DepthOffset)); + context.AddField(HDFields.DepthOffset, builtinData.depthOffset && context.pass.validPixelBlocks.Contains(HDBlockFields.SurfaceDescription.DepthOffset)); // Depth offset needs positionRWS and is now a multi_compile if (builtinData.depthOffset) From fef87dc476231b1e9c3d0af5898909da4fd62135 Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 28 Jun 2020 02:43:53 +0200 Subject: [PATCH 14/32] Update Fields.cs --- .../Editor/Generation/TargetResources/Fields.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/com.unity.shadergraph/Editor/Generation/TargetResources/Fields.cs b/com.unity.shadergraph/Editor/Generation/TargetResources/Fields.cs index a7bcb486c6a..bc7cf4e0104 100644 --- a/com.unity.shadergraph/Editor/Generation/TargetResources/Fields.cs +++ b/com.unity.shadergraph/Editor/Generation/TargetResources/Fields.cs @@ -1,4 +1,4 @@ -namespace UnityEditor.ShaderGraph +namespace UnityEditor.ShaderGraph { [GenerationAPI] internal static class Fields @@ -30,7 +30,6 @@ internal static class Fields public static FieldDescriptor IsPreview = new FieldDescriptor(string.Empty, "isPreview", "SHADERGRAPH_PREVIEW"); public static FieldDescriptor LodCrossFade = new FieldDescriptor(string.Empty, "LodCrossFade", "_LODCROSSFADE 1"); public static FieldDescriptor AlphaToMask = new FieldDescriptor(string.Empty, "AlphaToMask", "_ALPHATOMASK_ON 1"); - public static FieldDescriptor DepthOffset = new FieldDescriptor(string.Empty, "DepthOffset", "_DEPTH_OFFSET 1"); #endregion } } From 1c35ee2214cbd6b68d203830fdd82d3886cf1009 Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 28 Jun 2020 03:12:47 +0200 Subject: [PATCH 15/32] Fix define for BackThenFront --- .../Material/ShaderGraph/HDShaderPasses.cs | 22 +++------------- .../Editor/Material/ShaderGraph/HDTarget.cs | 25 +++++++++++++++++-- 2 files changed, 27 insertions(+), 20 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs index cfc251e5b64..7b75850d9f0 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs @@ -446,8 +446,8 @@ public static PassDescriptor GenerateBackThenFront(bool supportLighting) requiredFields = CoreRequiredFields.LitMinimal, renderStates = CoreRenderStates.TransparentBackface, pragmas = CorePragmas.DotsInstancedInV1AndV2, - defines = CoreDefines.Forward, - keywords = CoreKeywords.Forward, + defines = CoreDefines.BackThenFront, + keywords = supportLighting ? CoreKeywords.BackThenFrontTransparent : UnlitForwardKeywords, includes = GenerateIncludes(), }; @@ -512,18 +512,11 @@ public static PassDescriptor GenerateTransparentDepthPrepass(bool supportLightin requiredFields = TransparentDepthPrepassFields, renderStates = GenerateRenderState(), pragmas = CorePragmas.DotsInstancedInV1AndV2, - defines = GenerateDefines(), + defines = CoreDefines.TransparentDepthPrepass, keywords = GenerateKeywords(), includes = GenerateIncludes(), }; - DefineCollection GenerateDefines() - { - var defines = new DefineCollection{ { RayTracingNode.GetRayTracingKeyword(), 0 } }; - - return defines; - } - KeywordCollection GenerateKeywords() { KeywordCollection keywords = new KeywordCollection { CoreKeywords.HDBase }; @@ -625,18 +618,11 @@ public static PassDescriptor GenerateTransparentDepthPostpass(bool supportLighti // Collections renderStates = GenerateRenderState(), pragmas = CorePragmas.DotsInstancedInV1AndV2, - defines = GenerateDefines(), + defines = CoreDefines.TransparentDepthPostpass, keywords = CoreKeywords.HDBase, includes = GenerateIncludes(), }; - DefineCollection GenerateDefines() - { - var defines = new DefineCollection{ CoreDefines.ShaderGraphRaytracingHigh }; - - return defines; - } - IncludeCollection GenerateIncludes() { var includes = new IncludeCollection(); diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs index 9f543738cd8..9ba64fe1510 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs @@ -845,7 +845,7 @@ static class CoreKeywords { CoreKeywordDescriptors.AlphaToMask, new FieldCondition(Fields.AlphaToMask, true) }, }; - public static KeywordCollection Forward = new KeywordCollection + public static KeywordCollection ForwardBase = new KeywordCollection { { HDBase }, { CoreKeywordDescriptors.DebugDisplay }, @@ -854,9 +854,19 @@ static class CoreKeywords { CoreKeywordDescriptors.Shadow }, { CoreKeywordDescriptors.ScreenSpaceShadow }, { CoreKeywordDescriptors.Decals }, + }; + + public static KeywordCollection Forward = new KeywordCollection + { + { ForwardBase }, { CoreKeywordDescriptors.LightList }, }; + public static KeywordCollection BackThenFrontTransparent = new KeywordCollection + { + { ForwardBase }, + }; + public static KeywordCollection RaytracingIndirect = new KeywordCollection { { HDBaseNoCrossFade }, @@ -900,7 +910,11 @@ static class CoreDefines public static DefineCollection TransparentDepthPrepass = new DefineCollection { { RayTracingNode.GetRayTracingKeyword(), 0 }, - { CoreKeywordDescriptors.WriteNormalBuffer, 1 }, + }; + + public static DefineCollection TransparentDepthPostpass = new DefineCollection + { + { RayTracingNode.GetRayTracingKeyword(), 0 }, }; public static DefineCollection Forward = new DefineCollection @@ -908,6 +922,13 @@ static class CoreDefines { CoreKeywordDescriptors.HasLightloop, 1 }, { RayTracingNode.GetRayTracingKeyword(), 0 }, }; + + public static DefineCollection BackThenFront = new DefineCollection + { + { CoreKeywordDescriptors.HasLightloop, 1 }, + { RayTracingNode.GetRayTracingKeyword(), 0 }, + { CoreKeywordDescriptors.LightList, 1 }, // BackThenFront Transparent use #define USE_CLUSTERED_LIGHTLIST + }; } #endregion From c99a5910a73c57de29631d0c0da560075e8aaba9 Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 28 Jun 2020 03:32:56 +0200 Subject: [PATCH 16/32] fix MINIMAL_GBUFFER for DXR pass --- .../Material/ShaderGraph/HDShaderPasses.cs | 6 ++-- .../Editor/Material/ShaderGraph/HDTarget.cs | 31 +++++++++++++++++-- 2 files changed, 31 insertions(+), 6 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs index 7b75850d9f0..719fc2f5ce6 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs @@ -986,7 +986,7 @@ public static PassDescriptor GenerateRaytracingForward(bool supportLighting) // Collections pragmas = CorePragmas.RaytracingBasic, defines = supportLighting ? RaytracingForwardDefines : null, - keywords = CoreKeywords.RaytracingGBufferForward, + keywords = CoreKeywords.RaytracingForward, includes = GenerateIncludes(), }; @@ -1053,7 +1053,7 @@ public static PassDescriptor GenerateRaytracingGBuffer(bool supportLighting) // Collections pragmas = CorePragmas.RaytracingBasic, defines = supportLighting ? RaytracingGBufferDefines : null, - keywords = CoreKeywords.RaytracingGBufferForward, + keywords = CoreKeywords.RaytracingGBuffer, includes = GenerateIncludes(), }; @@ -1180,7 +1180,7 @@ public static PassDescriptor GenerateRaytracingSubsurface() //Collections pragmas = CorePragmas.RaytracingBasic, defines = RaytracingSubsurfaceDefines, - keywords = CoreKeywords.RaytracingGBufferForward, + keywords = CoreKeywords.RaytracingForward, includes = GenerateIncludes(), }; diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs index 9ba64fe1510..a85ecfd6945 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs @@ -828,6 +828,12 @@ static class CoreKeywords { CoreKeywordDescriptors.DynamicLightmap }, }; + public static KeywordCollection LightmapsRaytracing = new KeywordCollection + { + { CoreKeywordDescriptors.Lightmap }, + { CoreKeywordDescriptors.DirectionalLightmapCombined }, + }; + public static KeywordCollection WriteMsaaDepth = new KeywordCollection { { CoreKeywordDescriptors.WriteMsaaDepth }, @@ -870,13 +876,23 @@ static class CoreKeywords public static KeywordCollection RaytracingIndirect = new KeywordCollection { { HDBaseNoCrossFade }, - { Lightmaps }, + { CoreKeywordDescriptors.DebugDisplay }, + { LightmapsRaytracing }, }; - public static KeywordCollection RaytracingGBufferForward = new KeywordCollection + public static KeywordCollection RaytracingForward = new KeywordCollection { { HDBaseNoCrossFade }, - { Lightmaps }, + { CoreKeywordDescriptors.DebugDisplay }, + { LightmapsRaytracing }, + }; + + public static KeywordCollection RaytracingGBuffer = new KeywordCollection + { + { HDBaseNoCrossFade }, + { CoreKeywordDescriptors.DebugDisplay }, + { LightmapsRaytracing }, + { CoreKeywordDescriptors.RaytraceMinimalGBuffer }, }; public static KeywordCollection RaytracingVisiblity = new KeywordCollection @@ -1299,6 +1315,15 @@ static class CoreKeywordDescriptors scope = KeywordScope.Global }; + public static KeywordDescriptor RaytraceMinimalGBuffer = new KeywordDescriptor() + { + displayName = "Minimal GBuffer", + referenceName = "MINIMAL_GBUFFER", + type = KeywordType.Boolean, + definition = KeywordDefinition.MultiCompile, + scope = KeywordScope.Global + }; + public static KeywordDescriptor DisableDecals = new KeywordDescriptor { displayName = "Disable Decals", From dcb7330140c737242bc6ee3db50d9f1783959fb5 Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 28 Jun 2020 03:44:04 +0200 Subject: [PATCH 17/32] Fix typo + fix VT for unlit --- .../Editor/Material/ShaderGraph/HDShaderPasses.cs | 4 ++-- .../Editor/Material/ShaderGraph/SurfaceSubTarget.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs index 719fc2f5ce6..02506681993 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs @@ -370,7 +370,7 @@ IncludeCollection GenerateIncludes() #region Forward Only - public static PassDescriptor GenereateForwardOnlyPass(bool supportLighting) + public static PassDescriptor GenerateForwardOnlyPass(bool supportLighting) { return new PassDescriptor { @@ -388,7 +388,7 @@ public static PassDescriptor GenereateForwardOnlyPass(bool supportLighting) keywords = supportLighting ? CoreKeywords.Forward : UnlitForwardKeywords, includes = GenerateIncludes(), - virtualTextureFeedback = supportLighting ? false : true, + virtualTextureFeedback = true, }; IncludeCollection GenerateIncludes() diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs index ac4ee729e46..315c1030e35 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs @@ -87,7 +87,7 @@ PassCollection GetPasses() if (supportForward) { passes.Add(HDShaderPasses.GenerateDepthForwardOnlyPass(supportLighting)); - passes.Add(HDShaderPasses.GenereateForwardOnlyPass(supportLighting)); + passes.Add(HDShaderPasses.GenerateForwardOnlyPass(supportLighting)); } if (supportDistortion) From 62f608bdac7662acd9100ffb72894371d62f3299 Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 28 Jun 2020 03:47:03 +0200 Subject: [PATCH 18/32] Fix motion vector for transparent on forward material --- .../Editor/Material/ShaderGraph/HDTarget.cs | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs index a85ecfd6945..a213b8b7f64 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDTarget.cs @@ -660,21 +660,6 @@ public static class Uniforms }; public static RenderStateCollection Forward = new RenderStateCollection - { - { RenderState.Blend(Uniforms.srcBlend, Uniforms.dstBlend, Uniforms.alphaSrcBlend, Uniforms.alphaDstBlend) }, - { RenderState.Cull(Uniforms.cullModeForward) }, - { RenderState.ZWrite(Uniforms.zWrite) }, - { RenderState.ZTest(Uniforms.zTestDepthEqualForOpaque) }, - { RenderState.Stencil(new StencilDescriptor() - { - WriteMask = Uniforms.stencilWriteMask, - Ref = Uniforms.stencilRef, - Comp = "Always", - Pass = "Replace", - }) }, - }; - - public static RenderStateCollection ForwardColorMask = new RenderStateCollection { { RenderState.Blend(Uniforms.srcBlend, Uniforms.dstBlend, Uniforms.alphaSrcBlend, Uniforms.alphaDstBlend) }, { RenderState.Cull(Uniforms.cullModeForward) }, From f0dd78bd991b1d0b8215845e3e6cd9a07e4ecd7e Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 28 Jun 2020 03:56:33 +0200 Subject: [PATCH 19/32] Fix compile issue --- .../Editor/Material/ShaderGraph/HDShaderPasses.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs index 02506681993..e7488b29a87 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDShaderPasses.cs @@ -777,7 +777,7 @@ public static PassDescriptor GenerateLitForward() // Collections requiredFields = CoreRequiredFields.LitMinimal, - renderStates = CoreRenderStates.ForwardColorMask, + renderStates = CoreRenderStates.Forward, pragmas = CorePragmas.DotsInstancedInV1AndV2, defines = CoreDefines.Forward, keywords = CoreKeywords.Forward, From c1ba69a37a796fb5232ab92df8ca0f5836650ebe Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 28 Jun 2020 05:18:43 +0200 Subject: [PATCH 20/32] Lot of fix on unlit shader --- .../Eye/ShaderGraph/EyeSubTarget.Migration.cs | 4 +- .../ShaderGraph/HairSubTarget.Migration.cs | 8 +-- .../ShaderGraph/HDLitSubTarget.Migration.cs | 8 +-- .../Editor/Material/ShaderGraph/HDFields.cs | 1 + .../Material/ShaderGraph/HDShaderPasses.cs | 67 ++++++++++++++----- .../Editor/Material/ShaderGraph/HDTarget.cs | 18 +++++ .../ShaderGraph/SurfaceOptionPropertyBlock.cs | 4 +- .../Material/ShaderGraph/SurfaceSubTarget.cs | 31 ++++++--- .../ShaderGraph/TargetData/SystemData.cs | 23 ++++--- .../ShaderGraph/Templates/ShaderPass.template | 2 +- .../Runtime/Material/Unlit/Unlit.shader | 8 +-- 11 files changed, 120 insertions(+), 54 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeSubTarget.Migration.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeSubTarget.Migration.cs index d39bfdd48e8..581652235c7 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeSubTarget.Migration.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/Eye/ShaderGraph/EyeSubTarget.Migration.cs @@ -27,8 +27,8 @@ public bool TryUpgradeFromMasterNode(IMasterNode1 masterNode, out Dictionary systemData.transparentCullMode, (newValue) => systemData.transparentCullMode = newValue); AddProperty(transparentSortPriorityText, () => systemData.sortPriority, (newValue) => systemData.sortPriority = HDRenderQueue.ClampsTransparentRangePriority(newValue)); AddProperty(transparentBackfaceEnableText, () => builtinData.backThenFrontRendering, (newValue) => builtinData.backThenFrontRendering = newValue); - AddProperty(transparentDepthPrepassEnableText, () => systemData.alphaTestDepthPrepass, (newValue) => systemData.alphaTestDepthPrepass = newValue); - AddProperty(transparentDepthPostpassEnableText, () => systemData.alphaTestDepthPostpass, (newValue) => systemData.alphaTestDepthPostpass = newValue); + AddProperty(transparentDepthPrepassEnableText, () => systemData.transparentDepthPrepass, (newValue) => systemData.transparentDepthPrepass = newValue); + AddProperty(transparentDepthPostpassEnableText, () => systemData.transparentDepthPostpass, (newValue) => systemData.transparentDepthPostpass = newValue); AddProperty(transparentWritingMotionVecText, () => builtinData.transparentWritesMotionVec, (newValue) => builtinData.transparentWritesMotionVec = newValue); if (lightingData != null) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs index 315c1030e35..fb2f8bf326e 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/SurfaceSubTarget.cs @@ -79,11 +79,20 @@ PassCollection GetPasses() HDShaderPasses.GenerateSceneSelection(supportLighting), HDShaderPasses.GenerateMotionVectors(supportLighting, supportForward), { HDShaderPasses.GenerateBackThenFront(supportLighting), new FieldCondition(HDFields.TransparentBackFace, true)}, - // We always generate the TransparentDepthPrepass as it can be use with SSR transparent - HDShaderPasses.GenerateTransparentDepthPrepass(supportLighting), { HDShaderPasses.GenerateTransparentDepthPostpass(supportLighting), new FieldCondition(HDFields.TransparentDepthPostPass, true)} }; + if (supportLighting) + { + // We always generate the TransparentDepthPrepass as it can be use with SSR transparent + passes.Add(HDShaderPasses.GenerateTransparentDepthPrepass(true)); + } + else + { + // We only generate the pass if requested + passes.Add(HDShaderPasses.GenerateTransparentDepthPrepass(false), new FieldCondition(HDFields.TransparentDepthPrePass, true)); + } + if (supportForward) { passes.Add(HDShaderPasses.GenerateDepthForwardOnlyPass(supportLighting)); @@ -215,18 +224,20 @@ public override void GetFields(ref TargetFieldContext context) // Regular alpha test is only done if artist haven't ask to use the specific alpha test shadow one bool isShadowPass = context.pass.lightMode == "ShadowCaster"; bool isTransparentDepthPrepass = context.pass.lightMode == "TransparentDepthPrepass"; - + // Shadow use the specific alpha test only if user have ask to override it context.AddField(HDFields.DoAlphaTestShadow, systemData.alphaTest && builtinData.alphaTestShadow && isShadowPass && context.pass.validPixelBlocks.Contains(HDBlockFields.SurfaceDescription.AlphaClipThresholdShadow)); // Pre/post pass always use the specific alpha test provided for those pass - context.AddField(HDFields.DoAlphaTestPrepass, systemData.alphaTest && systemData.alphaTestDepthPrepass && isTransparentDepthPrepass && + context.AddField(HDFields.DoAlphaTestPrepass, systemData.alphaTest && systemData.transparentDepthPrepass && isTransparentDepthPrepass && context.pass.validPixelBlocks.Contains(HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPrepass)); // Features & Misc - context.AddField(Fields.LodCrossFade, systemData.supportLodCrossFade); - context.AddField(Fields.AlphaToMask, systemData.alphaTest); - context.AddField(HDFields.TransparentBackFace, builtinData.backThenFrontRendering); + context.AddField(Fields.LodCrossFade, systemData.supportLodCrossFade); + context.AddField(Fields.AlphaToMask, systemData.alphaTest); + context.AddField(HDFields.TransparentBackFace, builtinData.backThenFrontRendering); + context.AddField(HDFields.TransparentDepthPrePass, systemData.transparentDepthPrepass); + context.AddField(HDFields.TransparentDepthPostPass, systemData.transparentDepthPostpass); context.AddField(HDFields.DepthOffset, builtinData.depthOffset && context.pass.validPixelBlocks.Contains(HDBlockFields.SurfaceDescription.DepthOffset)); @@ -263,8 +274,8 @@ public override void GetActiveBlocks(ref TargetActiveBlockContext context) context.AddBlock(BlockFields.SurfaceDescription.AlphaClipThreshold, systemData.alphaTest); // Alpha Test - context.AddBlock(HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPrepass, systemData.alphaTest && systemData.alphaTestDepthPrepass); - context.AddBlock(HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPostpass, systemData.alphaTest && systemData.alphaTestDepthPostpass); + context.AddBlock(HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPrepass, systemData.alphaTest && systemData.transparentDepthPrepass); + context.AddBlock(HDBlockFields.SurfaceDescription.AlphaClipThresholdDepthPostpass, systemData.alphaTest && systemData.transparentDepthPostpass); context.AddBlock(HDBlockFields.SurfaceDescription.AlphaClipThresholdShadow, systemData.alphaTest && builtinData.alphaTestShadow); // Misc @@ -330,7 +341,7 @@ public override void CollectShaderProperties(PropertyCollector collector, Genera // Common properties for all "surface" master nodes HDSubShaderUtilities.AddAlphaCutoffShaderProperties(collector, systemData.alphaTest, builtinData.alphaTestShadow); HDSubShaderUtilities.AddDoubleSidedProperty(collector, systemData.doubleSidedMode); - HDSubShaderUtilities.AddPrePostPassProperties(collector, systemData.alphaTestDepthPrepass, systemData.alphaTestDepthPostpass); + HDSubShaderUtilities.AddPrePostPassProperties(collector, systemData.transparentDepthPrepass, systemData.transparentDepthPostpass); // Add all shader properties required by the inspector HDSubShaderUtilities.AddBlendingStatesShaderProperties( diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/TargetData/SystemData.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/TargetData/SystemData.cs index 863869e3225..2de372cc6cd 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/TargetData/SystemData.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/TargetData/SystemData.cs @@ -1,7 +1,8 @@ -using System; +using System; using UnityEngine; using UnityEngine.Rendering; using UnityEngine.Rendering.HighDefinition; +using UnityEngine.Serialization; using RenderQueueType = UnityEngine.Rendering.HighDefinition.HDRenderQueue.RenderQueueType; @@ -89,20 +90,20 @@ public bool alphaTest set => m_AlphaTest = value; } - [SerializeField] - bool m_AlphaTestDepthPrepass; - public bool alphaTestDepthPrepass + [SerializeField, FormerlySerializedAs("m_AlphaTestDepthPrepass")] + bool m_TransparentDepthPrepass; + public bool transparentDepthPrepass { - get => m_AlphaTestDepthPrepass; - set => m_AlphaTestDepthPrepass = value; + get => m_TransparentDepthPrepass; + set => m_TransparentDepthPrepass = value; } - [SerializeField] - bool m_AlphaTestDepthPostpass; - public bool alphaTestDepthPostpass + [SerializeField, FormerlySerializedAs("m_AlphaTestDepthPostpass")] + bool m_TransparentDepthPostpass; + public bool transparentDepthPostpass { - get => m_AlphaTestDepthPostpass; - set => m_AlphaTestDepthPostpass = value; + get => m_TransparentDepthPostpass; + set => m_TransparentDepthPostpass = value; } [SerializeField] diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template index 1cb5cc3de5b..fa113a05eae 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/Templates/ShaderPass.template @@ -67,7 +67,7 @@ Pass // so instead we used this and chose to pay the extra cost of normal write even if SSR transaprent is disabled. // Ideally the shader graph generator should handle it but condition below can't be handle correctly for now. #if SHADERPASS == SHADERPASS_TRANSPARENT_DEPTH_PREPASS - #if !defined(_DISABLE_SSR_TRANSPARENT) + #if !defined(_DISABLE_SSR_TRANSPARENT) && !defined(SHADER_UNLIT) #define WRITE_NORMAL_BUFFER #endif #endif diff --git a/com.unity.render-pipelines.high-definition/Runtime/Material/Unlit/Unlit.shader b/com.unity.render-pipelines.high-definition/Runtime/Material/Unlit/Unlit.shader index 8c30ff42883..fa0c3a30344 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Material/Unlit/Unlit.shader +++ b/com.unity.render-pipelines.high-definition/Runtime/Material/Unlit/Unlit.shader @@ -452,6 +452,8 @@ Shader "HDRP/Unlit" #pragma only_renderers d3d11 #pragma raytracing surface_shader + #pragma multi_compile _ DEBUG_DISPLAY + #define SHADERPASS SHADERPASS_RAYTRACING_INDIRECT #include "Packages/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/Raytracing/Shaders/RaytracingMacros.hlsl" @@ -480,6 +482,8 @@ Shader "HDRP/Unlit" #pragma only_renderers d3d11 #pragma raytracing surface_shader + #pragma multi_compile _ DEBUG_DISPLAY + #define SHADERPASS SHADERPASS_RAYTRACING_FORWARD #include "Packages/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/Raytracing/Shaders/RaytracingMacros.hlsl" @@ -507,10 +511,6 @@ Shader "HDRP/Unlit" #pragma only_renderers d3d11 #pragma raytracing surface_shader - #pragma multi_compile _ LIGHTMAP_ON - #pragma multi_compile _ DIRLIGHTMAP_COMBINED - #pragma multi_compile _ DYNAMICLIGHTMAP_ON - #define SHADERPASS SHADERPASS_RAYTRACING_GBUFFER #include "Packages/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/Raytracing/Shaders/RaytracingMacros.hlsl" From 317b45cbc476084c823e94c1077664e6ff0b8805 Mon Sep 17 00:00:00 2001 From: sebastienlagarde Date: Sun, 28 Jun 2020 05:35:27 +0200 Subject: [PATCH 21/32] fix compile issue --- .../Runtime/Material/Lit/LitData.hlsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl b/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl index 6b1f899717a..490ee83361e 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl +++ b/com.unity.render-pipelines.high-definition/Runtime/Material/Lit/LitData.hlsl @@ -223,7 +223,7 @@ void GetSurfaceAndBuiltinData(FragInputs input, float3 V, inout PositionInputs p #elif SHADERPASS == SHADERPASS_TRANSPARENT_DEPTH_POSTPASS float alphaCutoff = _AlphaCutoffPostpass; #elif SHADERPASS == SHADERPASS_SHADOWS - float alphaCutoff = _UseShadowThreshold ? _AlphaCutoffShadow : alphaCutoff; + float alphaCutoff = _UseShadowThreshold ? _AlphaCutoffShadow : _AlphaCutoff; #else float alphaCutoff = _AlphaCutoff; #endif From 526c8cbe64e819e25a78a5e227dc3cbf561eb885 Mon Sep 17 00:00:00 2001 From: sebastienlagarde Date: Sun, 28 Jun 2020 05:57:36 +0200 Subject: [PATCH 22/32] Fix Material for test stacklit DXR SG --- .../Shader Graphs_StackLit_Transparent.mat | 21 +++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Transparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Transparent.mat index 922cddc3af2..ca63d1088db 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Transparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -33,10 +33,9 @@ Material: MotionVector: User RenderType: Transparent disabledShaderPasses: - - MOTIONVECTORS + - TransparentDepthPostpass - TransparentBackface - TransparentDepthPrepass - - TransparentDepthPostpass m_SavedProperties: serializedVersion: 3 m_TexEnvs: @@ -52,12 +51,21 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_6ea313656c2744b59b6ca90317e3dc1c_Out_0: + m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_da5ed3679908438d89ee705e2cccd98c_Out_0: m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_fb70cff2f9454b0193c4b5eaff34a18b_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} m_Floats: - Vector1_555A0A0: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -65,13 +73,16 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - - _RenderQueueType: 1 + - _RenderQueueType: 4 - _RequireSplitLighting: 0 - _SrcBlend: 1 - _StencilRef: 0 @@ -84,12 +95,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 From 614c0d77d8c450d2277164a71dba0aa1c444a3b9 Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 28 Jun 2020 12:11:48 +0200 Subject: [PATCH 23/32] Fix the Material surfaceOption --- .../Material/LayeredLit/LayeredLitGUI.cs | 2 +- .../Editor/Material/Lit/LitGUI.cs | 2 +- .../Material/UIBlocks/SurfaceOptionUIBlock.cs | 63 ++++++++++++------- .../Material/Unlit/ShaderGraph/HDUnlitGUI.cs | 7 +-- 4 files changed, 43 insertions(+), 31 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/LayeredLit/LayeredLitGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/LayeredLit/LayeredLitGUI.cs index ebfafab095c..dd31c5a05ca 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/LayeredLit/LayeredLitGUI.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/LayeredLit/LayeredLitGUI.cs @@ -26,7 +26,7 @@ class LayeredLitGUI : HDShaderGUI MaterialUIBlockList uiBlocks = new MaterialUIBlockList { - new SurfaceOptionUIBlock(MaterialUIBlock.Expandable.Base, 4, SurfaceOptionUIBlock.Features.All ^ SurfaceOptionUIBlock.Features.ShowAfterPostProcessPass), + new SurfaceOptionUIBlock(MaterialUIBlock.Expandable.Base, 4, SurfaceOptionUIBlock.Features.Lit), new TessellationOptionsUIBlock(MaterialUIBlock.Expandable.Tesselation), new LitSurfaceInputsUIBlock(MaterialUIBlock.Expandable.Input, kMaxLayerCount, features: commonLitSurfaceInputsFeatures), new LayerListUIBlock(MaterialUIBlock.Expandable.MaterialReferences), diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Lit/LitGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Lit/LitGUI.cs index 628351dbd8e..443503197ce 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Lit/LitGUI.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/Lit/LitGUI.cs @@ -17,7 +17,7 @@ class LitGUI : HDShaderGUI MaterialUIBlockList uiBlocks = new MaterialUIBlockList { - new SurfaceOptionUIBlock(MaterialUIBlock.Expandable.Base, features: SurfaceOptionUIBlock.Features.Lit ^ SurfaceOptionUIBlock.Features.ShowAfterPostProcessPass), + new SurfaceOptionUIBlock(MaterialUIBlock.Expandable.Base, features: SurfaceOptionUIBlock.Features.Lit), new TessellationOptionsUIBlock(MaterialUIBlock.Expandable.Tesselation), new LitSurfaceInputsUIBlock(MaterialUIBlock.Expandable.Input, features: litSurfaceFeatures), new DetailInputsUIBlock(MaterialUIBlock.Expandable.Detail), diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs index 0d7220d5d10..59058982c0b 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/SurfaceOptionUIBlock.cs @@ -25,12 +25,14 @@ public enum Features DoubleSidedNormalMode = 1 << 6, BackThenFrontRendering = 1 << 7, ReceiveSSR = 1 << 8, - ShowAfterPostProcessPass = 1 << 9, - AlphaToMask = 1 << 10, - ShowPrePassAndPostPass = 1 << 11, - ShowDepthOffsetOnly = 1 << 12, - Unlit = Surface | BlendMode | DoubleSided | DoubleSidedNormalMode | AlphaCutoff | AlphaCutoffShadowThreshold | AlphaCutoffThreshold | BackThenFrontRendering | ShowAfterPostProcessPass | AlphaToMask, - Lit = All ^ ShowDepthOffsetOnly, + ReceiveDecal = 1 << 9, + ShowAfterPostProcessPass = 1 << 10, + AlphaToMask = 1 << 11, + ShowPrePassAndPostPass = 1 << 12, + ShowDepthOffsetOnly = 1 << 13, + PreserveSpecularLighting = 1 << 14, + Unlit = Surface | BlendMode | DoubleSided | AlphaCutoff | AlphaCutoffThreshold | AlphaCutoffShadowThreshold| AlphaToMask | BackThenFrontRendering | ShowAfterPostProcessPass | ShowPrePassAndPostPass | ShowDepthOffsetOnly, + Lit = All ^ SurfaceOptionUIBlock.Features.ShowAfterPostProcessPass, // Lit can't be display in after postprocess pass All = ~0, } @@ -295,7 +297,9 @@ public override void LoadMaterialProperties() transparentWritingMotionVec = FindProperty(kTransparentWritingMotionVec); - enableBlendModePreserveSpecularLighting = FindProperty(kEnableBlendModePreserveSpecularLighting); + if ((m_Features & Features.PreserveSpecularLighting) != 0) + enableBlendModePreserveSpecularLighting = FindProperty(kEnableBlendModePreserveSpecularLighting); + enableFogOnTransparent = FindProperty(kEnableFogOnTransparent); if ((m_Features & Features.DoubleSided) != 0) @@ -341,7 +345,10 @@ public override void LoadMaterialProperties() tessellationMode = FindProperty(kTessellationMode); // Decal - supportDecals = FindProperty(kSupportDecals); + if ((m_Features & Features.ReceiveDecal) != 0) + { + supportDecals = FindProperty(kSupportDecals); + } // specular AA enableGeometricSpecularAA = FindProperty(kEnableGeometricSpecularAA); @@ -391,22 +398,29 @@ void DrawSurfaceOptionGUI() void DrawAlphaCutoffGUI() { EditorGUI.BeginChangeCheck(); - if (alphaCutoffEnable != null) + + // For shadergraphs we show this slider only if the feature is enabled in the shader settings. + bool showAlphaClipThreshold = true; + var shader = materials[0].shader; + bool isShaderGraph = shader.IsShaderGraph(); + if (isShaderGraph) + showAlphaClipThreshold = shader.GetPropertyDefaultFloatValue(shader.FindPropertyIndex(kAlphaCutoffEnabled)) > 0.0f; + + if (showAlphaClipThreshold && alphaCutoffEnable != null) materialEditor.ShaderProperty(alphaCutoffEnable, Styles.alphaCutoffEnableText); - if (alphaCutoffEnable != null && alphaCutoffEnable.floatValue == 1.0f) + if (showAlphaClipThreshold && alphaCutoffEnable != null && alphaCutoffEnable.floatValue == 1.0f) { EditorGUI.indentLevel++; - if (alphaCutoff != null) + if (showAlphaClipThreshold && alphaCutoff != null) materialEditor.ShaderProperty(alphaCutoff, Styles.alphaCutoffText); - if ((m_Features & Features.AlphaCutoffThreshold) != 0) + if (showAlphaClipThreshold && (m_Features & Features.AlphaCutoffShadowThreshold) != 0) { // For shadergraphs we show this slider only if the feature is enabled in the shader settings. bool showUseShadowThreshold = useShadowThreshold != null; - var shader = materials[0].shader; - if (showUseShadowThreshold && shader.IsShaderGraph()) + if (isShaderGraph) showUseShadowThreshold = shader.GetPropertyDefaultFloatValue(shader.FindPropertyIndex(kUseShadowThreshold)) > 0.0f; if (showUseShadowThreshold) @@ -420,7 +434,7 @@ void DrawAlphaCutoffGUI() } } - if ((m_Features & Features.AlphaToMask) != 0) + if (showAlphaClipThreshold && (m_Features & Features.AlphaToMask) != 0) { if (alphaToMask != null) materialEditor.ShaderProperty(alphaToMask, Styles.alphaToMaskText); @@ -428,7 +442,7 @@ void DrawAlphaCutoffGUI() // With transparent object and few specific materials like Hair, we need more control on the cutoff to apply // This allow to get a better sorting (with prepass), better shadow (better silhouettes fidelity) etc... - if (surfaceTypeValue == SurfaceType.Transparent) + if (showAlphaClipThreshold && surfaceTypeValue == SurfaceType.Transparent) { // TODO: check if passes exists if (transparentDepthPrepassEnable != null && transparentDepthPrepassEnable.floatValue == 1.0f) @@ -497,14 +511,17 @@ void DrawSurfaceGUI() else if (blendMode != null && showBlendModePopup) BlendModePopup(); - EditorGUI.indentLevel++; if (renderQueueHasMultipleDifferentValue) + if ((m_Features & Features.PreserveSpecularLighting) != 0) { - using (new EditorGUI.DisabledScope(true)) - EditorGUILayout.LabelField(Styles.enableBlendModePreserveSpecularLightingText, Styles.notSupportedInMultiEdition); + EditorGUI.indentLevel++; if (renderQueueHasMultipleDifferentValue) + { + using (new EditorGUI.DisabledScope(true)) + EditorGUILayout.LabelField(Styles.enableBlendModePreserveSpecularLightingText, Styles.notSupportedInMultiEdition); + } + else if (enableBlendModePreserveSpecularLighting != null && blendMode != null && showBlendModePopup) + materialEditor.ShaderProperty(enableBlendModePreserveSpecularLighting, Styles.enableBlendModePreserveSpecularLightingText); + EditorGUI.indentLevel--; } - else if (enableBlendModePreserveSpecularLighting != null && blendMode != null && showBlendModePopup) - materialEditor.ShaderProperty(enableBlendModePreserveSpecularLighting, Styles.enableBlendModePreserveSpecularLightingText); - EditorGUI.indentLevel--; if (transparentSortPriority != null) { @@ -779,7 +796,7 @@ void DrawLitSurfaceOptions() } } - if ((m_Features & Features.ShowDepthOffsetOnly) != 0) + if ((m_Features & Features.ShowDepthOffsetOnly) != 0 && depthOffsetEnable != null) materialEditor.ShaderProperty(depthOffsetEnable, Styles.depthOffsetEnableText); else if (displacementMode != null) { diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/ShaderGraph/HDUnlitGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/ShaderGraph/HDUnlitGUI.cs index 33c99cd3d68..b416dccea53 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/ShaderGraph/HDUnlitGUI.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/ShaderGraph/HDUnlitGUI.cs @@ -12,12 +12,7 @@ namespace UnityEditor.Rendering.HighDefinition /// class HDUnlitGUI : HDShaderGUI { - // For surface option shader graph we only want all unlit features but alpha clip, double sided mode and back then front rendering - const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Unlit - ^ SurfaceOptionUIBlock.Features.AlphaCutoffThreshold - ^ SurfaceOptionUIBlock.Features.DoubleSidedNormalMode - ^ SurfaceOptionUIBlock.Features.BackThenFrontRendering - | SurfaceOptionUIBlock.Features.ShowDepthOffsetOnly; + const SurfaceOptionUIBlock.Features surfaceOptionFeatures = SurfaceOptionUIBlock.Features.Unlit; MaterialUIBlockList uiBlocks = new MaterialUIBlockList { From 3397fac41dff3aa959aecd4356ed83f864cf1ca3 Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 28 Jun 2020 18:46:57 +0200 Subject: [PATCH 24/32] Update HDSubShaderUtilities.cs --- .../ShaderGraph/HDSubShaderUtilities.cs | 26 +++++++++---------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDSubShaderUtilities.cs b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDSubShaderUtilities.cs index a331e20c9a7..a25ed447e89 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDSubShaderUtilities.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/ShaderGraph/HDSubShaderUtilities.cs @@ -70,20 +70,24 @@ static void AddToggleProperty(this PropertyCollector collector, string reference public static void AddStencilShaderProperties(PropertyCollector collector, SystemData systemData, LightingData lightingData, bool splitLighting) { bool ssrStencil = false; - bool receiveSSROpaque = false; - bool receiveSSRTransparent = false; - bool receiveDecals = false; - bool blendPreserveSpecular = false; if (lightingData != null) { ssrStencil = systemData.surfaceType == SurfaceType.Opaque ? lightingData.receiveSSR : lightingData.receiveSSRTransparent; - receiveSSROpaque = lightingData.receiveSSR; - receiveSSRTransparent = lightingData.receiveSSRTransparent; - receiveDecals = lightingData.receiveDecals; - blendPreserveSpecular = lightingData.blendPreserveSpecular; + bool receiveSSROpaque = lightingData.receiveSSR; + bool receiveSSRTransparent = lightingData.receiveSSRTransparent; + bool receiveDecals = lightingData.receiveDecals; + bool blendPreserveSpecular = lightingData.blendPreserveSpecular; + + // Don't add those property on Unlit + collector.AddToggleProperty(kUseSplitLighting, splitLighting); + collector.AddToggleProperty(kReceivesSSR, receiveSSROpaque); + collector.AddToggleProperty(kReceivesSSRTransparent, receiveSSRTransparent); + collector.AddToggleProperty(kEnableBlendModePreserveSpecularLighting, blendPreserveSpecular); + collector.AddToggleProperty(kSupportDecals, receiveDecals); } + // Configure render state BaseLitGUI.ComputeStencilProperties(ssrStencil, splitLighting, out int stencilRef, out int stencilWriteMask, out int stencilRefDepth, out int stencilWriteMaskDepth, out int stencilRefGBuffer, out int stencilWriteMaskGBuffer, out int stencilRefMV, out int stencilWriteMaskMV @@ -105,12 +109,6 @@ public static void AddStencilShaderProperties(PropertyCollector collector, Syste collector.AddIntProperty("_StencilWriteMaskGBuffer", stencilWriteMaskGBuffer); collector.AddIntProperty("_StencilRefGBuffer", stencilRefGBuffer); collector.AddIntProperty("_ZTestGBuffer", 4); - - collector.AddToggleProperty(kUseSplitLighting, splitLighting); - collector.AddToggleProperty(kReceivesSSR, receiveSSROpaque); - collector.AddToggleProperty(kReceivesSSRTransparent, receiveSSRTransparent); - collector.AddToggleProperty(kSupportDecals, receiveDecals); - collector.AddToggleProperty(kEnableBlendModePreserveSpecularLighting, blendPreserveSpecular); } public static void AddBlendingStatesShaderProperties( From 4e9fb7154a298e1e8b3f44cd768081b8d8a88c5c Mon Sep 17 00:00:00 2001 From: sebastienlagarde Date: Sun, 28 Jun 2020 19:43:40 +0200 Subject: [PATCH 25/32] Upload all DXR project material updated --- .../Scenes/5001_PathTracing/M_GreyDiffuse.mat | 3 ++- .../Scenes/5001_PathTracing/M_RedDiffuse.mat | 3 ++- .../5001_PathTracing/M_RoughTintedGlass.mat | 3 ++- .../Scenes/5001_PathTracing/M_SoapBubble.mat | 3 ++- .../5001_PathTracing/M_ThinTintedGlass.mat | 3 ++- .../Assets/Scenes/5001_PathTracing/M_UnlitSG.mat | 3 ++- .../Assets/Scenes/5002_PathTracing_GI/box_gi.mat | 3 ++- .../Scenes/5002_PathTracing_GI/sphere_gi.mat | 3 ++- .../5003_PathTracing_transparency/Ground.mat | 3 ++- .../Transparency_box_1.mat | 3 ++- .../Transparency_box_2.mat | 3 ++- .../Transparency_box_3.mat | 3 ++- .../Transparency_sphere_1.mat | 3 ++- .../Transparency_sphere_2.mat | 3 ++- .../Transparency_sphere_3.mat | 3 ++- .../Transparency_texture_plane.mat | 3 ++- .../Transparency_texture_sphere.mat | 3 ++- .../Transparency_thin_1.mat | 3 ++- .../Transparency_thin_2.mat | 3 ++- .../Transparency_thin_3.mat | 3 ++- .../Scenes/5004_PathTracing_arealight/Lit.mat | 3 ++- .../5004_PathTracing_arealight/MirrorLit.mat | 3 ++- .../Scenes/5004_PathTracing_arealight/Unlit.mat | 3 ++- .../Scenes/5005_PathTracing_Fog/RenderPlane.mat | 3 ++- .../Scenes/5006_PathTracing_DoF/M_Background.mat | 3 ++- .../Scenes/5006_PathTracing_DoF/M_Ground.mat | 3 ++- .../5006_PathTracing_DoF/M_Transparent.mat | 3 ++- .../M_Ground.mat | 3 ++- .../M_ReflectivePlane.mat | 3 ++- .../M_Ground.mat | 3 ++- .../M_Plane.mat | 3 ++- .../M_ReflectivePlane.mat | 3 ++- .../1900_AlphaTestSG_Viewer.mat | 3 ++- .../900_Materials_AlphaTest_SG/Backdrop.mat | 3 ++- .../900_Materials_AlphaTest_SG/Background.mat | 3 ++- .../900_Materials_AlphaTest_SG/Foreground.mat | 3 ++- .../Shader Graphs_AlphaTest_HDRP_EyeSG.mat | 12 +++++++++++- ...r Graphs_AlphaTest_HDRP_EyeSG_transparent.mat | 12 +++++++++++- ...phs_AlphaTest_HDRP_EyeSG_transparent_post.mat | 12 +++++++++++- ...aphs_AlphaTest_HDRP_EyeSG_transparent_pre.mat | 12 +++++++++++- .../Shader Graphs_AlphaTest_HDRP_FabricSG.mat | 8 +++++++- ...raphs_AlphaTest_HDRP_FabricSG_transparent.mat | 12 +++++++++--- ..._AlphaTest_HDRP_FabricSG_transparent_post.mat | 12 +++++++++--- ...s_AlphaTest_HDRP_FabricSG_transparent_pre.mat | 12 +++++++++--- .../Shader Graphs_AlphaTest_HDRP_HairSG.mat | 8 +++++++- ... Graphs_AlphaTest_HDRP_HairSG_transparent.mat | 12 +++++++++--- ...hs_AlphaTest_HDRP_HairSG_transparent_post.mat | 12 +++++++++--- ...phs_AlphaTest_HDRP_HairSG_transparent_pre.mat | 12 +++++++++--- .../Shader Graphs_AlphaTest_HDRP_LitSG.mat | 8 +++++++- ...r Graphs_AlphaTest_HDRP_LitSG_transparent.mat | 11 +++++++++-- ...phs_AlphaTest_HDRP_LitSG_transparent_post.mat | 14 ++++++++++---- ...aphs_AlphaTest_HDRP_LitSG_transparent_pre.mat | 11 +++++++++-- .../Shader Graphs_AlphaTest_HDRP_StackLitSG.mat | 8 +++++++- ...phs_AlphaTest_HDRP_StackLitSG_transparent.mat | 12 +++++++++--- ...lphaTest_HDRP_StackLitSG_transparent_post.mat | 12 +++++++++--- ...AlphaTest_HDRP_StackLitSG_transparent_pre.mat | 12 +++++++++--- .../Shader Graphs_AlphaTest_HDRP_UnlitSG.mat | 6 +++++- ...Graphs_AlphaTest_HDRP_UnlitSG_transparent.mat | 6 +++++- ...s_AlphaTest_HDRP_UnlitSG_transparent_post.mat | 6 +++++- ...hs_AlphaTest_HDRP_UnlitSG_transparent_pre.mat | 6 +++++- .../Scenes/900_Materials_AlphaTest_SG/Mirror.mat | 3 ++- .../Scenes/900_Materials_AlphaTest_SG/Smooth.mat | 3 ++- .../LayeredLit/LayeredLit_LayeredSubSurface.mat | 3 ++- .../LayeredLit/LayeredLit_Standard.mat | 3 ++- .../LayeredLit/LayeredLit_Translucent.mat | 3 ++- .../LayeredLit/LayeredLit_Transparent.mat | 3 ++- .../Lit/Lit_Anisotropy.mat | 3 ++- .../Lit/Lit_DetailMap.mat | 3 ++- .../Lit/Lit_Emission.mat | 3 ++- .../Lit/Lit_Iridescence.mat | 3 ++- .../Lit/Lit_Specular.mat | 3 ++- .../Lit/Lit_Standard.mat | 3 ++- .../Lit/Lit_SubSurfaceScattering.mat | 3 ++- .../Lit/Lit_Translucent.mat | 3 ++- .../Lit/Lit_Transparent_Box.mat | 3 ++- .../Lit/Lit_Transparent_None.mat | 3 ++- .../Lit/Lit_Transparent_Sphere.mat | 3 ++- .../Lit/Lit_Transparent_Thin.mat | 3 ++- .../901_Materials_HDRP_Variants/M_Ground.mat | 3 ++- .../901_Materials_HDRP_Variants/M_Reflection.mat | 3 ++- .../M_Reflection_Recursive.mat | 3 ++- .../Unlit/Unlit_AlphaClip.mat | 3 ++- .../Unlit/Unlit_AlphaClip_DS.mat | 3 ++- .../Unlit/Unlit_Opaque.mat | 3 ++- .../Unlit/Unlit_Transparent.mat | 3 ++- .../Unlit/Unlit_Transparent_Add.mat | 3 ++- .../Unlit/Unlit_Transparent_Distortion.mat | 3 ++- .../Unlit/Unlit_Transparent_Emission.mat | 3 ++- .../Fabric/Shader Graphs_Fabric_CottonWool.mat | 12 +++++++++++- ...Shader Graphs_Fabric_CottonWool_AlphaClip.mat | 16 +++++++++++++++- .../Shader Graphs_Fabric_CottonWool_Emission.mat | 12 +++++++++++- .../Shader Graphs_Fabric_CottonWool_SSS.mat | 12 +++++++++++- ...der Graphs_Fabric_CottonWool_Transmission.mat | 12 +++++++++++- ...ader Graphs_Fabric_CottonWool_Transparent.mat | 16 +++++++++++++--- .../Fabric/Shader Graphs_Fabric_Silk.mat | 12 +++++++++++- .../Shader Graphs_Fabric_Silk_AlphaClip_DS.mat | 16 +++++++++++++++- .../Fabric/Shader Graphs_Fabric_Silk_SSS.mat | 12 +++++++++++- .../Shader Graphs_Fabric_Silk_Transmission.mat | 12 +++++++++++- .../Shader Graphs_Fabric_Silk_Transparent.mat | 16 +++++++++++++--- .../Hair/Shader Graphs_Hair_Standard.mat | 12 +++++++++++- .../Shader Graphs_Hair_Standard_AlphaClip.mat | 12 +++++++++++- .../Shader Graphs_Hair_Standard_AlphaClip_DS.mat | 12 +++++++++++- .../Shader Graphs_Hair_Standard_Transparent.mat | 16 +++++++++++++--- .../Lit/Shader Graphs_Lit_Anisotropic.mat | 8 +++++++- .../Lit/Shader Graphs_Lit_Emission.mat | 8 +++++++- .../Lit/Shader Graphs_Lit_Iridescence.mat | 8 +++++++- .../Lit/Shader Graphs_Lit_Specular.mat | 8 +++++++- .../Lit/Shader Graphs_Lit_Standard.mat | 8 +++++++- .../Lit/Shader Graphs_Lit_SubSurface.mat | 8 +++++++- .../Lit/Shader Graphs_Lit_Translucent.mat | 8 +++++++- .../Lit/Shader Graphs_Lit_Transparent_Box.mat | 11 +++++++++-- .../Lit/Shader Graphs_Lit_Transparent_None.mat | 11 +++++++++-- .../Lit/Shader Graphs_Lit_Transparent_Sphere.mat | 11 +++++++++-- .../Lit/Shader Graphs_Lit_Transparent_Thin.mat | 11 +++++++++-- .../StackLit/Shader Graphs_StackLit.mat | 16 +++++++++++++++- .../Shader Graphs_StackLit_Anisotropy.mat | 16 +++++++++++++++- .../StackLit/Shader Graphs_StackLit_Coat.mat | 16 +++++++++++++++- .../Shader Graphs_StackLit_DualSpecLobe.mat | 16 +++++++++++++++- .../Shader Graphs_StackLit_DualSpecLobe_Hazy.mat | 16 +++++++++++++++- .../StackLit/Shader Graphs_StackLit_Emission.mat | 16 +++++++++++++++- .../Shader Graphs_StackLit_Iridescence.mat | 16 +++++++++++++++- .../StackLit/Shader Graphs_StackLit_Spec.mat | 12 +++++++++++- .../Shader Graphs_StackLit_SubSurface.mat | 16 +++++++++++++++- .../Shader Graphs_StackLit_Transmission.mat | 16 +++++++++++++++- .../Unlit/Shader Graphs_Unlit_AlphaClip.mat | 10 +++++++++- .../Unlit/Shader Graphs_Unlit_AlphaClip_DS.mat | 10 +++++++++- .../Unlit/Shader Graphs_Unlit_Emission.mat | 10 +++++++++- .../Unlit/Shader Graphs_Unlit_Standard.mat | 10 +++++++++- .../Unlit/Shader Graphs_Unlit_Transparent.mat | 10 +++++++++- .../Shader Graphs_Unlit_Transparent_Add.mat | 10 +++++++++- ...ader Graphs_Unlit_Transparent_Premultiply.mat | 10 +++++++++- .../Lit_RTRT_OpaqueSSROff.mat | 3 ++- .../Lit_RTRT_OpaqueSSROn.mat | 3 ++- .../M_Ceiling.mat | 3 ++- .../M_FloorMaterial.mat | 3 ++- ...Shader Graphs_SG_Fabric_RTRT_OpaqueSSROff.mat | 11 +++++++++-- .../Shader Graphs_SG_Fabric_RTRT_OpaqueSSROn.mat | 11 +++++++++-- .../Shader Graphs_SG_Hair_RTRT_OpaqueSSROff.mat | 11 +++++++++-- .../Shader Graphs_SG_Hair_RTRT_OpaqueSSROn.mat | 11 +++++++++-- .../Shader Graphs_SG_Lit_RTRT_OpaqueSSROff.mat | 11 +++++++++-- .../Shader Graphs_SG_Lit_RTRT_OpaqueSSROn.mat | 11 +++++++++-- ...ader Graphs_SG_StackLit_RTRT_OpaqueSSROff.mat | 11 +++++++++-- ...hader Graphs_SG_StackLit_RTRT_OpaqueSSROn.mat | 11 +++++++++-- .../Scenes/AmbientOcclusionData/M_Diffuse.mat | 3 ++- .../AmbientOcclusionData/M_DiffuseHead.mat | 3 ++- .../Assets/Scenes/LightClusterData/M_Chrome.mat | 3 ++- .../Assets/Scenes/LightClusterData/M_Mirror.mat | 3 ++- .../Assets/Scenes/LightClusterData/M_Rough.mat | 3 ++- .../Scenes/RayTracedReflectionsData/Floor.mat | 3 ++- .../RayTracedReflectionsData/M_Anisotropy.mat | 3 ++- .../RayTracedReflectionsData/M_FabricSG.mat | 3 ++- .../Scenes/RayTracedReflectionsData/M_HairSG.mat | 3 ++- .../Scenes/RayTracedReflectionsData/M_LItSG.mat | 3 ++- .../RayTracedReflectionsData/M_LayeredLit0.mat | 3 ++- .../RayTracedReflectionsData/M_LitCutoff.mat | 3 ++- .../M_LitVariablesSmoothness.mat | 8 +++++++- .../RayTracedReflectionsData/M_Reflective.mat | 3 ++- .../M_ReflectiveNoSSR.mat | 3 ++- .../RayTracedReflectionsData/M_SpecularColor.mat | 3 ++- .../RayTracedReflectionsData/M_StackLitSG.mat | 8 +++++++- .../RayTracedReflectionsData/M_Standard.mat | 3 ++- .../M_TransparentSmooth.mat | 3 ++- .../M_TransparentSmoothSG.mat | 7 ++++--- .../M_TransparentSmoothSSR.mat | 3 ++- .../M_TransparentSmoothSSRSG.mat | 6 ++++-- .../RayTracedReflectionsData/M_UnlitSG.mat | 3 ++- .../Scenes/RayTracedReflectionsData/Marker.mat | 3 ++- .../Scenes/RayTracedReflectionsData/Red.mat | 3 ++- .../Scenes/RayTracedReflectionsData/head.mat | 3 ++- .../Scenes/RayTracedReflectionsData/mat 1.mat | 3 ++- .../Scenes/RayTracedReflectionsData/mat.mat | 3 ++- .../Scenes/RecursiveRenderingData/M_Floor.mat | 3 ++- .../Scenes/RecursiveRenderingData/M_Green.mat | 3 ++- .../M_LitRecursiveTransparentSG.mat | 6 ++++-- .../Scenes/RecursiveRenderingData/M_Mirror.mat | 3 ++- .../M_RecursiveTransparent.mat | 3 ++- .../M_RecursiveTransparentNoRefraction.mat | 3 ++- .../M_RecursiveTransparentNoRefractionDouble.mat | 3 ++- .../M_RecursiveTransparentRefra1.1.mat | 3 ++- .../Scenes/RecursiveRenderingData/M_Red.mat | 3 ++- .../Assets/Scenes/ShadowData/M_MirrorLit.mat | 3 ++- .../Assets/Scenes/ShadowData/M_Opaque.mat | 3 ++- .../Assets/Scenes/ShadowData/M_OpaqueSG.mat | 3 ++- .../Assets/Scenes/ShadowData/M_OpaqueUnlit.mat | 3 ++- .../Assets/Scenes/ShadowData/M_OpaqueUnlitSG.mat | 3 ++- .../Assets/Scenes/ShadowData/M_RoughLit.mat | 3 ++- .../Assets/Scenes/ShadowData/M_StackLitSG.mat | 3 ++- .../Scenes/ShadowData/M_TransmissionOpaque.mat | 3 ++- .../Scenes/ShadowData/M_TransmissionOpaqueSG.mat | 6 ++++-- .../ShadowData/M_TransmissionTransparent.mat | 3 ++- .../ShadowData/M_TransmissionTransparentSG.mat | 6 ++++-- .../Assets/Scenes/ShadowData/M_Transparent.mat | 3 ++- .../Assets/Scenes/ShadowData/M_TransparentSG.mat | 11 +++++++++-- .../Scenes/ShadowData/M_TransparentUnlit.mat | 3 ++- .../Scenes/ShadowData/M_TransparentUnlitSG.mat | 3 ++- .../Assets/Scenes/Shared/M_DiffuseLit.mat | 3 ++- .../Assets/Scenes/Shared/M_FrameIndex.mat | 3 ++- .../M_FabricSSSGraph.mat | 3 ++- .../SubSurfaceScatteringData/M_GrayLit.mat | 3 ++- .../Scenes/SubSurfaceScatteringData/M_Jade.mat | 3 ++- .../M_LayeredSubSurface.mat | 3 ++- .../M_LitSubSurfaceSG.mat | 3 ++- .../Scenes/SubSurfaceScatteringData/M_Marble.mat | 3 ++- .../SubSurfaceScatteringData/M_OrangeLit.mat | 3 ++- .../SubSurfaceScatteringData/M_SubSurface.mat | 3 ++- .../SubSurfaceScatteringData/M_TurquoiseLit.mat | 3 ++- .../CornelBox/Materials/Cornell Box.mat | 3 ++- .../CornelBox/Materials/Cornell Box_green.mat | 3 ++- .../CornelBox/Materials/Cornell Box_red.mat | 3 ++- .../3DObjects/GroundLeaf/GroundLeaf.mat | 3 ++- .../3DObjects/PerryHead/Head.mat | 3 ++- .../Fonts/Font Material SG.mat | 6 +++++- com.unity.testing.hdrp/Fonts/Font Material.mat | 5 ++++- com.unity.testing.hdrp/Materials/BW Gradient.mat | 3 ++- .../ComplexMaterial/ComplexMaterial.mat | 3 ++- com.unity.testing.hdrp/Materials/FourShapes.mat | 3 ++- .../Materials/FourShapes_POM.mat | 3 ++- .../Materials/FourShapes_POM_DepthOffset.mat | 3 ++- .../Materials/FourShapes_Tesselation.mat | 3 ++- .../Materials/Lit_Color/LIT_BLUE.MAT | 3 ++- .../Materials/Lit_Color/LIT_CYAN.MAT | 3 ++- .../Materials/Lit_Color/LIT_RED.MAT | 3 ++- .../Materials/Lit_Color/Lit_Black.mat | 3 ++- .../Materials/Lit_Color/Lit_DarkGrey.mat | 3 ++- .../Materials/Lit_Color/Lit_Green.mat | 3 ++- .../Materials/Lit_Color/Lit_LightGrey.mat | 3 ++- .../Materials/Lit_Color/Lit_MidGrey.mat | 3 ++- .../Materials/Lit_Color/Lit_Purple.mat | 3 ++- .../Materials/Lit_Color/Lit_White.mat | 3 ++- .../Materials/Lit_Color/Lit_Yellow.mat | 3 ++- .../Materials/Lit_PixelGrid.mat | 3 ++- .../Materials/Lit_PixelGrid_Small.mat | 3 ++- .../Materials/Numbers/Number_00.mat | 3 ++- .../Materials/Numbers/Number_01.mat | 3 ++- .../Materials/Numbers/Number_02.mat | 3 ++- .../Materials/Numbers/Number_03.mat | 3 ++- .../Materials/Numbers/Number_04.mat | 3 ++- .../Materials/Numbers/Number_05.mat | 3 ++- .../Materials/Numbers/Number_06.mat | 3 ++- .../Materials/Numbers/Number_07.mat | 3 ++- .../Materials/Numbers/Number_08.mat | 3 ++- .../Materials/Numbers_GPUInstance/Number_00.mat | 3 ++- .../Materials/Numbers_GPUInstance/Number_01.mat | 3 ++- .../Materials/Numbers_GPUInstance/Number_02.mat | 3 ++- .../Materials/Numbers_GPUInstance/Number_03.mat | 3 ++- .../Materials/Numbers_GPUInstance/Number_04.mat | 3 ++- .../Materials/Numbers_GPUInstance/Number_05.mat | 3 ++- .../Materials/Numbers_GPUInstance/Number_06.mat | 3 ++- .../Materials/Numbers_GPUInstance/Number_07.mat | 3 ++- .../Materials/Numbers_GPUInstance/Number_08.mat | 3 ++- com.unity.testing.hdrp/Materials/PreRef.mat | 3 ++- .../Materials/PreRefractionPassTester.mat | 3 ++- .../HDRP_Metal_Smooth_00.mat | 3 ++- .../HDRP_Metal_Smooth_01.mat | 3 ++- .../HDRP_Metal_Smooth_02.mat | 3 ++- .../HDRP_Metal_Smooth_03.mat | 3 ++- .../HDRP_Metal_Smooth_04.mat | 3 ++- .../HDRP_Metal_Smooth_05.mat | 3 ++- .../HDRP_Metal_Smooth_06.mat | 3 ++- .../HDRP_Metal_Smooth_07.mat | 3 ++- .../HDRP_Metal_Smooth_08.mat | 3 ++- .../HDRP_Metal_Smooth_09.mat | 3 ++- .../HDRP_Metal_Smooth_10.mat | 3 ++- .../HDRP_NonMetal_Smooth_00.mat | 3 ++- .../HDRP_NonMetal_Smooth_01.mat | 3 ++- .../HDRP_NonMetal_Smooth_02.mat | 3 ++- .../HDRP_NonMetal_Smooth_03.mat | 3 ++- .../HDRP_NonMetal_Smooth_04.mat | 3 ++- .../HDRP_NonMetal_Smooth_05.mat | 3 ++- .../HDRP_NonMetal_Smooth_06.mat | 3 ++- .../HDRP_NonMetal_Smooth_07.mat | 3 ++- .../HDRP_NonMetal_Smooth_08.mat | 3 ++- .../HDRP_NonMetal_Smooth_09.mat | 3 ++- .../HDRP_NonMetal_Smooth_10.mat | 3 ++- .../Materials/SyntheticColorChart.mat | 3 ++- .../Materials/Tests_Default_Mat.mat | 3 ++- com.unity.testing.hdrp/Materials/Transparent.mat | 3 ++- com.unity.testing.hdrp/Materials/Unlit_Black.mat | 3 ++- .../Materials/Unlit_GridMarkers.mat | 3 ++- .../Materials/Unlit_MidGrey.mat | 3 ++- .../Materials/Unlit_PixelGrid.mat | 3 ++- .../Materials/Unlit_PixelGrid_Small.mat | 3 ++- com.unity.testing.hdrp/Materials/Unlit_White.mat | 3 ++- .../Materials/Unlit_White_Transparent.mat | 3 ++- com.unity.testing.hdrp/Materials/White_Mate.mat | 3 ++- 285 files changed, 1198 insertions(+), 333 deletions(-) diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_GreyDiffuse.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_GreyDiffuse.mat index 2212e1de649..b8b36d2ca0f 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_GreyDiffuse.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_GreyDiffuse.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_RedDiffuse.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_RedDiffuse.mat index 003333ba4ca..f2a7be565f2 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_RedDiffuse.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_RedDiffuse.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_RoughTintedGlass.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_RoughTintedGlass.mat index 099134d339e..06f4df6dc1c 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_RoughTintedGlass.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_RoughTintedGlass.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_SoapBubble.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_SoapBubble.mat index 44ebd9f1823..25d52a10b87 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_SoapBubble.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_SoapBubble.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_ThinTintedGlass.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_ThinTintedGlass.mat index bfe87003739..1767623bffd 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_ThinTintedGlass.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_ThinTintedGlass.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_UnlitSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_UnlitSG.mat index 1ed383c871a..81111de3613 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_UnlitSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5001_PathTracing/M_UnlitSG.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5002_PathTracing_GI/box_gi.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5002_PathTracing_GI/box_gi.mat index 0f38e10e029..e9c24d9e0ac 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5002_PathTracing_GI/box_gi.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5002_PathTracing_GI/box_gi.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -194,6 +194,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5002_PathTracing_GI/sphere_gi.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5002_PathTracing_GI/sphere_gi.mat index cce1f514ea4..0e9c299766c 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5002_PathTracing_GI/sphere_gi.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5002_PathTracing_GI/sphere_gi.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -194,6 +194,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 8 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Ground.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Ground.mat index c13fcc6d84a..03111340009 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Ground.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Ground.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_box_1.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_box_1.mat index 5fbfcda54d5..7a2dc59c911 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_box_1.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_box_1.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_box_2.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_box_2.mat index 8823a2de70d..84f98bf4996 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_box_2.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_box_2.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_box_3.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_box_3.mat index 3a2ad142817..e8f372cd4f9 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_box_3.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_box_3.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_sphere_1.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_sphere_1.mat index 8d613fcb3de..5029861c83d 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_sphere_1.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_sphere_1.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_sphere_2.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_sphere_2.mat index 316256ff33d..b67b7f351c8 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_sphere_2.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_sphere_2.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_sphere_3.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_sphere_3.mat index 1390796cb85..2e1d1534b5b 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_sphere_3.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_sphere_3.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_texture_plane.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_texture_plane.mat index 428faffb9a0..3b16194712c 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_texture_plane.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_texture_plane.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_texture_sphere.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_texture_sphere.mat index b1c4aee391d..43722613e33 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_texture_sphere.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_texture_sphere.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_thin_1.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_thin_1.mat index 131f84708ed..68fdab42626 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_thin_1.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_thin_1.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_thin_2.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_thin_2.mat index b294bbfd339..94d33dcc01d 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_thin_2.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_thin_2.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_thin_3.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_thin_3.mat index c8ead0f971d..86c3fb0d3c3 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_thin_3.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5003_PathTracing_transparency/Transparency_thin_3.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5004_PathTracing_arealight/Lit.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5004_PathTracing_arealight/Lit.mat index 91cb2bd23d7..f9e6b14f620 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5004_PathTracing_arealight/Lit.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5004_PathTracing_arealight/Lit.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5004_PathTracing_arealight/MirrorLit.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5004_PathTracing_arealight/MirrorLit.mat index ac4addf52fa..f92095a883b 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5004_PathTracing_arealight/MirrorLit.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5004_PathTracing_arealight/MirrorLit.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5004_PathTracing_arealight/Unlit.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5004_PathTracing_arealight/Unlit.mat index 52931d02371..e328dada008 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5004_PathTracing_arealight/Unlit.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5004_PathTracing_arealight/Unlit.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5005_PathTracing_Fog/RenderPlane.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5005_PathTracing_Fog/RenderPlane.mat index ff1e0c37e2e..d893aef4ab8 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5005_PathTracing_Fog/RenderPlane.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5005_PathTracing_Fog/RenderPlane.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5006_PathTracing_DoF/M_Background.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5006_PathTracing_DoF/M_Background.mat index 01c0f1ae46e..c28614f4ad4 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5006_PathTracing_DoF/M_Background.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5006_PathTracing_DoF/M_Background.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -194,6 +194,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5006_PathTracing_DoF/M_Ground.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5006_PathTracing_DoF/M_Ground.mat index e5eb1db8939..4ebe96dbec7 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5006_PathTracing_DoF/M_Ground.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5006_PathTracing_DoF/M_Ground.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -194,6 +194,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5006_PathTracing_DoF/M_Transparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5006_PathTracing_DoF/M_Transparent.mat index 66d0543b637..20daffcb47c 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5006_PathTracing_DoF/M_Transparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5006_PathTracing_DoF/M_Transparent.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Lit/M_Ground.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Lit/M_Ground.mat index d63a70cd260..174ebe789df 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Lit/M_Ground.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Lit/M_Ground.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Lit/M_ReflectivePlane.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Lit/M_ReflectivePlane.mat index b164e3733b3..2a94e909106 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Lit/M_ReflectivePlane.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Lit/M_ReflectivePlane.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Unlit/M_Ground.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Unlit/M_Ground.mat index d63a70cd260..174ebe789df 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Unlit/M_Ground.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Unlit/M_Ground.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Unlit/M_Plane.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Unlit/M_Plane.mat index df935ec9ed9..104e54ab9c6 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Unlit/M_Plane.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Unlit/M_Plane.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Unlit/M_ReflectivePlane.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Unlit/M_ReflectivePlane.mat index fe94b09eeb0..ce0a44e45d5 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Unlit/M_ReflectivePlane.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/5007_PathTracing_Materials_SG_Unlit/M_ReflectivePlane.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/1900_AlphaTestSG_Viewer.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/1900_AlphaTestSG_Viewer.mat index d550fd91a07..892c31f149c 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/1900_AlphaTestSG_Viewer.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/1900_AlphaTestSG_Viewer.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -201,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Backdrop.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Backdrop.mat index 2ab77169014..0e658a3ecf9 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Backdrop.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Backdrop.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Background.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Background.mat index 73186d76ad2..6f26a43f87e 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Background.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Background.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Foreground.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Foreground.mat index e707fa26bdd..7141ed98d1d 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Foreground.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Foreground.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG.mat index bcb8d5f207b..fa27da22c8f 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG.mat @@ -33,18 +33,24 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 + - _AlphaToMask: 0 - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 + - _RenderQueueType: 1 - _RequireSplitLighting: 0 - _SrcBlend: 1 - _StencilRef: 0 @@ -57,10 +63,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 + - _TransparentDepthPostpassEnable: 0 + - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -83,4 +93,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent.mat index df871d097bc..dd89f1062bf 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent.mat @@ -34,18 +34,24 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 + - _AlphaToMask: 0 - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 + - _RenderQueueType: 4 - _RequireSplitLighting: 0 - _SrcBlend: 1 - _StencilRef: 0 @@ -58,10 +64,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 + - _TransparentDepthPostpassEnable: 0 + - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -84,4 +94,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent_post.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent_post.mat index e8b6216ceeb..b5fd7023bca 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent_post.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent_post.mat @@ -34,18 +34,24 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 + - _AlphaToMask: 0 - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 + - _RenderQueueType: 4 - _RequireSplitLighting: 0 - _SrcBlend: 1 - _StencilRef: 0 @@ -58,10 +64,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 + - _TransparentDepthPostpassEnable: 1 + - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -84,4 +94,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent_pre.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent_pre.mat index be8b2af3e92..143571c2726 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent_pre.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent_pre.mat @@ -34,18 +34,24 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 + - _AlphaToMask: 0 - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 + - _RenderQueueType: 4 - _RequireSplitLighting: 0 - _SrcBlend: 1 - _StencilRef: 0 @@ -58,10 +64,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 + - _TransparentDepthPostpassEnable: 0 + - _TransparentDepthPrepassEnable: 1 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -84,4 +94,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG.mat index 0c30bbbd21c..d22986a293f 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -51,10 +52,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent.mat index ff6a9df1126..3ae1ff123f8 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_FabricSG_transparent m_Shader: {fileID: -6465566751694194690, guid: 14e225ce5b0e2904e9224a6783c8d64f, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -45,6 +45,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -52,10 +53,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -71,12 +75,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_post.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_post.mat index 9163a13528d..948d1a83214 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_post.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_post m_Shader: {fileID: -6465566751694194690, guid: 7abecb5eba461bc498a26964b5de407c, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -45,6 +45,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -52,10 +53,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -71,12 +75,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_pre.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_pre.mat index 9e45976bc28..80c2491235f 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_pre.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_pre.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_pre m_Shader: {fileID: -6465566751694194690, guid: 16d6384126a289b44b266e166aa894e7, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -45,6 +45,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -52,10 +53,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -71,12 +75,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG.mat index 18d2308c522..fb43bcdd05a 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -51,10 +52,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent.mat index 3cdba54b545..cdc4306a014 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_HairSG_transparent m_Shader: {fileID: -6465566751694194690, guid: 7d78fb79f77101e4eb5a7da06eb8106a, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -45,6 +45,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -52,10 +53,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -71,12 +75,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent_post.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent_post.mat index 161ddab9142..30789b59d4a 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent_post.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent_post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_HairSG_transparent_post m_Shader: {fileID: -6465566751694194690, guid: daedde6dbc8319441b8b627b44a412a1, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -51,10 +52,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 1 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent_pre.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent_pre.mat index ab24c2e87c1..cff31c41be6 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent_pre.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent_pre.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_HairSG_transparent_pre m_Shader: {fileID: -6465566751694194690, guid: 73aa00dfcd33ad34492fca1a7fefebef, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -51,10 +52,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 1 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG.mat index 8ca5db2c406..764b5f3336f 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG.mat @@ -36,6 +36,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -43,10 +44,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -63,12 +67,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -91,4 +97,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent.mat index f28a7ba0c06..b6d12da582f 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent.mat @@ -10,7 +10,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_LitSG_transparent m_Shader: {fileID: -6465566751694194690, guid: 2ced2c0022d5e8947899635406a98151, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -35,6 +36,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -42,10 +44,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -62,12 +67,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 1 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -90,4 +97,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent_post.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent_post.mat index 045e7cd6659..cfc11285d0e 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent_post.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent_post.mat @@ -10,7 +10,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_LitSG_transparent_post m_Shader: {fileID: -6465566751694194690, guid: 924090ed89ad3b944b9cc4f7e7384344, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -20,7 +21,6 @@ Material: RenderType: Transparent disabledShaderPasses: - MOTIONVECTORS - - TransparentBackface - RayTracingPrepass m_SavedProperties: serializedVersion: 3 @@ -34,6 +34,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -41,10 +42,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -61,12 +65,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - - _TransparentBackfaceEnable: 0 + - _TransparentBackfaceEnable: 1 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 1 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -89,4 +95,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent_pre.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent_pre.mat index 0f42347fe45..19786af3669 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent_pre.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent_pre.mat @@ -10,7 +10,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_LitSG_transparent_pre m_Shader: {fileID: -6465566751694194690, guid: 2ced2c0022d5e8947899635406a98151, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -35,6 +36,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -42,10 +44,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -62,12 +67,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 1 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -90,4 +97,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG.mat index c1b5dd55f54..e243d1ac931 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -56,6 +56,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -63,10 +64,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -82,12 +86,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent.mat index b81fae15e88..3c649587a76 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent m_Shader: {fileID: -6465566751694194690, guid: 92c37b0b9d0eca54abfac6bef66c16ee, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -56,6 +56,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -63,10 +64,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -82,12 +86,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_post.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_post.mat index 655a8c52885..3d0b3e18dfc 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_post.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_post m_Shader: {fileID: -6465566751694194690, guid: 30af8c00a551d23469cbc39f3c090b25, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -56,6 +56,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -63,10 +64,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -82,12 +86,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_pre.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_pre.mat index 703c838a3db..5b17cc30aac 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_pre.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_pre.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_pre m_Shader: {fileID: -6465566751694194690, guid: 56f5bea9d428df442bed72580ca4f404, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -61,6 +61,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -68,10 +69,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -88,12 +92,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG.mat index dd34d725c88..030209df65c 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -51,10 +52,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -76,6 +79,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent.mat index 3ad5520bf0b..2abe0166d13 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -51,10 +52,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -76,6 +79,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent_post.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent_post.mat index a5bcff1f689..d07630aead4 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent_post.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent_post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -51,10 +52,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -76,6 +79,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent_pre.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent_pre.mat index 58b8cf13837..051ce9062e1 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent_pre.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent_pre.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -51,10 +52,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -76,6 +79,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Mirror.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Mirror.mat index 382446f18c4..1cc01fbaf46 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Mirror.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Mirror.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Smooth.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Smooth.mat index 8051f458f29..2340ead23ca 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Smooth.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/900_Materials_AlphaTest_SG/Smooth.mat @@ -180,6 +180,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -261,4 +262,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/LayeredLit/LayeredLit_LayeredSubSurface.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/LayeredLit/LayeredLit_LayeredSubSurface.mat index 093fcbdac0c..6cc440fd120 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/LayeredLit/LayeredLit_LayeredSubSurface.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/LayeredLit/LayeredLit_LayeredSubSurface.mat @@ -448,6 +448,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -590,4 +591,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/LayeredLit/LayeredLit_Standard.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/LayeredLit/LayeredLit_Standard.mat index 1d5657b84c0..0144a23da4b 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/LayeredLit/LayeredLit_Standard.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/LayeredLit/LayeredLit_Standard.mat @@ -450,6 +450,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -591,4 +592,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/LayeredLit/LayeredLit_Translucent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/LayeredLit/LayeredLit_Translucent.mat index 59b9327c6a8..0e81bc764d2 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/LayeredLit/LayeredLit_Translucent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/LayeredLit/LayeredLit_Translucent.mat @@ -447,6 +447,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -589,4 +590,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/LayeredLit/LayeredLit_Transparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/LayeredLit/LayeredLit_Transparent.mat index 527ae1fda61..fe9a998f4aa 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/LayeredLit/LayeredLit_Transparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/LayeredLit/LayeredLit_Transparent.mat @@ -449,6 +449,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -591,4 +592,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Anisotropy.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Anisotropy.mat index 73c21457f36..2b1a658cbe6 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Anisotropy.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Anisotropy.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_DetailMap.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_DetailMap.mat index e672113d12e..77a84850e4a 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_DetailMap.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_DetailMap.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Emission.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Emission.mat index 70e7ccf93e0..e9133c29157 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Emission.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Emission.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 0.9 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Iridescence.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Iridescence.mat index e166b4792b0..ae11a24800e 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Iridescence.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Iridescence.mat @@ -182,6 +182,7 @@ Material: - _Metallic: 0.9 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -263,4 +264,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Specular.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Specular.mat index 273c8d02e4c..76d129eeec0 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Specular.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Specular.mat @@ -182,6 +182,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -263,4 +264,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Standard.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Standard.mat index 1783388cc2e..1cd152044f9 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Standard.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Standard.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 0.9 - _NormalMapSpace: 0 - _NormalScale: 8 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_SubSurfaceScattering.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_SubSurfaceScattering.mat index 8d496242bab..52066d6d385 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_SubSurfaceScattering.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_SubSurfaceScattering.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Translucent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Translucent.mat index 261dee71ec8..6c47524da46 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Translucent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Translucent.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -263,4 +264,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Transparent_Box.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Transparent_Box.mat index 6484cd86f8a..839e7626451 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Transparent_Box.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Transparent_Box.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0.8 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Transparent_None.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Transparent_None.mat index 5640619b0e6..dfeaad9dc53 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Transparent_None.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Transparent_None.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0.8 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Transparent_Sphere.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Transparent_Sphere.mat index cb4e7484d2c..06776577729 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Transparent_Sphere.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Transparent_Sphere.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0.9 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Transparent_Thin.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Transparent_Thin.mat index fbdddcfdd3e..f382418d1e0 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Transparent_Thin.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Lit/Lit_Transparent_Thin.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0.8 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/M_Ground.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/M_Ground.mat index d63a70cd260..174ebe789df 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/M_Ground.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/M_Ground.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/M_Reflection.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/M_Reflection.mat index e59ff0e7d71..4e87d5dbea4 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/M_Reflection.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/M_Reflection.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/M_Reflection_Recursive.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/M_Reflection_Recursive.mat index b147b55ac99..7ae526937ce 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/M_Reflection_Recursive.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/M_Reflection_Recursive.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -199,6 +199,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_AlphaClip.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_AlphaClip.mat index bc2758ad110..d9b292ad8f7 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_AlphaClip.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_AlphaClip.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_AlphaClip_DS.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_AlphaClip_DS.mat index 9c937220c40..4dff01d0c26 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_AlphaClip_DS.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_AlphaClip_DS.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Opaque.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Opaque.mat index afa6f06d775..e8b1f167138 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Opaque.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Opaque.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Transparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Transparent.mat index b742ccef89e..10dff419a9e 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Transparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Transparent.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Transparent_Add.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Transparent_Add.mat index 18b45238c7e..c74c772d35d 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Transparent_Add.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Transparent_Add.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Transparent_Distortion.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Transparent_Distortion.mat index 9f006138865..0ee8128d6ea 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Transparent_Distortion.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Transparent_Distortion.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Transparent_Emission.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Transparent_Emission.mat index 0e5bc28522f..930b4876871 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Transparent_Emission.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/901_Materials_HDRP_Variants/Unlit/Unlit_Transparent_Emission.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool.mat index a8fedef901d..e8e868441f4 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -42,12 +42,17 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_3585ad2d6f2846eb85d502e5d8def1d7_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_7d4016197169427e9ddc383cb7f4b7f1_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: - Vector1_38D695E4: 1 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -55,10 +60,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -74,12 +82,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_AlphaClip.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_AlphaClip.mat index 511544dff80..85c6412212b 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_AlphaClip.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_AlphaClip.mat @@ -34,15 +34,24 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_4432ac1452544c599b6dd5376b085c69_Out_0: + m_Texture: {fileID: 2800000, guid: deef39d0b4d72ab40adc1a64bc4a5265, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_A4A91B2C_Out_0: m_Texture: {fileID: 2800000, guid: deef39d0b4d72ab40adc1a64bc4a5265, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_bf228235fdab4f1b9e9fa7b8076365a7_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_d91b218a9db64d0a8ec110c60a03c50f_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -50,10 +59,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -69,12 +81,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -97,4 +111,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_Emission.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_Emission.mat index a39d0d3d06c..91f4a1742f6 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_Emission.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_Emission.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -42,12 +42,17 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_3585ad2d6f2846eb85d502e5d8def1d7_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_7d4016197169427e9ddc383cb7f4b7f1_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: - Vector1_38D695E4: 1 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -55,10 +60,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -74,12 +82,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_SSS.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_SSS.mat index 394a5dcda64..f4e986c89f9 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_SSS.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_SSS.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -38,6 +38,10 @@ Material: m_SavedProperties: serializedVersion: 3 m_TexEnvs: + - _Texture2DAsset_115edbd29c864a77b0573b870e149db7_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_224A0831_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} @@ -47,6 +51,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -54,11 +59,14 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DiffusionProfileHash: 3.3412218 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -74,12 +82,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_Transmission.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_Transmission.mat index 50a91b4436d..31a2477ce7e 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_Transmission.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_Transmission.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -46,7 +46,12 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_a465a6eae7df48539fe72a4e7dd42c4f_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -54,11 +59,14 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DiffusionProfileHash: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -74,12 +82,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_Transparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_Transparent.mat index f756d88c2e9..926fff55146 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_Transparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_CottonWool_Transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_Fabric_CottonWool_Transparent m_Shader: {fileID: -6465566751694194690, guid: d6c22991d07f30445aa28266c4142fa7, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -44,12 +44,17 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_3585ad2d6f2846eb85d502e5d8def1d7_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_7d4016197169427e9ddc383cb7f4b7f1_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: - Vector1_38D695E4: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -57,10 +62,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -76,12 +84,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk.mat index 71b28126231..eb4a2d6b712 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -46,8 +46,13 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_dbf40602482f4d8d855ff14ae434af3c_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} m_Floats: - Vector1_BFA1FBAE: 1 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -55,10 +60,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -74,12 +82,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk_AlphaClip_DS.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk_AlphaClip_DS.mat index 8bb8054afe1..65a751de82c 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk_AlphaClip_DS.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk_AlphaClip_DS.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -43,6 +43,10 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_9af7abd9861f4113b6657d0a02afbe20_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_A4A91B2C_Out_0: m_Texture: {fileID: 2800000, guid: deef39d0b4d72ab40adc1a64bc4a5265, type: 3} m_Scale: {x: 1, y: 1} @@ -51,11 +55,16 @@ Material: m_Texture: {fileID: 2800000, guid: deef39d0b4d72ab40adc1a64bc4a5265, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_d93a4c6afc0e4eb39c9ac8a7c61c93dd_Out_0: + m_Texture: {fileID: 2800000, guid: deef39d0b4d72ab40adc1a64bc4a5265, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_e036c0f30a614e5fb4beb57faf84021d_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -63,10 +72,13 @@ Material: - _BlendMode: 0 - _CullMode: 0 - _CullModeForward: 0 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 1 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -82,12 +94,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk_SSS.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk_SSS.mat index 295bb712371..3ea76f10b90 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk_SSS.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk_SSS.mat @@ -29,11 +29,16 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_3c5865fbaf3b4174962d217700733e40_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_aa248813244d4ce3aaa5ced2cf798037_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -41,11 +46,14 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DiffusionProfileHash: 3.3412218 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -61,12 +69,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -91,4 +101,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk_Transmission.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk_Transmission.mat index 4452d6acd4c..c9d19040296 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk_Transmission.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk_Transmission.mat @@ -25,6 +25,10 @@ Material: m_SavedProperties: serializedVersion: 3 m_TexEnvs: + - _Texture2DAsset_0c7ea4dcc9d64cd595f1e72387c78408_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_224A0831_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} @@ -34,6 +38,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -41,11 +46,14 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DiffusionProfileHash: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -61,12 +69,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -90,4 +100,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk_Transparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk_Transparent.mat index fbdf79b4cf9..b1b097ee536 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk_Transparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Fabric/Shader Graphs_Fabric_Silk_Transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_Fabric_Silk_Transparent m_Shader: {fileID: -6465566751694194690, guid: 7b67f7bbb1f269f448a70a81762094d3, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -48,8 +48,13 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_dbf40602482f4d8d855ff14ae434af3c_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} m_Floats: - Vector1_BFA1FBAE: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -57,10 +62,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -76,12 +84,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Hair/Shader Graphs_Hair_Standard.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Hair/Shader Graphs_Hair_Standard.mat index 03232c88240..0aa494cab5c 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Hair/Shader Graphs_Hair_Standard.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Hair/Shader Graphs_Hair_Standard.mat @@ -29,12 +29,17 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_31c6a1bf1a1740c48b7badc9a0aa58c1_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_ea3ccfef64e749379ab9ee383069ee7f_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: - Alpha: 1 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -42,10 +47,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -61,12 +69,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -89,4 +99,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Hair/Shader Graphs_Hair_Standard_AlphaClip.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Hair/Shader Graphs_Hair_Standard_AlphaClip.mat index c45a058e944..f863028f9ec 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Hair/Shader Graphs_Hair_Standard_AlphaClip.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Hair/Shader Graphs_Hair_Standard_AlphaClip.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -47,7 +47,12 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_86772ea37228495fb00c36830ac40f5b_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -55,10 +60,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -74,12 +82,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Hair/Shader Graphs_Hair_Standard_AlphaClip_DS.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Hair/Shader Graphs_Hair_Standard_AlphaClip_DS.mat index 429b3055baf..70405ff021c 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Hair/Shader Graphs_Hair_Standard_AlphaClip_DS.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Hair/Shader Graphs_Hair_Standard_AlphaClip_DS.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -47,7 +47,12 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_86772ea37228495fb00c36830ac40f5b_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -55,10 +60,13 @@ Material: - _BlendMode: 0 - _CullMode: 0 - _CullModeForward: 0 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 1 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -74,12 +82,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Hair/Shader Graphs_Hair_Standard_Transparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Hair/Shader Graphs_Hair_Standard_Transparent.mat index 4f108dd61e4..27ffe7b015f 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Hair/Shader Graphs_Hair_Standard_Transparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Hair/Shader Graphs_Hair_Standard_Transparent.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_Hair_Standard_Transparent m_Shader: {fileID: -6465566751694194690, guid: 4bbe72314d624094eb6b07c4f454810e, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -31,12 +31,17 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_31c6a1bf1a1740c48b7badc9a0aa58c1_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_ea3ccfef64e749379ab9ee383069ee7f_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: - Alpha: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -44,10 +49,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -63,12 +71,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -91,4 +101,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Anisotropic.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Anisotropic.mat index 804c9f9fed2..eefbd759937 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Anisotropic.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Anisotropic.mat @@ -31,6 +31,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -38,10 +39,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -58,12 +62,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -86,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Emission.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Emission.mat index efb7cdef6b4..73124127640 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Emission.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Emission.mat @@ -39,6 +39,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -46,10 +47,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -66,12 +70,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -95,4 +101,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Iridescence.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Iridescence.mat index 440829b7ed9..a416bb26394 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Iridescence.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Iridescence.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -52,6 +52,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -59,10 +60,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -79,12 +83,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Specular.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Specular.mat index f236b516b07..1606f6a4025 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Specular.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Specular.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -52,6 +52,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -59,10 +60,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -79,12 +83,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Standard.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Standard.mat index c4070a30aa8..692a8430032 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Standard.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Standard.mat @@ -39,6 +39,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -46,10 +47,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -66,12 +70,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -95,4 +101,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_SubSurface.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_SubSurface.mat index bcf263d49ac..f2840742ebe 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_SubSurface.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_SubSurface.mat @@ -27,6 +27,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -34,11 +35,14 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DiffusionProfileHash: 3.3412218 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -85,4 +91,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Translucent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Translucent.mat index 3ea25445e47..b7b8a388054 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Translucent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Translucent.mat @@ -31,6 +31,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -38,11 +39,14 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DiffusionProfileHash: 2.5846334 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -59,12 +63,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -89,4 +95,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Transparent_Box.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Transparent_Box.mat index 38e384c242f..a0a8a59b20f 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Transparent_Box.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Transparent_Box.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,7 +23,8 @@ Material: m_Name: Shader Graphs_Lit_Transparent_Box m_Shader: {fileID: -6465566751694194690, guid: 1fc39fac9c18a04449e6df4525598b4b, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _ENABLE_FOG_ON_TRANSPARENT + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -44,6 +45,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -51,10 +53,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -71,12 +76,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Transparent_None.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Transparent_None.mat index 8276eb4e08c..e1bd5908e33 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Transparent_None.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Transparent_None.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,7 +23,8 @@ Material: m_Name: Shader Graphs_Lit_Transparent_None m_Shader: {fileID: -6465566751694194690, guid: 5e56ac555a0d9ab4b841882ac84a9355, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _ENABLE_FOG_ON_TRANSPARENT + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -44,6 +45,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -51,10 +53,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -71,12 +76,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Transparent_Sphere.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Transparent_Sphere.mat index db91628ee3a..14691fb1634 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Transparent_Sphere.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Transparent_Sphere.mat @@ -10,7 +10,8 @@ Material: m_Name: Shader Graphs_Lit_Transparent_Sphere m_Shader: {fileID: -6465566751694194690, guid: 2551b7db722914f418c8d5e22f354e19, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _ENABLE_FOG_ON_TRANSPARENT + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -31,6 +32,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -38,10 +40,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -58,12 +63,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -86,4 +93,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Transparent_Thin.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Transparent_Thin.mat index 5b6773e5fe3..21ec9fb7607 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Transparent_Thin.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Lit/Shader Graphs_Lit_Transparent_Thin.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,7 +23,8 @@ Material: m_Name: Shader Graphs_Lit_Transparent_Thin m_Shader: {fileID: -6465566751694194690, guid: ad8709f4d1c0b814cb2ab35cd181fdb3, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _ENABLE_FOG_ON_TRANSPARENT + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -44,6 +45,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -51,10 +53,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -71,12 +76,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit.mat index df358efc007..dadabc54b8d 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -50,12 +50,21 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_8229302a84d14fec9c41d7245b81e3ae_Out_0: + m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Texture2DAsset_83e58214c7284fc997d0459cc6a2cc59_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_da5ed3679908438d89ee705e2cccd98c_Out_0: m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: - Vector1_555A0A0: 1 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -63,10 +72,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -82,12 +94,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Anisotropy.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Anisotropy.mat index 31e91701cee..c74bcb220f6 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Anisotropy.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Anisotropy.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -50,11 +50,20 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_ada38895fbf3492c8e7c29beaf1b9b8e_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Texture2DAsset_c7ecb4b700f64bbeab91b3f028273551_Out_0: + m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_ca9fb3e51d464e128db172bb28f44342_Out_0: m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -62,10 +71,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -81,12 +93,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Coat.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Coat.mat index dffaeb03666..ae408a46f76 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Coat.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Coat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -38,10 +38,18 @@ Material: m_SavedProperties: serializedVersion: 3 m_TexEnvs: + - _Texture2DAsset_313b39c510b34f1b93dcbb502181129c_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_436BDAD4_Out_0: m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_4a1135c073a94a19bd6609a721b6f2cf_Out_0: + m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_4b5aee0ff3ed4baf9ff555427964e48a_Out_0: m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} m_Scale: {x: 1, y: 1} @@ -55,6 +63,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -62,10 +71,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -81,12 +93,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_DualSpecLobe.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_DualSpecLobe.mat index 5156a2ea4da..d4fffc78b13 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_DualSpecLobe.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_DualSpecLobe.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -46,15 +46,24 @@ Material: m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_43ca13d1a40046ac94a0762e92930a80_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_5B54897F_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_e4a1c852369d40c1b7e7e4334b992ae4_Out_0: + m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_f19e1e2147764cc1acb15a099d3f0e4a_Out_0: m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -62,10 +71,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -81,12 +93,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_DualSpecLobe_Hazy.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_DualSpecLobe_Hazy.mat index 2100bd8363c..6a99d047a9b 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_DualSpecLobe_Hazy.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_DualSpecLobe_Hazy.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -38,6 +38,10 @@ Material: m_SavedProperties: serializedVersion: 3 m_TexEnvs: + - _Texture2DAsset_12480c2eedde4cb5b62850b40542d4b4_Out_0: + m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_436BDAD4_Out_0: m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} m_Scale: {x: 1, y: 1} @@ -50,11 +54,16 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_9f0d078d5869405fb79b8f768255976d_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_c4b2baee00694e5685ea4e62d1f491bb_Out_0: m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -62,10 +71,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -81,12 +93,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Emission.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Emission.mat index 65e7a0def09..e5bf831c094 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Emission.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Emission.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -50,12 +50,21 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_8229302a84d14fec9c41d7245b81e3ae_Out_0: + m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Texture2DAsset_83e58214c7284fc997d0459cc6a2cc59_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_da5ed3679908438d89ee705e2cccd98c_Out_0: m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: - Vector1_555A0A0: 1 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -63,10 +72,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -82,12 +94,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Iridescence.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Iridescence.mat index 5e9b49ab5ac..e1a5209c2c3 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Iridescence.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Iridescence.mat @@ -25,6 +25,10 @@ Material: m_SavedProperties: serializedVersion: 3 m_TexEnvs: + - _Texture2DAsset_15912aad8de44a1fbccc7d4bd2f314cb_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_3eef4fd380414b85b547a64c6cd8ccc8_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} @@ -33,6 +37,10 @@ Material: m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_474a27cef9db44aab7101269025691be_Out_0: + m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_5B54897F_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} @@ -42,6 +50,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -49,11 +58,14 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DiffusionProfileHash: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -69,12 +81,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -98,4 +112,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Spec.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Spec.mat index 161e67372f2..d5104672008 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Spec.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Spec.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -46,11 +46,16 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_812c59277c154133a5ba87c4ce589fbd_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_c959ba01003d49ee9c24f74ab8c2731b_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -58,10 +63,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -77,12 +85,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_SubSurface.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_SubSurface.mat index 9fb6eed0af8..17d9ba4a898 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_SubSurface.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_SubSurface.mat @@ -29,6 +29,10 @@ Material: m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_4efe0e4580de4690b6488de559b97c11_Out_0: + m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_5B54897F_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} @@ -37,11 +41,16 @@ Material: m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_f581b5bdbc934eada444b2c5f98b452b_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_f64cabfb8526429c8b818ae06ca556d7_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -49,11 +58,14 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DiffusionProfileHash: 3.3412218 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -69,12 +81,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -99,4 +113,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Transmission.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Transmission.mat index a9800f6bcfd..4607dcdac92 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Transmission.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/StackLit/Shader Graphs_StackLit_Transmission.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -50,11 +50,20 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_6e23f88188504fb3985adceaa364b4e2_Out_0: + m_Texture: {fileID: 2800000, guid: a720075b2a0ff8440bc021a465769340, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_71c28d63fc0c47fa8b2c629878c7e24c_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_d7578c4048b8425c80d0b7481fc9c982_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -62,11 +71,14 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DiffusionProfileHash: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -82,12 +94,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_AlphaClip.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_AlphaClip.mat index 7de6351e11f..f1da4a62dd8 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_AlphaClip.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_AlphaClip.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -43,6 +43,10 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_91eca0a9e4974a48adb44a8ffdb4f93f_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_9a6d7700f80e4623aa4bddfa1f312b81_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} @@ -52,6 +56,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -59,10 +64,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -84,6 +91,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_AlphaClip_DS.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_AlphaClip_DS.mat index e7e51e1d246..20b84b00086 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_AlphaClip_DS.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_AlphaClip_DS.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -43,6 +43,10 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _Texture2DAsset_91eca0a9e4974a48adb44a8ffdb4f93f_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_9a6d7700f80e4623aa4bddfa1f312b81_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} @@ -52,6 +56,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -59,10 +64,12 @@ Material: - _BlendMode: 0 - _CullMode: 0 - _CullModeForward: 0 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 1 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -84,6 +91,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Emission.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Emission.mat index 11e3745dbf2..d5aa3e8d024 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Emission.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Emission.mat @@ -25,6 +25,10 @@ Material: m_SavedProperties: serializedVersion: 3 m_TexEnvs: + - _Texture2DAsset_3587f19864fe4f19bcbd05ff7fa080b9_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_48E2A5D7_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} @@ -39,6 +43,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_698063BC: 1 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -46,10 +51,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -71,6 +78,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -94,4 +102,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Standard.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Standard.mat index 6703106f0f1..3a146e55a8f 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Standard.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Standard.mat @@ -25,6 +25,10 @@ Material: m_SavedProperties: serializedVersion: 3 m_TexEnvs: + - _Texture2DAsset_3587f19864fe4f19bcbd05ff7fa080b9_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_48E2A5D7_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} @@ -39,6 +43,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_698063BC: 1 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -46,10 +51,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -71,6 +78,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -94,4 +102,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Transparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Transparent.mat index 2cfae13b014..3986240acca 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Transparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Transparent.mat @@ -26,6 +26,10 @@ Material: m_SavedProperties: serializedVersion: 3 m_TexEnvs: + - _Texture2DAsset_3587f19864fe4f19bcbd05ff7fa080b9_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_48E2A5D7_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} @@ -40,6 +44,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_698063BC: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -47,10 +52,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -72,6 +79,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -95,4 +103,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Transparent_Add.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Transparent_Add.mat index 2f418959bf2..0bdb39845ba 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Transparent_Add.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Transparent_Add.mat @@ -26,6 +26,10 @@ Material: m_SavedProperties: serializedVersion: 3 m_TexEnvs: + - _Texture2DAsset_3587f19864fe4f19bcbd05ff7fa080b9_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_48E2A5D7_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} @@ -40,6 +44,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_698063BC: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 1 - _AlphaSrcBlend: 1 @@ -47,10 +52,12 @@ Material: - _BlendMode: 1 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -72,6 +79,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -95,4 +103,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Transparent_Premultiply.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Transparent_Premultiply.mat index 14f7eb9ff29..4ed5ada3573 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Transparent_Premultiply.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/902_Materials_SG_Variants/Unlit/Shader Graphs_Unlit_Transparent_Premultiply.mat @@ -26,6 +26,10 @@ Material: m_SavedProperties: serializedVersion: 3 m_TexEnvs: + - _Texture2DAsset_3587f19864fe4f19bcbd05ff7fa080b9_Out_0: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _Texture2DAsset_48E2A5D7_Out_0: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} @@ -40,6 +44,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_698063BC: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -47,10 +52,12 @@ Material: - _BlendMode: 4 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -72,6 +79,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -95,4 +103,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Lit_RTRT_OpaqueSSROff.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Lit_RTRT_OpaqueSSROff.mat index 2535e663405..3adaecf85c7 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Lit_RTRT_OpaqueSSROff.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Lit_RTRT_OpaqueSSROff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -195,6 +195,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Lit_RTRT_OpaqueSSROn.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Lit_RTRT_OpaqueSSROn.mat index 8936a4b24e0..0837bf8e93e 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Lit_RTRT_OpaqueSSROn.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Lit_RTRT_OpaqueSSROn.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -195,6 +195,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/M_Ceiling.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/M_Ceiling.mat index 0d68ee09741..663a4ef2394 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/M_Ceiling.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/M_Ceiling.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/M_FloorMaterial.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/M_FloorMaterial.mat index d27b84ef897..c08395033df 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/M_FloorMaterial.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/M_FloorMaterial.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Fabric_RTRT_OpaqueSSROff.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Fabric_RTRT_OpaqueSSROff.mat index d056534cd57..841f804e0ee 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Fabric_RTRT_OpaqueSSROff.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Fabric_RTRT_OpaqueSSROff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,7 +23,8 @@ Material: m_Name: Shader Graphs_SG_Fabric_RTRT_OpaqueSSROff m_Shader: {fileID: -6465566751694194690, guid: c7d0c4ac6706d75459fd6a6bad1fa935, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -39,6 +40,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -46,10 +48,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 1 - _RenderQueueType: 4 @@ -65,12 +70,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Fabric_RTRT_OpaqueSSROn.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Fabric_RTRT_OpaqueSSROn.mat index 4112a791c4c..0615e60e7c8 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Fabric_RTRT_OpaqueSSROn.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Fabric_RTRT_OpaqueSSROn.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,7 +23,8 @@ Material: m_Name: Shader Graphs_SG_Fabric_RTRT_OpaqueSSROn m_Shader: {fileID: -6465566751694194690, guid: 32f36e3ba39993844920e1de8889a519, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _ENABLE_FOG_ON_TRANSPARENT + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -39,6 +40,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -46,10 +48,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 - _RenderQueueType: 4 @@ -65,12 +70,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Hair_RTRT_OpaqueSSROff.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Hair_RTRT_OpaqueSSROff.mat index 01ffdcbd182..379a5916758 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Hair_RTRT_OpaqueSSROff.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Hair_RTRT_OpaqueSSROff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,7 +23,8 @@ Material: m_Name: Shader Graphs_SG_Hair_RTRT_OpaqueSSROff m_Shader: {fileID: -6465566751694194690, guid: ff3f879622b8fe54d8703b2497af24ba, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -39,6 +40,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -46,10 +48,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 1 - _RenderQueueType: 4 @@ -65,12 +70,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Hair_RTRT_OpaqueSSROn.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Hair_RTRT_OpaqueSSROn.mat index d8ad16896fe..e7c991e4933 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Hair_RTRT_OpaqueSSROn.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Hair_RTRT_OpaqueSSROn.mat @@ -10,7 +10,8 @@ Material: m_Name: Shader Graphs_SG_Hair_RTRT_OpaqueSSROn m_Shader: {fileID: -6465566751694194690, guid: ee1db60391d978e45a6b8402623a048d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _ENABLE_FOG_ON_TRANSPARENT + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -26,6 +27,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -33,10 +35,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 - _RenderQueueType: 4 @@ -52,12 +57,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -80,4 +87,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Lit_RTRT_OpaqueSSROff.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Lit_RTRT_OpaqueSSROff.mat index 863e3bc94e6..8df189e0dd6 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Lit_RTRT_OpaqueSSROff.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Lit_RTRT_OpaqueSSROff.mat @@ -10,7 +10,8 @@ Material: m_Name: Shader Graphs_SG_Lit_RTRT_OpaqueSSROff m_Shader: {fileID: -6465566751694194690, guid: 171c9fc3e6ae14647ab54d90f1da4382, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -27,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -34,10 +36,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 1 @@ -54,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -82,4 +89,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Lit_RTRT_OpaqueSSROn.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Lit_RTRT_OpaqueSSROn.mat index 7df6bd209d8..32b1bb29568 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Lit_RTRT_OpaqueSSROn.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_Lit_RTRT_OpaqueSSROn.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,7 +23,8 @@ Material: m_Name: Shader Graphs_SG_Lit_RTRT_OpaqueSSROn m_Shader: {fileID: -6465566751694194690, guid: 9ec9f5ffc4c411f429ffb2f055e56d3d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _ENABLE_FOG_ON_TRANSPARENT + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -40,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -47,10 +49,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -67,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_StackLit_RTRT_OpaqueSSROff.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_StackLit_RTRT_OpaqueSSROff.mat index 84c85ac6b87..48c0653173e 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_StackLit_RTRT_OpaqueSSROff.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_StackLit_RTRT_OpaqueSSROff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,7 +23,8 @@ Material: m_Name: Shader Graphs_SG_StackLit_RTRT_OpaqueSSROff m_Shader: {fileID: -6465566751694194690, guid: 3e3e898e75e663249853fa175ff31838, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -39,6 +40,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -46,10 +48,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 1 - _RenderQueueType: 4 @@ -65,12 +70,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_StackLit_RTRT_OpaqueSSROn.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_StackLit_RTRT_OpaqueSSROn.mat index 93888b9e52e..2fb5c80ca13 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_StackLit_RTRT_OpaqueSSROn.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/905_Materials_SG_TransparentRTR/Shader Graphs_SG_StackLit_RTRT_OpaqueSSROn.mat @@ -10,7 +10,8 @@ Material: m_Name: Shader Graphs_SG_StackLit_RTRT_OpaqueSSROn m_Shader: {fileID: -6465566751694194690, guid: d956f33393b13794f9d66649ee63aa2f, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _ENABLE_FOG_ON_TRANSPARENT + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -26,6 +27,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -33,10 +35,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 - _RenderQueueType: 4 @@ -52,12 +57,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -80,4 +87,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/AmbientOcclusionData/M_Diffuse.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/AmbientOcclusionData/M_Diffuse.mat index bc4d304d8d7..4b02b09db8d 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/AmbientOcclusionData/M_Diffuse.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/AmbientOcclusionData/M_Diffuse.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/AmbientOcclusionData/M_DiffuseHead.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/AmbientOcclusionData/M_DiffuseHead.mat index db9dec5f466..c783f9a7f81 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/AmbientOcclusionData/M_DiffuseHead.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/AmbientOcclusionData/M_DiffuseHead.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/LightClusterData/M_Chrome.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/LightClusterData/M_Chrome.mat index ae53d98fa0c..d056e82fa7d 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/LightClusterData/M_Chrome.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/LightClusterData/M_Chrome.mat @@ -182,6 +182,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -263,4 +264,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/LightClusterData/M_Mirror.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/LightClusterData/M_Mirror.mat index 7f418725e0c..3d11d84eeef 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/LightClusterData/M_Mirror.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/LightClusterData/M_Mirror.mat @@ -182,6 +182,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -263,4 +264,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/LightClusterData/M_Rough.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/LightClusterData/M_Rough.mat index 401e9e9ce71..f712b473b75 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/LightClusterData/M_Rough.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/LightClusterData/M_Rough.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -195,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/Floor.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/Floor.mat index 03fff2ed9bf..4ca49455850 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/Floor.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/Floor.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_Anisotropy.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_Anisotropy.mat index bd03caf13ff..aa41fec5c75 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_Anisotropy.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_Anisotropy.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_FabricSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_FabricSG.mat index 9e888b81279..b0a357be506 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_FabricSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_FabricSG.mat @@ -182,6 +182,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_HairSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_HairSG.mat index a1808a998b0..0343a46ee8a 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_HairSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_HairSG.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_LItSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_LItSG.mat index 02c02600680..49f3edee00d 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_LItSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_LItSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_LayeredLit0.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_LayeredLit0.mat index ce466512d3b..9eb4536c832 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_LayeredLit0.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_LayeredLit0.mat @@ -447,6 +447,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -587,4 +588,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_LitCutoff.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_LitCutoff.mat index cad2cddb5d9..2e48bc61933 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_LitCutoff.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_LitCutoff.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_LitVariablesSmoothness.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_LitVariablesSmoothness.mat index 35634bb9bb8..0a15f588bf3 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_LitVariablesSmoothness.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_LitVariablesSmoothness.mat @@ -27,6 +27,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -34,10 +35,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -54,12 +58,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -82,4 +88,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_Reflective.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_Reflective.mat index 68322e68750..45ec9785714 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_Reflective.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_Reflective.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_ReflectiveNoSSR.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_ReflectiveNoSSR.mat index 77d7255df83..5efd48a21aa 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_ReflectiveNoSSR.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_ReflectiveNoSSR.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_SpecularColor.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_SpecularColor.mat index e595a714a7c..1ef99db21a9 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_SpecularColor.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_SpecularColor.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_StackLitSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_StackLitSG.mat index fb436a60b3c..b50d0a867cc 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_StackLitSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_StackLitSG.mat @@ -27,6 +27,7 @@ Material: m_TexEnvs: [] m_Floats: - Vector1_143698EF: 0.815 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -34,10 +35,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -53,12 +57,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -82,4 +88,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_Standard.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_Standard.mat index d6e67dfea82..e4f320dad9c 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_Standard.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_Standard.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_TransparentSmooth.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_TransparentSmooth.mat index fbd0d416143..53da9c2dc67 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_TransparentSmooth.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_TransparentSmooth.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_TransparentSmoothSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_TransparentSmoothSG.mat index 75ced9c6877..140b0ab9823 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_TransparentSmoothSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_TransparentSmoothSG.mat @@ -10,8 +10,8 @@ Material: m_Name: M_TransparentSmoothSG m_Shader: {fileID: -6465566751694194690, guid: 0682f2061f5525d44a8f9cbb171761f3, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -185,6 +185,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -268,4 +269,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_TransparentSmoothSSR.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_TransparentSmoothSSR.mat index 22efe1b2776..c6af29d99e9 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_TransparentSmoothSSR.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_TransparentSmoothSSR.mat @@ -182,6 +182,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -263,4 +264,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_TransparentSmoothSSRSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_TransparentSmoothSSRSG.mat index 405f8a0c0af..62d39ea552d 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_TransparentSmoothSSRSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_TransparentSmoothSSRSG.mat @@ -10,7 +10,8 @@ Material: m_Name: M_TransparentSmoothSSRSG m_Shader: {fileID: -6465566751694194690, guid: 7a6938e95b0473d488e67ffd5bb0cee4, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _ENABLE_FOG_ON_TRANSPARENT + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -183,6 +184,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_UnlitSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_UnlitSG.mat index 039462d97ce..097f45823d9 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_UnlitSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/M_UnlitSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -195,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/Marker.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/Marker.mat index a578ebeb779..eefa9b8312d 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/Marker.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/Marker.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/Red.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/Red.mat index bfcbb38dccb..4076ab8a5a0 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/Red.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/Red.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/head.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/head.mat index 2c0eed6e11c..34ca1018e94 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/head.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/head.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/mat 1.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/mat 1.mat index 4d866e51908..9613b685d88 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/mat 1.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/mat 1.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/mat.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/mat.mat index 33097265fee..3abd9eb4432 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/mat.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RayTracedReflectionsData/mat.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_Floor.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_Floor.mat index 99ee8cb9d3f..83b5ad28ee0 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_Floor.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_Floor.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_Green.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_Green.mat index 646d4d2c7cf..95bbb3657c0 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_Green.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_Green.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0.577 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_LitRecursiveTransparentSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_LitRecursiveTransparentSG.mat index 6bcaaf6d174..3c450579b6d 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_LitRecursiveTransparentSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_LitRecursiveTransparentSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,7 +23,8 @@ Material: m_Name: M_LitRecursiveTransparentSG m_Shader: {fileID: -6465566751694194690, guid: 2c6c738254831714eb28abe9be217e78, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DOUBLESIDED_ON _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DOUBLESIDED_ON + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 1 @@ -195,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_Mirror.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_Mirror.mat index ad7349b2450..67dd18d252b 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_Mirror.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_Mirror.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_RecursiveTransparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_RecursiveTransparent.mat index 99ccb5ac5b3..17500d429f6 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_RecursiveTransparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_RecursiveTransparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_RecursiveTransparentNoRefraction.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_RecursiveTransparentNoRefraction.mat index 927965b034f..b8855469f3e 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_RecursiveTransparentNoRefraction.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_RecursiveTransparentNoRefraction.mat @@ -188,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_RecursiveTransparentNoRefractionDouble.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_RecursiveTransparentNoRefractionDouble.mat index ba39a2c671b..b512f0b08e5 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_RecursiveTransparentNoRefractionDouble.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_RecursiveTransparentNoRefractionDouble.mat @@ -188,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_RecursiveTransparentRefra1.1.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_RecursiveTransparentRefra1.1.mat index e629c762416..3a0903d694d 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_RecursiveTransparentRefra1.1.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_RecursiveTransparentRefra1.1.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_Red.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_Red.mat index ec1700ed9f0..646b95bf21f 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_Red.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/RecursiveRenderingData/M_Red.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0.577 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_MirrorLit.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_MirrorLit.mat index db8938cf80f..3d3a42d347d 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_MirrorLit.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_MirrorLit.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_Opaque.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_Opaque.mat index 62c2976ed11..471ac88d4da 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_Opaque.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_Opaque.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -195,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_OpaqueSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_OpaqueSG.mat index 24e28d3afdf..3131bbd374f 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_OpaqueSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_OpaqueSG.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -268,4 +269,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_OpaqueUnlit.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_OpaqueUnlit.mat index e512573e1dc..6b136e3886e 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_OpaqueUnlit.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_OpaqueUnlit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_OpaqueUnlitSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_OpaqueUnlitSG.mat index e914a5a075e..48a1bb26ed5 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_OpaqueUnlitSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_OpaqueUnlitSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_RoughLit.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_RoughLit.mat index aa9f28443fc..5054477bd05 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_RoughLit.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_RoughLit.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_StackLitSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_StackLitSG.mat index 681e244e80f..e623f1b40f2 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_StackLitSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_StackLitSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransmissionOpaque.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransmissionOpaque.mat index 25ea95adb9d..a8af1b68a67 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransmissionOpaque.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransmissionOpaque.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransmissionOpaqueSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransmissionOpaqueSG.mat index b58725e74e8..906317fe4fe 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransmissionOpaqueSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransmissionOpaqueSG.mat @@ -10,7 +10,8 @@ Material: m_Name: M_TransmissionOpaqueSG m_Shader: {fileID: -6465566751694194690, guid: ab43e220f7c9dd84c828cf1620827643, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _ENABLE_FOG_ON_TRANSPARENT + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -186,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -271,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransmissionTransparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransmissionTransparent.mat index a3bdc1f9b48..2413722e502 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransmissionTransparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransmissionTransparent.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransmissionTransparentSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransmissionTransparentSG.mat index 95c4a3516e5..d8faad5d7e6 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransmissionTransparentSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransmissionTransparentSG.mat @@ -10,7 +10,8 @@ Material: m_Name: M_TransmissionTransparentSG m_Shader: {fileID: -6465566751694194690, guid: ab43e220f7c9dd84c828cf1620827643, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _ENABLE_FOG_ON_TRANSPARENT + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -186,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -271,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_Transparent.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_Transparent.mat index 9cbd9f82db0..1e7ebdbb423 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_Transparent.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_Transparent.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransparentSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransparentSG.mat index 6d604ba1121..3397ed84d2b 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransparentSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransparentSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,7 +23,8 @@ Material: m_Name: M_TransparentSG m_Shader: {fileID: -6465566751694194690, guid: 7c2f461ebf2851646bddde10ef27e23f, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _ENABLE_FOG_ON_TRANSPARENT + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -42,6 +43,7 @@ Material: m_TexEnvs: [] m_Floats: - Vector1_0bbbeb78e27847c7a60212e1444ca1ba: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -49,10 +51,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -69,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransparentUnlit.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransparentUnlit.mat index 9a070d1cc7d..b0fdc4331b0 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransparentUnlit.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransparentUnlit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransparentUnlitSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransparentUnlitSG.mat index bf2e8c72737..876a715be60 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransparentUnlitSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/ShadowData/M_TransparentUnlitSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/Shared/M_DiffuseLit.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/Shared/M_DiffuseLit.mat index 894bdd03745..9f1a3d92518 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/Shared/M_DiffuseLit.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/Shared/M_DiffuseLit.mat @@ -182,6 +182,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -263,4 +264,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/Shared/M_FrameIndex.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/Shared/M_FrameIndex.mat index 558c6740479..f3b271853c9 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/Shared/M_FrameIndex.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/Shared/M_FrameIndex.mat @@ -182,6 +182,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_FabricSSSGraph.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_FabricSSSGraph.mat index f56d3f6a9d3..301346e5011 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_FabricSSSGraph.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_FabricSSSGraph.mat @@ -182,6 +182,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_GrayLit.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_GrayLit.mat index 2e53e0fcd91..3f8ead5939e 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_GrayLit.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_GrayLit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 3 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -194,6 +194,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_Jade.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_Jade.mat index 03dc77ca8d5..edc9200e290 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_Jade.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_Jade.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_LayeredSubSurface.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_LayeredSubSurface.mat index 6f768521911..c7459f6d80d 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_LayeredSubSurface.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_LayeredSubSurface.mat @@ -448,6 +448,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -590,4 +591,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_LitSubSurfaceSG.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_LitSubSurfaceSG.mat index 98c13b6ddc9..e897365e530 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_LitSubSurfaceSG.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_LitSubSurfaceSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_Marble.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_Marble.mat index 4489021b901..6a766788a44 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_Marble.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_Marble.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_OrangeLit.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_OrangeLit.mat index dbe2fe7c99c..07e0aeb1117 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_OrangeLit.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_OrangeLit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 3 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -194,6 +194,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_SubSurface.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_SubSurface.mat index 91f94e5dba9..1d0578adc84 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_SubSurface.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_SubSurface.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_TurquoiseLit.mat b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_TurquoiseLit.mat index 1421a8157d4..ea2cf504932 100644 --- a/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_TurquoiseLit.mat +++ b/TestProjects/HDRP_DXR_Tests/Assets/Scenes/SubSurfaceScatteringData/M_TurquoiseLit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 3 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -194,6 +194,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/3DObjects/CornelBox/Materials/Cornell Box.mat b/com.unity.testing.hdrp/3DObjects/CornelBox/Materials/Cornell Box.mat index dd461b9b011..3da2d40df8d 100644 --- a/com.unity.testing.hdrp/3DObjects/CornelBox/Materials/Cornell Box.mat +++ b/com.unity.testing.hdrp/3DObjects/CornelBox/Materials/Cornell Box.mat @@ -244,6 +244,7 @@ Material: - _NormalMapSpace: 0 - _NormalScale: 1 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -344,4 +345,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/3DObjects/CornelBox/Materials/Cornell Box_green.mat b/com.unity.testing.hdrp/3DObjects/CornelBox/Materials/Cornell Box_green.mat index 052b3d4deeb..951742a9a5e 100644 --- a/com.unity.testing.hdrp/3DObjects/CornelBox/Materials/Cornell Box_green.mat +++ b/com.unity.testing.hdrp/3DObjects/CornelBox/Materials/Cornell Box_green.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -257,6 +257,7 @@ Material: - _NormalMapSpace: 0 - _NormalScale: 1 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/3DObjects/CornelBox/Materials/Cornell Box_red.mat b/com.unity.testing.hdrp/3DObjects/CornelBox/Materials/Cornell Box_red.mat index be1e3485374..aebcf020e71 100644 --- a/com.unity.testing.hdrp/3DObjects/CornelBox/Materials/Cornell Box_red.mat +++ b/com.unity.testing.hdrp/3DObjects/CornelBox/Materials/Cornell Box_red.mat @@ -244,6 +244,7 @@ Material: - _NormalMapSpace: 0 - _NormalScale: 1 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -344,4 +345,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/3DObjects/GroundLeaf/GroundLeaf.mat b/com.unity.testing.hdrp/3DObjects/GroundLeaf/GroundLeaf.mat index b54fb69d338..29cfcccffad 100644 --- a/com.unity.testing.hdrp/3DObjects/GroundLeaf/GroundLeaf.mat +++ b/com.unity.testing.hdrp/3DObjects/GroundLeaf/GroundLeaf.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -205,6 +205,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/3DObjects/PerryHead/Head.mat b/com.unity.testing.hdrp/3DObjects/PerryHead/Head.mat index bff5125bdb0..5989762d8a7 100644 --- a/com.unity.testing.hdrp/3DObjects/PerryHead/Head.mat +++ b/com.unity.testing.hdrp/3DObjects/PerryHead/Head.mat @@ -190,6 +190,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -281,4 +282,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Fonts/Font Material SG.mat b/com.unity.testing.hdrp/Fonts/Font Material SG.mat index fa4199dde12..523fc61e649 100644 --- a/com.unity.testing.hdrp/Fonts/Font Material SG.mat +++ b/com.unity.testing.hdrp/Fonts/Font Material SG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -52,6 +52,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -60,10 +61,12 @@ Material: - _BlendMode: 0 - _CullMode: 0 - _CullModeForward: 0 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 1 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -85,6 +88,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 0 diff --git a/com.unity.testing.hdrp/Fonts/Font Material.mat b/com.unity.testing.hdrp/Fonts/Font Material.mat index e377f3d08c1..e8d357fd422 100644 --- a/com.unity.testing.hdrp/Fonts/Font Material.mat +++ b/com.unity.testing.hdrp/Fonts/Font Material.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -48,6 +48,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -56,6 +57,7 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 @@ -82,6 +84,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 0 diff --git a/com.unity.testing.hdrp/Materials/BW Gradient.mat b/com.unity.testing.hdrp/Materials/BW Gradient.mat index c935c0264e2..05651ca1433 100644 --- a/com.unity.testing.hdrp/Materials/BW Gradient.mat +++ b/com.unity.testing.hdrp/Materials/BW Gradient.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/ComplexMaterial/ComplexMaterial.mat b/com.unity.testing.hdrp/Materials/ComplexMaterial/ComplexMaterial.mat index bac9eb1f603..de19b0775a4 100644 --- a/com.unity.testing.hdrp/Materials/ComplexMaterial/ComplexMaterial.mat +++ b/com.unity.testing.hdrp/Materials/ComplexMaterial/ComplexMaterial.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -210,6 +210,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 64 - _PPDMinSamples: 6 diff --git a/com.unity.testing.hdrp/Materials/FourShapes.mat b/com.unity.testing.hdrp/Materials/FourShapes.mat index cc591aff8b0..bf7b3cd9afb 100644 --- a/com.unity.testing.hdrp/Materials/FourShapes.mat +++ b/com.unity.testing.hdrp/Materials/FourShapes.mat @@ -190,6 +190,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -286,4 +287,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/FourShapes_POM.mat b/com.unity.testing.hdrp/Materials/FourShapes_POM.mat index eb77edacc83..fab9a725272 100644 --- a/com.unity.testing.hdrp/Materials/FourShapes_POM.mat +++ b/com.unity.testing.hdrp/Materials/FourShapes_POM.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -204,6 +204,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/FourShapes_POM_DepthOffset.mat b/com.unity.testing.hdrp/Materials/FourShapes_POM_DepthOffset.mat index d0e738117c3..f94fd6c1b39 100644 --- a/com.unity.testing.hdrp/Materials/FourShapes_POM_DepthOffset.mat +++ b/com.unity.testing.hdrp/Materials/FourShapes_POM_DepthOffset.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -204,6 +204,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/FourShapes_Tesselation.mat b/com.unity.testing.hdrp/Materials/FourShapes_Tesselation.mat index 77204fa51a4..41fde1d8e21 100644 --- a/com.unity.testing.hdrp/Materials/FourShapes_Tesselation.mat +++ b/com.unity.testing.hdrp/Materials/FourShapes_Tesselation.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -203,6 +203,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Lit_Color/LIT_BLUE.MAT b/com.unity.testing.hdrp/Materials/Lit_Color/LIT_BLUE.MAT index e552d4d27ec..55ad379d37b 100644 --- a/com.unity.testing.hdrp/Materials/Lit_Color/LIT_BLUE.MAT +++ b/com.unity.testing.hdrp/Materials/Lit_Color/LIT_BLUE.MAT @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -206,6 +206,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Lit_Color/LIT_CYAN.MAT b/com.unity.testing.hdrp/Materials/Lit_Color/LIT_CYAN.MAT index 6eefec4ce23..2c502d7a7e1 100644 --- a/com.unity.testing.hdrp/Materials/Lit_Color/LIT_CYAN.MAT +++ b/com.unity.testing.hdrp/Materials/Lit_Color/LIT_CYAN.MAT @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -206,6 +206,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Lit_Color/LIT_RED.MAT b/com.unity.testing.hdrp/Materials/Lit_Color/LIT_RED.MAT index 7c9f0789dc3..6bed0626381 100644 --- a/com.unity.testing.hdrp/Materials/Lit_Color/LIT_RED.MAT +++ b/com.unity.testing.hdrp/Materials/Lit_Color/LIT_RED.MAT @@ -193,6 +193,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -284,4 +285,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Lit_Color/Lit_Black.mat b/com.unity.testing.hdrp/Materials/Lit_Color/Lit_Black.mat index 259c4a6739a..cacd43370ce 100644 --- a/com.unity.testing.hdrp/Materials/Lit_Color/Lit_Black.mat +++ b/com.unity.testing.hdrp/Materials/Lit_Color/Lit_Black.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -278,4 +279,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Lit_Color/Lit_DarkGrey.mat b/com.unity.testing.hdrp/Materials/Lit_Color/Lit_DarkGrey.mat index c2454a98c1d..d6996c2c702 100644 --- a/com.unity.testing.hdrp/Materials/Lit_Color/Lit_DarkGrey.mat +++ b/com.unity.testing.hdrp/Materials/Lit_Color/Lit_DarkGrey.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Lit_Color/Lit_Green.mat b/com.unity.testing.hdrp/Materials/Lit_Color/Lit_Green.mat index b5a3ba5789d..667f083a2e2 100644 --- a/com.unity.testing.hdrp/Materials/Lit_Color/Lit_Green.mat +++ b/com.unity.testing.hdrp/Materials/Lit_Color/Lit_Green.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Lit_Color/Lit_LightGrey.mat b/com.unity.testing.hdrp/Materials/Lit_Color/Lit_LightGrey.mat index 4e92934b310..ed126d9be8f 100644 --- a/com.unity.testing.hdrp/Materials/Lit_Color/Lit_LightGrey.mat +++ b/com.unity.testing.hdrp/Materials/Lit_Color/Lit_LightGrey.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -278,4 +279,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Lit_Color/Lit_MidGrey.mat b/com.unity.testing.hdrp/Materials/Lit_Color/Lit_MidGrey.mat index 4379b1589b7..a9abe974161 100644 --- a/com.unity.testing.hdrp/Materials/Lit_Color/Lit_MidGrey.mat +++ b/com.unity.testing.hdrp/Materials/Lit_Color/Lit_MidGrey.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Lit_Color/Lit_Purple.mat b/com.unity.testing.hdrp/Materials/Lit_Color/Lit_Purple.mat index 090e7f0199e..b45419b180f 100644 --- a/com.unity.testing.hdrp/Materials/Lit_Color/Lit_Purple.mat +++ b/com.unity.testing.hdrp/Materials/Lit_Color/Lit_Purple.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -278,4 +279,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Lit_Color/Lit_White.mat b/com.unity.testing.hdrp/Materials/Lit_Color/Lit_White.mat index 97518c1d1a8..b533b677ade 100644 --- a/com.unity.testing.hdrp/Materials/Lit_Color/Lit_White.mat +++ b/com.unity.testing.hdrp/Materials/Lit_Color/Lit_White.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Lit_Color/Lit_Yellow.mat b/com.unity.testing.hdrp/Materials/Lit_Color/Lit_Yellow.mat index 4add888138f..d1548a2b340 100644 --- a/com.unity.testing.hdrp/Materials/Lit_Color/Lit_Yellow.mat +++ b/com.unity.testing.hdrp/Materials/Lit_Color/Lit_Yellow.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -278,4 +279,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Lit_PixelGrid.mat b/com.unity.testing.hdrp/Materials/Lit_PixelGrid.mat index b60c458f1c1..0ed1e9d33cf 100644 --- a/com.unity.testing.hdrp/Materials/Lit_PixelGrid.mat +++ b/com.unity.testing.hdrp/Materials/Lit_PixelGrid.mat @@ -193,6 +193,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -283,4 +284,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Lit_PixelGrid_Small.mat b/com.unity.testing.hdrp/Materials/Lit_PixelGrid_Small.mat index bb13212a32a..d277881868d 100644 --- a/com.unity.testing.hdrp/Materials/Lit_PixelGrid_Small.mat +++ b/com.unity.testing.hdrp/Materials/Lit_PixelGrid_Small.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -206,6 +206,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers/Number_00.mat b/com.unity.testing.hdrp/Materials/Numbers/Number_00.mat index 91ce1af5b4a..e24642a486e 100644 --- a/com.unity.testing.hdrp/Materials/Numbers/Number_00.mat +++ b/com.unity.testing.hdrp/Materials/Numbers/Number_00.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers/Number_01.mat b/com.unity.testing.hdrp/Materials/Numbers/Number_01.mat index 747c9d16110..9ed60538b12 100644 --- a/com.unity.testing.hdrp/Materials/Numbers/Number_01.mat +++ b/com.unity.testing.hdrp/Materials/Numbers/Number_01.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers/Number_02.mat b/com.unity.testing.hdrp/Materials/Numbers/Number_02.mat index 4d0a5a76aae..4b51e7d28e4 100644 --- a/com.unity.testing.hdrp/Materials/Numbers/Number_02.mat +++ b/com.unity.testing.hdrp/Materials/Numbers/Number_02.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers/Number_03.mat b/com.unity.testing.hdrp/Materials/Numbers/Number_03.mat index f506893d951..dd5d321a5be 100644 --- a/com.unity.testing.hdrp/Materials/Numbers/Number_03.mat +++ b/com.unity.testing.hdrp/Materials/Numbers/Number_03.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers/Number_04.mat b/com.unity.testing.hdrp/Materials/Numbers/Number_04.mat index d6cb7dfd105..41df4d9c97e 100644 --- a/com.unity.testing.hdrp/Materials/Numbers/Number_04.mat +++ b/com.unity.testing.hdrp/Materials/Numbers/Number_04.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers/Number_05.mat b/com.unity.testing.hdrp/Materials/Numbers/Number_05.mat index 35d07bb59ce..b15295a6547 100644 --- a/com.unity.testing.hdrp/Materials/Numbers/Number_05.mat +++ b/com.unity.testing.hdrp/Materials/Numbers/Number_05.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers/Number_06.mat b/com.unity.testing.hdrp/Materials/Numbers/Number_06.mat index 25c73b4fcca..7658d662645 100644 --- a/com.unity.testing.hdrp/Materials/Numbers/Number_06.mat +++ b/com.unity.testing.hdrp/Materials/Numbers/Number_06.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers/Number_07.mat b/com.unity.testing.hdrp/Materials/Numbers/Number_07.mat index a7ff31f9251..81eaf960381 100644 --- a/com.unity.testing.hdrp/Materials/Numbers/Number_07.mat +++ b/com.unity.testing.hdrp/Materials/Numbers/Number_07.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers/Number_08.mat b/com.unity.testing.hdrp/Materials/Numbers/Number_08.mat index d8f0aee20e1..733e970aca8 100644 --- a/com.unity.testing.hdrp/Materials/Numbers/Number_08.mat +++ b/com.unity.testing.hdrp/Materials/Numbers/Number_08.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_00.mat b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_00.mat index e54508e3079..c0aff0bd91d 100644 --- a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_00.mat +++ b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_00.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_01.mat b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_01.mat index b75a4115b76..2850c6ed268 100644 --- a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_01.mat +++ b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_01.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_02.mat b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_02.mat index e908fdb5d0b..3d3ca2eb790 100644 --- a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_02.mat +++ b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_02.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_03.mat b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_03.mat index 6661ba76818..29b915febfc 100644 --- a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_03.mat +++ b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_03.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_04.mat b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_04.mat index a3f0ff9e1ff..3543b952efe 100644 --- a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_04.mat +++ b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_04.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_05.mat b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_05.mat index f79f80f7286..e5ce3a09ed8 100644 --- a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_05.mat +++ b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_05.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_06.mat b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_06.mat index 31deac948a4..84c00fece00 100644 --- a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_06.mat +++ b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_06.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_07.mat b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_07.mat index b88c1bfdf51..1debdbeceae 100644 --- a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_07.mat +++ b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_07.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_08.mat b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_08.mat index 4934c3d68e6..c0407434968 100644 --- a/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_08.mat +++ b/com.unity.testing.hdrp/Materials/Numbers_GPUInstance/Number_08.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/PreRef.mat b/com.unity.testing.hdrp/Materials/PreRef.mat index 305d1b3a098..f74542fb4c5 100644 --- a/com.unity.testing.hdrp/Materials/PreRef.mat +++ b/com.unity.testing.hdrp/Materials/PreRef.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/PreRefractionPassTester.mat b/com.unity.testing.hdrp/Materials/PreRefractionPassTester.mat index de1992ed9d4..d5750857247 100644 --- a/com.unity.testing.hdrp/Materials/PreRefractionPassTester.mat +++ b/com.unity.testing.hdrp/Materials/PreRefractionPassTester.mat @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -289,4 +290,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_00.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_00.mat index 592ebbeaab5..8eeebae8449 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_00.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_00.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -209,6 +209,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_01.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_01.mat index 51be99b07ad..6c529816174 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_01.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_01.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_02.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_02.mat index 27a2a0a3cec..6f1f11778f1 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_02.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_02.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -209,6 +209,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_03.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_03.mat index db50bcf95ec..7edda610a31 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_03.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_03.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -209,6 +209,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_04.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_04.mat index e4f7f44d450..c089ece4a6b 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_04.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_04.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_05.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_05.mat index 6e9c6164bfb..68d1a882f2a 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_05.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_05.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -209,6 +209,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_06.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_06.mat index 81d4021b588..7008f2b61a9 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_06.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_06.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_07.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_07.mat index 0bb49fd1656..2789ba62173 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_07.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_07.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_08.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_08.mat index 6ed9781d29c..180a555036d 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_08.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_08.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_09.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_09.mat index 304ea1b3bda..4f7d626c909 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_09.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_09.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -286,4 +287,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_10.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_10.mat index ff35f4305f1..432fb951367 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_10.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_Metal_Smooth_10.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -209,6 +209,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_00.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_00.mat index 48058857c72..26f2b780a0a 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_00.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_00.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_01.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_01.mat index 5e2e10f3010..235b1ae2a72 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_01.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_01.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_02.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_02.mat index 24d44720566..5885bd641d3 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_02.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_02.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -209,6 +209,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_03.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_03.mat index b6a7db439c7..629b3047e71 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_03.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_03.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_04.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_04.mat index 94e7c35604f..947ae828c85 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_04.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_04.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_05.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_05.mat index 2923ced9cd3..50315d2ff26 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_05.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_05.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_06.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_06.mat index 35b9f887add..f455e54852e 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_06.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_06.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -209,6 +209,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_07.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_07.mat index e3d05b1ad2d..eed225e6a88 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_07.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_07.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_08.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_08.mat index 47393ff50ec..fe7eff92f5e 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_08.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_08.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_09.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_09.mat index 5239f19a218..7f052c30852 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_09.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_09.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -209,6 +209,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_10.mat b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_10.mat index c5668f98432..355e34a191d 100644 --- a/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_10.mat +++ b/com.unity.testing.hdrp/Materials/Smoothness Variation/HDRP_NonMetal_Smooth_10.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -209,6 +209,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/SyntheticColorChart.mat b/com.unity.testing.hdrp/Materials/SyntheticColorChart.mat index b32aa6bb13b..ad4ea4c8e0c 100644 --- a/com.unity.testing.hdrp/Materials/SyntheticColorChart.mat +++ b/com.unity.testing.hdrp/Materials/SyntheticColorChart.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Tests_Default_Mat.mat b/com.unity.testing.hdrp/Materials/Tests_Default_Mat.mat index a92f1bb2b33..c80a9b6a38c 100644 --- a/com.unity.testing.hdrp/Materials/Tests_Default_Mat.mat +++ b/com.unity.testing.hdrp/Materials/Tests_Default_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -209,6 +209,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Transparent.mat b/com.unity.testing.hdrp/Materials/Transparent.mat index 91fc291b4ea..7d0204c6e21 100644 --- a/com.unity.testing.hdrp/Materials/Transparent.mat +++ b/com.unity.testing.hdrp/Materials/Transparent.mat @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -288,4 +289,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Unlit_Black.mat b/com.unity.testing.hdrp/Materials/Unlit_Black.mat index 75a24f77c89..a6ad7ae378d 100644 --- a/com.unity.testing.hdrp/Materials/Unlit_Black.mat +++ b/com.unity.testing.hdrp/Materials/Unlit_Black.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Unlit_GridMarkers.mat b/com.unity.testing.hdrp/Materials/Unlit_GridMarkers.mat index 2b048b3304d..0424a8ff515 100644 --- a/com.unity.testing.hdrp/Materials/Unlit_GridMarkers.mat +++ b/com.unity.testing.hdrp/Materials/Unlit_GridMarkers.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Unlit_MidGrey.mat b/com.unity.testing.hdrp/Materials/Unlit_MidGrey.mat index 155cb5a8b74..19504d5f818 100644 --- a/com.unity.testing.hdrp/Materials/Unlit_MidGrey.mat +++ b/com.unity.testing.hdrp/Materials/Unlit_MidGrey.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Unlit_PixelGrid.mat b/com.unity.testing.hdrp/Materials/Unlit_PixelGrid.mat index ca629ee71d7..caea4f37867 100644 --- a/com.unity.testing.hdrp/Materials/Unlit_PixelGrid.mat +++ b/com.unity.testing.hdrp/Materials/Unlit_PixelGrid.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Unlit_PixelGrid_Small.mat b/com.unity.testing.hdrp/Materials/Unlit_PixelGrid_Small.mat index 0780131aa10..e5221bb323a 100644 --- a/com.unity.testing.hdrp/Materials/Unlit_PixelGrid_Small.mat +++ b/com.unity.testing.hdrp/Materials/Unlit_PixelGrid_Small.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/Unlit_White.mat b/com.unity.testing.hdrp/Materials/Unlit_White.mat index 0a1ea686241..0b7122cde29 100644 --- a/com.unity.testing.hdrp/Materials/Unlit_White.mat +++ b/com.unity.testing.hdrp/Materials/Unlit_White.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.hdrp/Materials/Unlit_White_Transparent.mat b/com.unity.testing.hdrp/Materials/Unlit_White_Transparent.mat index 66f2244814c..84fcc15d8e6 100644 --- a/com.unity.testing.hdrp/Materials/Unlit_White_Transparent.mat +++ b/com.unity.testing.hdrp/Materials/Unlit_White_Transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -174,6 +174,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.hdrp/Materials/White_Mate.mat b/com.unity.testing.hdrp/Materials/White_Mate.mat index e7bb5293d5a..f44d19633bd 100644 --- a/com.unity.testing.hdrp/Materials/White_Mate.mat +++ b/com.unity.testing.hdrp/Materials/White_Mate.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 From f8a59ee43a79ce4ea3774d1cf7485c125ff1fe04 Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 28 Jun 2020 19:54:44 +0200 Subject: [PATCH 26/32] Fix Motion Vector for animatoin UX --- .../Material/UIBlocks/ShaderGraphUIBlock.cs | 54 +++++++++---------- .../Editor/Material/Unlit/BaseUnlitGUI.cs | 5 +- 2 files changed, 26 insertions(+), 33 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/ShaderGraphUIBlock.cs b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/ShaderGraphUIBlock.cs index 5111809ebd0..e8073262a90 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/ShaderGraphUIBlock.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/UIBlocks/ShaderGraphUIBlock.cs @@ -28,6 +28,7 @@ protected static class Styles { public const string header = "Exposed Properties"; public static readonly GUIContent bakedEmission = new GUIContent("Baked Emission", ""); + public static readonly GUIContent motionVectorForVertexAnimationText = new GUIContent("Motion Vector For Vertex Animation", "When enabled, HDRP will correctly handle velocity for vertex animated object. Only enable if there is vertex animation in the ShaderGraph."); } Expandable m_ExpandableBit; @@ -150,47 +151,40 @@ void DrawEmissionGI() EmissionUIBlock.BakedEmissionEnabledProperty(materialEditor); } - // Track additional velocity state. See SG-ADDITIONALVELOCITY-NOTE - bool m_AddPrecomputedVelocity = false; - void DrawMotionVectorToggle() { - // I absolutely don't know what this is meant to do + // We have no way to setup motion vector pass to be false by default for a shader graph + // So here we workaround it with materialTag system by checking if a tag exist to know if it is + // the first time we display this information. And thus setup the MotionVector Pass to false. const string materialTag = "MotionVector"; - foreach (var material in materials) + + string tag = materials[0].GetTag(materialTag, false, "Nothing"); + if (tag == "Nothing") { - string tag = material.GetTag(materialTag, false, "Nothing"); - if (tag == "Nothing") - { - material.SetShaderPassEnabled(HDShaderPassNames.s_MotionVectorsStr, false); - material.SetOverrideTag(materialTag, "User"); - } + materials[0].SetShaderPassEnabled(HDShaderPassNames.s_MotionVectorsStr, false); + materials[0].SetOverrideTag(materialTag, "User"); + } + + //In the case of additional velocity data we will enable the motion vector pass. + bool addPrecomputedVelocity = false; + if (materials[0].HasProperty(kAddPrecomputedVelocity)) + { + addPrecomputedVelocity = materials[0].GetInt(kAddPrecomputedVelocity) != 0; } - // If using multi-select, apply toggled material to all materials. - bool enabled = materials[0].GetShaderPassEnabled(HDShaderPassNames.s_MotionVectorsStr); + bool currentMotionVectorState = materials[0].GetShaderPassEnabled(HDShaderPassNames.s_MotionVectorsStr); + bool enabled = currentMotionVectorState || addPrecomputedVelocity; + EditorGUI.BeginChangeCheck(); - enabled = EditorGUILayout.Toggle("Motion Vector For Vertex Animation", enabled); - - // SG-ADDITIONALVELOCITY-NOTE: - // We would like to automatically enable the motion vector pass (handled on material UI side) - // in case we add precomputed velocity in a graph. Due to serialization of material, changing - // a value in between shadergraph compilations would have no effect on a material, so we instead - // inform the motion vector UI via the existence of the property at all and query against that. - bool hasPrecomputedVelocity = materials[0].HasProperty(kAddPrecomputedVelocity); - if (m_AddPrecomputedVelocity != hasPrecomputedVelocity) + + using (new EditorGUI.DisabledScope(addPrecomputedVelocity)) { - enabled |= hasPrecomputedVelocity; - m_AddPrecomputedVelocity = hasPrecomputedVelocity; - GUI.changed = true; + enabled = EditorGUILayout.Toggle(Styles.motionVectorForVertexAnimationText, enabled); } - if (EditorGUI.EndChangeCheck()) + if (EditorGUI.EndChangeCheck() || currentMotionVectorState != enabled) { - foreach (var material in materials) - { - material.SetShaderPassEnabled(HDShaderPassNames.s_MotionVectorsStr, enabled); - } + materials[0].SetShaderPassEnabled(HDShaderPassNames.s_MotionVectorsStr, enabled); } } diff --git a/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/BaseUnlitGUI.cs b/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/BaseUnlitGUI.cs index d81bbc37265..e76d5be4add 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/BaseUnlitGUI.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Material/Unlit/BaseUnlitGUI.cs @@ -321,8 +321,9 @@ static public void SetupBaseUnlitPass(this Material material) bool rayTracingEnable = (material.GetFloat(kRayTracing) > 0.0f); material.SetShaderPassEnabled(HDShaderPassNames.s_RayTracingPrepassStr, rayTracingEnable); } - + // Shader graphs materials have their own management of motion vector pass in the material inspector + // (see DrawMotionVectorToggle()) if (!material.shader.IsShaderGraph()) { //In the case of additional velocity data we will enable the motion vector pass. @@ -338,9 +339,7 @@ static public void SetupBaseUnlitPass(this Material material) // don't do any vertex deformation but we can still have // skinning / morph target material.SetShaderPassEnabled(HDShaderPassNames.s_MotionVectorsStr, addPrecomputedVelocity); - } - } } From 06507f69d67d6281bafb125478f2912002d948f8 Mon Sep 17 00:00:00 2001 From: sebastienlagarde Date: Sun, 28 Jun 2020 20:07:09 +0200 Subject: [PATCH 27/32] Update Material for VFX project --- .../VFXTests/GraphicsTests/Materials/BlackMaterial.mat | 3 ++- .../VFXTests/GraphicsTests/Materials/Unlit_Black.mat | 3 ++- .../VFXTests/GraphicsTests/Materials/Unlit_White.mat | 3 ++- .../VFXTests/GraphicsTests/Materials/WhiteMaterial.mat | 3 ++- .../VFXTests/GraphicsTests/PositionDepthOperator/Blue.mat | 3 ++- .../VFXTests/GraphicsTests/PositionDepthOperator/Green.mat | 3 ++- .../VFXTests/GraphicsTests/PositionDepthOperator/Red.mat | 3 ++- .../GraphicsTests/Shadergraph/SampleScene/EmissiveRed.mat | 3 ++- .../Shadergraph/SampleScene/ReferenceSampleColor.mat | 3 ++- .../Shadergraph/SampleScene/ReferenceSampleDepth.mat | 3 ++- .../Shadergraph/SampleScene/ReferenceSampleGI.mat | 3 ++- .../Assets/Tests/TransparencyOverdraw/OpaqueUnlit.mat | 3 ++- .../Assets/Tests/TransparencyOverdraw/TransparentLit.mat | 3 ++- .../Assets/Tests/TransparencyOverdraw/TransparentLowRes.mat | 3 ++- .../Assets/Tests/TransparencyOverdraw/TransparentUnlit.mat | 3 ++- .../Scenes/007_SimpleMaterial.mat | 6 +++++- .../Scenes/009_MultiCamera.mat | 6 +++++- 17 files changed, 40 insertions(+), 17 deletions(-) diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/BlackMaterial.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/BlackMaterial.mat index 5249b8183b8..5e0263ce132 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/BlackMaterial.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/BlackMaterial.mat @@ -226,6 +226,7 @@ Material: - _NormalMapSpace: 0 - _NormalScale: 1 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -318,4 +319,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_Black.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_Black.mat index 4194ce729ba..2bdfdc0b6c8 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_Black.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_Black.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_White.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_White.mat index ee84b9c19e2..f9e9444beaa 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_White.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_White.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/WhiteMaterial.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/WhiteMaterial.mat index 3b61485426d..ad623eda68c 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/WhiteMaterial.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/WhiteMaterial.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1.088 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Blue.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Blue.mat index f67087aaa0d..33043d9bb71 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Blue.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Blue.mat @@ -194,6 +194,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -280,4 +281,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Green.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Green.mat index a607fc81211..a6c6ca03240 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Green.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Green.mat @@ -194,6 +194,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -280,4 +281,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Red.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Red.mat index 38d7a3034bd..fdabb46b637 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Red.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Red.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -207,6 +207,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/EmissiveRed.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/EmissiveRed.mat index 7dc2f5c5f99..8410aaa67e9 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/EmissiveRed.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/EmissiveRed.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleColor.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleColor.mat index 13cd194f154..3293c96a651 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleColor.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleColor.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleDepth.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleDepth.mat index 1b47f685309..eb250d4a584 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleDepth.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleDepth.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleGI.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleGI.mat index 20403719430..86560012779 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleGI.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleGI.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/OpaqueUnlit.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/OpaqueUnlit.mat index 9d05d3de312..e4216834439 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/OpaqueUnlit.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/OpaqueUnlit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLit.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLit.mat index fc792686435..1d9ee3ad77e 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLit.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLit.mat @@ -185,6 +185,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLowRes.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLowRes.mat index 09d09f85a93..c38ada4f643 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLowRes.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLowRes.mat @@ -186,6 +186,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentUnlit.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentUnlit.mat index 356d2603f41..0ba4bd4b636 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentUnlit.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentUnlit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.visualeffectgraph/Scenes/007_SimpleMaterial.mat b/com.unity.testing.visualeffectgraph/Scenes/007_SimpleMaterial.mat index 94be27a2d60..bbbd2385b68 100644 --- a/com.unity.testing.visualeffectgraph/Scenes/007_SimpleMaterial.mat +++ b/com.unity.testing.visualeffectgraph/Scenes/007_SimpleMaterial.mat @@ -24,6 +24,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -31,10 +32,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -56,6 +59,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -79,4 +83,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.visualeffectgraph/Scenes/009_MultiCamera.mat b/com.unity.testing.visualeffectgraph/Scenes/009_MultiCamera.mat index 69ffd5fe378..48cb7c699a3 100644 --- a/com.unity.testing.visualeffectgraph/Scenes/009_MultiCamera.mat +++ b/com.unity.testing.visualeffectgraph/Scenes/009_MultiCamera.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -75,6 +75,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaClip: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -87,6 +88,7 @@ Material: - _CullMode: 2 - _CullModeForward: 2 - _Cutoff: 0.5 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 @@ -97,6 +99,7 @@ Material: - _GlossyReflections: 0 - _Metallic: 0 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _QueueOffset: 0 - _ReceiveShadows: 1 - _ReceivesSSR: 0 @@ -124,6 +127,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _WorkflowMode: 1 From 83b53507135da522b402a573fb82a14d40990812 Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 28 Jun 2020 20:16:15 +0200 Subject: [PATCH 28/32] Revert "Update Material for VFX project" This reverts commit 06507f69d67d6281bafb125478f2912002d948f8. --- .../VFXTests/GraphicsTests/Materials/BlackMaterial.mat | 3 +-- .../VFXTests/GraphicsTests/Materials/Unlit_Black.mat | 3 +-- .../VFXTests/GraphicsTests/Materials/Unlit_White.mat | 3 +-- .../VFXTests/GraphicsTests/Materials/WhiteMaterial.mat | 3 +-- .../VFXTests/GraphicsTests/PositionDepthOperator/Blue.mat | 3 +-- .../VFXTests/GraphicsTests/PositionDepthOperator/Green.mat | 3 +-- .../VFXTests/GraphicsTests/PositionDepthOperator/Red.mat | 3 +-- .../GraphicsTests/Shadergraph/SampleScene/EmissiveRed.mat | 3 +-- .../Shadergraph/SampleScene/ReferenceSampleColor.mat | 3 +-- .../Shadergraph/SampleScene/ReferenceSampleDepth.mat | 3 +-- .../Shadergraph/SampleScene/ReferenceSampleGI.mat | 3 +-- .../Assets/Tests/TransparencyOverdraw/OpaqueUnlit.mat | 3 +-- .../Assets/Tests/TransparencyOverdraw/TransparentLit.mat | 3 +-- .../Assets/Tests/TransparencyOverdraw/TransparentLowRes.mat | 3 +-- .../Assets/Tests/TransparencyOverdraw/TransparentUnlit.mat | 3 +-- .../Scenes/007_SimpleMaterial.mat | 6 +----- .../Scenes/009_MultiCamera.mat | 6 +----- 17 files changed, 17 insertions(+), 40 deletions(-) diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/BlackMaterial.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/BlackMaterial.mat index 5e0263ce132..5249b8183b8 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/BlackMaterial.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/BlackMaterial.mat @@ -226,7 +226,6 @@ Material: - _NormalMapSpace: 0 - _NormalScale: 1 - _OcclusionStrength: 1 - - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -319,4 +318,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_Black.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_Black.mat index 2bdfdc0b6c8..4194ce729ba 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_Black.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_Black.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,7 +200,6 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 - - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_White.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_White.mat index f9e9444beaa..ee84b9c19e2 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_White.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_White.mat @@ -187,7 +187,6 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 - - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/WhiteMaterial.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/WhiteMaterial.mat index ad623eda68c..3b61485426d 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/WhiteMaterial.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/WhiteMaterial.mat @@ -187,7 +187,6 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1.088 - - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Blue.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Blue.mat index 33043d9bb71..f67087aaa0d 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Blue.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Blue.mat @@ -194,7 +194,6 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 - - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -281,4 +280,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Green.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Green.mat index a6c6ca03240..a607fc81211 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Green.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Green.mat @@ -194,7 +194,6 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 - - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -281,4 +280,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Red.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Red.mat index fdabb46b637..38d7a3034bd 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Red.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Red.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -207,7 +207,6 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 - - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/EmissiveRed.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/EmissiveRed.mat index 8410aaa67e9..7dc2f5c5f99 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/EmissiveRed.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/EmissiveRed.mat @@ -184,7 +184,6 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 - - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleColor.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleColor.mat index 3293c96a651..13cd194f154 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleColor.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleColor.mat @@ -184,7 +184,6 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 - - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleDepth.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleDepth.mat index eb250d4a584..1b47f685309 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleDepth.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleDepth.mat @@ -184,7 +184,6 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 - - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleGI.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleGI.mat index 86560012779..20403719430 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleGI.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleGI.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -197,7 +197,6 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 - - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/OpaqueUnlit.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/OpaqueUnlit.mat index e4216834439..9d05d3de312 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/OpaqueUnlit.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/OpaqueUnlit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,7 +198,6 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 - - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLit.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLit.mat index 1d9ee3ad77e..fc792686435 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLit.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLit.mat @@ -185,7 +185,6 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 - - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -268,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLowRes.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLowRes.mat index c38ada4f643..09d09f85a93 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLowRes.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLowRes.mat @@ -186,7 +186,6 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 - - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -268,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentUnlit.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentUnlit.mat index 0ba4bd4b636..356d2603f41 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentUnlit.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentUnlit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -199,7 +199,6 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 - - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.visualeffectgraph/Scenes/007_SimpleMaterial.mat b/com.unity.testing.visualeffectgraph/Scenes/007_SimpleMaterial.mat index bbbd2385b68..94be27a2d60 100644 --- a/com.unity.testing.visualeffectgraph/Scenes/007_SimpleMaterial.mat +++ b/com.unity.testing.visualeffectgraph/Scenes/007_SimpleMaterial.mat @@ -24,7 +24,6 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: - - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -32,12 +31,10 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 - - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 - _EnableFogOnTransparent: 1 - - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -59,7 +56,6 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 - - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -83,4 +79,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 diff --git a/com.unity.testing.visualeffectgraph/Scenes/009_MultiCamera.mat b/com.unity.testing.visualeffectgraph/Scenes/009_MultiCamera.mat index 48cb7c699a3..69ffd5fe378 100644 --- a/com.unity.testing.visualeffectgraph/Scenes/009_MultiCamera.mat +++ b/com.unity.testing.visualeffectgraph/Scenes/009_MultiCamera.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 5 + version: 4 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -75,7 +75,6 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: - - _AddPrecomputedVelocity: 0 - _AlphaClip: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -88,7 +87,6 @@ Material: - _CullMode: 2 - _CullModeForward: 2 - _Cutoff: 0.5 - - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 @@ -99,7 +97,6 @@ Material: - _GlossyReflections: 0 - _Metallic: 0 - _OcclusionStrength: 1 - - _OpaqueCullMode: 2 - _QueueOffset: 0 - _ReceiveShadows: 1 - _ReceivesSSR: 0 @@ -127,7 +124,6 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 - - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _WorkflowMode: 1 From cd31038408442f98bf889556de24127eb11d2c7f Mon Sep 17 00:00:00 2001 From: Sebastien Lagarde Date: Sun, 28 Jun 2020 20:17:49 +0200 Subject: [PATCH 29/32] Revert "Revert "Update Material for VFX project"" This reverts commit 83b53507135da522b402a573fb82a14d40990812. --- .../VFXTests/GraphicsTests/Materials/BlackMaterial.mat | 3 ++- .../VFXTests/GraphicsTests/Materials/Unlit_Black.mat | 3 ++- .../VFXTests/GraphicsTests/Materials/Unlit_White.mat | 3 ++- .../VFXTests/GraphicsTests/Materials/WhiteMaterial.mat | 3 ++- .../VFXTests/GraphicsTests/PositionDepthOperator/Blue.mat | 3 ++- .../VFXTests/GraphicsTests/PositionDepthOperator/Green.mat | 3 ++- .../VFXTests/GraphicsTests/PositionDepthOperator/Red.mat | 3 ++- .../GraphicsTests/Shadergraph/SampleScene/EmissiveRed.mat | 3 ++- .../Shadergraph/SampleScene/ReferenceSampleColor.mat | 3 ++- .../Shadergraph/SampleScene/ReferenceSampleDepth.mat | 3 ++- .../Shadergraph/SampleScene/ReferenceSampleGI.mat | 3 ++- .../Assets/Tests/TransparencyOverdraw/OpaqueUnlit.mat | 3 ++- .../Assets/Tests/TransparencyOverdraw/TransparentLit.mat | 3 ++- .../Assets/Tests/TransparencyOverdraw/TransparentLowRes.mat | 3 ++- .../Assets/Tests/TransparencyOverdraw/TransparentUnlit.mat | 3 ++- .../Scenes/007_SimpleMaterial.mat | 6 +++++- .../Scenes/009_MultiCamera.mat | 6 +++++- 17 files changed, 40 insertions(+), 17 deletions(-) diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/BlackMaterial.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/BlackMaterial.mat index 5249b8183b8..5e0263ce132 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/BlackMaterial.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/BlackMaterial.mat @@ -226,6 +226,7 @@ Material: - _NormalMapSpace: 0 - _NormalScale: 1 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -318,4 +319,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_Black.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_Black.mat index 4194ce729ba..2bdfdc0b6c8 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_Black.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_Black.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_White.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_White.mat index ee84b9c19e2..f9e9444beaa 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_White.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/Unlit_White.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/WhiteMaterial.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/WhiteMaterial.mat index 3b61485426d..ad623eda68c 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/WhiteMaterial.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Materials/WhiteMaterial.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1.088 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Blue.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Blue.mat index f67087aaa0d..33043d9bb71 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Blue.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Blue.mat @@ -194,6 +194,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -280,4 +281,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Green.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Green.mat index a607fc81211..a6c6ca03240 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Green.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Green.mat @@ -194,6 +194,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -280,4 +281,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Red.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Red.mat index 38d7a3034bd..fdabb46b637 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Red.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/PositionDepthOperator/Red.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -207,6 +207,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/EmissiveRed.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/EmissiveRed.mat index 7dc2f5c5f99..8410aaa67e9 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/EmissiveRed.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/EmissiveRed.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleColor.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleColor.mat index 13cd194f154..3293c96a651 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleColor.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleColor.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleDepth.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleDepth.mat index 1b47f685309..eb250d4a584 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleDepth.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleDepth.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleGI.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleGI.mat index 20403719430..86560012779 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleGI.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/AllTests/VFXTests/GraphicsTests/Shadergraph/SampleScene/ReferenceSampleGI.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/OpaqueUnlit.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/OpaqueUnlit.mat index 9d05d3de312..e4216834439 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/OpaqueUnlit.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/OpaqueUnlit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLit.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLit.mat index fc792686435..1d9ee3ad77e 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLit.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLit.mat @@ -185,6 +185,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLowRes.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLowRes.mat index 09d09f85a93..c38ada4f643 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLowRes.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentLowRes.mat @@ -186,6 +186,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentUnlit.mat b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentUnlit.mat index 356d2603f41..0ba4bd4b636 100644 --- a/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentUnlit.mat +++ b/TestProjects/VisualEffectGraph_HDRP/Assets/Tests/TransparencyOverdraw/TransparentUnlit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/com.unity.testing.visualeffectgraph/Scenes/007_SimpleMaterial.mat b/com.unity.testing.visualeffectgraph/Scenes/007_SimpleMaterial.mat index 94be27a2d60..bbbd2385b68 100644 --- a/com.unity.testing.visualeffectgraph/Scenes/007_SimpleMaterial.mat +++ b/com.unity.testing.visualeffectgraph/Scenes/007_SimpleMaterial.mat @@ -24,6 +24,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -31,10 +32,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -56,6 +59,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -79,4 +83,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/com.unity.testing.visualeffectgraph/Scenes/009_MultiCamera.mat b/com.unity.testing.visualeffectgraph/Scenes/009_MultiCamera.mat index 69ffd5fe378..48cb7c699a3 100644 --- a/com.unity.testing.visualeffectgraph/Scenes/009_MultiCamera.mat +++ b/com.unity.testing.visualeffectgraph/Scenes/009_MultiCamera.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -75,6 +75,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaClip: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -87,6 +88,7 @@ Material: - _CullMode: 2 - _CullModeForward: 2 - _Cutoff: 0.5 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 @@ -97,6 +99,7 @@ Material: - _GlossyReflections: 0 - _Metallic: 0 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _QueueOffset: 0 - _ReceiveShadows: 1 - _ReceivesSSR: 0 @@ -124,6 +127,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _WorkflowMode: 1 From 4bb583232b3ba60cb9632d7c9e829823575c4a5a Mon Sep 17 00:00:00 2001 From: sebastienlagarde Date: Sun, 28 Jun 2020 20:57:09 +0200 Subject: [PATCH 30/32] Update Material for HDRP project --- .../Common/Materials/UnlitCanvasMat.mat | 6 +- .../Emissive_Color/01_Unlit_Simple.mat | 3 +- .../Emissive_Color/02_Unlit_Trans_Alpha.mat | 3 +- ...03_Unlit_Trans_Alpha_PreRefractionPass.mat | 3 +- .../Emissive_Color/04_Unlit_DoubleSide.mat | 3 +- .../05_Unlit_DoubleSide_Transparent.mat | 3 +- ...ubleSide_Transparent_PreRefractionPass.mat | 3 +- .../Emissive_Color/07_Unlit_Textured.mat | 3 +- .../08_Unlit_Textured_Transparent.mat | 3 +- ...Textured_Trans_Alpha_PreRefractionPass.mat | 3 +- .../10_Unlit_Textured_DoubleSide.mat | 3 +- ..._Unlit_Textured_Transparent_DoubleSide.mat | 3 +- ...ans_Alpha_PreRefractionPass_DoubleSide.mat | 3 +- .../13_Unlit_Textured_AlphaCutoff.mat | 3 +- ...Unlit_Textured_Transparent_AlphaCutoff.mat | 3 +- ...ns_Alpha_PreRefractionPass_AlphaCutoff.mat | 3 +- ..._Unlit_Textured_AlphaCutoff_Doubleside.mat | 3 +- ...red_Transparent_AlphaCutoff_Doubleside.mat | 3 +- ...eRefractionPass_AlphaCutoff_Doubleside.mat | 3 +- .../Emissive_Texture/01_Unlit_Simple.mat | 3 +- .../Emissive_Texture/02_Unlit_Trans_Alpha.mat | 3 +- ...03_Unlit_Trans_Alpha_PreRefractionPass.mat | 3 +- .../Emissive_Texture/04_Unlit_DoubleSide.mat | 3 +- .../05_Unlit_DoubleSide_Transparent.mat | 3 +- ...ubleSide_Transparent_PreRefractionPass.mat | 3 +- .../Emissive_Texture/07_Unlit_Textured.mat | 3 +- .../08_Unlit_Textured_Transparent.mat | 3 +- ...Textured_Trans_Alpha_PreRefractionPass.mat | 3 +- .../10_Unlit_Textured_DoubleSide.mat | 3 +- ..._Unlit_Textured_Transparent_DoubleSide.mat | 3 +- ...ans_Alpha_PreRefractionPass_DoubleSide.mat | 3 +- .../13_Unlit_Textured_AlphaCutoff.mat | 3 +- ...Unlit_Textured_Transparent_AlphaCutoff.mat | 3 +- ...ns_Alpha_PreRefractionPass_AlphaCutoff.mat | 3 +- ..._Unlit_Textured_AlphaCutoff_Doubleside.mat | 3 +- ...red_Transparent_AlphaCutoff_Doubleside.mat | 3 +- ...eRefractionPass_AlphaCutoff_Doubleside.mat | 3 +- .../Non_Emissive/01_Unlit_Simple.mat | 3 +- .../Non_Emissive/02_Unlit_Trans_Alpha.mat | 3 +- ...03_Unlit_Trans_Alpha_PreRefractionPass.mat | 3 +- .../Non_Emissive/04_Unlit_DoubleSide.mat | 3 +- .../05_Unlit_DoubleSide_Transparent.mat | 3 +- ...ubleSide_Transparent_PreRefractionPass.mat | 3 +- .../Non_Emissive/07_Unlit_Textured.mat | 3 +- .../08_Unlit_Textured_Transparent.mat | 3 +- ...Textured_Trans_Alpha_PreRefractionPass.mat | 3 +- .../10_Unlit_Textured_DoubleSide.mat | 3 +- ..._Unlit_Textured_Transparent_DoubleSide.mat | 3 +- ...ans_Alpha_PreRefractionPass_DoubleSide.mat | 3 +- .../13_Unlit_Textured_AlphaCutoff.mat | 3 +- ...Unlit_Textured_Transparent_AlphaCutoff.mat | 3 +- ...ns_Alpha_PreRefractionPass_AlphaCutoff.mat | 3 +- ..._Unlit_Textured_AlphaCutoff_Doubleside.mat | 3 +- ...red_Transparent_AlphaCutoff_Doubleside.mat | 3 +- ...eRefractionPass_AlphaCutoff_Doubleside.mat | 3 +- .../Distortion_Only/01_Unlit_Trans.mat | 3 +- .../02_Unlit_Trans_DoubleSide.mat | 3 +- .../03_Unlit_Textured_Trans.mat | 3 +- .../04_Unlit_Textured_Trans_DoubleSide.mat | 3 +- .../05_Unlit_Textured_Trans_Cutoff.mat | 3 +- ...Unlit_Textured_Trans_Cutoff_DoubleSide.mat | 3 +- .../Emissive_Color/01_Unlit_Trans.mat | 3 +- .../02_Unlit_Trans_DoubleSide.mat | 3 +- .../03_Unlit_Textured_Trans.mat | 3 +- .../04_Unlit_Textured_Trans_DoubleSide.mat | 3 +- .../05_Unlit_Textured_Trans_Cutoff.mat | 3 +- ...Unlit_Textured_Trans_Cutoff_DoubleSide.mat | 3 +- .../Emissive_Texture/01_Unlit_Trans.mat | 3 +- .../02_Unlit_Trans_DoubleSide.mat | 3 +- .../03_Unlit_Textured_Trans.mat | 3 +- .../04_Unlit_Textured_Trans_DoubleSide.mat | 3 +- .../05_Unlit_Textured_Trans_Cutoff.mat | 3 +- ...Unlit_Textured_Trans_Cutoff_DoubleSide.mat | 3 +- .../Non_Emissive/01_Unlit_Trans.mat | 3 +- .../02_Unlit_Trans_DoubleSide.mat | 3 +- .../Non_Emissive/03_Unlit_Textured_Trans.mat | 3 +- .../04_Unlit_Textured_Trans_DoubleSide.mat | 3 +- .../05_Unlit_Textured_Trans_Cutoff.mat | 3 +- ...Unlit_Textured_Trans_Cutoff_DoubleSide.mat | 3 +- .../Distortion_Only/01_Unlit_Trans.mat | 3 +- .../02_Unlit_Trans_DoubleSide.mat | 3 +- .../03_Unlit_Textured_Trans.mat | 3 +- .../04_Unlit_Textured_Trans_DoubleSide.mat | 3 +- .../05_Unlit_Textured_Trans_Cutoff.mat | 3 +- ...Unlit_Textured_Trans_Cutoff_DoubleSide.mat | 3 +- .../Emissive_Color/01_Unlit_Trans.mat | 3 +- .../02_Unlit_Trans_DoubleSide.mat | 3 +- .../03_Unlit_Textured_Trans.mat | 3 +- .../04_Unlit_Textured_Trans_DoubleSide.mat | 3 +- .../05_Unlit_Textured_Trans_Cutoff.mat | 3 +- ...Unlit_Textured_Trans_Cutoff_DoubleSide.mat | 3 +- .../Emissive_Texture/01_Unlit_Trans.mat | 3 +- .../02_Unlit_Trans_DoubleSide.mat | 3 +- .../03_Unlit_Textured_Trans.mat | 3 +- .../04_Unlit_Textured_Trans_DoubleSide.mat | 3 +- .../05_Unlit_Textured_Trans_Cutoff.mat | 3 +- ...Unlit_Textured_Trans_Cutoff_DoubleSide.mat | 3 +- .../Non_Emissive/01_Unlit_Trans.mat | 3 +- .../02_Unlit_Trans_DoubleSide.mat | 3 +- .../Non_Emissive/03_Unlit_Textured_Trans.mat | 3 +- .../04_Unlit_Textured_Trans_DoubleSide.mat | 3 +- .../05_Unlit_Textured_Trans_Cutoff.mat | 3 +- ...Unlit_Textured_Trans_Cutoff_DoubleSide.mat | 3 +- .../Lit_Add_All.mat | 3 +- .../Lit_Add_DepthTest.mat | 3 +- .../Unlit_Add_All.mat | 3 +- .../Unlit_Add_All_-26.7.mat | 3 +- .../Unlit_Add_All_2.mat | 3 +- .../Unlit_Add_All_DepthTest.mat | 3 +- .../Unlit_BlurOnly.mat | 3 +- .../Unlit_Mult_Two.mat | 3 +- .../00 Op DbSi/1105_Op_DblSi_AlphaClip.mat | 8 +- .../00 Op DbSi/1105_Op_DblSi_Color.mat | 4 +- .../00 Op DbSi/1105_Op_DblSi_Emission.mat | 4 +- .../00 Op DbSi/1105_Op_DblSi_ObjSpace.mat | 4 +- .../00 Op Def/1105_Op_Def_AlphaClip.mat | 8 +- .../00 Op Def/1105_Op_Def_Color.mat | 4 +- .../00 Op Def/1105_Op_Def_Emission.mat | 4 +- .../00 Op Def/1105_Op_Def_ObjSpace.mat | 4 +- .../01 Tr Add/1105_Tr_Add_AlphaClip.mat | 8 +- .../01 Tr Add/1105_Tr_Add_Color.mat | 4 +- .../01 Tr Add/1105_Tr_Add_Emission.mat | 4 +- .../01 Tr Add/1105_Tr_Add_ObjSpace.mat | 4 +- .../01 Tr Alpha/1105_Tr_Alpha_AlphaClip.mat | 8 +- .../01 Tr Alpha/1105_Tr_Alpha_Color.mat | 4 +- .../01 Tr Alpha/1105_Tr_Alpha_Emission.mat | 4 +- .../01 Tr Alpha/1105_Tr_Alpha_ObjSpace.mat | 4 +- .../01 Tr Pre/1105_Tr_Premul_AlphaClip.mat | 8 +- .../01 Tr Pre/1105_Tr_Premul_Color.mat | 4 +- .../01 Tr Pre/1105_Tr_Premul_Emission.mat | 4 +- .../01 Tr Pre/1105_Tr_Premul_ObjSpace.mat | 4 +- .../1105_Tr_DblSi_Add_AlphaClip.mat | 8 +- .../1105_Tr_DblSi_Add_Color.mat | 4 +- .../1105_Tr_DblSi_Add_Emission.mat | 4 +- .../1105_Tr_DblSi_Add_ObjSpace.mat | 4 +- .../1105_Tr_DblSi_Alpha_AlphaClip.mat | 8 +- .../1105_Tr_DblSi_Alpha_Color.mat | 4 +- .../1105_Tr_DblSi_Alpha_Emission.mat | 4 +- .../1105_Tr_DblSi_Alpha_ObjSpace.mat | 4 +- .../1105_Tr_DblSi_Pre_AlphaClip.mat | 8 +- .../1105_Tr_DblSi_Pre_Color.mat | 4 +- .../1105_Tr_DblSi_Pre_Emission.mat | 4 +- .../1105_Tr_DblSi_Pre_ObjSpace.mat | 4 +- .../03 Tr BR Add/1105_Tr_BR_Add_AlphaClip.mat | 8 +- .../03 Tr BR Add/1105_Tr_BR_Add_Color.mat | 4 +- .../03 Tr BR Add/1105_Tr_BR_Add_Emission.mat | 4 +- .../03 Tr BR Add/1105_Tr_BR_Add_ObjSpace.mat | 4 +- .../1105_Tr_BR_Alpha_AlphaClip.mat | 8 +- .../03 Tr BR Alpha/1105_Tr_BR_Alpha_Color.mat | 4 +- .../1105_Tr_BR_Alpha_Emission.mat | 4 +- .../1105_Tr_BR_Alpha_ObjSpace.mat | 4 +- .../03 Tr BR Pre/1105_Tr_BR_Pre_AlphaClip.mat | 8 +- .../03 Tr BR Pre/1105_Tr_BR_Pre_Color.mat | 4 +- .../03 Tr BR Pre/1105_Tr_BR_Pre_Emission.mat | 4 +- .../03 Tr BR Pre/1105_Tr_BR_Pre_ObjSpace.mat | 4 +- .../1105_Tr_BR_DblSi_Add_AlphaClip.mat | 8 +- .../1105_Tr_BR_DblSi_Add_Color.mat | 4 +- .../1105_Tr_BR_DblSi_Add_Emission.mat | 4 +- .../1105_Tr_BR_DblSi_Add_ObjSpace.mat | 4 +- .../1105_Tr_BR_DblSi_Alpha_AlphaClip.mat | 8 +- .../1105_Tr_BR_DblSi_Alpha_Color.mat | 4 +- .../1105_Tr_BR_DblSi_Alpha_Emission.mat | 4 +- .../1105_Tr_BR_DblSi_Alpha_ObjSpace.mat | 4 +- .../1105_Tr_BR_DblSi_Premul_AlphaClip.mat | 8 +- .../1105_Tr_BR_DblSi_Premul_Color.mat | 4 +- .../1105_Tr_BR_DblSi_Premul_Emission.mat | 4 +- .../1105_Tr_BR_DblSi_Premul_ObjSpace.mat | 4 +- .../05 Distortion/1105 Distortion Add 01.mat | 4 +- .../05 Distortion/1105 Distortion Add 02.mat | 4 +- .../05 Distortion/1105 Distortion Mul 01.mat | 4 +- .../05 Distortion/1105 Distortion Replace.mat | 4 +- .../1201_Lit_Features/Lit_Detail.mat | 3 +- .../1201_Lit_Features/Lit_Detail_Mask.mat | 3 +- .../Lit_Detail_ParamsTest.mat | 3 +- .../Lit_NormalMap_ObjectSpace.mat | 3 +- .../Lit_NormalMap_TangentSpace.mat | 3 +- .../1201_Lit_Features/Lit_Texture.mat | 3 +- .../DoubleSideNormalTest.mat | 3 +- .../DoubleSidedLitGraph_Flip.mat | 12 ++- .../DoubleSidedLitGraph_Mirror.mat | 12 ++- .../DoubleSidedLitGraph_None.mat | 12 ++- .../Lit_Transparent_Additive.mat | 3 +- .../Lit_Transparent_Alpha.mat | 3 +- .../Lit_Transparent_Multiplicative.mat | 3 +- .../Lit_Transparent_PremultipliedAlpha.mat | 3 +- .../1x_Materials/1204_Lit_Fog/Lit_Fog.mat | 3 +- .../Lit_Transparent_Additive_Fog_Off.mat | 3 +- .../Lit_Transparent_Additive_Fog_On.mat | 3 +- .../1204_Lit_Fog/Lit_Transparent_Fog_Off.mat | 3 +- .../1204_Lit_Fog/Lit_Transparent_Fog_On.mat | 3 +- .../Lit_Transparent_Premultiply_Fog_Off.mat | 3 +- .../Lit_Transparent_Premultiply_Fog_On.mat | 3 +- .../Lit_Transparent_Refraction_Fog_Off.mat | 3 +- .../Lit_Transparent_Refraction_Fog_On.mat | 3 +- .../Materials/1204_Lit_Fog_Display.mat | 3 +- .../Lit_Refraction_Plane.mat | 3 +- .../Lit_Refraction_Plane_NM.mat | 3 +- .../Lit_Refraction_Plane_NM_Thickness.mat | 3 +- .../Lit_Refraction_Plane_Thickness.mat | 3 +- .../Lit_Refraction_Sphere.mat | 3 +- .../Lit_Refraction_Sphere_NM.mat | 3 +- .../Lit_Refraction_Sphere_NM_Thickness.mat | 3 +- .../Lit_Refraction_Sphere_Thickness.mat | 3 +- .../Lit_Distortion.mat | 3 +- .../Lit_Displacement_Pixel.mat | 3 +- .../Lit_Displacement_Pixel_Tile10.mat | 3 +- .../Lit_Displacement_Vertex.mat | 3 +- .../Lit_Displacement_Vertex_Tile10.mat | 3 +- .../Lit_Displacement_Pixel.mat | 3 +- .../Lit_Displacement_Vertex.mat | 3 +- .../BentNormal_Tangent.mat | 3 +- .../1210_Lit_BentNormal/Green_Emissive.mat | 3 +- .../1210_Lit_BentNormal/Red_Emissive.mat | 3 +- .../1211_Lit_Details/Lit_Detail.mat | 3 +- .../Lit_Detail_TilingOffset.mat | 3 +- .../1212_Lit_Emission/ColorRange.mat | 3 +- .../1212_Lit_Emission/Lit_Emissive.mat | 3 +- .../Lit_Emissive_TileOffset.mat | 3 +- .../1213_Lit_anisotropy/GGX_Base.mat | 3 +- .../1214_Lit_LowResTransparent/Background.mat | 3 +- .../FullRes_Additive.mat | 3 +- .../FullRes_Alpha.mat | 3 +- .../FullRes_Premultiply.mat | 3 +- .../LowRes_Additive.mat | 3 +- .../LowRes_Alpha.mat | 3 +- .../LowRes_Premultiply.mat | 3 +- .../Candle/Candle_02.mat | 3 +- .../Candle/Candle_NoTransmission.mat | 3 +- .../LayerRef.mat | 3 +- .../IndexOfRefraction1WorldScale0_1.mat | 3 +- .../IndexOfRefraction1_25WorldScale1.mat | 3 +- .../IndexOfRefraction1_5WorldScale10.mat | 3 +- .../IndexOfRefraction2WorldScale100.mat | 3 +- .../SSS_Layered.mat | 3 +- .../SSS_Mask.mat | 3 +- .../ShadowDimmerTest.mat | 3 +- .../ThicknessTest.mat | 3 +- .../1216_Lit_SSS_MaxRadius/GridOverlay.mat | 3 +- .../1216_Lit_SSS_MaxRadius/MaxRadius_1.mat | 3 +- .../1216_Lit_SSS_MaxRadius/MaxRadius_10.mat | 3 +- .../1216_Lit_SSS_MaxRadius/MaxRadius_15.mat | 3 +- .../1216_Lit_SSS_MaxRadius/MaxRadius_20.mat | 3 +- .../1216_Lit_SSS_MaxRadius/MaxRadius_5.mat | 3 +- .../Head_Post-Scatter.mat | 3 +- .../FabricProfile.mat | 5 +- .../HairProfile.mat | 5 +- .../1218_Lit_DiffusionProfiles/LayeredLit.mat | 3 +- .../LitNoProfile.mat | 3 +- .../LitProfile_Checker.mat | 5 +- .../ProjectDiffusionProfileCamera.mat | 3 +- .../VolumeDiffusionProfileCamera.mat | 3 +- .../ProjectFabricProfile.mat | 5 +- .../ProjectHairProfile.mat | 5 +- .../ProjectLayeredLit.mat | 3 +- .../ProjectLitNoProfile.mat | 3 +- .../ProjectLitProfile_Checker.mat | 5 +- .../ProjectStackLitProfile.mat | 5 +- .../StackLitProfile.mat | 5 +- .../LayeredLitTess_Displace.mat | 3 +- .../LayeredLitTess_Displace_Phong.mat | 3 +- .../ProbeVisualizer.mat | 3 +- .../Tess_Displace.mat | 3 +- .../Tess_Displace_Phong.mat | 3 +- .../1220_Sorting/Lit_Blue_Priority_0.mat | 3 +- .../1220_Sorting/Lit_Green_Priority_-20.mat | 3 +- .../1220_Sorting/Lit_Green_Priority_0.mat | 3 +- .../1220_Sorting/Lit_Red_Priority_0.mat | 3 +- .../1220_Sorting/Lit_Red_Priority_20.mat | 3 +- .../1220_Sorting/Unlit_Blue_Priority_0.mat | 3 +- .../1220_Sorting/Unlit_Green_Priority_-20.mat | 3 +- .../1220_Sorting/Unlit_Green_Priority_0.mat | 3 +- .../1220_Sorting/Unlit_Red_Priority_0.mat | 3 +- .../1220_Sorting/Unlit_Red_Priority_20.mat | 3 +- .../pom_emissive_layered_lit.mat | 3 +- .../pom_emissive_lit.mat | 3 +- .../SG_TestStackMat_Dielectric_Base.mat | 5 +- .../SG_TestStackMat_Dielectric_Irid.mat | 5 +- .../SG_TestStackMat_Dielectric_SSS.mat | 5 +- .../SG_TestStackMat_Metal_Aniso.mat | 5 +- .../SG_TestStackMat_Metal_Base.mat | 5 +- .../SG_TestStackMat_Metal_Coat.mat | 5 +- .../SG_TestStackMat_Metal_Coat_DualNormal.mat | 5 +- .../Column_Metal_Occlusion.mat | 3 +- .../1302_03_StackLit/Column_SLSG_SpecC4.mat | 5 +- .../Materials/Screenshots/Floor_Sides_03.mat | 3 +- .../Screenshots/Floor_Sides_03_nodetail.mat | 3 +- .../Materials/Screenshots/GreyFloor.mat | 3 +- .../Screenshots/GreyFloor_nomaps.mat | 3 +- .../Screenshots/SLSG_FrostedMetal.mat | 5 +- .../Screenshots/SLSG_FrostedPaint.mat | 5 +- .../Screenshots/SLSG_GlossyPaint.mat | 5 +- .../Materials/Screenshots/SLSG_MetalFoil.mat | 5 +- .../Screenshots/SLSG_MetallicPaint.mat | 5 +- .../Materials/Screenshots/SLSG_Patina.mat | 5 +- .../Screenshots/SLSG_TintedGlazing.mat | 5 +- .../SG_TestStackMat_Metal_Base 1.mat | 5 +- .../1302_03_StackLit/SLSG_BaseM_1.mat | 5 +- .../1302_03_StackLit/SLSG_BaseM_2.mat | 5 +- .../1302_03_StackLit/SLSG_BaseM_2M.mat | 5 +- .../1302_03_StackLit/SLSG_BaseM_2Ma.mat | 5 +- .../1302_03_StackLit/SLSG_BaseM_2Mb.mat | 5 +- .../1302_03_StackLit/SLSG_BaseM_2Mc.mat | 5 +- .../1302_03_StackLit/SLSG_BaseM_2Mc2.mat | 5 +- .../1302_03_StackLit/SLSG_BaseM_2Mc3.mat | 5 +- .../1302_03_StackLit/SLSG_BaseM_2Mc4.mat | 5 +- .../Tester_Lit_Metal_Occlusion.mat | 3 +- .../1302_03_StackLit/Tester_SLSG.mat | 5 +- .../1302_03_StackLit/Tester_SLSG_1.mat | 5 +- .../1302_03_StackLit/Tester_SLSG_2.mat | 5 +- .../1302_03_StackLit/Tester_SLSG_2b.mat | 5 +- .../M_CottonWoolDetailNormalCutout_Graph.mat | 5 +- ...CottonWoolDetailNormalFuzzDouble_Graph.mat | 5 +- .../M_CottonWoolDetailNormalFuzz_Graph.mat | 5 +- .../M_CottonWoolDetailNormal_Graph.mat | 5 +- .../1351_Fabric/M_CottonWoolDetail_Graph.mat | 5 +- .../1351_Fabric/M_CottonWoolNormal_Graph.mat | 5 +- .../1351_Fabric/M_CottonWoolSSS_Graph.mat | 5 +- .../M_CottonWoolTransmission_Graph.mat | 5 +- .../1351_Fabric/M_CottonWool_Graph.mat | 5 +- .../M_SilkDetailNormalCutout_Graph.mat | 5 +- .../M_SilkDetailNormalFuzzDouble_Graph.mat | 5 +- .../M_SilkDetailNormalFuzz_Graph.mat | 5 +- .../1351_Fabric/M_SilkDetailNormal_Graph.mat | 5 +- .../1351_Fabric/M_SilkDetail_Graph.mat | 5 +- .../1351_Fabric/M_SilkNormal_Graph.mat | 5 +- .../1351_Fabric/M_SilkSSS_Graph.mat | 5 +- .../1351_Fabric/M_SilkTransmission_Graph.mat | 5 +- .../1x_Materials/1351_Fabric/M_Silk_Graph.mat | 5 +- .../1352_Fabric_Env/M_CottonWoolGraph.mat | 5 +- .../1x_Materials/1352_Fabric_Env/M_Lit.mat | 3 +- .../1352_Fabric_Env/M_SilkGraph.mat | 5 +- .../1x_Materials/1401_HairGraph/Grey.mat | 3 +- .../HairTest Light Facing Normal.mat | 9 +- .../HairTest Light Facing Normal_Opaque.mat | 7 +- .../HairTest No Shadow Threshold.mat | 9 +- .../1x_Materials/1401_HairGraph/HairTest.mat | 9 +- .../1401_HairGraph/HairTest_Opaque.mat | 7 +- .../1x_Materials/1451_AxF_SVBRDF/AxF.mat | 8 +- .../1451_AxF_SVBRDF/AxF_aniso/AxF_aniso.mat | 8 +- .../AxF_displacement/AxF_displacement.mat | 8 +- .../1x_Materials/1601_TerrainLit/Decal.mat | 2 +- .../1601_TerrainLit/MeshMaterial.mat | 3 +- .../FourShapesMaterial.mat | 3 +- .../1x_Materials/1701_Decals/Decal_All.mat | 2 +- .../1701_Decals/Decal_All_ColorTint.mat | 2 +- .../1701_Decals/Decal_BlendMask.mat | 2 +- .../1701_Decals/Decal_BlendMask_Factor05.mat | 2 +- .../1701_Decals/Decal_BlendMask_NoAlbedo.mat | 2 +- .../1x_Materials/1701_Decals/Decal_Color.mat | 2 +- .../1x_Materials/1701_Decals/Decal_Mask.mat | 2 +- .../1x_Materials/1701_Decals/Decal_Normal.mat | 2 +- .../1701_Decals/FourShapesTransparent.mat | 3 +- .../1701_Decals/FourShapes_NoDecal.mat | 3 +- .../FlatNormalDecal.mat | 2 +- .../1704_Decals-Settings/Decal.mat | 2 +- .../1704_Decals-Settings/Decal_ColorTint.mat | 2 +- .../1704_Decals-Settings/Decal_Factor05.mat | 2 +- .../1704_Decals-Settings/Decal_NoAlbedo.mat | 2 +- .../1705_Decals-stress-test/Cloud2_03.mat | 2 +- .../1705_Decals-stress-test/Cloud_02.mat | 2 +- .../1705_Decals-stress-test/Cross_04.mat | 2 +- .../1705_Decals-stress-test/Floor.mat | 3 +- .../1705_Decals-stress-test/Floor_Grid.mat | 3 +- .../Floor_Transparent.mat | 3 +- .../Floor_Transparent_Grid.mat | 3 +- .../1705_Decals-stress-test/Flower_05.mat | 2 +- .../1705_Decals-stress-test/Grunge_05.mat | 2 +- .../1705_Decals-stress-test/Grunge_06.mat | 2 +- .../1705_Decals-stress-test/Grunge_07.mat | 2 +- .../1705_Decals-stress-test/Leaf_07.mat | 2 +- .../1705_Decals-stress-test/Leaf_08.mat | 2 +- .../1705_Decals-stress-test/Leaf_09.mat | 2 +- .../1705_Decals-stress-test/Logo_02.mat | 2 +- .../1705_Decals-stress-test/MagCircle_07.mat | 2 +- .../1705_Decals-stress-test/MagCircle_08.mat | 2 +- .../1705_Decals-stress-test/Noise_04.mat | 2 +- .../1705_Decals-stress-test/Nyan_11.mat | 2 +- .../1705_Decals-stress-test/Nyan_12.mat | 2 +- .../1705_Decals-stress-test/Nyan_13.mat | 2 +- .../1705_Decals-stress-test/Nyan_14.mat | 2 +- .../1705_Decals-stress-test/Nyan_15.mat | 2 +- .../1705_Decals-stress-test/Nyan_16.mat | 2 +- .../1705_Decals-stress-test/Nyan_17.mat | 2 +- .../1705_Decals-stress-test/Nyan_18.mat | 2 +- .../1705_Decals-stress-test/Particle_01.mat | 2 +- .../PixelGrid_Small.mat | 2 +- .../1705_Decals-stress-test/Ring_02.mat | 2 +- .../1705_Decals-stress-test/Ring_09.mat | 2 +- .../1705_Decals-stress-test/Shapes_03.mat | 2 +- .../1705_Decals-stress-test/Snow_10.mat | 2 +- .../1705_Decals-stress-test/Wood_01.mat | 2 +- .../1705_Decals-stress-test/Wood_03.mat | 2 +- .../1705_Decals-stress-test/Wood_15.mat | 2 +- .../1706_DecalsSG/Decal_All_SG.mat | 2 +- .../1706_DecalsSG/Decal_Color_SG.mat | 2 +- .../1706_DecalsSG/Decal_Mask_SG.mat | 2 +- .../1706_DecalsSG/Decal_Normal_SG.mat | 2 +- .../Decal_FactorAndStart.mat | 2 +- .../fadeFactorFadeStart.mat | 2 +- .../FourShapes_POM_SG_mat.mat | 20 +++- .../1708_DecalsSG_on_SG/FourShapes_SG_mat.mat | 12 ++- .../Tests_Default_SG_mat.mat | 4 +- .../1710_Decals_Normal_Patch/AxFSSR.mat | 3 +- .../DecalModifier.mat | 2 +- .../1710_Decals_Normal_Patch/FabricSSR.mat | 8 +- .../LayeredLitSSR.mat | 3 +- .../1710_Decals_Normal_Patch/LitSSR.mat | 3 +- .../1710_Decals_Normal_Patch/StackLitSSR.mat | 8 +- .../Decal_All_SG_mask_dark.mat | 2 +- .../Decal_All_SG_mask_grey.mat | 2 +- .../Decal_All_SG_mask_grey_dontAffectBase.mat | 2 +- .../Decal_All_SG_mask_white.mat | 2 +- .../1711_DecalMasks/Decal_All_mask_dark.mat | 2 +- .../1711_DecalMasks/Decal_All_mask_grey.mat | 2 +- .../Decal_All_mask_grey_dontAffectBase.mat | 2 +- .../1711_DecalMasks/Decal_All_mask_white.mat | 2 +- .../MaskRemap/Decal_mask_remap_AO_0.5.mat | 2 +- .../MaskRemap/Decal_mask_remap_AO_0.mat | 2 +- .../MaskRemap/Decal_mask_remap_AO_1.mat | 2 +- .../MaskRemap/Decal_mask_remap_metal_0.5.mat | 2 +- .../MaskRemap/Decal_mask_remap_metal_0.mat | 2 +- .../MaskRemap/Decal_mask_remap_metal_1.mat | 2 +- .../Decal_mask_remap_smoothness_0.5.mat | 2 +- .../Decal_mask_remap_smoothness_0.mat | 2 +- .../Decal_mask_remap_smoothness_1.mat | 2 +- .../Classification_Anisotropy.mat | 3 +- .../Classification_ClearCoat.mat | 3 +- .../Classification_Diffusion.mat | 3 +- .../Classification_Iridescence.mat | 3 +- .../Classification_SSS.mat | 3 +- .../Classification_Standard.mat | 3 +- ...hader Graphs_MaterialQualityTestShader.mat | 8 +- .../1801_MaterialQuality/ShowCapture.mat | 3 +- .../HD Lit Tesselation/Post.mat | 22 ++--- .../HD Lit Tesselation/Pre-Post.mat | 23 +++-- .../HD Lit Tesselation/Pre.mat | 22 ++--- .../HD Lit Tesselation/Ref.mat | 22 +++-- .../1802_Depth_Pre_Post/HD Lit/Opaque.mat | 2 +- .../1802_Depth_Pre_Post/HD Lit/Post.mat | 2 +- .../1802_Depth_Pre_Post/HD Lit/Pre-Post.mat | 2 +- .../1802_Depth_Pre_Post/HD Lit/Pre.mat | 2 +- .../1802_Depth_Pre_Post/HD Lit/Ref.mat | 2 +- .../HD Lit/Transparent.mat | 2 +- .../HD Unlit/Depth Write.mat | 5 +- .../1802_Depth_Pre_Post/HD Unlit/Opaque.mat | 5 +- .../1802_Depth_Pre_Post/HD Unlit/Ref.mat | 5 +- .../HD Unlit/Transparent.mat | 6 +- .../1802_Depth_Pre_Post/SG Eye/Post.mat | 2 +- .../1802_Depth_Pre_Post/SG Eye/Pre-Post.mat | 2 +- .../1802_Depth_Pre_Post/SG Eye/Pre.mat | 2 +- .../1802_Depth_Pre_Post/SG Eye/Ref.mat | 2 +- .../1802_Depth_Pre_Post/SG Fabric/Post.mat | 6 +- .../SG Fabric/Pre-Post.mat | 6 +- .../1802_Depth_Pre_Post/SG Fabric/Pre.mat | 6 +- .../1802_Depth_Pre_Post/SG Fabric/Ref.mat | 6 +- .../1802_Depth_Pre_Post/SG Hair/Post.mat | 6 +- .../1802_Depth_Pre_Post/SG Hair/Pre-Post.mat | 6 +- .../1802_Depth_Pre_Post/SG Hair/Pre.mat | 6 +- .../1802_Depth_Pre_Post/SG Hair/Ref.mat | 7 +- .../1802_Depth_Pre_Post/SG Lit/Post.mat | 6 +- .../1802_Depth_Pre_Post/SG Lit/Pre-Post.mat | 8 +- .../1802_Depth_Pre_Post/SG Lit/Pre.mat | 6 +- .../1802_Depth_Pre_Post/SG Lit/Ref.mat | 6 +- .../1802_Depth_Pre_Post/SG StackLit/Post.mat | 6 +- .../SG StackLit/Pre-Post.mat | 6 +- .../1802_Depth_Pre_Post/SG StackLit/Pre.mat | 6 +- .../1802_Depth_Pre_Post/SG StackLit/Ref.mat | 6 +- .../1802_Depth_Pre_Post/SG Unlit/Post.mat | 2 +- .../1802_Depth_Pre_Post/SG Unlit/Pre-Post.mat | 2 +- .../1802_Depth_Pre_Post/SG Unlit/Pre.mat | 2 +- .../1802_Depth_Pre_Post/SG Unlit/Ref.mat | 2 +- .../1900_AlphaTestSG_Viewer.mat | 3 +- .../1900_AlphaTest_SG/Background.mat | 3 +- .../1900_AlphaTest_SG/Foreground.mat | 3 +- .../Shader Graphs_AlphaTest_HDRP_EyeSG.mat | 12 ++- ...raphs_AlphaTest_HDRP_EyeSG_transparent.mat | 12 ++- ..._AlphaTest_HDRP_EyeSG_transparent_post.mat | 12 ++- ...s_AlphaTest_HDRP_EyeSG_transparent_pre.mat | 12 ++- .../Shader Graphs_AlphaTest_HDRP_FabricSG.mat | 8 +- ...hs_AlphaTest_HDRP_FabricSG_transparent.mat | 12 ++- ...phaTest_HDRP_FabricSG_transparent_post.mat | 12 ++- ...lphaTest_HDRP_FabricSG_transparent_pre.mat | 12 ++- .../Shader Graphs_AlphaTest_HDRP_HairSG.mat | 8 +- ...aphs_AlphaTest_HDRP_HairSG_transparent.mat | 12 ++- ...AlphaTest_HDRP_HairSG_transparent_post.mat | 12 ++- ..._AlphaTest_HDRP_HairSG_transparent_pre.mat | 12 ++- .../Shader Graphs_AlphaTest_HDRP_LitSG.mat | 8 +- ...raphs_AlphaTest_HDRP_LitSG_transparent.mat | 11 ++- ..._AlphaTest_HDRP_LitSG_transparent_post.mat | 17 ++-- ...s_AlphaTest_HDRP_LitSG_transparent_pre.mat | 11 ++- ...hader Graphs_AlphaTest_HDRP_StackLitSG.mat | 8 +- ..._AlphaTest_HDRP_StackLitSG_transparent.mat | 12 ++- ...aTest_HDRP_StackLitSG_transparent_post.mat | 12 ++- ...haTest_HDRP_StackLitSG_transparent_pre.mat | 12 ++- .../Shader Graphs_AlphaTest_HDRP_UnlitSG.mat | 6 +- ...phs_AlphaTest_HDRP_UnlitSG_transparent.mat | 6 +- ...lphaTest_HDRP_UnlitSG_transparent_post.mat | 6 +- ...AlphaTest_HDRP_UnlitSG_transparent_pre.mat | 6 +- .../2003_Light_Parameters/Reflective.mat | 3 +- .../Materials/New Render Texture.mat | 3 +- .../2x_Lighting/2004_AnimatedCookie/NYAN.MAT | 3 +- .../2009_MultipleSkies/ShowCapture.mat | 3 +- .../Layered_TextureMask_RedGreenBlue.mat | 3 +- ...d_TextureMask_RedGreenBlue_Transparent.mat | 3 +- .../Layered_TextureMask_RedMultiplier.mat | 3 +- .../Layered_TextureMask_RedTexture.mat | 3 +- .../Layered_VertexColorMask_RedGreenBlue.mat | 3 +- .../Layered_VertexColorMask_RedMultiplier.mat | 3 +- .../Layered_VertexColorMask_RedTexture.mat | 3 +- .../2101_GI_Metapass/Lit_Checker_Planar.mat | 3 +- .../Lit_Checker_Triplanar.mat | 3 +- .../Lit_Green_CheckerAlphaCutout.mat | 3 +- .../Lit_Green_Transparent.mat | 3 +- .../2101_GI_Metapass/Lit_Mirror_Metallic.mat | 3 +- .../2101_GI_Metapass/Lit_Mirror_Specular.mat | 3 +- .../2101_GI_Metapass/Lit_RedMultiplier.mat | 3 +- .../2101_GI_Metapass/Lit_RedTexture.mat | 3 +- .../2101_GI_Metapass/Lit_White.mat | 3 +- .../2x_Lighting/2102_GI_Emission/Floor.mat | 3 +- .../LayeredLit_BakedEmission.mat | 3 +- .../LayeredLit_RealtimeEmission.mat | 3 +- .../2102_GI_Emission/Lit_BakedEmission.mat | 3 +- .../2102_GI_Emission/Lit_RealtimeEmission.mat | 3 +- .../2102_GI_Emission/Lit_White.mat | 3 +- .../2102_GI_Emission/Unlit_BakedEmission.mat | 3 +- .../Unlit_RealtimeEmission.mat | 3 +- .../2103_GI_BakeMixed/Emissive_Cyan.mat | 3 +- .../2103_GI_BakeMixed/Emissive_Orange.mat | 3 +- .../Ground static material.mat | 3 +- .../Sphere instance material.mat | 3 +- .../2x_Lighting/2106_GI_EmissionSG/Dark.mat | 3 +- .../2106_GI_EmissionSG/Layered.mat | 3 +- .../2x_Lighting/2106_GI_EmissionSG/Lit.mat | 3 +- .../Shader Graphs_EmissiveFabric.mat | 8 +- .../Shader Graphs_EmissiveLit.mat | 8 +- .../Shader Graphs_EmissivePBR.mat | 10 +- .../Shader Graphs_EmissiveStackLit.mat | 8 +- .../Shader Graphs_EmissiveUnlit.mat | 6 +- .../2204_ReflectionProbes_Lights/Lit_UV.mat | 3 +- .../2205_LightLoopCullWOblique/CUBE_T.MAT | 3 +- .../2205_LightLoopCullWOblique/Cube.mat | 3 +- .../Dark_Metallic.mat | 3 +- .../Dark_MetallicAndSmooth.mat | 3 +- .../Dark_Smooth.mat | 3 +- .../2205_LightLoopCullWOblique/Floor.mat | 3 +- .../2205_LightLoopCullWOblique/Wall.mat | 3 +- .../Material/DoubleSidedFlipMode.mat | 3 +- .../Material/DoubleSidedMirrorMode.mat | 3 +- .../Material/DoubleSidedNoneMode.mat | 3 +- .../Material/Mirror.mat | 3 +- .../2206_ReflectionCulling/Material/White.mat | 3 +- .../CubeIn.mat | 3 +- .../CubeOut.mat | 3 +- .../PlanarIn.mat | 3 +- .../PlanarOut.mat | 3 +- .../2211_Probes_Specular/MetalBlue.mat | 3 +- .../2211_Probes_Specular/MetalGreen.mat | 3 +- .../2211_Probes_Specular/MetalRed.mat | 3 +- .../2301_Shadow_Mask/TestCircle.mat | 3 +- .../2302_Shadow_Contact/Transmission.mat | 3 +- .../Unlit.mat | 3 +- .../ShadowTestMaterial.mat | 3 +- .../2308_Microshadows/MicroShadowMaterial.mat | 3 +- .../2316_ShadowTint/M_DiffuseMaterial.mat | 3 +- .../M_SLSmoothness_0.mat | 3 +- .../M_SLSmoothness_1.mat | 3 +- .../M_SLSmoothness_2.mat | 3 +- .../M_Smoothness_0.mat | 3 +- .../M_Smoothness_1.mat | 3 +- .../M_Smoothness_2.mat | 3 +- .../M_Smoothness_3.mat | 3 +- .../M_Smoothness_4.mat | 3 +- .../2505_LightLayers_Viewer.mat | 3 +- .../Default_GPUInstancingDisabled.mat | 3 +- .../Default_GPUInstancingEnabled.mat | 3 +- .../CastShadowTransparent.mat | 3 +- .../Scenes/2x_Lighting/2551_SSR/M_Mirror.mat | 3 +- .../2x_Lighting/2551_SSR/M_Rough0.5_SG.mat | 4 +- .../2551_SSR/M_Rough0.5_SG_NoSSR.mat | 4 +- .../2x_Lighting/2551_SSR/M_Rough0.8_SG.mat | 4 +- .../2551_SSR/M_Rough0.8_SG_NoSSR.mat | 4 +- .../Scenes/2x_Lighting/2551_SSR/M_Rough0.mat | 3 +- .../2x_Lighting/2551_SSR/M_Rough0CC.mat | 3 +- .../2x_Lighting/2551_SSR/M_Rough0CC_NoSSR.mat | 3 +- .../2x_Lighting/2551_SSR/M_Rough0_NoSSR.mat | 3 +- .../2x_Lighting/2551_SSR/M_Rough1CC.mat | 3 +- .../2x_Lighting/2551_SSR/M_Rough1CC_NoSSR.mat | 3 +- .../2x_Lighting/2551_SSR/M_Rough1_SG.mat | 4 +- .../2551_SSR/M_Rough1_SG_NoSSR.mat | 4 +- .../Scenes/2x_Lighting/2551_SSR/M_Rough2.mat | 3 +- .../2x_Lighting/2551_SSR/M_Rough2CC.mat | 3 +- .../2x_Lighting/2551_SSR/M_Rough2CC_NoSSR.mat | 3 +- .../2x_Lighting/2551_SSR/M_Rough_0.5.mat | 3 +- .../2551_SSR/M_Rough_0.5_NoSSR.mat | 3 +- .../2x_Lighting/2551_SSR/M_Rough_0.8.mat | 3 +- .../2551_SSR/M_Rough_0.8_NoSSR.mat | 3 +- .../LitMaterials/M_OpaqueMirrorNoSSR.mat | 3 +- .../LitMaterials/M_OpaqueMirrorSSR.mat | 3 +- .../LitMaterials/M_SGOpaqueMirrorNoSSR.mat | 5 +- .../LitMaterials/M_SGOpaqueMirrorSSR.mat | 5 +- .../M_SGTransparentMirrorNoSSR.mat | 9 +- .../LitMaterials/M_SGTransparentMirrorSSR.mat | 8 +- .../LitMaterials/M_TransparentMirrorNoSSR.mat | 3 +- .../LitMaterials/M_TransparentMirrorSSR.mat | 3 +- .../2701_TransparentSSR/M_DiffuseBlue.mat | 3 +- .../2701_TransparentSSR/M_DiffuseGray.mat | 3 +- .../2701_TransparentSSR/M_DiffuseGreen.mat | 3 +- .../2701_TransparentSSR/M_DiffuseOrange.mat | 3 +- .../2701_TransparentSSR/M_DiffuseRed.mat | 3 +- .../3x_DebugView/3001_DebugView/SG_Lit.mat | 8 +- .../LightingModeUnlit_Diffuse.mat | 3 +- .../LightingModeUnlit_DirectDiffuse.mat | 3 +- .../LightingModeUnlit_DirectSpecular.mat | 3 +- .../LightingModeUnlit_Emissive.mat | 3 +- .../LightingModeUnlit_IndirectDiffuse.mat | 3 +- .../LightingModeUnlit_Input.mat | 3 +- .../LightingModeUnlit_Reflection.mat | 3 +- .../LightingModeUnlit_Refraction.mat | 3 +- .../LightingModeUnlit_Specular.mat | 3 +- .../3003_LightingMode/Material/Chrome.mat | 3 +- .../3003_LightingMode/Material/Emissive 1.mat | 3 +- .../3003_LightingMode/Material/Emissive.mat | 3 +- .../3003_LightingMode/Material/Fabric.mat | 3 +- .../3003_LightingMode/Material/Ground.mat | 3 +- .../3003_LightingMode/Material/Lambert 1.mat | 3 +- .../3003_LightingMode/Material/Lambert.mat | 3 +- .../3003_LightingMode/Material/LitSG.mat | 3 +- .../3003_LightingMode/Material/Refraction.mat | 3 +- .../3003_LightingMode/Material/SSS.mat | 3 +- .../Material/transparent Add.mat | 3 +- .../Material/transparent.mat | 3 +- .../4001_Exposure/DecalEmission.mat | 2 +- .../4001_Exposure/DecalEmissionGraph.mat | 6 +- .../4001_Exposure/DecalExposureNodeGraph.mat | 6 +- .../4001_Exposure/DecalReceiver.mat | 3 +- .../4001_Exposure/FabricEmissionGraph.mat | 5 +- .../4001_Exposure/LayeredLitEmission.mat | 3 +- .../LayeredLitEmissionWeight.mat | 3 +- .../4001_Exposure/LitEmission.mat | 3 +- .../LitEmissionExposureNode_CurrentGraph.mat | 5 +- ...issionExposureNode_InverseCurrentGraph.mat | 5 +- ...ssionExposureNode_InversePreviousGraph.mat | 5 +- .../LitEmissionExposureNode_PreviousGraph.mat | 5 +- .../4001_Exposure/LitEmissionGraph.mat | 5 +- .../4001_Exposure/LitEmissionLess.mat | 3 +- .../4001_Exposure/LitEmissionWeight.mat | 3 +- .../4001_Exposure/PBREmissionGraph.mat | 11 ++- .../4001_Exposure/StackLitEmissionGraph.mat | 5 +- .../4001_Exposure/UnLitEmission.mat | 3 +- .../4001_Exposure/UnLitEmissionWeight.mat | 3 +- .../4011_MotionBlur/M_Blue.mat | 3 +- .../4011_MotionBlur/M_Green.mat | 3 +- .../4011_MotionBlur/M_Red.mat | 3 +- .../TransparentWithMotionVector.mat | 3 +- .../4022_PaniniProjection/TilingGrid.mat | 3 +- .../4023_VignetteClassic/TilingGrid.mat | 3 +- .../4052_TAA/DisplayRTT_8bit.mat | 3 +- .../4053_TAA-FP16Alpha/DisplayRTT.mat | 3 +- .../4060_CustomPostProcess/Transparent.mat | 3 +- .../4070_Gradient.mat | 3 +- .../4070_Viewer.mat | 3 +- .../4071_Gradient.mat | 3 +- .../4071_Viewer.mat | 3 +- .../4080_DepthOfField/SphereMaterial.mat | 3 +- .../DisplayRTTForDoF.mat | 3 +- .../5001_Fog_FogFallback/MultiCamDisplay.mat | 3 +- .../5002_Fog_DensityVolumes/Floor.mat | 3 +- .../5007_ExponentialFog/5007_NoFog1.mat | 3 +- .../5007_ExponentialFog/5007_NoFog2.mat | 3 +- .../5007_ExponentialFog/5007_NoFog3.mat | 3 +- .../5007_ExponentialFog/5007_NoFog4.mat | 3 +- .../5007_ExponentialFog/5007_NoFog5.mat | 3 +- .../5007_ExponentialFog/5007_NoFog6.mat | 3 +- .../8101_Opaque/BI_AlphaCutoff.mat | 3 +- .../8101_Opaque/BI_AmbientOcclusion.mat | 3 +- .../8101_Opaque/BI_AnisoTangent.mat | 3 +- .../8101_Opaque/BI_DS_Enabled.mat | 2 +- .../8101_Opaque/BI_DS_Flipped.mat | 3 +- .../8101_Opaque/BI_DS_MirroredSpec.mat | 2 +- .../8x_ShaderGraph/8101_Opaque/BI_DS_None.mat | 3 +- .../8x_ShaderGraph/8101_Opaque/BI_GSAA.mat | 2 +- .../8101_Opaque/BI_IrideBentNormal.mat | 3 +- .../8101_Opaque/BI_IrideMask.mat | 3 +- .../BI_IrideSpecOcclusionBentNormal.mat | 3 +- .../8101_Opaque/BI_ShinyStone.mat | 3 +- .../8101_Opaque/BI_Standard.mat | 3 +- .../8101_Opaque/BI_SubSurface.mat | 3 +- .../8101_Opaque/BI_TransNormal.mat | 3 +- .../8101_Opaque/FrontCulling.mat | 2 +- .../8101_Opaque/OP_BentNormalFrontCull.mat | 7 +- .../8x_ShaderGraph/8101_Opaque/SG_AO.mat | 8 +- .../8101_Opaque/SG_AlphaCutoff.mat | 10 +- .../8101_Opaque/SG_AnisoTangent.mat | 10 +- .../8101_Opaque/SG_DS_Enabled.mat | 9 +- .../8101_Opaque/SG_DS_Flipped.mat | 11 ++- .../8101_Opaque/SG_DS_MirroredSpec.mat | 11 ++- .../8x_ShaderGraph/8101_Opaque/SG_DS_None.mat | 11 ++- .../8x_ShaderGraph/8101_Opaque/SG_GSAA.mat | 10 +- .../8101_Opaque/SG_IrideBentNormal.mat | 8 +- .../SG_IrideBentNormalSpecularOcclusion.mat | 7 +- .../8101_Opaque/SG_IrideMask.mat | 10 +- .../8101_Opaque/SG_OpaqueFrontCullModeSSS.mat | 7 +- .../8101_Opaque/SG_ShinyStone.mat | 9 +- .../8101_Opaque/SG_Standard.mat | 11 ++- .../8101_Opaque/SG_SubSurface.mat | 7 +- .../8101_Opaque/SG_TransNormal.mat | 10 +- .../8x_ShaderGraph/8102_Transparent/BG.mat | 3 +- .../8102_Transparent/BI_Additive.mat | 3 +- .../8102_Transparent/BI_Alpha.mat | 3 +- .../8102_Transparent/BI_BackThenFront.mat | 3 +- .../BI_BlendPerserveSpecularOff.mat | 3 +- .../BI_BlendPerserveSpecularOn.mat | 3 +- .../BI_DistortionMultiply.mat | 3 +- .../BI_DistortionSimpleAdd.mat | 3 +- .../BI_DistortionVectorMap.mat | 3 +- .../BI_DistortionVectorMapDepthTest.mat | 3 +- .../BI_DistortionVectorMapNoDepthTest.mat | 3 +- .../8102_Transparent/BI_FogOn0.mat | 3 +- .../8102_Transparent/BI_PostPass.mat | 3 +- .../8102_Transparent/BI_PrePass.mat | 3 +- .../8102_Transparent/BI_Premultiply.mat | 3 +- .../BI_RefractionPlaneHiZNormal.mat | 3 +- .../BI_RefractionPlaneProxy.mat | 3 +- .../BI_RefractionSphereHiZ.mat | 3 +- .../BI_RefractionSphereProxy.mat | 3 +- .../8102_Transparent/SG_Additive.mat | 11 ++- .../8102_Transparent/SG_Alpha.mat | 11 ++- .../8102_Transparent/SG_BackThenFront.mat | 11 ++- .../SG_BlendPerserveSpecularOff.mat | 10 +- .../SG_BlendPerserveSpecularOn.mat | 11 ++- .../SG_DistortionMultiply.mat | 10 +- .../SG_DistortionSimpleAdd.mat | 10 +- .../SG_DistortionVectorMap.mat | 11 ++- .../SG_DistortionVectorMapDepthTest.mat | 10 +- .../SG_DistortionVectorMapNoDepthTest.mat | 11 ++- .../8102_Transparent/SG_FogOn.mat | 10 +- .../8102_Transparent/SG_PostRefraction.mat | 10 +- .../8102_Transparent/SG_PreRefraction.mat | 10 +- .../8102_Transparent/SG_Premultiply.mat | 13 ++- .../SG_RefractionPlaneHiZNormal.mat | 10 +- .../SG_RefractionPlaneProxy.mat | 10 +- .../SG_RefractionSphereHiZ.mat | 8 +- .../SG_RefractionSphereProxy.mat | 8 +- .../8103_PrePostPass/Materials/PrePassRT.mat | 3 +- .../8103_PrePostPass/PostPass.mat | 3 +- .../8103_PrePostPass/PostPassColor.mat | 4 +- .../8103_PrePostPass/PostPassRed.mat | 4 +- .../8103_PrePostPass/PrePass.mat | 3 +- .../8103_PrePostPass/PrePass2.mat | 3 +- .../8103_PrePostPass/PrePassGreen.mat | 4 +- .../8103_PrePostPass/PrePassRT.mat | 3 +- .../8103_PrePostPass/SG_PostPass.mat | 8 +- .../8103_PrePostPass/SG_PrePass 1.mat | 11 ++- .../8103_PrePostPass/SG_PrePass.mat | 11 ++- .../8103_PrePostPass/SG_PrePassDisabled.mat | 11 ++- .../8104_Unlit/BI_UnlitAlphaClip.mat | 3 +- .../BI_UnlitAlphaClipDoubleSided.mat | 3 +- ...I_UnlitAlphaClipDoubleSidedTransparent.mat | 3 +- .../8104_Unlit/BI_UnlitBlendAdditive.mat | 3 +- .../8104_Unlit/BI_UnlitBlendAlpha.mat | 3 +- .../8104_Unlit/BI_UnlitBlendPremult.mat | 3 +- .../8104_Unlit/BI_UnlitYellow.mat | 3 +- .../8104_Unlit/BackgroundHoleQuad.mat | 3 +- .../8104_Unlit/SG_UnlitAdditive.mat | 6 +- .../8104_Unlit/SG_UnlitAlpha.mat | 6 +- ...SG_UnlitAlphablendAlphaclipDoublesided.mat | 6 +- .../8104_Unlit/SG_UnlitAlphaclip.mat | 6 +- .../SG_UnlitAlphaclipDoublesided.mat | 6 +- .../8104_Unlit/SG_UnlitPremult.mat | 6 +- .../8104_Unlit/SG_UnlitYellow.mat | 6 +- .../BlendStateRenderTexture.mat | 3 +- .../Shader Graphs_FabricGraphCullBack.mat | 12 ++- ...Graphs_FabricGraphCullBackZTestGreater.mat | 12 ++- .../Shader Graphs_FabricGraphCullFront.mat | 12 ++- ...hader Graphs_FabricGraphCullFrontEqual.mat | 12 ++- .../Shader Graphs_FabricGraphDoubleSided.mat | 12 ++- .../Shader Graphs_FabricGraphZTestAlways.mat | 12 ++- ...Shader Graphs_FabricGraphZTestDisabled.mat | 12 ++- ...hader Graphs_FabricGraphZTestLessEqual.mat | 12 ++- ...phs_FabricGraphZTestNeverBackThenFront.mat | 12 ++- ...r Graphs_FabricGraphZWriteGreaterEqual.mat | 12 ++- ...ader Graphs_FabricGraphZWriteLessEqual.mat | 12 ++- .../Shader Graphs_FabricGraphZWriteOff.mat | 12 ++- .../Shader Graphs_FabricGraphZWriteOn.mat | 12 ++- ...hader Graphs_FabricGraphZWriteOnAlpha1.mat | 12 ++- ... Graphs_FabricGraphZWriteOnTransparent.mat | 12 ++- .../Shader Graphs_UnLitGraphCullBack.mat | 6 +- ... Graphs_UnLitGraphCullBackZTestGreater.mat | 6 +- .../Shader Graphs_UnLitGraphCullFront.mat | 6 +- ...Shader Graphs_UnLitGraphCullFrontEqual.mat | 6 +- .../Shader Graphs_UnLitGraphDoubleSided.mat | 6 +- .../Shader Graphs_UnLitGraphZTestAlways.mat | 6 +- .../Shader Graphs_UnLitGraphZTestDisabled.mat | 6 +- ...Shader Graphs_UnLitGraphZTestLessEqual.mat | 6 +- ...aphs_UnLitGraphZTestNeverBackThenFront.mat | 6 +- ...er Graphs_UnLitGraphZWriteGreaterEqual.mat | 6 +- ...hader Graphs_UnLitGraphZWriteLessEqual.mat | 6 +- .../Shader Graphs_UnLitGraphZWriteOff.mat | 6 +- .../Shader Graphs_UnLitGraphZWriteOn.mat | 6 +- ...Shader Graphs_UnLitGraphZWriteOnAlpha1.mat | 6 +- ...r Graphs_UnLitGraphZWriteOnTransparent.mat | 6 +- .../Shader Graphs_HairGraphCullBack.mat | 12 ++- ...r Graphs_HairGraphCullBackZTestGreater.mat | 12 ++- .../Shader Graphs_HairGraphCullFront.mat | 12 ++- .../Shader Graphs_HairGraphCullFrontEqual.mat | 12 ++- .../Shader Graphs_HairGraphDoubleSided.mat | 12 ++- .../Shader Graphs_HairGraphZTestAlways.mat | 12 ++- .../Shader Graphs_HairGraphZTestDisabled.mat | 12 ++- .../Shader Graphs_HairGraphZTestLessEqual.mat | 12 ++- ...raphs_HairGraphZTestNeverBackThenFront.mat | 12 ++- ...der Graphs_HairGraphZWriteGreaterEqual.mat | 12 ++- ...Shader Graphs_HairGraphZWriteLessEqual.mat | 12 ++- .../Shader Graphs_HairGraphZWriteOff.mat | 12 ++- .../Shader Graphs_HairGraphZWriteOn.mat | 12 ++- .../Shader Graphs_HairGraphZWriteOnAlpha1.mat | 12 ++- ...er Graphs_HairGraphZWriteOnTransparent.mat | 12 ++- .../8105_BlendStates/Lit/LitCullBack.mat | 3 +- .../Lit/LitCullBackZTestGreater.mat | 3 +- .../8105_BlendStates/Lit/LitCullFront.mat | 3 +- .../Lit/LitCullFrontEqual.mat | 3 +- .../8105_BlendStates/Lit/LitDoubleSided.mat | 3 +- .../8105_BlendStates/Lit/LitZTestAlways.mat | 3 +- .../8105_BlendStates/Lit/LitZTestDisabled.mat | 3 +- .../Lit/LitZTestLessEqual.mat | 3 +- .../Lit/LitZTestNeverBackThenFront.mat | 3 +- .../Lit/LitZWriteGreaterEqual.mat | 3 +- .../Lit/LitZWriteLessEqual.mat | 3 +- .../8105_BlendStates/Lit/LitZWriteOff.mat | 3 +- .../8105_BlendStates/Lit/LitZWriteOn.mat | 3 +- .../Lit/LitZWriteOnAlpha1.mat | 3 +- .../Lit/LitZWriteOnTransparent.mat | 3 +- .../Shader Graphs_LitGraphCullBack.mat | 12 ++- ...er Graphs_LitGraphCullBackZTestGreater.mat | 12 ++- .../Shader Graphs_LitGraphCullFront.mat | 12 ++- .../Shader Graphs_LitGraphCullFrontEqual.mat | 12 ++- .../Shader Graphs_LitGraphDoubleSided.mat | 12 ++- .../Shader Graphs_LitGraphZTestAlways.mat | 12 ++- .../Shader Graphs_LitGraphZTestDisabled.mat | 12 ++- .../Shader Graphs_LitGraphZTestLessEqual.mat | 12 ++- ...Graphs_LitGraphZTestNeverBackThenFront.mat | 12 ++- ...ader Graphs_LitGraphZWriteGreaterEqual.mat | 12 ++- .../Shader Graphs_LitGraphZWriteLessEqual.mat | 12 ++- .../Shader Graphs_LitGraphZWriteOff.mat | 12 ++- .../Shader Graphs_LitGraphZWriteOn.mat | 12 ++- .../Shader Graphs_LitGraphZWriteOnAlpha1.mat | 12 ++- ...der Graphs_LitGraphZWriteOnTransparent.mat | 12 ++- .../Shader Graphs_StackLitGraphCullBack.mat | 12 ++- ...aphs_StackLitGraphCullBackZTestGreater.mat | 12 ++- .../Shader Graphs_StackLitGraphCullFront.mat | 12 ++- ...der Graphs_StackLitGraphCullFrontEqual.mat | 12 ++- ...Shader Graphs_StackLitGraphDoubleSided.mat | 12 ++- ...Shader Graphs_StackLitGraphZTestAlways.mat | 12 ++- ...ader Graphs_StackLitGraphZTestDisabled.mat | 12 ++- ...der Graphs_StackLitGraphZTestLessEqual.mat | 12 ++- ...s_StackLitGraphZTestNeverBackThenFront.mat | 12 ++- ...Graphs_StackLitGraphZWriteGreaterEqual.mat | 12 ++- ...er Graphs_StackLitGraphZWriteLessEqual.mat | 12 ++- .../Shader Graphs_StackLitGraphZWriteOff.mat | 12 ++- .../Shader Graphs_StackLitGraphZWriteOn.mat | 12 ++- ...der Graphs_StackLitGraphZWriteOnAlpha1.mat | 12 ++- ...raphs_StackLitGraphZWriteOnTransparent.mat | 12 ++- .../8105_BlendStates/Unlit/UnlitCullBack.mat | 3 +- .../Unlit/UnlitCullBackZTestGreater.mat | 3 +- .../8105_BlendStates/Unlit/UnlitCullFront.mat | 3 +- .../Unlit/UnlitCullFrontEqual.mat | 3 +- .../Unlit/UnlitDoubleSided.mat | 3 +- .../Unlit/UnlitZTestAlways.mat | 3 +- .../Unlit/UnlitZTestDisabled.mat | 3 +- .../Unlit/UnlitZTestLessEqual.mat | 3 +- .../Unlit/UnlitZTestNeverBackThenFront.mat | 3 +- .../Unlit/UnlitZWriteGreaterEqual.mat | 3 +- .../Unlit/UnlitZWriteLessEqual.mat | 3 +- .../8105_BlendStates/Unlit/UnlitZWriteOff.mat | 3 +- .../8105_BlendStates/Unlit/UnlitZWriteOn.mat | 3 +- .../Unlit/UnlitZWriteOnAlpha1.mat | 3 +- .../Unlit/UnlitZWriteOnTransparent.mat | 3 +- .../8106_UnlitShadowMatte/00.mat | 3 +- .../8106_UnlitShadowMatte/01.mat | 3 +- .../8106_UnlitShadowMatte/02.mat | 3 +- .../8106_UnlitShadowMatte/03.mat | 3 +- .../8106_UnlitShadowMatte/10.mat | 3 +- .../8106_UnlitShadowMatte/11.mat | 3 +- .../8106_UnlitShadowMatte/12.mat | 3 +- .../8106_UnlitShadowMatte/13.mat | 3 +- .../8106_UnlitShadowMatte/20.mat | 11 ++- .../8106_UnlitShadowMatte/21.mat | 11 ++- .../8106_UnlitShadowMatte/22.mat | 11 ++- .../8106_UnlitShadowMatte/23.mat | 11 ++- .../8106_UnlitShadowMatte/Cube.mat | 3 +- .../8201_VertexAnimation/HD.mat | 8 +- .../8201_VertexAnimation/PBRboi.mat | 10 +- .../SGVertexRotationHDLit.mat | 8 +- .../SGVertexRotationPBR.mat | 10 +- .../SGVertexWaveHDLit.mat | 10 +- .../SGVertexWaveUnlit.mat | 6 +- .../8202_BentNormals/SG_Bent.mat | 10 +- .../8203_Emission/Lit_BakedEmission.mat | 3 +- .../8203_Emission/Lit_RealtimeEmission.mat | 3 +- .../SG_EmissionAlbedoNoAffects.mat | 8 +- .../SG_EmissionAlbedoNoAffectsBaked.mat | 8 +- .../8203_Emission/SG_EmissionBaked.mat | 10 +- .../8203_Emission/SG_EmissionRealT.mat | 10 +- .../CustomSpecOcclusion.mat | 10 +- .../HDSceneColorMaterialLit.mat | 9 +- .../HDSceneColorMaterialUnlit.mat | 5 +- .../SceneColorMaterialLit.mat | 9 +- .../SceneColorMaterialUnlit.mat | 5 +- .../SceneDepthMaterialLit.mat | 9 +- .../SceneDepthMaterialUnlit.mat | 5 +- ...ader Graphs_SG_vertexNormalTangent_Lit.mat | 8 +- .../9001_LOD-Transition_Display.mat | 3 +- .../9002_FrameSettings_LOD/9801_Lit_Blue.mat | 3 +- .../9002_FrameSettings_LOD/9801_Lit_Green.mat | 3 +- .../9002_FrameSettings_LOD/9801_Lit_Red.mat | 3 +- .../9002_FrameSettings_LOD/9801_Viewer.mat | 3 +- .../9002_FrameSettings_LOD/checker.mat | 3 +- .../9003_CameraRelativeRendering/Floor.mat | 3 +- .../pointlighht.mat | 3 +- .../triplanar.mat | 3 +- .../MultiViewport_Material.mat | 3 +- .../TestAfterPostProcess_Unlit.mat | 3 +- .../TestAfterPostProcess_Unlit_Add.mat | 3 +- ...stAfterPostProcess_Unlit_Add_AfterPost.mat | 3 +- .../TestAfterPostProcess_Unlit_AfterPost.mat | 3 +- .../TestAfterPostProcess_Unlit_Alpha.mat | 3 +- ...AfterPostProcess_Unlit_Alpha_AfterPost.mat | 3 +- .../9006_StencilUsage/Stencil_Lit.mat | 3 +- .../9006_StencilUsage/Stencil_Lit_Decals.mat | 3 +- .../Stencil_Lit_Decals_SSS.mat | 3 +- .../9006_StencilUsage/Stencil_Lit_SSR.mat | 3 +- .../Stencil_Lit_SSR_Decals.mat | 3 +- .../Stencil_Lit_SSR_Decals_SSS.mat | 3 +- .../9006_StencilUsage/Stencil_Lit_SSR_SSS.mat | 3 +- .../9006_StencilUsage/Stencil_Lit_SSS.mat | 3 +- .../9006_StencilUsage/Stencil_Projector.mat | 2 +- .../Stencil_StackLit_Decal_Mat.mat | 5 +- .../Stencil_StackLit_Decal_SSS_Mat.mat | 5 +- .../Stencil_StackLit_Mat.mat | 9 +- .../Stencil_StackLit_SSR_Decal_Mat.mat | 5 +- .../Stencil_StackLit_SSR_Decal_SSS_Mat.mat | 5 +- .../Stencil_StackLit_SSR_Mat.mat | 9 +- .../Stencil_StackLit_SSR_SSS_Mat.mat | 9 +- .../Stencil_StackLit_SSS_Mat.mat | 9 +- .../9006_StencilUsage/Stencil_Unlit.mat | 3 +- .../Stencil_Unlit_SG_Mat.mat | 5 +- .../AlphaCompositingMaterial_Alpha.mat | 3 +- .../GenerateComposite.mat | 3 +- .../UseComposite.mat | 3 +- .../9x_Other/9301_MotionVectors/M_AxF.mat | 8 +- .../9x_Other/9301_MotionVectors/M_Fabric.mat | 5 +- .../9301_MotionVectors/M_LayeredLit.mat | 3 +- .../9301_MotionVectors/M_LineMaterial.mat | 3 +- .../9x_Other/9301_MotionVectors/M_Lit.mat | 3 +- .../9301_MotionVectors/M_StackLit.mat | 5 +- .../9x_Other/9301_MotionVectors/M_Unlit.mat | 3 +- .../Scenes/9x_Other/9401_MSAA/M_GreenLit.mat | 3 +- .../Scenes/9x_Other/9401_MSAA/M_RedLit.mat | 3 +- .../9401_MSAA/M_TransparentBlueLit.mat | 3 +- .../9401_MSAA/M_TransparentRefractive.mat | 3 +- .../9x_Other/9402_AlphaToMask/M_HDRP_AxF.mat | 5 +- .../9402_AlphaToMask/M_HDRP_LayeredLit.mat | 3 +- .../M_HDRP_LayeredLitTessellation.mat | 3 +- .../9x_Other/9402_AlphaToMask/M_HDRP_Lit.mat | 3 +- .../M_HDRP_LitTessellation.mat | 3 +- .../9402_AlphaToMask/M_HDRP_Unlit.mat | 3 +- .../9x_Other/9402_AlphaToMask/M_SG_Eye.mat | 9 +- .../9x_Other/9402_AlphaToMask/M_SG_Fabric.mat | 9 +- .../9x_Other/9402_AlphaToMask/M_SG_Hair.mat | 9 +- .../9x_Other/9402_AlphaToMask/M_SG_Lit.mat | 9 +- .../9402_AlphaToMask/M_SG_StackLit.mat | 9 +- .../9x_Other/9402_AlphaToMask/M_SG_Unlit.mat | 7 +- .../trasnparnetShadowCasting.mat | 3 +- .../9601_LOD-Transition_Display.mat | 3 +- .../HeadInstanced.mat | 3 +- .../9700_CustomPass_FullScreen/Opaque.mat | 3 +- .../Transparent.mat | 3 +- .../9700_CustomPass_FullScreen/Unlit.mat | 3 +- .../9701_UnlitRT.mat | 3 +- .../BackgroundCube.mat | 3 +- .../9702_CustomPass_API/9702_LitUV.mat | 3 +- .../9702_UnlitUVChecker.mat | 3 +- .../None/8206_VertexNormalTangent.png.meta | 96 +++++++++++++++++++ .../None/8206_VertexNormalTangent.png.meta | 96 +++++++++++++++++++ .../None/8206_VertexNormalTangent.png.meta | 96 +++++++++++++++++++ .../None/8206_VertexNormalTangent.png.meta | 96 +++++++++++++++++++ 985 files changed, 3756 insertions(+), 1306 deletions(-) create mode 100644 TestProjects/HDRP_Tests/Assets/ReferenceImages/Linear/LinuxEditor/Vulkan/None/8206_VertexNormalTangent.png.meta create mode 100644 TestProjects/HDRP_Tests/Assets/ReferenceImages/Linear/OSXEditor/Metal/None/8206_VertexNormalTangent.png.meta create mode 100644 TestProjects/HDRP_Tests/Assets/ReferenceImages/Linear/WindowsEditor/Direct3D12/None/8206_VertexNormalTangent.png.meta create mode 100644 TestProjects/HDRP_Tests/Assets/ReferenceImages/Linear/WindowsEditor/Vulkan/None/8206_VertexNormalTangent.png.meta diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Common/Materials/UnlitCanvasMat.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Common/Materials/UnlitCanvasMat.mat index ef16353a066..46192d29496 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Common/Materials/UnlitCanvasMat.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Common/Materials/UnlitCanvasMat.mat @@ -30,6 +30,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -37,10 +38,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -62,6 +65,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -84,4 +88,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/01_Unlit_Simple.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/01_Unlit_Simple.mat index 104488c622b..5eb8e81eccd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/01_Unlit_Simple.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/01_Unlit_Simple.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/02_Unlit_Trans_Alpha.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/02_Unlit_Trans_Alpha.mat index 409d4150c9f..d0aa1b92fc5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/02_Unlit_Trans_Alpha.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/02_Unlit_Trans_Alpha.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/03_Unlit_Trans_Alpha_PreRefractionPass.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/03_Unlit_Trans_Alpha_PreRefractionPass.mat index 0510ce2b221..d26f2c26222 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/03_Unlit_Trans_Alpha_PreRefractionPass.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/03_Unlit_Trans_Alpha_PreRefractionPass.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/04_Unlit_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/04_Unlit_DoubleSide.mat index d9de2c65433..443513747d7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/04_Unlit_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/04_Unlit_DoubleSide.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/05_Unlit_DoubleSide_Transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/05_Unlit_DoubleSide_Transparent.mat index 7ed616106ac..a60faeaf957 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/05_Unlit_DoubleSide_Transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/05_Unlit_DoubleSide_Transparent.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/06_Unlit_DoubleSide_Transparent_PreRefractionPass.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/06_Unlit_DoubleSide_Transparent_PreRefractionPass.mat index 418497783d1..5c2f72c5a39 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/06_Unlit_DoubleSide_Transparent_PreRefractionPass.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/06_Unlit_DoubleSide_Transparent_PreRefractionPass.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/07_Unlit_Textured.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/07_Unlit_Textured.mat index a0abfc94bb4..0f7e231f28c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/07_Unlit_Textured.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/07_Unlit_Textured.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/08_Unlit_Textured_Transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/08_Unlit_Textured_Transparent.mat index e2067852ac3..fcb78acb4c7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/08_Unlit_Textured_Transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/08_Unlit_Textured_Transparent.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/09_Unlit_Textured_Trans_Alpha_PreRefractionPass.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/09_Unlit_Textured_Trans_Alpha_PreRefractionPass.mat index 00164849dca..245d04dc33a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/09_Unlit_Textured_Trans_Alpha_PreRefractionPass.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/09_Unlit_Textured_Trans_Alpha_PreRefractionPass.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/10_Unlit_Textured_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/10_Unlit_Textured_DoubleSide.mat index ae3a7c3a200..f64cb91583d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/10_Unlit_Textured_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/10_Unlit_Textured_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/11_Unlit_Textured_Transparent_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/11_Unlit_Textured_Transparent_DoubleSide.mat index 4c44d1555ff..58025cdfb48 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/11_Unlit_Textured_Transparent_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/11_Unlit_Textured_Transparent_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/12_Unlit_Textured_Trans_Alpha_PreRefractionPass_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/12_Unlit_Textured_Trans_Alpha_PreRefractionPass_DoubleSide.mat index 5453af387a3..9079d5041d3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/12_Unlit_Textured_Trans_Alpha_PreRefractionPass_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/12_Unlit_Textured_Trans_Alpha_PreRefractionPass_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/13_Unlit_Textured_AlphaCutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/13_Unlit_Textured_AlphaCutoff.mat index c275128aedb..e0297bc594c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/13_Unlit_Textured_AlphaCutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/13_Unlit_Textured_AlphaCutoff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/14_Unlit_Textured_Transparent_AlphaCutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/14_Unlit_Textured_Transparent_AlphaCutoff.mat index a7f5617a6c0..2a5ea71b680 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/14_Unlit_Textured_Transparent_AlphaCutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/14_Unlit_Textured_Transparent_AlphaCutoff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/15_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/15_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff.mat index 36270da8320..c606d551939 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/15_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/15_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/16_Unlit_Textured_AlphaCutoff_Doubleside.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/16_Unlit_Textured_AlphaCutoff_Doubleside.mat index 92ec7ca0b54..c4babf4e6db 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/16_Unlit_Textured_AlphaCutoff_Doubleside.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/16_Unlit_Textured_AlphaCutoff_Doubleside.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/17_Unlit_Textured_Transparent_AlphaCutoff_Doubleside.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/17_Unlit_Textured_Transparent_AlphaCutoff_Doubleside.mat index 5945ffab08f..f84e222085b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/17_Unlit_Textured_Transparent_AlphaCutoff_Doubleside.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/17_Unlit_Textured_Transparent_AlphaCutoff_Doubleside.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/18_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff_Doubleside.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/18_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff_Doubleside.mat index 6dcb2828767..1afd430c3bd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/18_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff_Doubleside.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Color/18_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff_Doubleside.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/01_Unlit_Simple.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/01_Unlit_Simple.mat index fe97853f267..37ae4d2638a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/01_Unlit_Simple.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/01_Unlit_Simple.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/02_Unlit_Trans_Alpha.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/02_Unlit_Trans_Alpha.mat index 9863f211e0d..02e79f117cd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/02_Unlit_Trans_Alpha.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/02_Unlit_Trans_Alpha.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/03_Unlit_Trans_Alpha_PreRefractionPass.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/03_Unlit_Trans_Alpha_PreRefractionPass.mat index a3f53edf07e..035640a0e5b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/03_Unlit_Trans_Alpha_PreRefractionPass.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/03_Unlit_Trans_Alpha_PreRefractionPass.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/04_Unlit_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/04_Unlit_DoubleSide.mat index f0abab479be..af684105736 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/04_Unlit_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/04_Unlit_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/05_Unlit_DoubleSide_Transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/05_Unlit_DoubleSide_Transparent.mat index 84a9ff5a575..b3079801a54 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/05_Unlit_DoubleSide_Transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/05_Unlit_DoubleSide_Transparent.mat @@ -158,6 +158,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -224,4 +225,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/06_Unlit_DoubleSide_Transparent_PreRefractionPass.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/06_Unlit_DoubleSide_Transparent_PreRefractionPass.mat index a3456c4f56c..7b4c55066f2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/06_Unlit_DoubleSide_Transparent_PreRefractionPass.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/06_Unlit_DoubleSide_Transparent_PreRefractionPass.mat @@ -158,6 +158,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -224,4 +225,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/07_Unlit_Textured.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/07_Unlit_Textured.mat index 743661dad79..a6e526a1038 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/07_Unlit_Textured.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/07_Unlit_Textured.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/08_Unlit_Textured_Transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/08_Unlit_Textured_Transparent.mat index eadf282cc08..b44db6a9b7b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/08_Unlit_Textured_Transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/08_Unlit_Textured_Transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/09_Unlit_Textured_Trans_Alpha_PreRefractionPass.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/09_Unlit_Textured_Trans_Alpha_PreRefractionPass.mat index 3c5f1bc292e..1d0b23e812c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/09_Unlit_Textured_Trans_Alpha_PreRefractionPass.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/09_Unlit_Textured_Trans_Alpha_PreRefractionPass.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/10_Unlit_Textured_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/10_Unlit_Textured_DoubleSide.mat index 83f62111415..4fc9b4e6592 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/10_Unlit_Textured_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/10_Unlit_Textured_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/11_Unlit_Textured_Transparent_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/11_Unlit_Textured_Transparent_DoubleSide.mat index 924c53b63ff..44332f8b840 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/11_Unlit_Textured_Transparent_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/11_Unlit_Textured_Transparent_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/12_Unlit_Textured_Trans_Alpha_PreRefractionPass_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/12_Unlit_Textured_Trans_Alpha_PreRefractionPass_DoubleSide.mat index ddba6785644..4de3b1221f3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/12_Unlit_Textured_Trans_Alpha_PreRefractionPass_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/12_Unlit_Textured_Trans_Alpha_PreRefractionPass_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/13_Unlit_Textured_AlphaCutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/13_Unlit_Textured_AlphaCutoff.mat index d8689c4dcc4..c2dd85cf618 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/13_Unlit_Textured_AlphaCutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/13_Unlit_Textured_AlphaCutoff.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/14_Unlit_Textured_Transparent_AlphaCutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/14_Unlit_Textured_Transparent_AlphaCutoff.mat index 47e2dbb5dfe..ae206315143 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/14_Unlit_Textured_Transparent_AlphaCutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/14_Unlit_Textured_Transparent_AlphaCutoff.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/15_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/15_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff.mat index a3a4f91d6b5..72781f95efd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/15_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/15_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/16_Unlit_Textured_AlphaCutoff_Doubleside.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/16_Unlit_Textured_AlphaCutoff_Doubleside.mat index 66d62f6e4bc..acfffd4ebf8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/16_Unlit_Textured_AlphaCutoff_Doubleside.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/16_Unlit_Textured_AlphaCutoff_Doubleside.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/17_Unlit_Textured_Transparent_AlphaCutoff_Doubleside.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/17_Unlit_Textured_Transparent_AlphaCutoff_Doubleside.mat index b43a7f385d3..c4d36670a07 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/17_Unlit_Textured_Transparent_AlphaCutoff_Doubleside.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/17_Unlit_Textured_Transparent_AlphaCutoff_Doubleside.mat @@ -158,6 +158,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -224,4 +225,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/18_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff_Doubleside.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/18_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff_Doubleside.mat index 2b8c0ea8af2..55170cc1627 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/18_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff_Doubleside.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Emissive_Texture/18_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff_Doubleside.mat @@ -158,6 +158,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -224,4 +225,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/01_Unlit_Simple.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/01_Unlit_Simple.mat index 878d3f65bf0..b3d405add36 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/01_Unlit_Simple.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/01_Unlit_Simple.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/02_Unlit_Trans_Alpha.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/02_Unlit_Trans_Alpha.mat index b6412d23805..c07c6c54ee6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/02_Unlit_Trans_Alpha.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/02_Unlit_Trans_Alpha.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/03_Unlit_Trans_Alpha_PreRefractionPass.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/03_Unlit_Trans_Alpha_PreRefractionPass.mat index c80bc52e558..2846a35bbf9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/03_Unlit_Trans_Alpha_PreRefractionPass.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/03_Unlit_Trans_Alpha_PreRefractionPass.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/04_Unlit_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/04_Unlit_DoubleSide.mat index c25b5e4e49b..ab20e705e3b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/04_Unlit_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/04_Unlit_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/05_Unlit_DoubleSide_Transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/05_Unlit_DoubleSide_Transparent.mat index 6cf0128f8b8..ca17f4b8740 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/05_Unlit_DoubleSide_Transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/05_Unlit_DoubleSide_Transparent.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/06_Unlit_DoubleSide_Transparent_PreRefractionPass.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/06_Unlit_DoubleSide_Transparent_PreRefractionPass.mat index 968047346b3..2e8df352dea 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/06_Unlit_DoubleSide_Transparent_PreRefractionPass.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/06_Unlit_DoubleSide_Transparent_PreRefractionPass.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/07_Unlit_Textured.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/07_Unlit_Textured.mat index 971346b1cea..3b8caec93fd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/07_Unlit_Textured.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/07_Unlit_Textured.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/08_Unlit_Textured_Transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/08_Unlit_Textured_Transparent.mat index 66126d9b740..d1e7b7856b3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/08_Unlit_Textured_Transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/08_Unlit_Textured_Transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/09_Unlit_Textured_Trans_Alpha_PreRefractionPass.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/09_Unlit_Textured_Trans_Alpha_PreRefractionPass.mat index 3d7c054ef87..d32ca15592a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/09_Unlit_Textured_Trans_Alpha_PreRefractionPass.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/09_Unlit_Textured_Trans_Alpha_PreRefractionPass.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/10_Unlit_Textured_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/10_Unlit_Textured_DoubleSide.mat index 5b1ec80feff..df5785395a1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/10_Unlit_Textured_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/10_Unlit_Textured_DoubleSide.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/11_Unlit_Textured_Transparent_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/11_Unlit_Textured_Transparent_DoubleSide.mat index 3652d2cb6bc..1dbdaeafd39 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/11_Unlit_Textured_Transparent_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/11_Unlit_Textured_Transparent_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/12_Unlit_Textured_Trans_Alpha_PreRefractionPass_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/12_Unlit_Textured_Trans_Alpha_PreRefractionPass_DoubleSide.mat index f223c4a374e..743e3e3c357 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/12_Unlit_Textured_Trans_Alpha_PreRefractionPass_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/12_Unlit_Textured_Trans_Alpha_PreRefractionPass_DoubleSide.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/13_Unlit_Textured_AlphaCutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/13_Unlit_Textured_AlphaCutoff.mat index 534fe638137..1fea1507dd3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/13_Unlit_Textured_AlphaCutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/13_Unlit_Textured_AlphaCutoff.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/14_Unlit_Textured_Transparent_AlphaCutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/14_Unlit_Textured_Transparent_AlphaCutoff.mat index daea5ad9e79..e75ea4b7ba5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/14_Unlit_Textured_Transparent_AlphaCutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/14_Unlit_Textured_Transparent_AlphaCutoff.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/15_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/15_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff.mat index 36808a1adee..d30f2b1e462 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/15_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/15_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -170,6 +170,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/16_Unlit_Textured_AlphaCutoff_Doubleside.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/16_Unlit_Textured_AlphaCutoff_Doubleside.mat index 610558c2e32..88aa2072455 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/16_Unlit_Textured_AlphaCutoff_Doubleside.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/16_Unlit_Textured_AlphaCutoff_Doubleside.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/17_Unlit_Textured_Transparent_AlphaCutoff_Doubleside.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/17_Unlit_Textured_Transparent_AlphaCutoff_Doubleside.mat index 0fe3a518401..8e09643e7ef 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/17_Unlit_Textured_Transparent_AlphaCutoff_Doubleside.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/17_Unlit_Textured_Transparent_AlphaCutoff_Doubleside.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/18_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff_Doubleside.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/18_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff_Doubleside.mat index 498aae693de..bacaae2b104 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/18_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff_Doubleside.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1101_Unlit/Non_Emissive/18_Unlit_Textured_Trans_Alpha_PreRefractionPass_AlphaCutoff_Doubleside.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/01_Unlit_Trans.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/01_Unlit_Trans.mat index 474913a0356..7eeda2e4ac5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/01_Unlit_Trans.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/01_Unlit_Trans.mat @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -235,4 +236,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/02_Unlit_Trans_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/02_Unlit_Trans_DoubleSide.mat index 78e1992f760..a8a02983f55 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/02_Unlit_Trans_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/02_Unlit_Trans_DoubleSide.mat @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -235,4 +236,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/03_Unlit_Textured_Trans.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/03_Unlit_Textured_Trans.mat index ba85c35250e..f44cede8620 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/03_Unlit_Textured_Trans.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/03_Unlit_Textured_Trans.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -182,6 +182,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/04_Unlit_Textured_Trans_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/04_Unlit_Textured_Trans_DoubleSide.mat index 408f2a22c2d..12da6c9b688 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/04_Unlit_Textured_Trans_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/04_Unlit_Textured_Trans_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -182,6 +182,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/05_Unlit_Textured_Trans_Cutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/05_Unlit_Textured_Trans_Cutoff.mat index 06bc8f1c164..5ba222baaa1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/05_Unlit_Textured_Trans_Cutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/05_Unlit_Textured_Trans_Cutoff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -182,6 +182,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat index b2c40629a27..628f238ea6c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Distortion_Only/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -235,4 +236,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/01_Unlit_Trans.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/01_Unlit_Trans.mat index ea69de12fcc..84c06ddfaec 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/01_Unlit_Trans.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/01_Unlit_Trans.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/02_Unlit_Trans_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/02_Unlit_Trans_DoubleSide.mat index 4b25050db0c..527f05889a2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/02_Unlit_Trans_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/02_Unlit_Trans_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/03_Unlit_Textured_Trans.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/03_Unlit_Textured_Trans.mat index 3da68e96ac2..87fbaabde05 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/03_Unlit_Textured_Trans.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/03_Unlit_Textured_Trans.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/04_Unlit_Textured_Trans_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/04_Unlit_Textured_Trans_DoubleSide.mat index a2b5a2d121b..f28a1d37002 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/04_Unlit_Textured_Trans_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/04_Unlit_Textured_Trans_DoubleSide.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/05_Unlit_Textured_Trans_Cutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/05_Unlit_Textured_Trans_Cutoff.mat index e22d6e3ea55..212098c19cd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/05_Unlit_Textured_Trans_Cutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/05_Unlit_Textured_Trans_Cutoff.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat index a2be36ef15a..839a6369d34 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Color/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/01_Unlit_Trans.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/01_Unlit_Trans.mat index e4411557c30..5492e1d28e6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/01_Unlit_Trans.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/01_Unlit_Trans.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/02_Unlit_Trans_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/02_Unlit_Trans_DoubleSide.mat index 1146f6a2fa3..60c4b916bc2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/02_Unlit_Trans_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/02_Unlit_Trans_DoubleSide.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/03_Unlit_Textured_Trans.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/03_Unlit_Textured_Trans.mat index ad6c8e93b1a..0a3d5e9c0b8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/03_Unlit_Textured_Trans.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/03_Unlit_Textured_Trans.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/04_Unlit_Textured_Trans_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/04_Unlit_Textured_Trans_DoubleSide.mat index c8fc002342b..5de014666b4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/04_Unlit_Textured_Trans_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/04_Unlit_Textured_Trans_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/05_Unlit_Textured_Trans_Cutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/05_Unlit_Textured_Trans_Cutoff.mat index ef051ccc6eb..8caac618645 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/05_Unlit_Textured_Trans_Cutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/05_Unlit_Textured_Trans_Cutoff.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat index 082160941fc..05902ea9d7d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Emissive_Texture/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/01_Unlit_Trans.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/01_Unlit_Trans.mat index 57739291e74..78408a945c6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/01_Unlit_Trans.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/01_Unlit_Trans.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/02_Unlit_Trans_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/02_Unlit_Trans_DoubleSide.mat index 9698a0812cb..fb7fd8ec241 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/02_Unlit_Trans_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/02_Unlit_Trans_DoubleSide.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/03_Unlit_Textured_Trans.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/03_Unlit_Textured_Trans.mat index 604da45d6ea..4bf34858499 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/03_Unlit_Textured_Trans.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/03_Unlit_Textured_Trans.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/04_Unlit_Textured_Trans_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/04_Unlit_Textured_Trans_DoubleSide.mat index bc9e02be194..626cc333e88 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/04_Unlit_Textured_Trans_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/04_Unlit_Textured_Trans_DoubleSide.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/05_Unlit_Textured_Trans_Cutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/05_Unlit_Textured_Trans_Cutoff.mat index 28edf6d1a94..cceee1401f6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/05_Unlit_Textured_Trans_Cutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/05_Unlit_Textured_Trans_Cutoff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat index 7e098713a9b..9394969cf8c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1102_Unlit_Distortion/Non_Emissive/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/01_Unlit_Trans.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/01_Unlit_Trans.mat index 9b033cc57db..7c9f0c54fc7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/01_Unlit_Trans.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/01_Unlit_Trans.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -182,6 +182,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/02_Unlit_Trans_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/02_Unlit_Trans_DoubleSide.mat index 848e973c735..e474bc2025b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/02_Unlit_Trans_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/02_Unlit_Trans_DoubleSide.mat @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -235,4 +236,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/03_Unlit_Textured_Trans.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/03_Unlit_Textured_Trans.mat index 9923d5206ed..c9752ee1da3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/03_Unlit_Textured_Trans.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/03_Unlit_Textured_Trans.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -182,6 +182,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/04_Unlit_Textured_Trans_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/04_Unlit_Textured_Trans_DoubleSide.mat index dc630734273..9a270788093 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/04_Unlit_Textured_Trans_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/04_Unlit_Textured_Trans_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -182,6 +182,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/05_Unlit_Textured_Trans_Cutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/05_Unlit_Textured_Trans_Cutoff.mat index 1ee6cbb1c0c..0778dc48ae8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/05_Unlit_Textured_Trans_Cutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/05_Unlit_Textured_Trans_Cutoff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -182,6 +182,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat index dfde3cfd5dd..718092944b6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Distortion_Only/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -182,6 +182,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/01_Unlit_Trans.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/01_Unlit_Trans.mat index 402e1a10c95..7f6e0e75bde 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/01_Unlit_Trans.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/01_Unlit_Trans.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/02_Unlit_Trans_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/02_Unlit_Trans_DoubleSide.mat index ec4928c3323..9670544808a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/02_Unlit_Trans_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/02_Unlit_Trans_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/03_Unlit_Textured_Trans.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/03_Unlit_Textured_Trans.mat index a091fd8eb00..3675508e24a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/03_Unlit_Textured_Trans.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/03_Unlit_Textured_Trans.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/04_Unlit_Textured_Trans_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/04_Unlit_Textured_Trans_DoubleSide.mat index 1c63bc05f13..272845ec05e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/04_Unlit_Textured_Trans_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/04_Unlit_Textured_Trans_DoubleSide.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/05_Unlit_Textured_Trans_Cutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/05_Unlit_Textured_Trans_Cutoff.mat index 09865bb6cca..34625128b27 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/05_Unlit_Textured_Trans_Cutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/05_Unlit_Textured_Trans_Cutoff.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat index 7b7fb19b2f8..d36d3080dff 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Color/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/01_Unlit_Trans.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/01_Unlit_Trans.mat index 3ee8afe85a9..5d894627fc5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/01_Unlit_Trans.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/01_Unlit_Trans.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/02_Unlit_Trans_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/02_Unlit_Trans_DoubleSide.mat index 25cf736a42e..39536c3eb45 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/02_Unlit_Trans_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/02_Unlit_Trans_DoubleSide.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/03_Unlit_Textured_Trans.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/03_Unlit_Textured_Trans.mat index ea3149d7ea0..77c3964e629 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/03_Unlit_Textured_Trans.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/03_Unlit_Textured_Trans.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/04_Unlit_Textured_Trans_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/04_Unlit_Textured_Trans_DoubleSide.mat index e1f7f3c8a26..9e2f775272f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/04_Unlit_Textured_Trans_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/04_Unlit_Textured_Trans_DoubleSide.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/05_Unlit_Textured_Trans_Cutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/05_Unlit_Textured_Trans_Cutoff.mat index 3a17eac15d0..fb9ffd54cda 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/05_Unlit_Textured_Trans_Cutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/05_Unlit_Textured_Trans_Cutoff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat index 1c45493df7d..9b0901ebd17 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Emissive_Texture/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat @@ -157,6 +157,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -223,4 +224,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/01_Unlit_Trans.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/01_Unlit_Trans.mat index 62f93d8c460..3d1eb93b82c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/01_Unlit_Trans.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/01_Unlit_Trans.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/02_Unlit_Trans_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/02_Unlit_Trans_DoubleSide.mat index 5c924dd2b66..292abbc9fd2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/02_Unlit_Trans_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/02_Unlit_Trans_DoubleSide.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/03_Unlit_Textured_Trans.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/03_Unlit_Textured_Trans.mat index 3d0f71b12a3..ddfc45e31e7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/03_Unlit_Textured_Trans.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/03_Unlit_Textured_Trans.mat @@ -156,6 +156,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,4 +223,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/04_Unlit_Textured_Trans_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/04_Unlit_Textured_Trans_DoubleSide.mat index 00a386c7860..049542972cc 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/04_Unlit_Textured_Trans_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/04_Unlit_Textured_Trans_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/05_Unlit_Textured_Trans_Cutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/05_Unlit_Textured_Trans_Cutoff.mat index 43a4d5e5a73..2933ac78ee7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/05_Unlit_Textured_Trans_Cutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/05_Unlit_Textured_Trans_Cutoff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat index 8429d3dd105..efe913eff36 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1103_Unlit_Distortion_DepthTest/Non_Emissive/06_Unlit_Textured_Trans_Cutoff_DoubleSide.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -169,6 +169,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Lit_Add_All.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Lit_Add_All.mat index a3458e29d03..f7a681ffdcd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Lit_Add_All.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Lit_Add_All.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -206,6 +206,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Lit_Add_DepthTest.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Lit_Add_DepthTest.mat index 6d0afbb2c2d..47c16e05d85 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Lit_Add_DepthTest.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Lit_Add_DepthTest.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -206,6 +206,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Add_All.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Add_All.mat index 37de702d645..1f1c21a93e0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Add_All.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Add_All.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Add_All_-26.7.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Add_All_-26.7.mat index 86103970721..4b0886c8f00 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Add_All_-26.7.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Add_All_-26.7.mat @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -277,4 +278,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Add_All_2.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Add_All_2.mat index 58b8756470f..f7bff339b51 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Add_All_2.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Add_All_2.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Add_All_DepthTest.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Add_All_DepthTest.mat index 95d367193b4..73640da6a54 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Add_All_DepthTest.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Add_All_DepthTest.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_BlurOnly.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_BlurOnly.mat index 035340ee404..e5e435bc730 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_BlurOnly.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_BlurOnly.mat @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -277,4 +278,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Mult_Two.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Mult_Two.mat index 7646790a808..636376ff06a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Mult_Two.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1104_Unlit_Distortion_Compose/Unlit_Mult_Two.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op DbSi/1105_Op_DblSi_AlphaClip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op DbSi/1105_Op_DblSi_AlphaClip.mat index 50e9b966b24..afc47648eff 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op DbSi/1105_Op_DblSi_AlphaClip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op DbSi/1105_Op_DblSi_AlphaClip.mat @@ -90,6 +90,10 @@ Material: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_6c24febe6fd14524befcdbd0bf771c82_Texture_1: + m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_A20C78E9_Texture: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} @@ -126,6 +130,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -199,6 +204,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -284,4 +290,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op DbSi/1105_Op_DblSi_Color.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op DbSi/1105_Op_DblSi_Color.mat index 27af3a45c7b..7ad1ca767b1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op DbSi/1105_Op_DblSi_Color.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op DbSi/1105_Op_DblSi_Color.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -126,6 +126,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -199,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op DbSi/1105_Op_DblSi_Emission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op DbSi/1105_Op_DblSi_Emission.mat index cf986b62dcc..306bd274520 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op DbSi/1105_Op_DblSi_Emission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op DbSi/1105_Op_DblSi_Emission.mat @@ -113,6 +113,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -186,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -271,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op DbSi/1105_Op_DblSi_ObjSpace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op DbSi/1105_Op_DblSi_ObjSpace.mat index 492358271a5..90f1735d9f6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op DbSi/1105_Op_DblSi_ObjSpace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op DbSi/1105_Op_DblSi_ObjSpace.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -126,6 +126,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -199,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op Def/1105_Op_Def_AlphaClip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op Def/1105_Op_Def_AlphaClip.mat index 24ab943c6f4..8a067d585af 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op Def/1105_Op_Def_AlphaClip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op Def/1105_Op_Def_AlphaClip.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -103,6 +103,10 @@ Material: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_290d093c677d4f558b1e39021e06e1b2_Texture_1: + m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_A20C78E9_Texture: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} @@ -139,6 +143,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -212,6 +217,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op Def/1105_Op_Def_Color.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op Def/1105_Op_Def_Color.mat index 09d5096746c..373b68e5cab 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op Def/1105_Op_Def_Color.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op Def/1105_Op_Def_Color.mat @@ -113,6 +113,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -186,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -271,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op Def/1105_Op_Def_Emission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op Def/1105_Op_Def_Emission.mat index c79533392fd..026208ede85 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op Def/1105_Op_Def_Emission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op Def/1105_Op_Def_Emission.mat @@ -113,6 +113,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -186,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -271,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op Def/1105_Op_Def_ObjSpace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op Def/1105_Op_Def_ObjSpace.mat index d7239ef0fa6..143c2d3f7c0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op Def/1105_Op_Def_ObjSpace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/00 Op Def/1105_Op_Def_ObjSpace.mat @@ -113,6 +113,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -186,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -271,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Add/1105_Tr_Add_AlphaClip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Add/1105_Tr_Add_AlphaClip.mat index eaff01bbd8b..229f2e2f3a0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Add/1105_Tr_Add_AlphaClip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Add/1105_Tr_Add_AlphaClip.mat @@ -86,6 +86,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_6edfe512da214961b75aa9ba2b4349ea_Texture_1: + m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_A20C78E9_Texture: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} @@ -126,6 +130,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -199,6 +204,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -284,4 +290,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Add/1105_Tr_Add_Color.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Add/1105_Tr_Add_Color.mat index 8003599ca40..ce3fbc0031d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Add/1105_Tr_Add_Color.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Add/1105_Tr_Add_Color.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Add/1105_Tr_Add_Emission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Add/1105_Tr_Add_Emission.mat index 913da5ed2d3..423dded07c7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Add/1105_Tr_Add_Emission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Add/1105_Tr_Add_Emission.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Add/1105_Tr_Add_ObjSpace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Add/1105_Tr_Add_ObjSpace.mat index 611a455d14e..386b99f7592 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Add/1105_Tr_Add_ObjSpace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Add/1105_Tr_Add_ObjSpace.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Alpha/1105_Tr_Alpha_AlphaClip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Alpha/1105_Tr_Alpha_AlphaClip.mat index 05e9400445b..9420a14c791 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Alpha/1105_Tr_Alpha_AlphaClip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Alpha/1105_Tr_Alpha_AlphaClip.mat @@ -86,6 +86,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_18955a6e41834ccaa60704bc9971e114_Texture_1: + m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_A20C78E9_Texture: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} @@ -126,6 +130,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -199,6 +204,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -284,4 +290,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Alpha/1105_Tr_Alpha_Color.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Alpha/1105_Tr_Alpha_Color.mat index ea281bda672..c8887e34b13 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Alpha/1105_Tr_Alpha_Color.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Alpha/1105_Tr_Alpha_Color.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Alpha/1105_Tr_Alpha_Emission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Alpha/1105_Tr_Alpha_Emission.mat index 019216b48e4..77f4cc45e2c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Alpha/1105_Tr_Alpha_Emission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Alpha/1105_Tr_Alpha_Emission.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Alpha/1105_Tr_Alpha_ObjSpace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Alpha/1105_Tr_Alpha_ObjSpace.mat index 69bb285e72b..3eb5fa3127c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Alpha/1105_Tr_Alpha_ObjSpace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Alpha/1105_Tr_Alpha_ObjSpace.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Pre/1105_Tr_Premul_AlphaClip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Pre/1105_Tr_Premul_AlphaClip.mat index 1d0a35ceb5b..62379603b81 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Pre/1105_Tr_Premul_AlphaClip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Pre/1105_Tr_Premul_AlphaClip.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -112,6 +112,10 @@ Material: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_cc1d5717a17a4c00a6272efc40615948_Texture_1: + m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SpecularColorMap: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} @@ -140,6 +144,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -213,6 +218,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Pre/1105_Tr_Premul_Color.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Pre/1105_Tr_Premul_Color.mat index 2a409113fe7..c0c32b96ae9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Pre/1105_Tr_Premul_Color.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Pre/1105_Tr_Premul_Color.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Pre/1105_Tr_Premul_Emission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Pre/1105_Tr_Premul_Emission.mat index 9d58fc691fe..cb56ca28ece 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Pre/1105_Tr_Premul_Emission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Pre/1105_Tr_Premul_Emission.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Pre/1105_Tr_Premul_ObjSpace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Pre/1105_Tr_Premul_ObjSpace.mat index e4dff806e79..243ecfec90d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Pre/1105_Tr_Premul_ObjSpace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/01 Tr Pre/1105_Tr_Premul_ObjSpace.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Add/1105_Tr_DblSi_Add_AlphaClip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Add/1105_Tr_DblSi_Add_AlphaClip.mat index 4c56e115463..735a96d1fdd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Add/1105_Tr_DblSi_Add_AlphaClip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Add/1105_Tr_DblSi_Add_AlphaClip.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -100,6 +100,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_6ae651cf81224601a9e00b16137c0449_Texture_1: + m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_7602de2ea02a435c908c6b97f209043b_Texture_1: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} @@ -140,6 +144,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -213,6 +218,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Add/1105_Tr_DblSi_Add_Color.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Add/1105_Tr_DblSi_Add_Color.mat index 8b78581a87d..4c9ab5cead0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Add/1105_Tr_DblSi_Add_Color.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Add/1105_Tr_DblSi_Add_Color.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Add/1105_Tr_DblSi_Add_Emission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Add/1105_Tr_DblSi_Add_Emission.mat index 309efddffe0..9d6916f5a92 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Add/1105_Tr_DblSi_Add_Emission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Add/1105_Tr_DblSi_Add_Emission.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Add/1105_Tr_DblSi_Add_ObjSpace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Add/1105_Tr_DblSi_Add_ObjSpace.mat index 6a9bc69e81c..f36d33542fc 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Add/1105_Tr_DblSi_Add_ObjSpace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Add/1105_Tr_DblSi_Add_ObjSpace.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Alpha/1105_Tr_DblSi_Alpha_AlphaClip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Alpha/1105_Tr_DblSi_Alpha_AlphaClip.mat index 3d6e30877dc..4a9b605a85b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Alpha/1105_Tr_DblSi_Alpha_AlphaClip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Alpha/1105_Tr_DblSi_Alpha_AlphaClip.mat @@ -91,6 +91,10 @@ Material: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_4f71b6ff32e44e15860b03d08f99fdc7_Texture_1: + m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_A20C78E9_Texture: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} @@ -127,6 +131,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -200,6 +205,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -285,4 +291,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Alpha/1105_Tr_DblSi_Alpha_Color.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Alpha/1105_Tr_DblSi_Alpha_Color.mat index 71aff41e6c3..38633685c48 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Alpha/1105_Tr_DblSi_Alpha_Color.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Alpha/1105_Tr_DblSi_Alpha_Color.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Alpha/1105_Tr_DblSi_Alpha_Emission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Alpha/1105_Tr_DblSi_Alpha_Emission.mat index 75011de1f1b..2878ba93b52 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Alpha/1105_Tr_DblSi_Alpha_Emission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Alpha/1105_Tr_DblSi_Alpha_Emission.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Alpha/1105_Tr_DblSi_Alpha_ObjSpace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Alpha/1105_Tr_DblSi_Alpha_ObjSpace.mat index 6ea72db9099..d1a537f29f4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Alpha/1105_Tr_DblSi_Alpha_ObjSpace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Alpha/1105_Tr_DblSi_Alpha_ObjSpace.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Pret/1105_Tr_DblSi_Pre_AlphaClip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Pret/1105_Tr_DblSi_Pre_AlphaClip.mat index a1e8fd9fc12..a0fc1696660 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Pret/1105_Tr_DblSi_Pre_AlphaClip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Pret/1105_Tr_DblSi_Pre_AlphaClip.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -104,6 +104,10 @@ Material: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_84f0bf8280db40b3b0ba62f9a730aba9_Texture_1: + m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_A20C78E9_Texture: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} @@ -140,6 +144,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -213,6 +218,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Pret/1105_Tr_DblSi_Pre_Color.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Pret/1105_Tr_DblSi_Pre_Color.mat index 7804ad922ba..7c7e858e2bd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Pret/1105_Tr_DblSi_Pre_Color.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Pret/1105_Tr_DblSi_Pre_Color.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -201,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Pret/1105_Tr_DblSi_Pre_Emission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Pret/1105_Tr_DblSi_Pre_Emission.mat index 0f2d44cfad9..99cb13f14e0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Pret/1105_Tr_DblSi_Pre_Emission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Pret/1105_Tr_DblSi_Pre_Emission.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -201,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Pret/1105_Tr_DblSi_Pre_ObjSpace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Pret/1105_Tr_DblSi_Pre_ObjSpace.mat index 6b0fe3efd82..cced1118ad9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Pret/1105_Tr_DblSi_Pre_ObjSpace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/02 Tr DbSi Pret/1105_Tr_DblSi_Pre_ObjSpace.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -201,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Add/1105_Tr_BR_Add_AlphaClip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Add/1105_Tr_BR_Add_AlphaClip.mat index 70640a33e2a..0b9e69b15ed 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Add/1105_Tr_BR_Add_AlphaClip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Add/1105_Tr_BR_Add_AlphaClip.mat @@ -86,6 +86,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_14bb62126c2348cdbdc9d7fa90b10325_Texture_1: + m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_1c6458bcb3554f95bc41b43e342c8a75_Texture_1: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} @@ -126,6 +130,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -199,6 +204,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -284,4 +290,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Add/1105_Tr_BR_Add_Color.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Add/1105_Tr_BR_Add_Color.mat index cde2fb080df..1cc9146738d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Add/1105_Tr_BR_Add_Color.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Add/1105_Tr_BR_Add_Color.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Add/1105_Tr_BR_Add_Emission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Add/1105_Tr_BR_Add_Emission.mat index bdc0a1be027..61e11538778 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Add/1105_Tr_BR_Add_Emission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Add/1105_Tr_BR_Add_Emission.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Add/1105_Tr_BR_Add_ObjSpace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Add/1105_Tr_BR_Add_ObjSpace.mat index 5307cda789c..e56690a1837 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Add/1105_Tr_BR_Add_ObjSpace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Add/1105_Tr_BR_Add_ObjSpace.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Alpha/1105_Tr_BR_Alpha_AlphaClip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Alpha/1105_Tr_BR_Alpha_AlphaClip.mat index 92d7c697759..16feead8c7a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Alpha/1105_Tr_BR_Alpha_AlphaClip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Alpha/1105_Tr_BR_Alpha_AlphaClip.mat @@ -98,6 +98,10 @@ Material: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_ff5653b423fd4fec816ae353d26d44d4_Texture_1: + m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SpecularColorMap: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} @@ -126,6 +130,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -199,6 +204,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -284,4 +290,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Alpha/1105_Tr_BR_Alpha_Color.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Alpha/1105_Tr_BR_Alpha_Color.mat index 33a03433c36..d4670966041 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Alpha/1105_Tr_BR_Alpha_Color.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Alpha/1105_Tr_BR_Alpha_Color.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Alpha/1105_Tr_BR_Alpha_Emission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Alpha/1105_Tr_BR_Alpha_Emission.mat index f5e8a0860bc..65653b1f914 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Alpha/1105_Tr_BR_Alpha_Emission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Alpha/1105_Tr_BR_Alpha_Emission.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Alpha/1105_Tr_BR_Alpha_ObjSpace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Alpha/1105_Tr_BR_Alpha_ObjSpace.mat index 25e149d4b20..2244be4bdb5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Alpha/1105_Tr_BR_Alpha_ObjSpace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Alpha/1105_Tr_BR_Alpha_ObjSpace.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Pre/1105_Tr_BR_Pre_AlphaClip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Pre/1105_Tr_BR_Pre_AlphaClip.mat index 306b1af5167..06f1d386ee8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Pre/1105_Tr_BR_Pre_AlphaClip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Pre/1105_Tr_BR_Pre_AlphaClip.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -104,6 +104,10 @@ Material: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_78dbb9f0bf6847678fc740b29cbf2306_Texture_1: + m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_A20C78E9_Texture: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} @@ -140,6 +144,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -213,6 +218,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Pre/1105_Tr_BR_Pre_Color.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Pre/1105_Tr_BR_Pre_Color.mat index 51a20466307..bacb2037663 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Pre/1105_Tr_BR_Pre_Color.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Pre/1105_Tr_BR_Pre_Color.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Pre/1105_Tr_BR_Pre_Emission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Pre/1105_Tr_BR_Pre_Emission.mat index 2421b9ddca8..5500149ea0e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Pre/1105_Tr_BR_Pre_Emission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Pre/1105_Tr_BR_Pre_Emission.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Pre/1105_Tr_BR_Pre_ObjSpace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Pre/1105_Tr_BR_Pre_ObjSpace.mat index f0103ffa30d..46ae3226cc9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Pre/1105_Tr_BR_Pre_ObjSpace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/03 Tr BR Pre/1105_Tr_BR_Pre_ObjSpace.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Add/1105_Tr_BR_DblSi_Add_AlphaClip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Add/1105_Tr_BR_DblSi_Add_AlphaClip.mat index 27506336263..e78b618d200 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Add/1105_Tr_BR_DblSi_Add_AlphaClip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Add/1105_Tr_BR_DblSi_Add_AlphaClip.mat @@ -91,6 +91,10 @@ Material: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_12abb9aafc164900b55dbe085484b5c3_Texture_1: + m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_A20C78E9_Texture: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} @@ -127,6 +131,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -200,6 +205,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -285,4 +291,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Add/1105_Tr_BR_DblSi_Add_Color.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Add/1105_Tr_BR_DblSi_Add_Color.mat index 6295a101d6b..e60bf070136 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Add/1105_Tr_BR_DblSi_Add_Color.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Add/1105_Tr_BR_DblSi_Add_Color.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Add/1105_Tr_BR_DblSi_Add_Emission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Add/1105_Tr_BR_DblSi_Add_Emission.mat index c75394908cc..65394abe731 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Add/1105_Tr_BR_DblSi_Add_Emission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Add/1105_Tr_BR_DblSi_Add_Emission.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Add/1105_Tr_BR_DblSi_Add_ObjSpace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Add/1105_Tr_BR_DblSi_Add_ObjSpace.mat index 781ce01c285..7bb7ec8c39e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Add/1105_Tr_BR_DblSi_Add_ObjSpace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Add/1105_Tr_BR_DblSi_Add_ObjSpace.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Alpha/1105_Tr_BR_DblSi_Alpha_AlphaClip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Alpha/1105_Tr_BR_DblSi_Alpha_AlphaClip.mat index 2ab47ac0d9c..a9b1e3c38a1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Alpha/1105_Tr_BR_DblSi_Alpha_AlphaClip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Alpha/1105_Tr_BR_DblSi_Alpha_AlphaClip.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -112,6 +112,10 @@ Material: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_c44cf90ec5a041f8a5f17fd740013fd6_Texture_1: + m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SpecularColorMap: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} @@ -140,6 +144,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -213,6 +218,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Alpha/1105_Tr_BR_DblSi_Alpha_Color.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Alpha/1105_Tr_BR_DblSi_Alpha_Color.mat index 29101d8354c..e99fb5b81e1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Alpha/1105_Tr_BR_DblSi_Alpha_Color.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Alpha/1105_Tr_BR_DblSi_Alpha_Color.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Alpha/1105_Tr_BR_DblSi_Alpha_Emission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Alpha/1105_Tr_BR_DblSi_Alpha_Emission.mat index 03b17563077..96e136a4b1d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Alpha/1105_Tr_BR_DblSi_Alpha_Emission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Alpha/1105_Tr_BR_DblSi_Alpha_Emission.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Alpha/1105_Tr_BR_DblSi_Alpha_ObjSpace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Alpha/1105_Tr_BR_DblSi_Alpha_ObjSpace.mat index 1e21cc5add1..058486c2144 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Alpha/1105_Tr_BR_DblSi_Alpha_ObjSpace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Alpha/1105_Tr_BR_DblSi_Alpha_ObjSpace.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Pre/1105_Tr_BR_DblSi_Premul_AlphaClip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Pre/1105_Tr_BR_DblSi_Premul_AlphaClip.mat index 96d7a54baf7..5fa20ec9ec1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Pre/1105_Tr_BR_DblSi_Premul_AlphaClip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Pre/1105_Tr_BR_DblSi_Premul_AlphaClip.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -104,6 +104,10 @@ Material: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_5fd5c715379d4a20883029ed7a4a9e61_Texture_1: + m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_A20C78E9_Texture: m_Texture: {fileID: 2800000, guid: 2c14474f84cbaee46a02b4501a1c41b4, type: 3} m_Scale: {x: 1, y: 1} @@ -140,6 +144,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -213,6 +218,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Pre/1105_Tr_BR_DblSi_Premul_Color.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Pre/1105_Tr_BR_DblSi_Premul_Color.mat index d2e881054fe..25e88432d7d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Pre/1105_Tr_BR_DblSi_Premul_Color.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Pre/1105_Tr_BR_DblSi_Premul_Color.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Pre/1105_Tr_BR_DblSi_Premul_Emission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Pre/1105_Tr_BR_DblSi_Premul_Emission.mat index 92d76dec5d3..a08d9338f9d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Pre/1105_Tr_BR_DblSi_Premul_Emission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Pre/1105_Tr_BR_DblSi_Premul_Emission.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -201,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Pre/1105_Tr_BR_DblSi_Premul_ObjSpace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Pre/1105_Tr_BR_DblSi_Premul_ObjSpace.mat index 4465514ff4d..4e3dc00602e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Pre/1105_Tr_BR_DblSi_Premul_ObjSpace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/04 Tr BR DbSi Pre/1105_Tr_BR_DblSi_Premul_ObjSpace.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -201,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/05 Distortion/1105 Distortion Add 01.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/05 Distortion/1105 Distortion Add 01.mat index 91d000437f6..10c45eaf61a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/05 Distortion/1105 Distortion Add 01.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/05 Distortion/1105 Distortion Add 01.mat @@ -115,6 +115,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -188,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +277,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/05 Distortion/1105 Distortion Add 02.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/05 Distortion/1105 Distortion Add 02.mat index f8b928bce4a..f0d8acc81e4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/05 Distortion/1105 Distortion Add 02.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/05 Distortion/1105 Distortion Add 02.mat @@ -115,6 +115,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -188,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +277,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/05 Distortion/1105 Distortion Mul 01.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/05 Distortion/1105 Distortion Mul 01.mat index 3ef14d17f52..a46874279d7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/05 Distortion/1105 Distortion Mul 01.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/05 Distortion/1105 Distortion Mul 01.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -201,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/05 Distortion/1105 Distortion Replace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/05 Distortion/1105 Distortion Replace.mat index 68b92cffde6..dd8de1b1438 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/05 Distortion/1105 Distortion Replace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1105_UnlitSG/05 Distortion/1105 Distortion Replace.mat @@ -115,6 +115,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -188,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +277,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_Detail.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_Detail.mat index cd41c748bac..110c14e2e61 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_Detail.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_Detail.mat @@ -195,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -286,4 +287,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_Detail_Mask.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_Detail_Mask.mat index 3b727033ce8..29de53cf98a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_Detail_Mask.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_Detail_Mask.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -208,6 +208,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_Detail_ParamsTest.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_Detail_ParamsTest.mat index 347893d88bf..9ff2f0d9fda 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_Detail_ParamsTest.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_Detail_ParamsTest.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -208,6 +208,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_NormalMap_ObjectSpace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_NormalMap_ObjectSpace.mat index 763faaf7afc..b41cb4bff65 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_NormalMap_ObjectSpace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_NormalMap_ObjectSpace.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -208,6 +208,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 1 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_NormalMap_TangentSpace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_NormalMap_TangentSpace.mat index 2705a86dc84..974e81f4921 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_NormalMap_TangentSpace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_NormalMap_TangentSpace.mat @@ -195,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -286,4 +287,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_Texture.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_Texture.mat index d6ebb3ae382..0000063e664 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_Texture.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1201_Lit_Features/Lit_Texture.mat @@ -195,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -286,4 +287,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1202_Lit_DoubleSideNormalMode/DoubleSideNormalTest.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1202_Lit_DoubleSideNormalMode/DoubleSideNormalTest.mat index 4aa2a663b69..e1fb89630d1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1202_Lit_DoubleSideNormalMode/DoubleSideNormalTest.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1202_Lit_DoubleSideNormalMode/DoubleSideNormalTest.mat @@ -195,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -286,4 +287,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1202_Lit_DoubleSideNormalMode/DoubleSidedLitGraph_Flip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1202_Lit_DoubleSideNormalMode/DoubleSidedLitGraph_Flip.mat index c978de255d7..a6ccbf954ec 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1202_Lit_DoubleSideNormalMode/DoubleSidedLitGraph_Flip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1202_Lit_DoubleSideNormalMode/DoubleSidedLitGraph_Flip.mat @@ -34,11 +34,16 @@ Material: m_Texture: {fileID: 2800000, guid: 6c9639b085103f447815e2965a30810a, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_d0796b2c25b942879f39a68016956b2e_Texture_1: + m_Texture: {fileID: 2800000, guid: 6c9639b085103f447815e2965a30810a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_e8df017ea8e5468ebe18bb33d578d062_Texture_1: m_Texture: {fileID: 2800000, guid: 6c9639b085103f447815e2965a30810a, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -47,10 +52,13 @@ Material: - _BlendMode: 0 - _CullMode: 0 - _CullModeForward: 0 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 1 - _DoubleSidedNormalMode: 0 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -67,12 +75,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -95,4 +105,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1202_Lit_DoubleSideNormalMode/DoubleSidedLitGraph_Mirror.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1202_Lit_DoubleSideNormalMode/DoubleSidedLitGraph_Mirror.mat index 4d1b493a0b0..cb017284341 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1202_Lit_DoubleSideNormalMode/DoubleSidedLitGraph_Mirror.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1202_Lit_DoubleSideNormalMode/DoubleSidedLitGraph_Mirror.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -47,11 +47,16 @@ Material: m_Texture: {fileID: 2800000, guid: 6c9639b085103f447815e2965a30810a, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_d0796b2c25b942879f39a68016956b2e_Texture_1: + m_Texture: {fileID: 2800000, guid: 6c9639b085103f447815e2965a30810a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_e8df017ea8e5468ebe18bb33d578d062_Texture_1: m_Texture: {fileID: 2800000, guid: 6c9639b085103f447815e2965a30810a, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -60,10 +65,13 @@ Material: - _BlendMode: 0 - _CullMode: 0 - _CullModeForward: 0 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 1 - _DoubleSidedNormalMode: 1 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -80,12 +88,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1202_Lit_DoubleSideNormalMode/DoubleSidedLitGraph_None.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1202_Lit_DoubleSideNormalMode/DoubleSidedLitGraph_None.mat index fd9c0bbb386..7675f7723e1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1202_Lit_DoubleSideNormalMode/DoubleSidedLitGraph_None.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1202_Lit_DoubleSideNormalMode/DoubleSidedLitGraph_None.mat @@ -34,11 +34,16 @@ Material: m_Texture: {fileID: 2800000, guid: 6c9639b085103f447815e2965a30810a, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_d0796b2c25b942879f39a68016956b2e_Texture_1: + m_Texture: {fileID: 2800000, guid: 6c9639b085103f447815e2965a30810a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_e8df017ea8e5468ebe18bb33d578d062_Texture_1: m_Texture: {fileID: 2800000, guid: 6c9639b085103f447815e2965a30810a, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -47,10 +52,13 @@ Material: - _BlendMode: 0 - _CullMode: 0 - _CullModeForward: 0 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 1 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -67,12 +75,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -95,4 +105,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1203_Lit_Transparent/Lit_Transparent_Additive.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1203_Lit_Transparent/Lit_Transparent_Additive.mat index 78fd1492d03..e8f31ca1e87 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1203_Lit_Transparent/Lit_Transparent_Additive.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1203_Lit_Transparent/Lit_Transparent_Additive.mat @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -288,4 +289,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1203_Lit_Transparent/Lit_Transparent_Alpha.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1203_Lit_Transparent/Lit_Transparent_Alpha.mat index 1f2208ce7f5..40808cb38d7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1203_Lit_Transparent/Lit_Transparent_Alpha.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1203_Lit_Transparent/Lit_Transparent_Alpha.mat @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -288,4 +289,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1203_Lit_Transparent/Lit_Transparent_Multiplicative.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1203_Lit_Transparent/Lit_Transparent_Multiplicative.mat index 9c49bcdd182..fa9facfa50d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1203_Lit_Transparent/Lit_Transparent_Multiplicative.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1203_Lit_Transparent/Lit_Transparent_Multiplicative.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -210,6 +210,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1203_Lit_Transparent/Lit_Transparent_PremultipliedAlpha.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1203_Lit_Transparent/Lit_Transparent_PremultipliedAlpha.mat index 3886a5f5aa7..afcada9b665 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1203_Lit_Transparent/Lit_Transparent_PremultipliedAlpha.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1203_Lit_Transparent/Lit_Transparent_PremultipliedAlpha.mat @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -289,4 +290,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Fog.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Fog.mat index 7c3f77000a9..57713a1bae4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Fog.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Fog.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -208,6 +208,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Additive_Fog_Off.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Additive_Fog_Off.mat index 1642f3f24aa..c441b95ab7d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Additive_Fog_Off.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Additive_Fog_Off.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -210,6 +210,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Additive_Fog_On.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Additive_Fog_On.mat index 51f566e2127..1e1528556a2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Additive_Fog_On.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Additive_Fog_On.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -210,6 +210,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Fog_Off.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Fog_Off.mat index 4ba628a14fc..9bbba9398a4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Fog_Off.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Fog_Off.mat @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -288,4 +289,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Fog_On.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Fog_On.mat index a229aa8f86e..7dc4ef0f0ed 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Fog_On.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Fog_On.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -210,6 +210,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Premultiply_Fog_Off.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Premultiply_Fog_Off.mat index dc76c19af20..00a4413eff6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Premultiply_Fog_Off.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Premultiply_Fog_Off.mat @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -288,4 +289,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Premultiply_Fog_On.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Premultiply_Fog_On.mat index bd627c2fe80..ab7ee6f5231 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Premultiply_Fog_On.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Premultiply_Fog_On.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -211,6 +211,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Refraction_Fog_Off.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Refraction_Fog_Off.mat index 4173e655cee..e1feb7d1d57 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Refraction_Fog_Off.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Refraction_Fog_Off.mat @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -288,4 +289,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Refraction_Fog_On.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Refraction_Fog_On.mat index 6300328abf5..2ecfd32d527 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Refraction_Fog_On.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Lit_Transparent_Refraction_Fog_On.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -210,6 +210,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Materials/1204_Lit_Fog_Display.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Materials/1204_Lit_Fog_Display.mat index 79eb7b1f1e9..3d3e7d25ea0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Materials/1204_Lit_Fog_Display.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1204_Lit_Fog/Materials/1204_Lit_Fog_Display.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Plane.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Plane.mat index c63d2101b81..3decfa9bd56 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Plane.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Plane.mat @@ -201,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -294,4 +295,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Plane_NM.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Plane_NM.mat index 67aeae33b53..62be64929b4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Plane_NM.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Plane_NM.mat @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -295,4 +296,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Plane_NM_Thickness.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Plane_NM_Thickness.mat index ca2ab806c4e..41f030bce21 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Plane_NM_Thickness.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Plane_NM_Thickness.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -215,6 +215,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Plane_Thickness.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Plane_Thickness.mat index 3824b72bf87..467643579dc 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Plane_Thickness.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Plane_Thickness.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -215,6 +215,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Sphere.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Sphere.mat index 09531efaa3e..f6d6e2227ef 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Sphere.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Sphere.mat @@ -201,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -294,4 +295,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Sphere_NM.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Sphere_NM.mat index b90be5eadb0..93804f3a4fe 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Sphere_NM.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Sphere_NM.mat @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -295,4 +296,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Sphere_NM_Thickness.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Sphere_NM_Thickness.mat index 17135a204b1..3cf7a587cb3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Sphere_NM_Thickness.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Sphere_NM_Thickness.mat @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -295,4 +296,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Sphere_Thickness.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Sphere_Thickness.mat index 48020107701..95fd04007dd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Sphere_Thickness.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1205_Lit_Transparent_Refraction/Lit_Refraction_Sphere_Thickness.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -215,6 +215,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1206_Lit_Transparent_Distortion/Lit_Distortion.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1206_Lit_Transparent_Distortion/Lit_Distortion.mat index 2bee8341634..223cef90d1f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1206_Lit_Transparent_Distortion/Lit_Distortion.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1206_Lit_Transparent_Distortion/Lit_Distortion.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1207_Lit_Displacement/Lit_Displacement_Pixel.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1207_Lit_Displacement/Lit_Displacement_Pixel.mat index 6adbd0fa738..80339ef4cef 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1207_Lit_Displacement/Lit_Displacement_Pixel.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1207_Lit_Displacement/Lit_Displacement_Pixel.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -209,6 +209,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1207_Lit_Displacement/Lit_Displacement_Pixel_Tile10.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1207_Lit_Displacement/Lit_Displacement_Pixel_Tile10.mat index 9ef96842053..c263e27b7bb 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1207_Lit_Displacement/Lit_Displacement_Pixel_Tile10.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1207_Lit_Displacement/Lit_Displacement_Pixel_Tile10.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -209,6 +209,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1207_Lit_Displacement/Lit_Displacement_Vertex.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1207_Lit_Displacement/Lit_Displacement_Vertex.mat index bfdfb74cb4b..0b07ea11d0c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1207_Lit_Displacement/Lit_Displacement_Vertex.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1207_Lit_Displacement/Lit_Displacement_Vertex.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1207_Lit_Displacement/Lit_Displacement_Vertex_Tile10.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1207_Lit_Displacement/Lit_Displacement_Vertex_Tile10.mat index 83a2844af2d..c5d70ed26c9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1207_Lit_Displacement/Lit_Displacement_Vertex_Tile10.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1207_Lit_Displacement/Lit_Displacement_Vertex_Tile10.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -209,6 +209,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1208_Lit_Displacement_POM/Lit_Displacement_Pixel.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1208_Lit_Displacement_POM/Lit_Displacement_Pixel.mat index e90edcabcbc..db83d31d0fa 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1208_Lit_Displacement_POM/Lit_Displacement_Pixel.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1208_Lit_Displacement_POM/Lit_Displacement_Pixel.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1209_Lit_Displacement_Vertex/Lit_Displacement_Vertex.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1209_Lit_Displacement_Vertex/Lit_Displacement_Vertex.mat index b2dea3178c4..a09b9068b8a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1209_Lit_Displacement_Vertex/Lit_Displacement_Vertex.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1209_Lit_Displacement_Vertex/Lit_Displacement_Vertex.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -209,6 +209,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1210_Lit_BentNormal/BentNormal_Tangent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1210_Lit_BentNormal/BentNormal_Tangent.mat index aea679735dc..84798d4c447 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1210_Lit_BentNormal/BentNormal_Tangent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1210_Lit_BentNormal/BentNormal_Tangent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -209,6 +209,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 40 - _PPDMinSamples: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1210_Lit_BentNormal/Green_Emissive.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1210_Lit_BentNormal/Green_Emissive.mat index 55a5493cc5f..669398779e2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1210_Lit_BentNormal/Green_Emissive.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1210_Lit_BentNormal/Green_Emissive.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -208,6 +208,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1210_Lit_BentNormal/Red_Emissive.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1210_Lit_BentNormal/Red_Emissive.mat index 439bd20c8ed..3db2bd5377f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1210_Lit_BentNormal/Red_Emissive.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1210_Lit_BentNormal/Red_Emissive.mat @@ -195,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -286,4 +287,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1211_Lit_Details/Lit_Detail.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1211_Lit_Details/Lit_Detail.mat index ab477832683..1c53db54712 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1211_Lit_Details/Lit_Detail.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1211_Lit_Details/Lit_Detail.mat @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -292,4 +293,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1211_Lit_Details/Lit_Detail_TilingOffset.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1211_Lit_Details/Lit_Detail_TilingOffset.mat index 9023a90d0d6..70691a92f20 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1211_Lit_Details/Lit_Detail_TilingOffset.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1211_Lit_Details/Lit_Detail_TilingOffset.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -208,6 +208,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1212_Lit_Emission/ColorRange.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1212_Lit_Emission/ColorRange.mat index 5294cebaef2..501b14c1c09 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1212_Lit_Emission/ColorRange.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1212_Lit_Emission/ColorRange.mat @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -292,4 +293,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1212_Lit_Emission/Lit_Emissive.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1212_Lit_Emission/Lit_Emissive.mat index 34593050d68..bb5df496f84 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1212_Lit_Emission/Lit_Emissive.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1212_Lit_Emission/Lit_Emissive.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -212,6 +212,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1212_Lit_Emission/Lit_Emissive_TileOffset.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1212_Lit_Emission/Lit_Emissive_TileOffset.mat index 74dc422c7af..e1b2883effe 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1212_Lit_Emission/Lit_Emissive_TileOffset.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1212_Lit_Emission/Lit_Emissive_TileOffset.mat @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -292,4 +293,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1213_Lit_anisotropy/GGX_Base.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1213_Lit_anisotropy/GGX_Base.mat index 409bd194b39..bfe3fa391ab 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1213_Lit_anisotropy/GGX_Base.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1213_Lit_anisotropy/GGX_Base.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -283,6 +283,7 @@ Material: - _NormalMapSpace: 0 - _NormalScale: 1 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/Background.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/Background.mat index 26f72242fdc..4e0440ef7a6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/Background.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/Background.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/FullRes_Additive.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/FullRes_Additive.mat index c858b6b9f02..892d5ae0b9c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/FullRes_Additive.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/FullRes_Additive.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/FullRes_Alpha.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/FullRes_Alpha.mat index 683c93e768e..1b83eddbfc5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/FullRes_Alpha.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/FullRes_Alpha.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/FullRes_Premultiply.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/FullRes_Premultiply.mat index f01c1f26d02..dea96510fe6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/FullRes_Premultiply.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/FullRes_Premultiply.mat @@ -190,6 +190,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/LowRes_Additive.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/LowRes_Additive.mat index 17f7fa12e6a..75ca710a962 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/LowRes_Additive.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/LowRes_Additive.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/LowRes_Alpha.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/LowRes_Alpha.mat index 9794fac8fed..2f3aa24e45d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/LowRes_Alpha.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/LowRes_Alpha.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/LowRes_Premultiply.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/LowRes_Premultiply.mat index c825c3109f5..3c875152150 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/LowRes_Premultiply.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1214_Lit_LowResTransparent/LowRes_Premultiply.mat @@ -190,6 +190,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Candle/Candle_02.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Candle/Candle_02.mat index 163d764e215..c871a06e5ad 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Candle/Candle_02.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Candle/Candle_02.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -277,4 +278,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Candle/Candle_NoTransmission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Candle/Candle_NoTransmission.mat index 02936cfb6e7..6978006a594 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Candle/Candle_NoTransmission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Candle/Candle_NoTransmission.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -201,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/LayerRef.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/LayerRef.mat index 2043a17a342..758659384e4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/LayerRef.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/LayerRef.mat @@ -436,6 +436,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -568,4 +569,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Materials/IndexOfRefraction1WorldScale0_1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Materials/IndexOfRefraction1WorldScale0_1.mat index 0e50f0a7c9d..bbf6fa9b960 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Materials/IndexOfRefraction1WorldScale0_1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Materials/IndexOfRefraction1WorldScale0_1.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -201,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Materials/IndexOfRefraction1_25WorldScale1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Materials/IndexOfRefraction1_25WorldScale1.mat index 2ae5d9f8477..c21173d9e76 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Materials/IndexOfRefraction1_25WorldScale1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Materials/IndexOfRefraction1_25WorldScale1.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -201,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Materials/IndexOfRefraction1_5WorldScale10.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Materials/IndexOfRefraction1_5WorldScale10.mat index c3a4491894f..abe0d7afdee 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Materials/IndexOfRefraction1_5WorldScale10.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Materials/IndexOfRefraction1_5WorldScale10.mat @@ -188,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Materials/IndexOfRefraction2WorldScale100.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Materials/IndexOfRefraction2WorldScale100.mat index 957d7213a35..d20308d43db 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Materials/IndexOfRefraction2WorldScale100.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/Materials/IndexOfRefraction2WorldScale100.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -201,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/SSS_Layered.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/SSS_Layered.mat index 20d93d41a87..50c7d61ba44 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/SSS_Layered.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/SSS_Layered.mat @@ -442,6 +442,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -588,4 +589,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/SSS_Mask.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/SSS_Mask.mat index 67cf111f7b5..4158ce12bd3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/SSS_Mask.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/SSS_Mask.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -467,6 +467,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/ShadowDimmerTest.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/ShadowDimmerTest.mat index b23288e5de6..d7e37c32155 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/ShadowDimmerTest.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/ShadowDimmerTest.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -201,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/ThicknessTest.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/ThicknessTest.mat index 0d8f5d2efcf..0d3d9368a6e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/ThicknessTest.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1215_Lit_SubSurfaceScattering/ThicknessTest.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -279,4 +280,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/GridOverlay.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/GridOverlay.mat index 0caaaba32c2..97a077704bd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/GridOverlay.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/GridOverlay.mat @@ -173,6 +173,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -245,4 +246,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_1.mat index 086407ee960..2ab2c5172d1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_1.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -203,6 +203,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_10.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_10.mat index 712d1640f05..5ad0a536114 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_10.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_10.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -203,6 +203,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_15.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_15.mat index e848d979cdf..a08deca96fe 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_15.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_15.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -203,6 +203,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_20.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_20.mat index 7f0e70f1ed4..b6b4b4b8f12 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_20.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_20.mat @@ -190,6 +190,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -281,4 +282,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_5.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_5.mat index 32e3e35262b..2a0c87f22c0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_5.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1216_Lit_SSS_MaxRadius/MaxRadius_5.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -203,6 +203,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1217_Lit_SSS_Pre-Post/Head_Post-Scatter.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1217_Lit_SSS_Pre-Post/Head_Post-Scatter.mat index f57c5683889..76a565ac0a9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1217_Lit_SSS_Pre-Post/Head_Post-Scatter.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1217_Lit_SSS_Pre-Post/Head_Post-Scatter.mat @@ -190,6 +190,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -281,4 +282,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/FabricProfile.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/FabricProfile.mat index dc6659f095e..ff79f376e32 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/FabricProfile.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/FabricProfile.mat @@ -113,6 +113,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -186,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -229,6 +231,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentWritingVelocity: 0 - _TransparentZWrite: 0 - _UVBase: 0 @@ -271,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/HairProfile.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/HairProfile.mat index f49c4e89489..19e5e35e3a9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/HairProfile.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/HairProfile.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -126,6 +126,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -199,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -242,6 +244,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentWritingVelocity: 0 - _TransparentZWrite: 0 - _UVBase: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/LayeredLit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/LayeredLit.mat index 9359c4aec67..8980380f1de 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/LayeredLit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/LayeredLit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -472,6 +472,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/LitNoProfile.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/LitNoProfile.mat index 498b7ede437..8beec9b58ab 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/LitNoProfile.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/LitNoProfile.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -203,6 +203,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/LitProfile_Checker.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/LitProfile_Checker.mat index 2798db03190..fe85b410914 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/LitProfile_Checker.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/LitProfile_Checker.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -244,6 +246,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentWritingVelocity: 0 - _TransparentZWrite: 0 - _UVBase: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/Materials/ProjectDiffusionProfileCamera.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/Materials/ProjectDiffusionProfileCamera.mat index d9458cee2d3..3b27fd421c4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/Materials/ProjectDiffusionProfileCamera.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/Materials/ProjectDiffusionProfileCamera.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/Materials/VolumeDiffusionProfileCamera.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/Materials/VolumeDiffusionProfileCamera.mat index c8054699e4b..23a7e8ffabf 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/Materials/VolumeDiffusionProfileCamera.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/Materials/VolumeDiffusionProfileCamera.mat @@ -71,6 +71,7 @@ Material: - _EnableFogOnTransparent: 0 - _HdrpVersion: 2 - _IncludeIndirectLighting: 1 + - _OpaqueCullMode: 2 - _SrcBlend: 1 - _StencilRef: 0 - _StencilRefDepth: 0 @@ -109,4 +110,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectFabricProfile.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectFabricProfile.mat index a06b94a4de8..512b426ffd6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectFabricProfile.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectFabricProfile.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -126,6 +126,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -199,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -242,6 +244,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentWritingVelocity: 0 - _TransparentZWrite: 0 - _UVBase: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectHairProfile.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectHairProfile.mat index 72f016d9f9a..9135f6f5dc8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectHairProfile.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectHairProfile.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -126,6 +126,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -199,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -242,6 +244,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentWritingVelocity: 0 - _TransparentZWrite: 0 - _UVBase: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectLayeredLit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectLayeredLit.mat index 72395cf21c0..65d74d3c852 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectLayeredLit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectLayeredLit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -472,6 +472,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectLitNoProfile.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectLitNoProfile.mat index 3e3c2aaa601..cc908f72bfe 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectLitNoProfile.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectLitNoProfile.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -203,6 +203,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectLitProfile_Checker.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectLitProfile_Checker.mat index 348688f6218..2c683e70c39 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectLitProfile_Checker.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectLitProfile_Checker.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -231,6 +233,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentWritingVelocity: 0 - _TransparentZWrite: 0 - _UVBase: 0 @@ -273,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectStackLitProfile.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectStackLitProfile.mat index 1b25627ccf9..400717e30ae 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectStackLitProfile.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/ProjectStackLitProfile.mat @@ -113,6 +113,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -186,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -229,6 +231,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentWritingVelocity: 0 - _TransparentZWrite: 0 - _UVBase: 0 @@ -271,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/StackLitProfile.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/StackLitProfile.mat index be638dfd85e..d1626f14ad3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/StackLitProfile.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1218_Lit_DiffusionProfiles/StackLitProfile.mat @@ -113,6 +113,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -186,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -229,6 +231,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentWritingVelocity: 0 - _TransparentZWrite: 0 - _UVBase: 0 @@ -271,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/LayeredLitTess_Displace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/LayeredLitTess_Displace.mat index 67c14dd2ea4..a948dfc9ddc 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/LayeredLitTess_Displace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/LayeredLitTess_Displace.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -480,6 +480,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 64 - _PPDMinSamples: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/LayeredLitTess_Displace_Phong.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/LayeredLitTess_Displace_Phong.mat index 468af9c5d14..84f0b2a4d78 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/LayeredLitTess_Displace_Phong.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/LayeredLitTess_Displace_Phong.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -480,6 +480,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 64 - _PPDMinSamples: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/ProbeVisualizer.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/ProbeVisualizer.mat index 19a94a4d9ef..ccf4437e57f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/ProbeVisualizer.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/ProbeVisualizer.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -185,6 +185,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/Tess_Displace.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/Tess_Displace.mat index 946c632f48d..4d2ebd7c1a3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/Tess_Displace.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/Tess_Displace.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 64 - _PPDMinSamples: 6 @@ -292,4 +293,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/Tess_Displace_Phong.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/Tess_Displace_Phong.mat index fc7c65376c8..9078dbf2a1f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/Tess_Displace_Phong.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1219_Lit_Light_on_Tesselation/Tess_Displace_Phong.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 64 - _PPDMinSamples: 6 @@ -292,4 +293,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Blue_Priority_0.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Blue_Priority_0.mat index 3fc605c047d..9f43640a27e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Blue_Priority_0.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Blue_Priority_0.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Green_Priority_-20.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Green_Priority_-20.mat index 29d4eed140b..6e8b620e0ee 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Green_Priority_-20.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Green_Priority_-20.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Green_Priority_0.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Green_Priority_0.mat index e447b12bd29..41e94540f09 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Green_Priority_0.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Green_Priority_0.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Red_Priority_0.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Red_Priority_0.mat index 83c05882fea..6aa1b422538 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Red_Priority_0.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Red_Priority_0.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Red_Priority_20.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Red_Priority_20.mat index e4f966f6809..466615b8052 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Red_Priority_20.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Lit_Red_Priority_20.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Blue_Priority_0.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Blue_Priority_0.mat index cd918593891..a519fdcbc12 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Blue_Priority_0.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Blue_Priority_0.mat @@ -190,6 +190,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Green_Priority_-20.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Green_Priority_-20.mat index 95d243615e9..15291633640 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Green_Priority_-20.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Green_Priority_-20.mat @@ -190,6 +190,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Green_Priority_0.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Green_Priority_0.mat index efc918ca29e..1752388c265 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Green_Priority_0.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Green_Priority_0.mat @@ -190,6 +190,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Red_Priority_0.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Red_Priority_0.mat index 096609152a0..f745edb19c5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Red_Priority_0.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Red_Priority_0.mat @@ -190,6 +190,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Red_Priority_20.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Red_Priority_20.mat index 71f1e2f3969..4857f046dc7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Red_Priority_20.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1220_Sorting/Unlit_Red_Priority_20.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -203,6 +203,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1221_Lit_POM_Emission/pom_emissive_layered_lit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1221_Lit_POM_Emission/pom_emissive_layered_lit.mat index f8d46753b16..e9c401ca08e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1221_Lit_POM_Emission/pom_emissive_layered_lit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1221_Lit_POM_Emission/pom_emissive_layered_lit.mat @@ -451,6 +451,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -592,4 +593,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1221_Lit_POM_Emission/pom_emissive_lit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1221_Lit_POM_Emission/pom_emissive_lit.mat index 98dbef07949..4e766a444fa 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1221_Lit_POM_Emission/pom_emissive_lit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1221_Lit_POM_Emission/pom_emissive_lit.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Dielectric_Base.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Dielectric_Base.mat index c924f6fc5c1..f098ae579c2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Dielectric_Base.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Dielectric_Base.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -276,6 +276,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -519,6 +520,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 2 - _NormalUseMap: 10 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -613,6 +615,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Dielectric_Irid.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Dielectric_Irid.mat index d4bae8bb95f..690036bf600 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Dielectric_Irid.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Dielectric_Irid.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -278,6 +278,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -521,6 +522,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 2 - _NormalUseMap: 10 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -615,6 +617,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Dielectric_SSS.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Dielectric_SSS.mat index 4ac06fe8db2..6d712025ee4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Dielectric_SSS.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Dielectric_SSS.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -267,6 +267,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -511,6 +512,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 2 - _NormalUseMap: 10 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -605,6 +607,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Metal_Aniso.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Metal_Aniso.mat index 0f6611ba2f6..84c8b0eb3d6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Metal_Aniso.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Metal_Aniso.mat @@ -263,6 +263,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -506,6 +507,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 2 - _NormalUseMap: 10 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -600,6 +602,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -710,4 +713,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Metal_Base.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Metal_Base.mat index 107fcdaf1b4..cc8bfb14799 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Metal_Base.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Metal_Base.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -276,6 +276,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -519,6 +520,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 2 - _NormalUseMap: 10 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -613,6 +615,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Metal_Coat.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Metal_Coat.mat index 84f26342c39..94698b04b76 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Metal_Coat.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Metal_Coat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -275,6 +275,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -518,6 +519,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 2 - _NormalUseMap: 10 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -612,6 +614,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Metal_Coat_DualNormal.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Metal_Coat_DualNormal.mat index 8251e17ab94..dde138b9e19 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Metal_Coat_DualNormal.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1301_StackLit/SG_TestStackMat_Metal_Coat_DualNormal.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -275,6 +275,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -518,6 +519,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 2 - _NormalUseMap: 10 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -612,6 +614,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Column_Metal_Occlusion.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Column_Metal_Occlusion.mat index a47e192dbaa..99e59a5e3ae 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Column_Metal_Occlusion.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Column_Metal_Occlusion.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Column_SLSG_SpecC4.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Column_SLSG_SpecC4.mat index db448bcf404..103273edff1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Column_SLSG_SpecC4.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Column_SLSG_SpecC4.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -156,6 +156,7 @@ Material: - _AORemapMax: 0.99999994 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -228,6 +229,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,6 +275,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/Floor_Sides_03.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/Floor_Sides_03.mat index 7f021bdcd54..61acdb98a56 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/Floor_Sides_03.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/Floor_Sides_03.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -211,6 +211,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1.1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/Floor_Sides_03_nodetail.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/Floor_Sides_03_nodetail.mat index e32ae116cc3..82050dd9807 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/Floor_Sides_03_nodetail.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/Floor_Sides_03_nodetail.mat @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1.1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -289,4 +290,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/GreyFloor.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/GreyFloor.mat index 0522a0f5122..347a8d89d50 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/GreyFloor.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/GreyFloor.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -211,6 +211,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/GreyFloor_nomaps.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/GreyFloor_nomaps.mat index f66c80d6408..7967fd3589f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/GreyFloor_nomaps.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/GreyFloor_nomaps.mat @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -289,4 +290,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_FrostedMetal.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_FrostedMetal.mat index 75f6792a311..1559394ea28 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_FrostedMetal.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_FrostedMetal.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -278,6 +278,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -521,6 +522,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 1 - _NormalUseMap: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -615,6 +617,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_FrostedPaint.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_FrostedPaint.mat index 277ce13053e..5fb538eaee2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_FrostedPaint.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_FrostedPaint.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -278,6 +278,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -521,6 +522,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 1 - _NormalUseMap: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -615,6 +617,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_GlossyPaint.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_GlossyPaint.mat index bcc4b93f6bc..d36d338a718 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_GlossyPaint.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_GlossyPaint.mat @@ -265,6 +265,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -508,6 +509,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 1 - _NormalUseMap: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -602,6 +604,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -713,4 +716,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_MetalFoil.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_MetalFoil.mat index 3b21faca7e4..9cc3c538c8b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_MetalFoil.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_MetalFoil.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -278,6 +278,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -521,6 +522,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 1 - _NormalUseMap: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -615,6 +617,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_MetallicPaint.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_MetallicPaint.mat index d2c291145a0..d62429f5fca 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_MetallicPaint.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_MetallicPaint.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -278,6 +278,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -521,6 +522,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 1 - _NormalUseMap: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -615,6 +617,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_Patina.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_Patina.mat index 8a8d688b7d3..ad158c8e605 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_Patina.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_Patina.mat @@ -265,6 +265,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -508,6 +509,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 1 - _NormalUseMap: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -602,6 +604,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -713,4 +716,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_TintedGlazing.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_TintedGlazing.mat index 7b2e50dad4c..648262c91d8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_TintedGlazing.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/PixarLM/Materials/Screenshots/SLSG_TintedGlazing.mat @@ -265,6 +265,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -508,6 +509,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 1 - _NormalUseMap: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -602,6 +604,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -713,4 +716,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SG_TestStackMat_Metal_Base 1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SG_TestStackMat_Metal_Base 1.mat index 4cbf0795749..3d37e62a9d5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SG_TestStackMat_Metal_Base 1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SG_TestStackMat_Metal_Base 1.mat @@ -263,6 +263,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -506,6 +507,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 2 - _NormalUseMap: 10 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -600,6 +602,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -710,4 +713,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_1.mat index 43d00394372..74c99625075 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_1.mat @@ -331,6 +331,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -605,6 +606,7 @@ Material: - _NormalScale: 2.47 - _NormalUseMap: 2 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -719,6 +721,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -855,4 +858,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2.mat index e56a43fe77e..6cfc07e8d16 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -333,6 +333,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -607,6 +608,7 @@ Material: - _NormalScale: 0.07 - _NormalUseMap: 2 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -721,6 +723,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2M.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2M.mat index 7040267e010..21dd8502a0e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2M.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2M.mat @@ -335,6 +335,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -609,6 +610,7 @@ Material: - _NormalScale: 0.07 - _NormalUseMap: 2 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -723,6 +725,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -862,4 +865,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Ma.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Ma.mat index 3aa91435313..d0d8a330e74 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Ma.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Ma.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -348,6 +348,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -622,6 +623,7 @@ Material: - _NormalScale: 0.07 - _NormalUseMap: 2 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -736,6 +738,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mb.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mb.mat index a513111ceee..61969c1275d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mb.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mb.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -348,6 +348,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -622,6 +623,7 @@ Material: - _NormalScale: 0.07 - _NormalUseMap: 2 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -736,6 +738,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mc.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mc.mat index b5dbe78c3b7..d65214f5858 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mc.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mc.mat @@ -335,6 +335,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -609,6 +610,7 @@ Material: - _NormalScale: 0.07 - _NormalUseMap: 2 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -723,6 +725,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -862,4 +865,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mc2.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mc2.mat index 6d8a2c56369..2517342db52 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mc2.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mc2.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -348,6 +348,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -622,6 +623,7 @@ Material: - _NormalScale: 0.07 - _NormalUseMap: 2 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -736,6 +738,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mc3.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mc3.mat index bac10bc0195..eb6d9c423a2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mc3.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mc3.mat @@ -335,6 +335,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -609,6 +610,7 @@ Material: - _NormalScale: 0.07 - _NormalUseMap: 2 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -723,6 +725,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -862,4 +865,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mc4.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mc4.mat index c629a08ef52..9743045f4e4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mc4.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/SLSG_BaseM_2Mc4.mat @@ -335,6 +335,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -609,6 +610,7 @@ Material: - _NormalScale: 0.07 - _NormalUseMap: 2 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -723,6 +725,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -862,4 +865,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_Lit_Metal_Occlusion.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_Lit_Metal_Occlusion.mat index 845b27158b2..3608187d073 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_Lit_Metal_Occlusion.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_Lit_Metal_Occlusion.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_SLSG.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_SLSG.mat index 19813a7fa9a..4b1d56a6619 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_SLSG.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_SLSG.mat @@ -261,6 +261,7 @@ Material: - _AORemapMax: 0.99999994 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -506,6 +507,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 1.05 - _NormalUseMap: 2 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -601,6 +603,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -711,4 +714,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_SLSG_1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_SLSG_1.mat index 8362b5f53d1..cb24ba8737d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_SLSG_1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_SLSG_1.mat @@ -263,6 +263,7 @@ Material: - _AORemapMax: 0.99999994 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -508,6 +509,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 1.05 - _NormalUseMap: 2 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -603,6 +605,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -713,4 +716,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_SLSG_2.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_SLSG_2.mat index 344dc6ee0bc..21cb8f481ad 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_SLSG_2.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_SLSG_2.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -282,6 +282,7 @@ Material: - _AORemapMax: 0.99999994 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -527,6 +528,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 1.05 - _NormalUseMap: 2 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -622,6 +624,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_SLSG_2b.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_SLSG_2b.mat index 93653c1c90f..5a262fafb65 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_SLSG_2b.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1302_03_StackLit/Tester_SLSG_2b.mat @@ -260,6 +260,7 @@ Material: - _AORemapMax: 0.99999994 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -505,6 +506,7 @@ Material: - _NormalMapUVLocal: 0 - _NormalScale: 1.05 - _NormalUseMap: 2 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -600,6 +602,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -710,4 +713,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetailNormalCutout_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetailNormalCutout_Graph.mat index 4567ece32c8..061bba296ae 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetailNormalCutout_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetailNormalCutout_Graph.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -142,6 +142,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -219,6 +220,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 0.5 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -270,6 +272,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetailNormalFuzzDouble_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetailNormalFuzzDouble_Graph.mat index 31a43fe38c2..dcd7c2d9a45 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetailNormalFuzzDouble_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetailNormalFuzzDouble_Graph.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -141,6 +141,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -218,6 +219,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 0.5 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -269,6 +271,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetailNormalFuzz_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetailNormalFuzz_Graph.mat index 569ab83298f..3c6900b5a11 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetailNormalFuzz_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetailNormalFuzz_Graph.mat @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -205,6 +206,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 0.5 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -256,6 +258,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -303,4 +306,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetailNormal_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetailNormal_Graph.mat index f453ee21fa9..77afef5dff5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetailNormal_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetailNormal_Graph.mat @@ -126,6 +126,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -203,6 +204,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 0.5 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -254,6 +256,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -301,4 +304,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetail_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetail_Graph.mat index 5a6a68efcf7..c4ad0323762 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetail_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolDetail_Graph.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -146,6 +146,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -225,6 +226,7 @@ Material: - _NormalMapStrength: 0.5 - _NormalScale: 0.5 - _NormalStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -277,6 +279,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolNormal_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolNormal_Graph.mat index 754d8d3ea14..de8ae8b89db 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolNormal_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolNormal_Graph.mat @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -205,6 +206,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 0.5 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -256,6 +258,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -303,4 +306,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolSSS_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolSSS_Graph.mat index c990b907b28..4e2f996435a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolSSS_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolSSS_Graph.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -141,6 +141,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -219,6 +220,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 1 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -270,6 +272,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolTransmission_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolTransmission_Graph.mat index 69d537164ce..d787d6ad329 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolTransmission_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWoolTransmission_Graph.mat @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -206,6 +207,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 1 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -257,6 +259,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -306,4 +309,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWool_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWool_Graph.mat index 637c5a9da88..114e4f7d040 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWool_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_CottonWool_Graph.mat @@ -126,6 +126,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -203,6 +204,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 1 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -254,6 +256,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -301,4 +304,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetailNormalCutout_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetailNormalCutout_Graph.mat index 74b60ccd718..883e8ffb519 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetailNormalCutout_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetailNormalCutout_Graph.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -142,6 +142,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -220,6 +221,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 0.5 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -271,6 +273,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetailNormalFuzzDouble_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetailNormalFuzzDouble_Graph.mat index 3ee47375cfc..6e0e175a97e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetailNormalFuzzDouble_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetailNormalFuzzDouble_Graph.mat @@ -129,6 +129,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -206,6 +207,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 0.5 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -257,6 +259,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -304,4 +307,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetailNormalFuzz_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetailNormalFuzz_Graph.mat index ecef13012cd..1e4e984e54c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetailNormalFuzz_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetailNormalFuzz_Graph.mat @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -205,6 +206,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 0.5 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -256,6 +258,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -303,4 +306,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetailNormal_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetailNormal_Graph.mat index 75d2777c292..b2811aafeb0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetailNormal_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetailNormal_Graph.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -141,6 +141,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -218,6 +219,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 0.5 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -269,6 +271,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetail_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetail_Graph.mat index 18a6e9d189b..c6875d10e26 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetail_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkDetail_Graph.mat @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -205,6 +206,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 1 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -256,6 +258,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -303,4 +306,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkNormal_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkNormal_Graph.mat index 7ef2f48cda5..8d80e68baea 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkNormal_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkNormal_Graph.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -139,6 +139,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -216,6 +217,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 0.5 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,6 +269,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkSSS_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkSSS_Graph.mat index d2644dec11c..a423831d4e2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkSSS_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkSSS_Graph.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -141,6 +141,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -219,6 +220,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 1 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -270,6 +272,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkTransmission_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkTransmission_Graph.mat index c3ae445e5af..88a14ccee05 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkTransmission_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_SilkTransmission_Graph.mat @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -206,6 +207,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 1 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -257,6 +259,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -306,4 +309,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_Silk_Graph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_Silk_Graph.mat index 8bf87d0a9aa..84f3f96f33c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_Silk_Graph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1351_Fabric/M_Silk_Graph.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -139,6 +139,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -216,6 +217,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 1 - _NormalScale: 0.5 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,6 +269,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1352_Fabric_Env/M_CottonWoolGraph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1352_Fabric_Env/M_CottonWoolGraph.mat index 1c80c5a2bfe..2d96bee12d0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1352_Fabric_Env/M_CottonWoolGraph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1352_Fabric_Env/M_CottonWoolGraph.mat @@ -125,6 +125,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -202,6 +203,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 1 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -253,6 +255,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -297,4 +300,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1352_Fabric_Env/M_Lit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1352_Fabric_Env/M_Lit.mat index 765253f3d73..2bca405dd6d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1352_Fabric_Env/M_Lit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1352_Fabric_Env/M_Lit.mat @@ -201,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -292,4 +293,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1352_Fabric_Env/M_SilkGraph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1352_Fabric_Env/M_SilkGraph.mat index b69094ac1a6..059ab3a0a78 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1352_Fabric_Env/M_SilkGraph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1352_Fabric_Env/M_SilkGraph.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -138,6 +138,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -215,6 +216,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 1 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,6 +268,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/Grey.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/Grey.mat index 3f236484e14..a938f19c485 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/Grey.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/Grey.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest Light Facing Normal.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest Light Facing Normal.mat index 39eef9880a1..090ebc48bf1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest Light Facing Normal.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest Light Facing Normal.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -24,7 +24,7 @@ Material: m_Shader: {fileID: -6465566751694194690, guid: 647d7e5c9ccbb4910a4d94db1fb65225, type: 3} m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON - _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT _TRANSPARENT_WRITES_MOTION_VEC m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 1 @@ -141,6 +141,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -184,7 +185,7 @@ Material: - _Drag: 1 - _DstBlend: 10 - _EmissiveColorMode: 1 - - _EnableBlendModePreserveSpecularLighting: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableMotionVectorForVertexAnimation: 0 @@ -211,6 +212,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 0.3 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,6 +264,7 @@ Material: - _TransparentDepthPostpassEnable: 1 - _TransparentDepthPrepassEnable: 1 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 1 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest Light Facing Normal_Opaque.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest Light Facing Normal_Opaque.mat index c0b440c566b..93675dd2097 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest Light Facing Normal_Opaque.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest Light Facing Normal_Opaque.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -143,6 +143,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -186,7 +187,7 @@ Material: - _Drag: 1 - _DstBlend: 0 - _EmissiveColorMode: 1 - - _EnableBlendModePreserveSpecularLighting: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableMotionVectorForVertexAnimation: 0 @@ -213,6 +214,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 0.3 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,6 +266,7 @@ Material: - _TransparentDepthPostpassEnable: 1 - _TransparentDepthPrepassEnable: 1 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 1 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest No Shadow Threshold.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest No Shadow Threshold.mat index 8c3f6abe43b..4d9cbe1b175 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest No Shadow Threshold.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest No Shadow Threshold.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -24,7 +24,7 @@ Material: m_Shader: {fileID: -6465566751694194690, guid: 8aa0a6311d70a437cb9c6a3e561b8dc7, type: 3} m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON - _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT _TRANSPARENT_WRITES_MOTION_VEC m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 1 @@ -140,6 +140,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0 - _AlphaCutoffEnable: 1 @@ -183,7 +184,7 @@ Material: - _Drag: 1 - _DstBlend: 10 - _EmissiveColorMode: 1 - - _EnableBlendModePreserveSpecularLighting: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableMotionVectorForVertexAnimation: 0 @@ -210,6 +211,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 0.3 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -261,6 +263,7 @@ Material: - _TransparentDepthPostpassEnable: 1 - _TransparentDepthPrepassEnable: 1 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 1 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest.mat index 8f53783c025..053af222b1a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -24,7 +24,7 @@ Material: m_Shader: {fileID: -6465566751694194690, guid: 101a796373a94404faec2ab2055d5d4b, type: 3} m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON - _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT _TRANSPARENT_WRITES_MOTION_VEC m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 1 @@ -141,6 +141,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -184,7 +185,7 @@ Material: - _Drag: 1 - _DstBlend: 10 - _EmissiveColorMode: 1 - - _EnableBlendModePreserveSpecularLighting: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableMotionVectorForVertexAnimation: 0 @@ -211,6 +212,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 0.3 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,6 +264,7 @@ Material: - _TransparentDepthPostpassEnable: 1 - _TransparentDepthPrepassEnable: 1 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 1 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest_Opaque.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest_Opaque.mat index fed8d724bb2..c1ecc9943db 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest_Opaque.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1401_HairGraph/HairTest_Opaque.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -143,6 +143,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -186,7 +187,7 @@ Material: - _Drag: 1 - _DstBlend: 0 - _EmissiveColorMode: 1 - - _EnableBlendModePreserveSpecularLighting: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableMotionVectorForVertexAnimation: 0 @@ -213,6 +214,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 0.3 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,6 +266,7 @@ Material: - _TransparentDepthPostpassEnable: 1 - _TransparentDepthPrepassEnable: 1 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 1 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1451_AxF_SVBRDF/AxF.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1451_AxF_SVBRDF/AxF.mat index 0e80971b48e..be968ec933c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1451_AxF_SVBRDF/AxF.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1451_AxF_SVBRDF/AxF.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: AxF m_Shader: {fileID: 4800000, guid: 6510c57cccce5674092bdc0dd1ae98c1, type: 3} - m_ShaderKeywords: _AXF_BRDF_TYPE_SVBRDF + m_ShaderKeywords: _AXF_BRDF_TYPE_SVBRDF _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -254,6 +254,7 @@ Material: - _IridescenceMask: 1 - _IridescenceThickness: 1 - _LinkDetailsWithBase: 1 + - _MappingMode: 0 - _MaterialID: 1 - _MaterialTilingU: 5 - _MaterialTilingV: 5 @@ -265,7 +266,9 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 + - _PlanarSpace: 0 - _ReceivesSSR: 1 + - _ReceivesSSRTransparent: 0 - _RefractionModel: 0 - _SSRefractionProjectionModel: 0 - _SVBRDF_BRDFType: 0 @@ -331,6 +334,7 @@ Material: - _EmissiveColorLDR: {r: 0, g: 0, b: 0, a: 1} - _InvPrimScale: {r: 1, g: 1, b: 0, a: 0} - _IridescenceThicknessRemap: {r: 0, g: 1, b: 0, a: 0} + - _MappingMask: {r: 1, g: 0, b: 0, a: 0} - _Material_SO: {r: 1, g: 1, b: 0, a: 0} - _SVBRDF_AlphaMap_SO: {r: 1, g: 1, b: 0, a: 0} - _SVBRDF_AnisoRotationMap_SO: {r: 1, g: 1, b: 0, a: 0} diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1451_AxF_SVBRDF/AxF_aniso/AxF_aniso.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1451_AxF_SVBRDF/AxF_aniso/AxF_aniso.mat index ba86c53f104..ac60c4b9908 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1451_AxF_SVBRDF/AxF_aniso/AxF_aniso.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1451_AxF_SVBRDF/AxF_aniso/AxF_aniso.mat @@ -9,7 +9,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: AxF_aniso m_Shader: {fileID: 4800000, guid: 6510c57cccce5674092bdc0dd1ae98c1, type: 3} - m_ShaderKeywords: _AXF_BRDF_TYPE_SVBRDF + m_ShaderKeywords: _AXF_BRDF_TYPE_SVBRDF _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -241,6 +241,7 @@ Material: - _IridescenceMask: 1 - _IridescenceThickness: 1 - _LinkDetailsWithBase: 1 + - _MappingMode: 0 - _MaterialID: 1 - _MaterialTilingU: 2 - _MaterialTilingV: 2 @@ -252,7 +253,9 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 + - _PlanarSpace: 0 - _ReceivesSSR: 1 + - _ReceivesSSRTransparent: 0 - _RefractionModel: 0 - _SSRefractionProjectionModel: 0 - _SVBRDF_BRDFType: 0 @@ -318,6 +321,7 @@ Material: - _EmissiveColorLDR: {r: 0, g: 0, b: 0, a: 1} - _InvPrimScale: {r: 1, g: 1, b: 0, a: 0} - _IridescenceThicknessRemap: {r: 0, g: 1, b: 0, a: 0} + - _MappingMask: {r: 1, g: 0, b: 0, a: 0} - _Material_SO: {r: 2, g: 2, b: 0, a: 0} - _SVBRDF_AlphaMap_SO: {r: 1, g: 1, b: 0, a: 0} - _SVBRDF_AnisoRotationMap_SO: {r: 1, g: 1, b: 0, a: 0} @@ -348,4 +352,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1451_AxF_SVBRDF/AxF_displacement/AxF_displacement.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1451_AxF_SVBRDF/AxF_displacement/AxF_displacement.mat index 98a70691f4d..fa3a507eb17 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1451_AxF_SVBRDF/AxF_displacement/AxF_displacement.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1451_AxF_SVBRDF/AxF_displacement/AxF_displacement.mat @@ -9,7 +9,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: AxF_displacement m_Shader: {fileID: 4800000, guid: 6510c57cccce5674092bdc0dd1ae98c1, type: 3} - m_ShaderKeywords: _AXF_BRDF_TYPE_SVBRDF + m_ShaderKeywords: _AXF_BRDF_TYPE_SVBRDF _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -241,6 +241,7 @@ Material: - _IridescenceMask: 1 - _IridescenceThickness: 1 - _LinkDetailsWithBase: 1 + - _MappingMode: 0 - _MaterialID: 1 - _MaterialTilingU: 2 - _MaterialTilingV: 2 @@ -252,7 +253,9 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 + - _PlanarSpace: 0 - _ReceivesSSR: 1 + - _ReceivesSSRTransparent: 0 - _RefractionModel: 0 - _SSRefractionProjectionModel: 0 - _SVBRDF_BRDFType: 0 @@ -318,6 +321,7 @@ Material: - _EmissiveColorLDR: {r: 0, g: 0, b: 0, a: 1} - _InvPrimScale: {r: 1, g: 1, b: 0, a: 0} - _IridescenceThicknessRemap: {r: 0, g: 1, b: 0, a: 0} + - _MappingMask: {r: 1, g: 0, b: 0, a: 0} - _Material_SO: {r: 2, g: 2, b: 0, a: 0} - _SVBRDF_AlphaMap_SO: {r: 1, g: 1, b: 0, a: 0} - _SVBRDF_AnisoRotationMap_SO: {r: 1, g: 1, b: 0, a: 0} @@ -348,4 +352,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1601_TerrainLit/Decal.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1601_TerrainLit/Decal.mat index 03f873d8126..28235f168e5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1601_TerrainLit/Decal.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1601_TerrainLit/Decal.mat @@ -267,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1601_TerrainLit/MeshMaterial.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1601_TerrainLit/MeshMaterial.mat index c671cc7dc1b..8ce9e2a4f05 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1601_TerrainLit/MeshMaterial.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1601_TerrainLit/MeshMaterial.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1602_TerrainLit_Normal/FourShapesMaterial.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1602_TerrainLit_Normal/FourShapesMaterial.mat index 086d052028b..f950f90c755 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1602_TerrainLit_Normal/FourShapesMaterial.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1602_TerrainLit_Normal/FourShapesMaterial.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_All.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_All.mat index 76e21675ae4..4a0ea7287e0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_All.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_All.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_All_ColorTint.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_All_ColorTint.mat index b40777604e6..94f0889e0d9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_All_ColorTint.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_All_ColorTint.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_BlendMask.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_BlendMask.mat index 4764a2bfcef..dbed8fa06b1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_BlendMask.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_BlendMask.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_BlendMask_Factor05.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_BlendMask_Factor05.mat index 0d7ea1fa705..f746cd923fc 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_BlendMask_Factor05.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_BlendMask_Factor05.mat @@ -243,4 +243,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_BlendMask_NoAlbedo.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_BlendMask_NoAlbedo.mat index 64fe30dc2ec..84cfc706756 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_BlendMask_NoAlbedo.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_BlendMask_NoAlbedo.mat @@ -243,4 +243,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_Color.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_Color.mat index e4f2a729db3..a9b74a97872 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_Color.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_Color.mat @@ -243,4 +243,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_Mask.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_Mask.mat index 5ff5a066cc0..b65f4a25884 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_Mask.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_Mask.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_Normal.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_Normal.mat index de567bf8494..26b776d3093 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_Normal.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/Decal_Normal.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/FourShapesTransparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/FourShapesTransparent.mat index 7bdabd50a75..ad649c8547b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/FourShapesTransparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/FourShapesTransparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -205,6 +205,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/FourShapes_NoDecal.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/FourShapes_NoDecal.mat index e6afc48dac5..8a7d875a37b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/FourShapes_NoDecal.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1701_Decals/FourShapes_NoDecal.mat @@ -191,6 +191,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1703_Decals-ReorientedNormals/FlatNormalDecal.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1703_Decals-ReorientedNormals/FlatNormalDecal.mat index 25ad6bc56ba..a37e6de03f1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1703_Decals-ReorientedNormals/FlatNormalDecal.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1703_Decals-ReorientedNormals/FlatNormalDecal.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1704_Decals-Settings/Decal.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1704_Decals-Settings/Decal.mat index b86ccb50ef6..a1073ca0941 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1704_Decals-Settings/Decal.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1704_Decals-Settings/Decal.mat @@ -243,4 +243,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1704_Decals-Settings/Decal_ColorTint.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1704_Decals-Settings/Decal_ColorTint.mat index fb7b69e99ed..f8bec5803b8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1704_Decals-Settings/Decal_ColorTint.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1704_Decals-Settings/Decal_ColorTint.mat @@ -243,4 +243,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1704_Decals-Settings/Decal_Factor05.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1704_Decals-Settings/Decal_Factor05.mat index aac4d81cbd9..75977796c0c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1704_Decals-Settings/Decal_Factor05.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1704_Decals-Settings/Decal_Factor05.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1704_Decals-Settings/Decal_NoAlbedo.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1704_Decals-Settings/Decal_NoAlbedo.mat index cbea38ef90a..40018d615e8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1704_Decals-Settings/Decal_NoAlbedo.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1704_Decals-Settings/Decal_NoAlbedo.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Cloud2_03.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Cloud2_03.mat index d46f20353f0..0fcd0eca384 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Cloud2_03.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Cloud2_03.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Cloud_02.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Cloud_02.mat index 09cf6a278d2..d6bb784e29b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Cloud_02.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Cloud_02.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Cross_04.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Cross_04.mat index da43258bb2a..59b2ba19245 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Cross_04.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Cross_04.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Floor.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Floor.mat index 2889333cbca..066e861be05 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Floor.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Floor.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Floor_Grid.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Floor_Grid.mat index 317a5e337b3..5420e400dd1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Floor_Grid.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Floor_Grid.mat @@ -188,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Floor_Transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Floor_Transparent.mat index 5acd7fcafaf..eeef671d89e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Floor_Transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Floor_Transparent.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Floor_Transparent_Grid.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Floor_Transparent_Grid.mat index a0991b2235a..31f41c7557f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Floor_Transparent_Grid.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Floor_Transparent_Grid.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Flower_05.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Flower_05.mat index bf954c8ef50..aceac47c843 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Flower_05.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Flower_05.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Grunge_05.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Grunge_05.mat index c4b36e6d37b..df052d5eaa9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Grunge_05.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Grunge_05.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Grunge_06.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Grunge_06.mat index b7897e6607e..fe452ebf0b3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Grunge_06.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Grunge_06.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Grunge_07.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Grunge_07.mat index dd469462dd0..8a6caa67f7f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Grunge_07.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Grunge_07.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Leaf_07.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Leaf_07.mat index 661f54b2542..79080089ad7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Leaf_07.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Leaf_07.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Leaf_08.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Leaf_08.mat index 25289aa6b15..42fecef2abe 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Leaf_08.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Leaf_08.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Leaf_09.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Leaf_09.mat index e3db2c4f0ab..6f306767eaf 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Leaf_09.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Leaf_09.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Logo_02.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Logo_02.mat index bc5f754e6e6..300fc556801 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Logo_02.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Logo_02.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/MagCircle_07.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/MagCircle_07.mat index b844f6c0462..5fd8baf39d6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/MagCircle_07.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/MagCircle_07.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/MagCircle_08.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/MagCircle_08.mat index e2244e865f5..d8bb4dbc2c5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/MagCircle_08.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/MagCircle_08.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Noise_04.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Noise_04.mat index f3436dad83c..fee71304c37 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Noise_04.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Noise_04.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_11.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_11.mat index 1584cfe3869..361a92ee9b5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_11.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_11.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_12.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_12.mat index bd40f54ae29..2f25331341d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_12.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_12.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_13.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_13.mat index 6bdc38c4e58..8f5e3fadae7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_13.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_13.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_14.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_14.mat index 460b62ff71b..8900893e84a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_14.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_14.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_15.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_15.mat index 0f058d949df..ea2003aa65f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_15.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_15.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_16.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_16.mat index 825b3b2fa76..fad565334ec 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_16.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_16.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_17.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_17.mat index 0ee3d33e5cd..bc1216057c8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_17.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_17.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_18.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_18.mat index 232e85dfb5c..d5438459222 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_18.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Nyan_18.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Particle_01.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Particle_01.mat index 9874c00ab6e..3027989c2bb 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Particle_01.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Particle_01.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/PixelGrid_Small.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/PixelGrid_Small.mat index 7b538a2ab80..c1fb63fd5f6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/PixelGrid_Small.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/PixelGrid_Small.mat @@ -267,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Ring_02.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Ring_02.mat index ec85eb0e7bd..1df263544a9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Ring_02.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Ring_02.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Ring_09.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Ring_09.mat index fe3dd94d874..83298d077af 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Ring_09.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Ring_09.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Shapes_03.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Shapes_03.mat index 2d1f79375fc..aa5a78fcc12 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Shapes_03.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Shapes_03.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Snow_10.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Snow_10.mat index 118419a6f7d..c76521265df 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Snow_10.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Snow_10.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Wood_01.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Wood_01.mat index c869f107322..1d2144ddd6c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Wood_01.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Wood_01.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Wood_03.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Wood_03.mat index 336bd344cbf..c94cf494e8b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Wood_03.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Wood_03.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Wood_15.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Wood_15.mat index 083745e5c6f..408bf86db9a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Wood_15.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1705_Decals-stress-test/Wood_15.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1706_DecalsSG/Decal_All_SG.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1706_DecalsSG/Decal_All_SG.mat index 5a88d25f99a..f3b561ad365 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1706_DecalsSG/Decal_All_SG.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1706_DecalsSG/Decal_All_SG.mat @@ -274,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1706_DecalsSG/Decal_Color_SG.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1706_DecalsSG/Decal_Color_SG.mat index 50c10a81223..cc8573f3024 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1706_DecalsSG/Decal_Color_SG.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1706_DecalsSG/Decal_Color_SG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1706_DecalsSG/Decal_Mask_SG.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1706_DecalsSG/Decal_Mask_SG.mat index 6864fd940ca..4cdd45a4c8b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1706_DecalsSG/Decal_Mask_SG.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1706_DecalsSG/Decal_Mask_SG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1706_DecalsSG/Decal_Normal_SG.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1706_DecalsSG/Decal_Normal_SG.mat index b2f0a16c52c..fd166818d0b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1706_DecalsSG/Decal_Normal_SG.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1706_DecalsSG/Decal_Normal_SG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1707-Decals-FadeFactorAndDistance/Decal_FactorAndStart.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1707-Decals-FadeFactorAndDistance/Decal_FactorAndStart.mat index 7f8f113d40f..190826f41ae 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1707-Decals-FadeFactorAndDistance/Decal_FactorAndStart.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1707-Decals-FadeFactorAndDistance/Decal_FactorAndStart.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1707-Decals-FadeFactorAndDistance/fadeFactorFadeStart.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1707-Decals-FadeFactorAndDistance/fadeFactorFadeStart.mat index 95d6cfc122f..a5cd54d4458 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1707-Decals-FadeFactorAndDistance/fadeFactorFadeStart.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1707-Decals-FadeFactorAndDistance/fadeFactorFadeStart.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1708_DecalsSG_on_SG/FourShapes_POM_SG_mat.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1708_DecalsSG_on_SG/FourShapes_POM_SG_mat.mat index 473c7c51427..134ce6ed2db 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1708_DecalsSG_on_SG/FourShapes_POM_SG_mat.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1708_DecalsSG_on_SG/FourShapes_POM_SG_mat.mat @@ -10,7 +10,7 @@ Material: m_Name: FourShapes_POM_SG_mat m_Shader: {fileID: -6465566751694194690, guid: 776df3ad9f714954fa3ef3f4f391052c, type: 3} - m_ShaderKeywords: _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DEPTHOFFSET_ON _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -94,6 +94,10 @@ Material: m_Texture: {fileID: 2800000, guid: 765ed877b92d01c4f8d6c6d2be61fd99, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _ParallaxOcclusionMapping_99708a3761734335a64c52df4cadeefd_Heightmap_2: + m_Texture: {fileID: 2800000, guid: 765ed877b92d01c4f8d6c6d2be61fd99, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _ParallaxOcclusionMapping_d73379d9ef254eb19bd0a1acf2fe030c_Heightmap_2: m_Texture: {fileID: 2800000, guid: 765ed877b92d01c4f8d6c6d2be61fd99, type: 3} m_Scale: {x: 1, y: 1} @@ -106,6 +110,14 @@ Material: m_Texture: {fileID: 2800000, guid: 97a5684bc72c1704fadc965467f242ea, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_3137c275734449ae82120612986e0259_Texture_1: + m_Texture: {fileID: 2800000, guid: 6c9639b085103f447815e2965a30810a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SampleTexture2D_54b2ff5af7de45d1bf09bc220edb057f_Texture_1: + m_Texture: {fileID: 2800000, guid: 97a5684bc72c1704fadc965467f242ea, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_7fcc5a33a710417c97f73d30c274f299_Texture_1: m_Texture: {fileID: 2800000, guid: 97a5684bc72c1704fadc965467f242ea, type: 3} m_Scale: {x: 1, y: 1} @@ -142,6 +154,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -157,7 +170,7 @@ Material: - _CullMode: 2 - _CullModeForward: 2 - _Cutoff: 0.5 - - _DepthOffsetEnable: 0 + - _DepthOffsetEnable: 1 - _DetailAlbedoScale: 1 - _DetailNormalScale: 1 - _DetailSmoothnessScale: 1 @@ -215,6 +228,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -301,4 +315,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1708_DecalsSG_on_SG/FourShapes_SG_mat.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1708_DecalsSG_on_SG/FourShapes_SG_mat.mat index 0069883103a..2d83cabc663 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1708_DecalsSG_on_SG/FourShapes_SG_mat.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1708_DecalsSG_on_SG/FourShapes_SG_mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -103,10 +103,18 @@ Material: m_Texture: {fileID: 2800000, guid: 97a5684bc72c1704fadc965467f242ea, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_87e9707450df4be9bde44e5bec9d6a0d_Texture_1: + m_Texture: {fileID: 2800000, guid: 97a5684bc72c1704fadc965467f242ea, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_8B0BB0E4_Texture_1: m_Texture: {fileID: 2800000, guid: 6c9639b085103f447815e2965a30810a, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_8ef29a210455439f93668919596d980b_Texture_1: + m_Texture: {fileID: 2800000, guid: 6c9639b085103f447815e2965a30810a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_FF8BAE05_Texture_1: m_Texture: {fileID: 2800000, guid: 97a5684bc72c1704fadc965467f242ea, type: 3} m_Scale: {x: 1, y: 1} @@ -143,6 +151,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -216,6 +225,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1708_DecalsSG_on_SG/Tests_Default_SG_mat.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1708_DecalsSG_on_SG/Tests_Default_SG_mat.mat index 265c3ef9e05..c22e97aa4f4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1708_DecalsSG_on_SG/Tests_Default_SG_mat.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1708_DecalsSG_on_SG/Tests_Default_SG_mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/AxFSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/AxFSSR.mat index ce6027d2141..7288ae64e0b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/AxFSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/AxFSSR.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -195,6 +195,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/DecalModifier.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/DecalModifier.mat index 86df334660e..25ab3d85e87 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/DecalModifier.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/DecalModifier.mat @@ -282,4 +282,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/FabricSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/FabricSSR.mat index afd16c2bc7b..389390ea86c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/FabricSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/FabricSSR.mat @@ -26,6 +26,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -33,10 +34,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -52,12 +56,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -80,4 +86,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/LayeredLitSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/LayeredLitSSR.mat index a1e62d1a62d..cff6c36ac02 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/LayeredLitSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/LayeredLitSSR.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -464,6 +464,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/LitSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/LitSSR.mat index 66325f147b8..431c883f0dc 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/LitSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/LitSSR.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -195,6 +195,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/StackLitSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/StackLitSSR.mat index e428834cd1a..3a07680cd51 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/StackLitSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1710_Decals_Normal_Patch/StackLitSSR.mat @@ -26,6 +26,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -33,10 +34,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -52,12 +56,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -80,4 +86,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_SG_mask_dark.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_SG_mask_dark.mat index bb7138ff07d..12ee7b26385 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_SG_mask_dark.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_SG_mask_dark.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_SG_mask_grey.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_SG_mask_grey.mat index 71c80b06509..aa2b24b1941 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_SG_mask_grey.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_SG_mask_grey.mat @@ -274,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_SG_mask_grey_dontAffectBase.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_SG_mask_grey_dontAffectBase.mat index 020dfdd6885..5b904b97d9a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_SG_mask_grey_dontAffectBase.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_SG_mask_grey_dontAffectBase.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_SG_mask_white.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_SG_mask_white.mat index e590ae87e27..f24d1588bb3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_SG_mask_white.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_SG_mask_white.mat @@ -274,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_mask_dark.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_mask_dark.mat index 1aa88e5cef4..8d8bd0f0a84 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_mask_dark.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_mask_dark.mat @@ -243,4 +243,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_mask_grey.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_mask_grey.mat index 72e0dbc235f..6a9b98dd999 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_mask_grey.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_mask_grey.mat @@ -243,4 +243,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_mask_grey_dontAffectBase.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_mask_grey_dontAffectBase.mat index d7fd153a293..fa74c2d9fde 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_mask_grey_dontAffectBase.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_mask_grey_dontAffectBase.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_mask_white.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_mask_white.mat index 771a3d26783..6c7d5452b82 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_mask_white.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/Decal_All_mask_white.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_AO_0.5.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_AO_0.5.mat index 21a2680f264..a6598a55694 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_AO_0.5.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_AO_0.5.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_AO_0.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_AO_0.mat index affae1576e4..8dd4cd13796 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_AO_0.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_AO_0.mat @@ -243,4 +243,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_AO_1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_AO_1.mat index 58e4e83001a..ad96cafd457 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_AO_1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_AO_1.mat @@ -243,4 +243,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_metal_0.5.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_metal_0.5.mat index 6c803ce6810..d821afb0662 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_metal_0.5.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_metal_0.5.mat @@ -243,4 +243,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_metal_0.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_metal_0.mat index 725f0ae9a7b..25d59fcae21 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_metal_0.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_metal_0.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_metal_1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_metal_1.mat index 7eb56093c84..25f2313c385 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_metal_1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_metal_1.mat @@ -243,4 +243,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_smoothness_0.5.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_smoothness_0.5.mat index 68c0d5f5004..ff6c0630cb2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_smoothness_0.5.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_smoothness_0.5.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_smoothness_0.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_smoothness_0.mat index bd1d0d0d9a8..f18cf7b7192 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_smoothness_0.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_smoothness_0.mat @@ -243,4 +243,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_smoothness_1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_smoothness_1.mat index 36b8fb3238b..7b07870c1e9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_smoothness_1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1711_DecalMasks/MaskRemap/Decal_mask_remap_smoothness_1.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_Anisotropy.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_Anisotropy.mat index 096f3fe29d0..8fa96513ace 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_Anisotropy.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_Anisotropy.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_ClearCoat.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_ClearCoat.mat index 73d9287c21d..fb20bdd6858 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_ClearCoat.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_ClearCoat.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_Diffusion.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_Diffusion.mat index 1b872fb678c..6590c842a01 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_Diffusion.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_Diffusion.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_Iridescence.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_Iridescence.mat index 3f7848d25ba..b8119a1b85a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_Iridescence.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_Iridescence.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_SSS.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_SSS.mat index 2ab12ed13c9..64eb77d35d1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_SSS.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_SSS.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -201,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_Standard.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_Standard.mat index 26e68b54c3e..abedf34c957 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_Standard.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1800_Classification/Classification_Standard.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1801_MaterialQuality/Shader Graphs_MaterialQualityTestShader.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1801_MaterialQuality/Shader Graphs_MaterialQualityTestShader.mat index b0021e71f0b..771cb8306eb 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1801_MaterialQuality/Shader Graphs_MaterialQualityTestShader.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1801_MaterialQuality/Shader Graphs_MaterialQualityTestShader.mat @@ -27,6 +27,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -34,10 +35,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -54,12 +58,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -82,4 +88,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1801_MaterialQuality/ShowCapture.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1801_MaterialQuality/ShowCapture.mat index aece973abfa..577839acf42 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1801_MaterialQuality/ShowCapture.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1801_MaterialQuality/ShowCapture.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit Tesselation/Post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit Tesselation/Post.mat index 170179e6e4f..7821c98eed3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit Tesselation/Post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit Tesselation/Post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,18 +22,18 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: Post m_Shader: {fileID: 4800000, guid: 756bac9090102564582875f4c7e30202, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _NORMALMAP_TANGENT_SPACE + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _ENABLE_FOG_ON_TRANSPARENT _NORMALMAP_TANGENT_SPACE _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 m_CustomRenderQueue: 3000 stringTagMap: - RenderType: TransparentCutout + RenderType: Transparent disabledShaderPasses: - DistortionVectors - MOTIONVECTORS - TransparentDepthPrepass - - TransparentDepthPostpass - TransparentBackface m_SavedProperties: serializedVersion: 3 @@ -133,7 +133,7 @@ Material: - _AlphaCutoffPostpass: 0.25 - _AlphaCutoffPrepass: 0.5 - _AlphaCutoffShadow: 0.5 - - _AlphaDstBlend: 0 + - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 - _AlphaToMask: 0 - _Anisotropy: 0 @@ -167,7 +167,7 @@ Material: - _DistortionVectorScale: 2 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 1 - - _DstBlend: 0 + - _DstBlend: 10 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 0 - _EmissiveIntensity: 1 @@ -213,10 +213,10 @@ Material: - _SpecularOcclusionMode: 1 - _SrcBlend: 1 - _StencilRef: 0 - - _StencilRefDepth: 8 + - _StencilRefDepth: 0 - _StencilRefDistortionVec: 4 - - _StencilRefGBuffer: 10 - - _StencilRefMV: 40 + - _StencilRefGBuffer: 2 + - _StencilRefMV: 32 - _StencilWriteMask: 6 - _StencilWriteMaskDepth: 8 - _StencilWriteMaskDistortionVec: 4 @@ -249,11 +249,11 @@ Material: - _UVEmissive: 0 - _UseEmissiveIntensity: 1 - _UseShadowThreshold: 0 - - _ZTestDepthEqualForOpaque: 3 + - _ZTestDepthEqualForOpaque: 4 - _ZTestGBuffer: 3 - _ZTestModeDistortion: 4 - _ZTestTransparent: 4 - - _ZWrite: 1 + - _ZWrite: 0 m_Colors: - _BaseColor: {r: 0, g: 0, b: 0, a: 0.5019608} - _BaseColorMap_MipInfo: {r: 0, g: 0, b: 0, a: 0} diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit Tesselation/Pre-Post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit Tesselation/Pre-Post.mat index f7cf83d1d58..e7e7dc8cdbd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit Tesselation/Pre-Post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit Tesselation/Pre-Post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,18 +22,17 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: Pre-Post m_Shader: {fileID: 4800000, guid: 756bac9090102564582875f4c7e30202, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _NORMALMAP_TANGENT_SPACE + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _ENABLE_FOG_ON_TRANSPARENT _NORMALMAP_TANGENT_SPACE _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 m_CustomRenderQueue: 3000 stringTagMap: - RenderType: TransparentCutout + RenderType: Transparent disabledShaderPasses: - DistortionVectors - MOTIONVECTORS - - TransparentDepthPrepass - - TransparentDepthPostpass - TransparentBackface m_SavedProperties: serializedVersion: 3 @@ -133,7 +132,7 @@ Material: - _AlphaCutoffPostpass: 0.25 - _AlphaCutoffPrepass: 0.33 - _AlphaCutoffShadow: 0.5 - - _AlphaDstBlend: 0 + - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 - _AlphaToMask: 0 - _Anisotropy: 0 @@ -167,7 +166,7 @@ Material: - _DistortionVectorScale: 2 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 1 - - _DstBlend: 0 + - _DstBlend: 10 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 0 - _EmissiveIntensity: 1 @@ -213,10 +212,10 @@ Material: - _SpecularOcclusionMode: 1 - _SrcBlend: 1 - _StencilRef: 0 - - _StencilRefDepth: 8 + - _StencilRefDepth: 0 - _StencilRefDistortionVec: 4 - - _StencilRefGBuffer: 10 - - _StencilRefMV: 40 + - _StencilRefGBuffer: 2 + - _StencilRefMV: 32 - _StencilWriteMask: 6 - _StencilWriteMaskDepth: 8 - _StencilWriteMaskDistortionVec: 4 @@ -249,11 +248,11 @@ Material: - _UVEmissive: 0 - _UseEmissiveIntensity: 1 - _UseShadowThreshold: 0 - - _ZTestDepthEqualForOpaque: 3 + - _ZTestDepthEqualForOpaque: 4 - _ZTestGBuffer: 3 - _ZTestModeDistortion: 4 - _ZTestTransparent: 4 - - _ZWrite: 1 + - _ZWrite: 0 m_Colors: - _BaseColor: {r: 0, g: 0, b: 0, a: 0.5019608} - _BaseColorMap_MipInfo: {r: 0, g: 0, b: 0, a: 0} diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit Tesselation/Pre.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit Tesselation/Pre.mat index ab3c8cba212..e832351c637 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit Tesselation/Pre.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit Tesselation/Pre.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,17 +22,17 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: Pre m_Shader: {fileID: 4800000, guid: 756bac9090102564582875f4c7e30202, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _NORMALMAP_TANGENT_SPACE + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _ENABLE_FOG_ON_TRANSPARENT _NORMALMAP_TANGENT_SPACE _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 m_CustomRenderQueue: 3000 stringTagMap: - RenderType: TransparentCutout + RenderType: Transparent disabledShaderPasses: - DistortionVectors - MOTIONVECTORS - - TransparentDepthPrepass - TransparentDepthPostpass - TransparentBackface m_SavedProperties: @@ -133,7 +133,7 @@ Material: - _AlphaCutoffPostpass: 0.5 - _AlphaCutoffPrepass: 0.25 - _AlphaCutoffShadow: 0.5 - - _AlphaDstBlend: 0 + - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 - _AlphaToMask: 0 - _Anisotropy: 0 @@ -167,7 +167,7 @@ Material: - _DistortionVectorScale: 2 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 1 - - _DstBlend: 0 + - _DstBlend: 10 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 0 - _EmissiveIntensity: 1 @@ -213,10 +213,10 @@ Material: - _SpecularOcclusionMode: 1 - _SrcBlend: 1 - _StencilRef: 0 - - _StencilRefDepth: 8 + - _StencilRefDepth: 0 - _StencilRefDistortionVec: 4 - - _StencilRefGBuffer: 10 - - _StencilRefMV: 40 + - _StencilRefGBuffer: 2 + - _StencilRefMV: 32 - _StencilWriteMask: 6 - _StencilWriteMaskDepth: 8 - _StencilWriteMaskDistortionVec: 4 @@ -249,11 +249,11 @@ Material: - _UVEmissive: 0 - _UseEmissiveIntensity: 1 - _UseShadowThreshold: 0 - - _ZTestDepthEqualForOpaque: 3 + - _ZTestDepthEqualForOpaque: 4 - _ZTestGBuffer: 3 - _ZTestModeDistortion: 4 - _ZTestTransparent: 4 - - _ZWrite: 1 + - _ZWrite: 0 m_Colors: - _BaseColor: {r: 0, g: 0, b: 0, a: 0.5019608} - _BaseColorMap_MipInfo: {r: 0, g: 0, b: 0, a: 0} diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit Tesselation/Ref.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit Tesselation/Ref.mat index 5d1d2c99e39..b37f8a3ff40 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit Tesselation/Ref.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit Tesselation/Ref.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,12 +22,14 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: Ref m_Shader: {fileID: 4800000, guid: 756bac9090102564582875f4c7e30202, type: 3} - m_ShaderKeywords: _NORMALMAP_TANGENT_SPACE + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _ENABLE_FOG_ON_TRANSPARENT + _NORMALMAP_TANGENT_SPACE _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 m_CustomRenderQueue: 3000 - stringTagMap: {} + stringTagMap: + RenderType: Transparent disabledShaderPasses: - DistortionVectors - MOTIONVECTORS @@ -132,7 +134,7 @@ Material: - _AlphaCutoffPostpass: 0.5 - _AlphaCutoffPrepass: 0.5 - _AlphaCutoffShadow: 0.5 - - _AlphaDstBlend: 0 + - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 - _AlphaToMask: 0 - _Anisotropy: 0 @@ -166,7 +168,7 @@ Material: - _DistortionVectorScale: 2 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 1 - - _DstBlend: 0 + - _DstBlend: 10 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 0 - _EmissiveIntensity: 1 @@ -212,10 +214,10 @@ Material: - _SpecularOcclusionMode: 1 - _SrcBlend: 1 - _StencilRef: 0 - - _StencilRefDepth: 8 + - _StencilRefDepth: 0 - _StencilRefDistortionVec: 4 - - _StencilRefGBuffer: 10 - - _StencilRefMV: 40 + - _StencilRefGBuffer: 2 + - _StencilRefMV: 32 - _StencilWriteMask: 6 - _StencilWriteMaskDepth: 8 - _StencilWriteMaskDistortionVec: 4 @@ -248,11 +250,11 @@ Material: - _UVEmissive: 0 - _UseEmissiveIntensity: 1 - _UseShadowThreshold: 0 - - _ZTestDepthEqualForOpaque: 3 + - _ZTestDepthEqualForOpaque: 4 - _ZTestGBuffer: 4 - _ZTestModeDistortion: 4 - _ZTestTransparent: 4 - - _ZWrite: 1 + - _ZWrite: 0 m_Colors: - _BaseColor: {r: 0, g: 0, b: 0, a: 0.5019608} - _BaseColorMap_MipInfo: {r: 0, g: 0, b: 0, a: 0} diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Opaque.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Opaque.mat index 2116c0c9534..3fb4a954662 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Opaque.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Opaque.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Post.mat index 8d506246033..1d8e08e4f5b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Pre-Post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Pre-Post.mat index e0fc1974311..e67f9129565 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Pre-Post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Pre-Post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Pre.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Pre.mat index 4d5c5e7c578..e20a4e53679 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Pre.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Pre.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Ref.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Ref.mat index 3ab8a8f8d87..90ca0ecadcf 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Ref.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Ref.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Transparent.mat index d13e4c210d4..0fe8452e9f0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Lit/Transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Unlit/Depth Write.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Unlit/Depth Write.mat index c7f3986c8c0..3effcdda69a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Unlit/Depth Write.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Unlit/Depth Write.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,8 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: Depth Write m_Shader: {fileID: 4800000, guid: c4edd00ff2db5b24391a4fcb1762e459, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _NORMALMAP_TANGENT_SPACE _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Unlit/Opaque.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Unlit/Opaque.mat index 8f92a168083..b5c0f68925a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Unlit/Opaque.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Unlit/Opaque.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: Opaque m_Shader: {fileID: 4800000, guid: c4edd00ff2db5b24391a4fcb1762e459, type: 3} - m_ShaderKeywords: _DISABLE_SSR_TRANSPARENT _NORMALMAP_TANGENT_SPACE + m_ShaderKeywords: m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Unlit/Ref.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Unlit/Ref.mat index 25f15381504..3b150cdc124 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Unlit/Ref.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Unlit/Ref.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,8 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: Ref m_Shader: {fileID: 4800000, guid: c4edd00ff2db5b24391a4fcb1762e459, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _NORMALMAP_TANGENT_SPACE _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Unlit/Transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Unlit/Transparent.mat index 9bf531e97ae..0361fc8b260 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Unlit/Transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/HD Unlit/Transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,8 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: Transparent m_Shader: {fileID: 4800000, guid: c4edd00ff2db5b24391a4fcb1762e459, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _NORMALMAP_TANGENT_SPACE _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -198,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Eye/Post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Eye/Post.mat index 7bc00d55aa0..3d4ec2b5d39 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Eye/Post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Eye/Post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Eye/Pre-Post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Eye/Pre-Post.mat index 7e50bf01966..05f0c4bf613 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Eye/Pre-Post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Eye/Pre-Post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Eye/Pre.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Eye/Pre.mat index 353ba0d693f..955a45a5989 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Eye/Pre.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Eye/Pre.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Eye/Ref.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Eye/Ref.mat index 57fee4d93fa..6296f0176d7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Eye/Ref.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Eye/Ref.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Fabric/Post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Fabric/Post.mat index 219903c826f..c5acab7c8fa 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Fabric/Post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Fabric/Post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Post m_Shader: {fileID: -6465566751694194690, guid: f1bb0237b307a7946985aeb353a801ab, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Fabric/Pre-Post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Fabric/Pre-Post.mat index 07ac939df25..95315be6644 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Fabric/Pre-Post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Fabric/Pre-Post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Pre-Post m_Shader: {fileID: -6465566751694194690, guid: e5e5e145006db8f4a8d902f3110ffb65, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Fabric/Pre.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Fabric/Pre.mat index 0729b601e57..2aadeb4066e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Fabric/Pre.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Fabric/Pre.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Pre m_Shader: {fileID: -6465566751694194690, guid: 574f87fa9881d5b4d849fc26fe1cf1eb, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Fabric/Ref.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Fabric/Ref.mat index 5afccaf7229..8cebac79374 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Fabric/Ref.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Fabric/Ref.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Ref m_Shader: {fileID: -6465566751694194690, guid: 5b6e0a1d091aeae4ba94f9a9a20efcb5, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Hair/Post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Hair/Post.mat index e755b126401..66f59efaca1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Hair/Post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Hair/Post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Post m_Shader: {fileID: -6465566751694194690, guid: f842d52a67300b348a316fdaba99aa98, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Hair/Pre-Post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Hair/Pre-Post.mat index 4672f3802bf..24eecb63a8a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Hair/Pre-Post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Hair/Pre-Post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Pre-Post m_Shader: {fileID: -6465566751694194690, guid: 1d4096b288270f74693f84aa311ff55a, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Hair/Pre.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Hair/Pre.mat index 7130d3796fb..9a0e7937a81 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Hair/Pre.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Hair/Pre.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Pre m_Shader: {fileID: -6465566751694194690, guid: b85e835bc6b1c854fbea35f59dbd9e05, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Hair/Ref.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Hair/Ref.mat index a279fdae6ab..171bdf5a5d2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Hair/Ref.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Hair/Ref.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,14 +23,15 @@ Material: m_Name: Ref m_Shader: {fileID: -6465566751694194690, guid: 1d67950b6d09a9045b5fefe8e69308ac, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 stringTagMap: MotionVector: User + RenderType: Transparent disabledShaderPasses: - DistortionVectors - MOTIONVECTORS diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Lit/Post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Lit/Post.mat index 7cfdb4b7ea8..3e69d2d8ec0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Lit/Post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Lit/Post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Post m_Shader: {fileID: -6465566751694194690, guid: 4e900a749130c224eb68faa318353708, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _NORMALMAP_TANGENT_SPACE _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Lit/Pre-Post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Lit/Pre-Post.mat index b7138db7bde..eac8eadf74b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Lit/Pre-Post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Lit/Pre-Post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -24,13 +24,13 @@ Material: m_Shader: {fileID: -6465566751694194690, guid: eda3ce6a47bc9d74c80dfca81b9f9cb9, type: 3} m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING - _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _NORMALMAP_TANGENT_SPACE - _SURFACE_TYPE_TRANSPARENT + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 - stringTagMap: {} + stringTagMap: + RenderType: Transparent disabledShaderPasses: - DistortionVectors - MOTIONVECTORS diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Lit/Pre.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Lit/Pre.mat index 3082eb8b39e..d54a85dad47 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Lit/Pre.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Lit/Pre.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Pre m_Shader: {fileID: -6465566751694194690, guid: b7b99742ae7f4754abdb96002625e98c, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Lit/Ref.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Lit/Ref.mat index 3042c8b628c..9efa08c5127 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Lit/Ref.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Lit/Ref.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Ref m_Shader: {fileID: -6465566751694194690, guid: 270e9ff8c616f3243be480054b2a2a8e, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG StackLit/Post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG StackLit/Post.mat index bc3d15051ba..7e46c9f0abb 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG StackLit/Post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG StackLit/Post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Post m_Shader: {fileID: -6465566751694194690, guid: 0750e597e2fcd9e40ac0a85824028935, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG StackLit/Pre-Post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG StackLit/Pre-Post.mat index bf90ae7c299..91e57730394 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG StackLit/Pre-Post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG StackLit/Pre-Post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Pre-Post m_Shader: {fileID: -6465566751694194690, guid: d7eeaba6ebc1a5646b5ee39e0d8f7daf, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG StackLit/Pre.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG StackLit/Pre.mat index 749d46c1c3e..ab2dddee609 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG StackLit/Pre.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG StackLit/Pre.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Pre m_Shader: {fileID: -6465566751694194690, guid: df999a55ee39263429ad2ec64f778408, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG StackLit/Ref.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG StackLit/Ref.mat index 17148300d97..df1d3123131 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG StackLit/Ref.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG StackLit/Ref.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Ref m_Shader: {fileID: -6465566751694194690, guid: 98670424a5ebd374f82f0403264c282b, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Unlit/Post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Unlit/Post.mat index 2e0989558d5..77b6854d372 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Unlit/Post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Unlit/Post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Unlit/Pre-Post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Unlit/Pre-Post.mat index a51ed6126b1..de73f743c81 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Unlit/Pre-Post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Unlit/Pre-Post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Unlit/Pre.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Unlit/Pre.mat index ddf20fc11bd..e47021830f7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Unlit/Pre.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Unlit/Pre.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Unlit/Ref.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Unlit/Ref.mat index a362eb96a0a..7285040fc9c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Unlit/Ref.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1802_Depth_Pre_Post/SG Unlit/Ref.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/1900_AlphaTestSG_Viewer.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/1900_AlphaTestSG_Viewer.mat index d550fd91a07..892c31f149c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/1900_AlphaTestSG_Viewer.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/1900_AlphaTestSG_Viewer.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -201,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Background.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Background.mat index 73186d76ad2..6f26a43f87e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Background.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Background.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Foreground.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Foreground.mat index e707fa26bdd..7141ed98d1d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Foreground.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Foreground.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG.mat index bcb8d5f207b..fa27da22c8f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG.mat @@ -33,18 +33,24 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 + - _AlphaToMask: 0 - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 + - _RenderQueueType: 1 - _RequireSplitLighting: 0 - _SrcBlend: 1 - _StencilRef: 0 @@ -57,10 +63,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 + - _TransparentDepthPostpassEnable: 0 + - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -83,4 +93,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent.mat index df871d097bc..dd89f1062bf 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent.mat @@ -34,18 +34,24 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 + - _AlphaToMask: 0 - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 + - _RenderQueueType: 4 - _RequireSplitLighting: 0 - _SrcBlend: 1 - _StencilRef: 0 @@ -58,10 +64,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 + - _TransparentDepthPostpassEnable: 0 + - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -84,4 +94,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent_post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent_post.mat index 51f99226807..9c690be3bb8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent_post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent_post.mat @@ -33,18 +33,24 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 + - _AlphaToMask: 0 - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 + - _RenderQueueType: 4 - _RequireSplitLighting: 0 - _SrcBlend: 1 - _StencilRef: 0 @@ -57,10 +63,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 + - _TransparentDepthPostpassEnable: 1 + - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -83,4 +93,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent_pre.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent_pre.mat index be8b2af3e92..143571c2726 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent_pre.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_EyeSG_transparent_pre.mat @@ -34,18 +34,24 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 + - _AlphaToMask: 0 - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 + - _RenderQueueType: 4 - _RequireSplitLighting: 0 - _SrcBlend: 1 - _StencilRef: 0 @@ -58,10 +64,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 + - _TransparentDepthPostpassEnable: 0 + - _TransparentDepthPrepassEnable: 1 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -84,4 +94,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG.mat index 0c30bbbd21c..d22986a293f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -51,10 +52,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent.mat index ff6a9df1126..3ae1ff123f8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_FabricSG_transparent m_Shader: {fileID: -6465566751694194690, guid: 14e225ce5b0e2904e9224a6783c8d64f, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -45,6 +45,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -52,10 +53,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -71,12 +75,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_post.mat index 9163a13528d..948d1a83214 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_post m_Shader: {fileID: -6465566751694194690, guid: 7abecb5eba461bc498a26964b5de407c, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -45,6 +45,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -52,10 +53,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -71,12 +75,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_pre.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_pre.mat index 9e45976bc28..80c2491235f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_pre.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_pre.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_FabricSG_transparent_pre m_Shader: {fileID: -6465566751694194690, guid: 16d6384126a289b44b266e166aa894e7, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -45,6 +45,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -52,10 +53,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -71,12 +75,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG.mat index 18d2308c522..fb43bcdd05a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -51,10 +52,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent.mat index 3cdba54b545..cdc4306a014 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_HairSG_transparent m_Shader: {fileID: -6465566751694194690, guid: 7d78fb79f77101e4eb5a7da06eb8106a, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -45,6 +45,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -52,10 +53,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -71,12 +75,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent_post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent_post.mat index 161ddab9142..30789b59d4a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent_post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent_post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_HairSG_transparent_post m_Shader: {fileID: -6465566751694194690, guid: daedde6dbc8319441b8b627b44a412a1, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -51,10 +52,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 1 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent_pre.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent_pre.mat index ab24c2e87c1..cff31c41be6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent_pre.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_HairSG_transparent_pre.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_HairSG_transparent_pre m_Shader: {fileID: -6465566751694194690, guid: 73aa00dfcd33ad34492fca1a7fefebef, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -51,10 +52,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 1 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG.mat index 8ca5db2c406..764b5f3336f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG.mat @@ -36,6 +36,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -43,10 +44,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -63,12 +67,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -91,4 +97,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent.mat index f28a7ba0c06..b6d12da582f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent.mat @@ -10,7 +10,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_LitSG_transparent m_Shader: {fileID: -6465566751694194690, guid: 2ced2c0022d5e8947899635406a98151, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -35,6 +36,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -42,10 +44,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -62,12 +67,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 1 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -90,4 +97,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent_post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent_post.mat index aed493f07a3..6786b390d20 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent_post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent_post.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_LitSG_transparent_post m_Shader: {fileID: -6465566751694194690, guid: 924090ed89ad3b944b9cc4f7e7384344, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -21,9 +21,8 @@ Material: RenderType: Transparent disabledShaderPasses: - MOTIONVECTORS - - TransparentBackface - - RayTracingPrepass - TransparentDepthPrepass + - RayTracingPrepass m_SavedProperties: serializedVersion: 3 m_TexEnvs: @@ -36,6 +35,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -43,10 +43,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -63,12 +66,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - - _TransparentBackfaceEnable: 0 + - _TransparentBackfaceEnable: 1 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 1 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -91,4 +96,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent_pre.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent_pre.mat index 0f42347fe45..19786af3669 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent_pre.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_LitSG_transparent_pre.mat @@ -10,7 +10,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_LitSG_transparent_pre m_Shader: {fileID: -6465566751694194690, guid: 2ced2c0022d5e8947899635406a98151, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -35,6 +36,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -42,10 +44,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -62,12 +67,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 1 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -90,4 +97,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG.mat index c1b5dd55f54..e243d1ac931 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -56,6 +56,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -63,10 +64,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -82,12 +86,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent.mat index b81fae15e88..3c649587a76 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent m_Shader: {fileID: -6465566751694194690, guid: 92c37b0b9d0eca54abfac6bef66c16ee, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -56,6 +56,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -63,10 +64,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -82,12 +86,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_post.mat index 655a8c52885..3d0b3e18dfc 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_post m_Shader: {fileID: -6465566751694194690, guid: 30af8c00a551d23469cbc39f3c090b25, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -56,6 +56,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -63,10 +64,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -82,12 +86,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_pre.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_pre.mat index 703c838a3db..5b17cc30aac 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_pre.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_pre.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_AlphaTest_HDRP_StackLitSG_transparent_pre m_Shader: {fileID: -6465566751694194690, guid: 56f5bea9d428df442bed72580ca4f404, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -61,6 +61,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -68,10 +69,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -88,12 +92,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG.mat index dd34d725c88..030209df65c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -51,10 +52,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -76,6 +79,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent.mat index 3ad5520bf0b..2abe0166d13 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -51,10 +52,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -76,6 +79,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent_post.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent_post.mat index a5bcff1f689..d07630aead4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent_post.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent_post.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -51,10 +52,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -76,6 +79,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent_pre.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent_pre.mat index 58b8cf13837..051ce9062e1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent_pre.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/1x_Materials/1900_AlphaTest_SG/Materials/Shader Graphs_AlphaTest_HDRP_UnlitSG_transparent_pre.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -51,10 +52,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -76,6 +79,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2003_Light_Parameters/Reflective.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2003_Light_Parameters/Reflective.mat index dda5aa8291c..a541a70fb6d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2003_Light_Parameters/Reflective.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2003_Light_Parameters/Reflective.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -208,6 +208,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2004_AnimatedCookie/Materials/New Render Texture.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2004_AnimatedCookie/Materials/New Render Texture.mat index 098a8fcda71..7b49333076d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2004_AnimatedCookie/Materials/New Render Texture.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2004_AnimatedCookie/Materials/New Render Texture.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -84,6 +84,7 @@ Material: - _EnableFogOnTransparent: 0 - _HdrpVersion: 2 - _IncludeIndirectLighting: 1 + - _OpaqueCullMode: 2 - _PreRefractionPass: 0 - _SrcBlend: 1 - _StencilRef: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2004_AnimatedCookie/NYAN.MAT b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2004_AnimatedCookie/NYAN.MAT index f6b4e8ca368..67fe5dd0831 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2004_AnimatedCookie/NYAN.MAT +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2004_AnimatedCookie/NYAN.MAT @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2009_MultipleSkies/ShowCapture.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2009_MultipleSkies/ShowCapture.mat index c5692514823..8df525d7439 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2009_MultipleSkies/ShowCapture.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2009_MultipleSkies/ShowCapture.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_TextureMask_RedGreenBlue.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_TextureMask_RedGreenBlue.mat index e6677d03615..22cc7a61d16 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_TextureMask_RedGreenBlue.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_TextureMask_RedGreenBlue.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -459,6 +459,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_TextureMask_RedGreenBlue_Transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_TextureMask_RedGreenBlue_Transparent.mat index 556e53b9eb0..26e459e0d6a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_TextureMask_RedGreenBlue_Transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_TextureMask_RedGreenBlue_Transparent.mat @@ -448,6 +448,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -598,4 +599,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_TextureMask_RedMultiplier.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_TextureMask_RedMultiplier.mat index fe6acd448cb..f1400ded431 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_TextureMask_RedMultiplier.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_TextureMask_RedMultiplier.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -459,6 +459,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_TextureMask_RedTexture.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_TextureMask_RedTexture.mat index 0a4a6da1885..b8a7b93c572 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_TextureMask_RedTexture.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_TextureMask_RedTexture.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -459,6 +459,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_VertexColorMask_RedGreenBlue.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_VertexColorMask_RedGreenBlue.mat index 540858435d8..dfe31734bfa 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_VertexColorMask_RedGreenBlue.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_VertexColorMask_RedGreenBlue.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -459,6 +459,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_VertexColorMask_RedMultiplier.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_VertexColorMask_RedMultiplier.mat index 597857cb23b..bdc03ab9621 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_VertexColorMask_RedMultiplier.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_VertexColorMask_RedMultiplier.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -459,6 +459,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_VertexColorMask_RedTexture.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_VertexColorMask_RedTexture.mat index e2203c4c8c3..f2f1803a29b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_VertexColorMask_RedTexture.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Layered_VertexColorMask_RedTexture.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -459,6 +459,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Checker_Planar.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Checker_Planar.mat index 5db882360c2..e9246bac5b6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Checker_Planar.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Checker_Planar.mat @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -288,4 +289,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Checker_Triplanar.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Checker_Triplanar.mat index 304db0f569f..e6891847430 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Checker_Triplanar.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Checker_Triplanar.mat @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -288,4 +289,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Green_CheckerAlphaCutout.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Green_CheckerAlphaCutout.mat index 4bb3813b8f5..53dfa1598bd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Green_CheckerAlphaCutout.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Green_CheckerAlphaCutout.mat @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -287,4 +288,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Green_Transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Green_Transparent.mat index 7f1af2fcb45..9eccb6c0134 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Green_Transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Green_Transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -210,6 +210,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Mirror_Metallic.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Mirror_Metallic.mat index 5af2c92a6ba..5648ef200dc 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Mirror_Metallic.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Mirror_Metallic.mat @@ -195,6 +195,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -286,4 +287,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Mirror_Specular.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Mirror_Specular.mat index 34c8e7f8a5a..e9c22423a43 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Mirror_Specular.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_Mirror_Specular.mat @@ -195,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -286,4 +287,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_RedMultiplier.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_RedMultiplier.mat index 56c04e552ad..ef8f1613d2f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_RedMultiplier.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_RedMultiplier.mat @@ -195,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -286,4 +287,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_RedTexture.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_RedTexture.mat index 8a79a022b8d..9f2d0d7191f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_RedTexture.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_RedTexture.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -208,6 +208,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_White.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_White.mat index 7c07a8e880d..2ec46b8187e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_White.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2101_GI_Metapass/Lit_White.mat @@ -195,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -286,4 +287,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Floor.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Floor.mat index a11ebf433f9..29cd389cca2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Floor.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Floor.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -208,6 +208,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/LayeredLit_BakedEmission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/LayeredLit_BakedEmission.mat index 5eb497f495c..4ac7097f551 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/LayeredLit_BakedEmission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/LayeredLit_BakedEmission.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -459,6 +459,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/LayeredLit_RealtimeEmission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/LayeredLit_RealtimeEmission.mat index b40ab81a58c..3ed07384db5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/LayeredLit_RealtimeEmission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/LayeredLit_RealtimeEmission.mat @@ -446,6 +446,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -596,4 +597,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Lit_BakedEmission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Lit_BakedEmission.mat index 3f51bd17c26..f9381f3e134 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Lit_BakedEmission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Lit_BakedEmission.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -208,6 +208,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Lit_RealtimeEmission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Lit_RealtimeEmission.mat index c2c5c7435d7..703a488e4cf 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Lit_RealtimeEmission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Lit_RealtimeEmission.mat @@ -195,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -286,4 +287,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Lit_White.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Lit_White.mat index f5196e78365..09b33c7c22a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Lit_White.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Lit_White.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Unlit_BakedEmission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Unlit_BakedEmission.mat index 58dddd546e1..462ab4a403c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Unlit_BakedEmission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Unlit_BakedEmission.mat @@ -162,6 +162,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -230,4 +231,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Unlit_RealtimeEmission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Unlit_RealtimeEmission.mat index 53c3ca4fea4..65551ae4171 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Unlit_RealtimeEmission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2102_GI_Emission/Unlit_RealtimeEmission.mat @@ -162,6 +162,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -230,4 +231,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2103_GI_BakeMixed/Emissive_Cyan.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2103_GI_BakeMixed/Emissive_Cyan.mat index 5655fe25d03..209f2138f9a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2103_GI_BakeMixed/Emissive_Cyan.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2103_GI_BakeMixed/Emissive_Cyan.mat @@ -195,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -286,4 +287,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2103_GI_BakeMixed/Emissive_Orange.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2103_GI_BakeMixed/Emissive_Orange.mat index 6a7af33e3c9..47835ca88d6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2103_GI_BakeMixed/Emissive_Orange.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2103_GI_BakeMixed/Emissive_Orange.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -208,6 +208,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2104_GI_Instancing/Ground static material.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2104_GI_Instancing/Ground static material.mat index 2031865b045..b33f0e97482 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2104_GI_Instancing/Ground static material.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2104_GI_Instancing/Ground static material.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2104_GI_Instancing/Sphere instance material.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2104_GI_Instancing/Sphere instance material.mat index 78582031563..edbcbcdf945 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2104_GI_Instancing/Sphere instance material.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2104_GI_Instancing/Sphere instance material.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Dark.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Dark.mat index c12496ae255..5959f28e394 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Dark.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Dark.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Layered.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Layered.mat index b09b9d00a62..4e2810ce928 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Layered.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Layered.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Lit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Lit.mat index 87583fd2ba5..9fe8b7298fb 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Lit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Lit.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissiveFabric.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissiveFabric.mat index f0f2893941f..6f98e8ba42a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissiveFabric.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissiveFabric.mat @@ -26,6 +26,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -34,10 +35,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -53,12 +57,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -81,4 +87,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissiveLit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissiveLit.mat index af3b71f3865..517d47b93cb 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissiveLit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissiveLit.mat @@ -27,6 +27,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -35,10 +36,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -83,4 +89,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissivePBR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissivePBR.mat index 172343e1e8d..63c02bc7ac0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissivePBR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissivePBR.mat @@ -10,7 +10,7 @@ Material: m_Name: Shader Graphs_EmissivePBR m_Shader: {fileID: -6465566751694194690, guid: 6250141d69eb643d5b1af9cd31ae1419, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 2 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -35,10 +36,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -83,4 +89,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissiveStackLit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissiveStackLit.mat index 8a3ec3c7009..28acf11b0ce 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissiveStackLit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissiveStackLit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -39,6 +39,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -47,10 +48,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -66,12 +70,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissiveUnlit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissiveUnlit.mat index ed8c2ffedb5..01c4e99c80e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissiveUnlit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2106_GI_EmissionSG/Shader Graphs_EmissiveUnlit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -39,6 +39,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -47,10 +48,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -72,6 +75,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2204_ReflectionProbes_Lights/Lit_UV.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2204_ReflectionProbes_Lights/Lit_UV.mat index 6961d3ba236..bba4dca805b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2204_ReflectionProbes_Lights/Lit_UV.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2204_ReflectionProbes_Lights/Lit_UV.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/CUBE_T.MAT b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/CUBE_T.MAT index c17ec06e3bc..740da14b4f0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/CUBE_T.MAT +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/CUBE_T.MAT @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Cube.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Cube.mat index ff99783d0ee..60af79d55cd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Cube.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Cube.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Dark_Metallic.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Dark_Metallic.mat index d319d54d989..ca497e57b82 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Dark_Metallic.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Dark_Metallic.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Dark_MetallicAndSmooth.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Dark_MetallicAndSmooth.mat index 89006ee1549..fe37fe25283 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Dark_MetallicAndSmooth.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Dark_MetallicAndSmooth.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Dark_Smooth.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Dark_Smooth.mat index c11527522e1..ebd787fb53f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Dark_Smooth.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Dark_Smooth.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Floor.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Floor.mat index 95fd2dd5668..d47f2f1ac8f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Floor.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Floor.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Wall.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Wall.mat index fcf443237b8..1eff897348a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Wall.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2205_LightLoopCullWOblique/Wall.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/DoubleSidedFlipMode.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/DoubleSidedFlipMode.mat index 55ceb489fe5..ec41f80b881 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/DoubleSidedFlipMode.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/DoubleSidedFlipMode.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/DoubleSidedMirrorMode.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/DoubleSidedMirrorMode.mat index 8e315c22361..33eb057d941 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/DoubleSidedMirrorMode.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/DoubleSidedMirrorMode.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/DoubleSidedNoneMode.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/DoubleSidedNoneMode.mat index f270a2f86a6..0cedd754394 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/DoubleSidedNoneMode.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/DoubleSidedNoneMode.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/Mirror.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/Mirror.mat index fc07b93507e..b6f79c77226 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/Mirror.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/Mirror.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/White.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/White.mat index a6081b9a2f5..49a6721ac84 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/White.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2206_ReflectionCulling/Material/White.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2210_ReflectionProbes_CaptureAtVolumeAnchor/CubeIn.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2210_ReflectionProbes_CaptureAtVolumeAnchor/CubeIn.mat index 156d88bb5de..eae6818c63f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2210_ReflectionProbes_CaptureAtVolumeAnchor/CubeIn.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2210_ReflectionProbes_CaptureAtVolumeAnchor/CubeIn.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2210_ReflectionProbes_CaptureAtVolumeAnchor/CubeOut.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2210_ReflectionProbes_CaptureAtVolumeAnchor/CubeOut.mat index 5b05b0a9808..4bed172f258 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2210_ReflectionProbes_CaptureAtVolumeAnchor/CubeOut.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2210_ReflectionProbes_CaptureAtVolumeAnchor/CubeOut.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2210_ReflectionProbes_CaptureAtVolumeAnchor/PlanarIn.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2210_ReflectionProbes_CaptureAtVolumeAnchor/PlanarIn.mat index aeb1676c28a..65f9c65838c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2210_ReflectionProbes_CaptureAtVolumeAnchor/PlanarIn.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2210_ReflectionProbes_CaptureAtVolumeAnchor/PlanarIn.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2210_ReflectionProbes_CaptureAtVolumeAnchor/PlanarOut.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2210_ReflectionProbes_CaptureAtVolumeAnchor/PlanarOut.mat index 33321524993..bc87b90bbf7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2210_ReflectionProbes_CaptureAtVolumeAnchor/PlanarOut.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2210_ReflectionProbes_CaptureAtVolumeAnchor/PlanarOut.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2211_Probes_Specular/MetalBlue.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2211_Probes_Specular/MetalBlue.mat index 5c71449a5b8..93a3967a07d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2211_Probes_Specular/MetalBlue.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2211_Probes_Specular/MetalBlue.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0.982 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2211_Probes_Specular/MetalGreen.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2211_Probes_Specular/MetalGreen.mat index e3bca589bea..770c8dc4f1e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2211_Probes_Specular/MetalGreen.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2211_Probes_Specular/MetalGreen.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0.982 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2211_Probes_Specular/MetalRed.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2211_Probes_Specular/MetalRed.mat index 4ff711f49fc..d74b1afb0ad 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2211_Probes_Specular/MetalRed.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2211_Probes_Specular/MetalRed.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0.982 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2301_Shadow_Mask/TestCircle.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2301_Shadow_Mask/TestCircle.mat index a59f9dbbb30..0fc3063ef18 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2301_Shadow_Mask/TestCircle.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2301_Shadow_Mask/TestCircle.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -186,6 +186,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2302_Shadow_Contact/Transmission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2302_Shadow_Contact/Transmission.mat index 847d3b8b314..00672082f16 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2302_Shadow_Contact/Transmission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2302_Shadow_Contact/Transmission.mat @@ -191,6 +191,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -278,4 +279,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2303_Shadow_Mask_Directional_OcclusionProbes/Unlit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2303_Shadow_Mask_Directional_OcclusionProbes/Unlit.mat index 86b19656d8a..a94ffb90a32 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2303_Shadow_Mask_Directional_OcclusionProbes/Unlit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2303_Shadow_Mask_Directional_OcclusionProbes/Unlit.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2307_Shadow_VeryHigh/ShadowTestMaterial.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2307_Shadow_VeryHigh/ShadowTestMaterial.mat index a99d40bbf05..8235ab6ec2f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2307_Shadow_VeryHigh/ShadowTestMaterial.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2307_Shadow_VeryHigh/ShadowTestMaterial.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2308_Microshadows/MicroShadowMaterial.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2308_Microshadows/MicroShadowMaterial.mat index df9321a76fe..3195b854bed 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2308_Microshadows/MicroShadowMaterial.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2308_Microshadows/MicroShadowMaterial.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2316_ShadowTint/M_DiffuseMaterial.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2316_ShadowTint/M_DiffuseMaterial.mat index 25e2a102db3..5024afe9b0d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2316_ShadowTint/M_DiffuseMaterial.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2316_ShadowTint/M_DiffuseMaterial.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_SLSmoothness_0.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_SLSmoothness_0.mat index 34677af18be..6eebec2fed1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_SLSmoothness_0.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_SLSmoothness_0.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_SLSmoothness_1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_SLSmoothness_1.mat index 8b7596bf29c..5aa763056cd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_SLSmoothness_1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_SLSmoothness_1.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_SLSmoothness_2.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_SLSmoothness_2.mat index 6782a9397fa..39d290758d5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_SLSmoothness_2.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_SLSmoothness_2.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_0.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_0.mat index f093c5fc854..028de14b464 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_0.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_0.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_1.mat index 1503516b61b..3c66cb38ae4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_1.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_2.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_2.mat index d052429c819..7634ce2178b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_2.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_2.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_3.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_3.mat index 094814f7ab9..994dc5a1e65 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_3.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_3.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_4.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_4.mat index 3905d6b366e..aeef69c0753 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_4.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2403_Area_TexturedRectLights/M_Smoothness_4.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2501_LightLayers/2505_LightLayers_Viewer.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2501_LightLayers/2505_LightLayers_Viewer.mat index 8f0c8f9a88e..7777939e29d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2501_LightLayers/2505_LightLayers_Viewer.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2501_LightLayers/2505_LightLayers_Viewer.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -201,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2501_LightLayers/Default_GPUInstancingDisabled.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2501_LightLayers/Default_GPUInstancingDisabled.mat index c323f95c614..d0746c469ca 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2501_LightLayers/Default_GPUInstancingDisabled.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2501_LightLayers/Default_GPUInstancingDisabled.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -262,6 +262,7 @@ Material: - _NormalMapSpace: 0 - _NormalScale: 1 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2501_LightLayers/Default_GPUInstancingEnabled.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2501_LightLayers/Default_GPUInstancingEnabled.mat index 8842166a847..00a5e47e50a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2501_LightLayers/Default_GPUInstancingEnabled.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2501_LightLayers/Default_GPUInstancingEnabled.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -262,6 +262,7 @@ Material: - _NormalMapSpace: 0 - _NormalScale: 1 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2502_LightLayers Bitmask/CastShadowTransparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2502_LightLayers Bitmask/CastShadowTransparent.mat index ac311b52f12..1b00884ab36 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2502_LightLayers Bitmask/CastShadowTransparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2502_LightLayers Bitmask/CastShadowTransparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Mirror.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Mirror.mat index 82b5b85df1a..515bba731f7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Mirror.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Mirror.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.5_SG.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.5_SG.mat index 1ba21374d19..e1c030b97f4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.5_SG.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.5_SG.mat @@ -115,6 +115,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -188,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.5_SG_NoSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.5_SG_NoSSR.mat index a691d206d15..c139730b388 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.5_SG_NoSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.5_SG_NoSSR.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -201,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.8_SG.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.8_SG.mat index e5324615128..20b6ad9c904 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.8_SG.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.8_SG.mat @@ -115,6 +115,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -188,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.8_SG_NoSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.8_SG_NoSSR.mat index 2f824a0e25e..937a7e35182 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.8_SG_NoSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.8_SG_NoSSR.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -201,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.mat index f37312b6c8c..80dc9f7fb8c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0CC.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0CC.mat index 373c48ebd40..b70feeb472f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0CC.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0CC.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0CC_NoSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0CC_NoSSR.mat index 98dd2bff7c4..d2658c5ae07 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0CC_NoSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0CC_NoSSR.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -201,6 +201,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0_NoSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0_NoSSR.mat index 6a9e3453480..50c94565692 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0_NoSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough0_NoSSR.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough1CC.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough1CC.mat index 2349f906e8a..5693a61a16c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough1CC.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough1CC.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough1CC_NoSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough1CC_NoSSR.mat index 5eb4ab2b4f9..a8185530dd0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough1CC_NoSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough1CC_NoSSR.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -201,6 +201,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough1_SG.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough1_SG.mat index e176f659728..3a313d0c3a5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough1_SG.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough1_SG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -201,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough1_SG_NoSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough1_SG_NoSSR.mat index bbada93ec74..f5c03963d7d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough1_SG_NoSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough1_SG_NoSSR.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -201,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough2.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough2.mat index 5639e280fd4..38fc168c16b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough2.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough2.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough2CC.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough2CC.mat index 3b0adb3400b..cf3af240019 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough2CC.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough2CC.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough2CC_NoSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough2CC_NoSSR.mat index 62ed4f4d067..f68d03045f8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough2CC_NoSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough2CC_NoSSR.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -201,6 +201,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough_0.5.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough_0.5.mat index 3db3233d282..3d19415372e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough_0.5.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough_0.5.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough_0.5_NoSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough_0.5_NoSSR.mat index e828d46a3a4..904a0a96f2f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough_0.5_NoSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough_0.5_NoSSR.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough_0.8.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough_0.8.mat index 6dabee7d884..7116b912577 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough_0.8.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough_0.8.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough_0.8_NoSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough_0.8_NoSSR.mat index 55e189a9820..4355b3047fb 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough_0.8_NoSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2551_SSR/M_Rough_0.8_NoSSR.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_OpaqueMirrorNoSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_OpaqueMirrorNoSSR.mat index 06e6fda5570..6fbcc6294ee 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_OpaqueMirrorNoSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_OpaqueMirrorNoSSR.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_OpaqueMirrorSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_OpaqueMirrorSSR.mat index 7808889c2a6..1ca01fbaa75 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_OpaqueMirrorSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_OpaqueMirrorSSR.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_SGOpaqueMirrorNoSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_SGOpaqueMirrorNoSSR.mat index 09ce725ba24..9edc2196125 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_SGOpaqueMirrorNoSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_SGOpaqueMirrorNoSSR.mat @@ -161,7 +161,7 @@ Material: - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 - _EmissiveIntensityUnit: 0 - - _EnableBlendModePreserveSpecularLighting: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableSpecularOcclusion: 0 @@ -185,6 +185,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -268,4 +269,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_SGOpaqueMirrorSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_SGOpaqueMirrorSSR.mat index 799e3049e27..fdca0481825 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_SGOpaqueMirrorSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_SGOpaqueMirrorSSR.mat @@ -161,7 +161,7 @@ Material: - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 - _EmissiveIntensityUnit: 0 - - _EnableBlendModePreserveSpecularLighting: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableSpecularOcclusion: 0 @@ -185,6 +185,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -268,4 +269,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_SGTransparentMirrorNoSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_SGTransparentMirrorNoSSR.mat index caad8e7771d..429748e207d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_SGTransparentMirrorNoSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_SGTransparentMirrorNoSSR.mat @@ -10,8 +10,8 @@ Material: m_Name: M_SGTransparentMirrorNoSSR m_Shader: {fileID: -6465566751694194690, guid: b990f945c5129f84bb8340a43e69b487, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -163,7 +163,7 @@ Material: - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 - _EmissiveIntensityUnit: 0 - - _EnableBlendModePreserveSpecularLighting: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableSpecularOcclusion: 0 @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -270,4 +271,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_SGTransparentMirrorSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_SGTransparentMirrorSSR.mat index 21047207d51..5154674f031 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_SGTransparentMirrorSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_SGTransparentMirrorSSR.mat @@ -10,7 +10,8 @@ Material: m_Name: M_SGTransparentMirrorSSR m_Shader: {fileID: -6465566751694194690, guid: 1baa6ed8a8aeef24bb3a5abb93fcb2d5, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _ENABLE_FOG_ON_TRANSPARENT + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -162,7 +163,7 @@ Material: - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 - _EmissiveIntensityUnit: 0 - - _EnableBlendModePreserveSpecularLighting: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableSpecularOcclusion: 0 @@ -186,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -269,4 +271,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_TransparentMirrorNoSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_TransparentMirrorNoSSR.mat index 2a13c665bd5..fa8d1d14419 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_TransparentMirrorNoSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_TransparentMirrorNoSSR.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_TransparentMirrorSSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_TransparentMirrorSSR.mat index 71d74147f4d..d65798773f9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_TransparentMirrorSSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/LitMaterials/M_TransparentMirrorSSR.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseBlue.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseBlue.mat index e1f4cf839fc..de2fcdffa52 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseBlue.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseBlue.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseGray.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseGray.mat index 3e06708a9fc..68ee32c04d8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseGray.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseGray.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseGreen.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseGreen.mat index f7d3d08d08b..6de467cfdb7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseGreen.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseGreen.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseOrange.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseOrange.mat index 2ecc0cf43f5..fb65c1594f4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseOrange.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseOrange.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseRed.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseRed.mat index 7bd7eb903aa..26a7fa4d3fc 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseRed.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/2x_Lighting/2701_TransparentSSR/M_DiffuseRed.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3001_DebugView/SG_Lit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3001_DebugView/SG_Lit.mat index 5a79c494255..f1ff563672f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3001_DebugView/SG_Lit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3001_DebugView/SG_Lit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -40,6 +40,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -47,10 +48,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 1 @@ -67,12 +71,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Diffuse.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Diffuse.mat index 8cd793bf4ba..29fec766521 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Diffuse.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Diffuse.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_DirectDiffuse.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_DirectDiffuse.mat index 4baab5a8654..d88b634ebf0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_DirectDiffuse.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_DirectDiffuse.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_DirectSpecular.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_DirectSpecular.mat index ac37199eee8..56e4a1cde9b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_DirectSpecular.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_DirectSpecular.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Emissive.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Emissive.mat index 2aad7368bbf..cc852411f03 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Emissive.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Emissive.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_IndirectDiffuse.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_IndirectDiffuse.mat index 77645e30402..d24b826f05f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_IndirectDiffuse.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_IndirectDiffuse.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Input.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Input.mat index d11c6bdae9f..6e382d0e9c4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Input.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Input.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Reflection.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Reflection.mat index de99e577065..72f4685d778 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Reflection.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Reflection.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Refraction.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Refraction.mat index 8083ab3f1f0..0758a4e63c4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Refraction.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Refraction.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Specular.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Specular.mat index 0cb5d19d118..0a63c4f448d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Specular.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/LightingModeUnlit_Specular.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Chrome.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Chrome.mat index ecb9b91130c..2880b16be9c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Chrome.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Chrome.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -194,6 +194,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Emissive 1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Emissive 1.mat index 825387cb148..74f342444e5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Emissive 1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Emissive 1.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 0.524 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Emissive.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Emissive.mat index 8fbb6764151..e0839109f5c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Emissive.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Emissive.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Fabric.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Fabric.mat index f6b3a0309d8..f607d9abd44 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Fabric.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Fabric.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Ground.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Ground.mat index 41b5944fd62..cfd9a666987 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Ground.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Ground.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -194,6 +194,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Lambert 1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Lambert 1.mat index a285bc07f33..cd16bce4ed2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Lambert 1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Lambert 1.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Lambert.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Lambert.mat index 6c764f44fc8..a00b6ed63be 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Lambert.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Lambert.mat @@ -181,6 +181,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -262,4 +263,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/LitSG.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/LitSG.mat index 35d886879d1..9317d78d4cb 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/LitSG.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/LitSG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Refraction.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Refraction.mat index 8844bf9102e..fd4669b9b11 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Refraction.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/Refraction.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/SSS.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/SSS.mat index 4faeb205b3c..0d2651d5091 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/SSS.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/SSS.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -195,6 +195,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 4.19 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/transparent Add.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/transparent Add.mat index 3469bb263d1..ad0428732b9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/transparent Add.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/transparent Add.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/transparent.mat index 1ad90f7de07..dcf05fa1351 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/3x_DebugView/3003_LightingMode/Material/transparent.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -264,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/DecalEmission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/DecalEmission.mat index dd92968c775..f267b6702bb 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/DecalEmission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/DecalEmission.mat @@ -278,4 +278,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/DecalEmissionGraph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/DecalEmissionGraph.mat index 1e4c6a587d9..27dd3edc6d0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/DecalEmissionGraph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/DecalEmissionGraph.mat @@ -93,6 +93,10 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_b4296a765ce04552881fb9bf30b2070c_Texture_1: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_d2d9ef5ade31423095a23731f8ea8182_Texture_1: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} @@ -292,4 +296,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/DecalExposureNodeGraph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/DecalExposureNodeGraph.mat index e61c05bd880..7a664609368 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/DecalExposureNodeGraph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/DecalExposureNodeGraph.mat @@ -28,6 +28,10 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_5c19deb6bf1443539b35b711e064efc8_Texture_1: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_9ae388b1562d4fc49588b3359fd76e7a_Texture_1: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} @@ -49,4 +53,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/DecalReceiver.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/DecalReceiver.mat index baec44c27b2..49e0cdab4f4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/DecalReceiver.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/DecalReceiver.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/FabricEmissionGraph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/FabricEmissionGraph.mat index 01e11b1fcac..54160c614fb 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/FabricEmissionGraph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/FabricEmissionGraph.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -201,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -244,6 +246,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentWritingVelocity: 0 - _TransparentZWrite: 0 - _UVBase: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LayeredLitEmission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LayeredLitEmission.mat index c3dfb7f0eea..2ca05cb2385 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LayeredLitEmission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LayeredLitEmission.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -465,6 +465,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LayeredLitEmissionWeight.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LayeredLitEmissionWeight.mat index 1bde8bc8a8f..dd19ef132b5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LayeredLitEmissionWeight.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LayeredLitEmissionWeight.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -465,6 +465,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmission.mat index 3025b7e4090..b8a4dc06f87 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmission.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionExposureNode_CurrentGraph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionExposureNode_CurrentGraph.mat index 62a32c59f4f..7fadc1cf4af 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionExposureNode_CurrentGraph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionExposureNode_CurrentGraph.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -244,6 +246,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentWritingVelocity: 0 - _TransparentZWrite: 0 - _UVBase: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionExposureNode_InverseCurrentGraph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionExposureNode_InverseCurrentGraph.mat index bcd9d4225b7..a2d8c3193c2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionExposureNode_InverseCurrentGraph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionExposureNode_InverseCurrentGraph.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -244,6 +246,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentWritingVelocity: 0 - _TransparentZWrite: 0 - _UVBase: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionExposureNode_InversePreviousGraph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionExposureNode_InversePreviousGraph.mat index faf1646b4e7..55c85a7bbfc 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionExposureNode_InversePreviousGraph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionExposureNode_InversePreviousGraph.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -231,6 +233,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentWritingVelocity: 0 - _TransparentZWrite: 0 - _UVBase: 0 @@ -273,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionExposureNode_PreviousGraph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionExposureNode_PreviousGraph.mat index 5fec78c7e15..d65331696bf 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionExposureNode_PreviousGraph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionExposureNode_PreviousGraph.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -231,6 +233,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentWritingVelocity: 0 - _TransparentZWrite: 0 - _UVBase: 0 @@ -273,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionGraph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionGraph.mat index ad611f6969d..9a1ac96e3a2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionGraph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionGraph.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -201,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -245,6 +247,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentWritingVelocity: 0 - _TransparentZWrite: 0 - _UVBase: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionLess.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionLess.mat index 343f251b108..970570845b6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionLess.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionLess.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionWeight.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionWeight.mat index 5d792e2f4db..81932429e9f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionWeight.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/LitEmissionWeight.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/PBREmissionGraph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/PBREmissionGraph.mat index 4a72b8ad80f..35c2f54adc6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/PBREmissionGraph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/PBREmissionGraph.mat @@ -10,7 +10,7 @@ Material: m_Name: PBREmissionGraph m_Shader: {fileID: -6465566751694194690, guid: 6166e4729d05f8b43a8f293a78a3dde0, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -116,6 +116,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -162,7 +163,7 @@ Material: - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 - _EmissiveIntensityUnit: 0 - - _EnableBlendModePreserveSpecularLighting: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableMotionVectorForVertexAnimation: 0 @@ -189,6 +190,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -221,7 +223,7 @@ Material: - _StencilWriteMaskMV: 40 - _Stiffness: 1 - _SubsurfaceMask: 1 - - _SupportDecals: 1 + - _SupportDecals: 0 - _SurfaceType: 0 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 @@ -233,6 +235,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentWritingVelocity: 0 - _TransparentZWrite: 0 - _UVBase: 0 @@ -275,4 +278,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/StackLitEmissionGraph.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/StackLitEmissionGraph.mat index 8db23aebf7c..b562960c1e7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/StackLitEmissionGraph.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/StackLitEmissionGraph.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -243,6 +245,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentWritingVelocity: 0 - _TransparentZWrite: 0 - _UVBase: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/UnLitEmission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/UnLitEmission.mat index bdf34ececce..637545c17e9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/UnLitEmission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/UnLitEmission.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/UnLitEmissionWeight.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/UnLitEmissionWeight.mat index 8883322aa31..6b5a307d57a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/UnLitEmissionWeight.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4001_Exposure/UnLitEmissionWeight.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4011_MotionBlur/M_Blue.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4011_MotionBlur/M_Blue.mat index 64129698df5..4b28eaffcb5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4011_MotionBlur/M_Blue.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4011_MotionBlur/M_Blue.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4011_MotionBlur/M_Green.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4011_MotionBlur/M_Green.mat index a34b1ee2ac1..f88abe795ff 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4011_MotionBlur/M_Green.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4011_MotionBlur/M_Green.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4011_MotionBlur/M_Red.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4011_MotionBlur/M_Red.mat index f5c1336e1b9..89f04951c15 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4011_MotionBlur/M_Red.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4011_MotionBlur/M_Red.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4013_TransparentMotionVector/TransparentWithMotionVector.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4013_TransparentMotionVector/TransparentWithMotionVector.mat index 70932e8e21a..890a070ff02 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4013_TransparentMotionVector/TransparentWithMotionVector.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4013_TransparentMotionVector/TransparentWithMotionVector.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -203,6 +203,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4022_PaniniProjection/TilingGrid.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4022_PaniniProjection/TilingGrid.mat index 4505177b6a5..64b93b644e2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4022_PaniniProjection/TilingGrid.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4022_PaniniProjection/TilingGrid.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4023_VignetteClassic/TilingGrid.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4023_VignetteClassic/TilingGrid.mat index 8bda373422a..69d974a75d9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4023_VignetteClassic/TilingGrid.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4023_VignetteClassic/TilingGrid.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4052_TAA/DisplayRTT_8bit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4052_TAA/DisplayRTT_8bit.mat index 9fb7c1810a2..1a1c4fb5084 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4052_TAA/DisplayRTT_8bit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4052_TAA/DisplayRTT_8bit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4053_TAA-FP16Alpha/DisplayRTT.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4053_TAA-FP16Alpha/DisplayRTT.mat index 2a993f639eb..62c541c1ad9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4053_TAA-FP16Alpha/DisplayRTT.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4053_TAA-FP16Alpha/DisplayRTT.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4060_CustomPostProcess/Transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4060_CustomPostProcess/Transparent.mat index 1d491e43c5b..0315807a184 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4060_CustomPostProcess/Transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4060_CustomPostProcess/Transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4070_PhysicalCamera-iso-aperture-shutter/4070_Gradient.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4070_PhysicalCamera-iso-aperture-shutter/4070_Gradient.mat index d05a6979dc3..c7339763bd2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4070_PhysicalCamera-iso-aperture-shutter/4070_Gradient.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4070_PhysicalCamera-iso-aperture-shutter/4070_Gradient.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4070_PhysicalCamera-iso-aperture-shutter/4070_Viewer.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4070_PhysicalCamera-iso-aperture-shutter/4070_Viewer.mat index 0b361120043..895a8e80237 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4070_PhysicalCamera-iso-aperture-shutter/4070_Viewer.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4070_PhysicalCamera-iso-aperture-shutter/4070_Viewer.mat @@ -185,6 +185,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4071_PhysicalCamera-ApertureShape/4071_Gradient.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4071_PhysicalCamera-ApertureShape/4071_Gradient.mat index 99e40e69ccb..253b2b5697e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4071_PhysicalCamera-ApertureShape/4071_Gradient.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4071_PhysicalCamera-ApertureShape/4071_Gradient.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4071_PhysicalCamera-ApertureShape/4071_Viewer.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4071_PhysicalCamera-ApertureShape/4071_Viewer.mat index 97598897bba..5e857e8b2bb 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4071_PhysicalCamera-ApertureShape/4071_Viewer.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4071_PhysicalCamera-ApertureShape/4071_Viewer.mat @@ -185,6 +185,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4080_DepthOfField/SphereMaterial.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4080_DepthOfField/SphereMaterial.mat index a55bc907cd0..9512840d600 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4080_DepthOfField/SphereMaterial.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4080_DepthOfField/SphereMaterial.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -195,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4081_DepthOfField-FP16Alpha/DisplayRTTForDoF.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4081_DepthOfField-FP16Alpha/DisplayRTTForDoF.mat index 82288a55578..d41b0ea11af 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4081_DepthOfField-FP16Alpha/DisplayRTTForDoF.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/4x_PostProcessing/4081_DepthOfField-FP16Alpha/DisplayRTTForDoF.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5001_Fog_FogFallback/MultiCamDisplay.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5001_Fog_FogFallback/MultiCamDisplay.mat index 75f32052005..ebe0a6d968c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5001_Fog_FogFallback/MultiCamDisplay.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5001_Fog_FogFallback/MultiCamDisplay.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5002_Fog_DensityVolumes/Floor.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5002_Fog_DensityVolumes/Floor.mat index a5d39414f16..94c20340229 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5002_Fog_DensityVolumes/Floor.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5002_Fog_DensityVolumes/Floor.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog1.mat index 8f61e4dd131..fd2150b8fed 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog1.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog2.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog2.mat index 1f2553733f1..dbaefbb32b1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog2.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog2.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog3.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog3.mat index 106a0530774..44253ad6b62 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog3.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog3.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog4.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog4.mat index 8de14f73f8c..a38c32425b2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog4.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog4.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog5.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog5.mat index 33542054366..9bb527c1a64 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog5.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog5.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog6.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog6.mat index df4ed604dc2..94452c19ab6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog6.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/5x_SkyAndFog/5007_ExponentialFog/5007_NoFog6.mat @@ -185,6 +185,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_AlphaCutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_AlphaCutoff.mat index 54d68673d32..cf2ef8591ee 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_AlphaCutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_AlphaCutoff.mat @@ -190,6 +190,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -277,4 +278,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_AmbientOcclusion.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_AmbientOcclusion.mat index 9d573217e2e..4f95cc4dc38 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_AmbientOcclusion.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_AmbientOcclusion.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0.35 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_AnisoTangent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_AnisoTangent.mat index 328a5642b9e..3a2819b939b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_AnisoTangent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_AnisoTangent.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_DS_Enabled.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_DS_Enabled.mat index d391e0a3ea1..417fd326dd5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_DS_Enabled.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_DS_Enabled.mat @@ -276,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_DS_Flipped.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_DS_Flipped.mat index fb05aea90d4..0848bf25c36 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_DS_Flipped.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_DS_Flipped.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -203,6 +203,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_DS_MirroredSpec.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_DS_MirroredSpec.mat index 1d219828e54..9b86359c6cc 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_DS_MirroredSpec.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_DS_MirroredSpec.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_DS_None.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_DS_None.mat index 60ded61c71e..43273c8a339 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_DS_None.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_DS_None.mat @@ -188,6 +188,7 @@ Material: - _Metallic: 0.9 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_GSAA.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_GSAA.mat index 5d2b53819a1..42c98ef965c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_GSAA.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_GSAA.mat @@ -276,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_IrideBentNormal.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_IrideBentNormal.mat index ff33c4cf20e..b791e306106 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_IrideBentNormal.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_IrideBentNormal.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0.35 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -276,4 +277,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_IrideMask.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_IrideMask.mat index 357a9eedf4f..44dd2f83042 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_IrideMask.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_IrideMask.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_IrideSpecOcclusionBentNormal.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_IrideSpecOcclusionBentNormal.mat index a3f10d97b2b..9ff350a93dd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_IrideSpecOcclusionBentNormal.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_IrideSpecOcclusionBentNormal.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0.35 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_ShinyStone.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_ShinyStone.mat index 42084813c2a..4de92681224 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_ShinyStone.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_ShinyStone.mat @@ -190,6 +190,7 @@ Material: - _Metallic: 0.291 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -276,4 +277,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_Standard.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_Standard.mat index 5f3268fa218..171b034344f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_Standard.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_Standard.mat @@ -188,6 +188,7 @@ Material: - _Metallic: 0.1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_SubSurface.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_SubSurface.mat index de7cfbded2c..077aed854e2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_SubSurface.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_SubSurface.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_TransNormal.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_TransNormal.mat index 48bb9775561..894d9ad93d6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_TransNormal.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/BI_TransNormal.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/FrontCulling.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/FrontCulling.mat index 2a40bd3d65c..8b8efdc1ce2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/FrontCulling.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/FrontCulling.mat @@ -268,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/OP_BentNormalFrontCull.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/OP_BentNormalFrontCull.mat index 08affffaf9b..898c27343e5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/OP_BentNormalFrontCull.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/OP_BentNormalFrontCull.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -51,6 +51,7 @@ Material: - Vector1_5DAD63CC: 0.95 - Vector1_9F784B29: 0.35 - Vector1_F50A7CEC: 0.95 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -58,9 +59,11 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _OpaqueCullMode: 1 - _RayTracing: 0 @@ -79,12 +82,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 0 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_AO.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_AO.mat index f3cc9acc5ca..3dd4b790729 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_AO.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_AO.mat @@ -38,6 +38,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -47,11 +48,14 @@ Material: - _CoatMask: 0.95 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _Metallic: 0.35 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -96,4 +102,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_AlphaCutoff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_AlphaCutoff.mat index d0189611c44..56a3288de00 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_AlphaCutoff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_AlphaCutoff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_AlphaCutoff m_Shader: {fileID: 4800000, guid: 5ba681a510a1bbe499d0e6bcab323a20, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -53,6 +53,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_3C23F346: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaClipTexture: 0.5 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -62,11 +63,14 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DiffusionProfileHash: 2.6072488 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -83,12 +87,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_AnisoTangent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_AnisoTangent.mat index 33af65bc3fd..1aa5cf19009 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_AnisoTangent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_AnisoTangent.mat @@ -9,7 +9,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_AnisoTangent m_Shader: {fileID: 4800000, guid: 6b358079d6ba40242846daa5aeb01af4, type: 3} - m_ShaderKeywords: _DISABLE_SSR _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -38,6 +38,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -47,10 +48,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -96,4 +102,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_DS_Enabled.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_DS_Enabled.mat index 095df110d9a..1874d383629 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_DS_Enabled.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_DS_Enabled.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_DS_Enabled m_Shader: {fileID: 4800000, guid: 190a476972d53074c9a2e3257e1907c1, type: 3} - m_ShaderKeywords: _DISABLE_SSR _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 1 @@ -135,6 +135,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -203,6 +204,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -236,7 +238,7 @@ Material: - _StencilWriteMaskMV: 40 - _Stiffness: 1 - _SubsurfaceMask: 1 - - _SupportDecals: 1 + - _SupportDecals: 0 - _SurfaceType: 0 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 @@ -248,6 +250,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_DS_Flipped.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_DS_Flipped.mat index b28d5e54b3c..5957486d826 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_DS_Flipped.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_DS_Flipped.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_DS_Flipped m_Shader: {fileID: 4800000, guid: 3ca1e2b26eab0154c8aa4393fa9eb9b9, type: 3} - m_ShaderKeywords: _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 1 @@ -133,6 +133,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -175,7 +176,7 @@ Material: - _Drag: 1 - _DstBlend: 0 - _EmissiveColorMode: 1 - - _EnableBlendModePreserveSpecularLighting: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableMotionVectorForVertexAnimation: 0 @@ -202,6 +203,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -235,7 +237,7 @@ Material: - _StencilWriteMaskMV: 40 - _Stiffness: 1 - _SubsurfaceMask: 1 - - _SupportDecals: 1 + - _SupportDecals: 0 - _SurfaceType: 0 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 @@ -247,6 +249,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_DS_MirroredSpec.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_DS_MirroredSpec.mat index 2efc24ca5d9..e0068369649 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_DS_MirroredSpec.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_DS_MirroredSpec.mat @@ -9,7 +9,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_DS_MirroredSpec m_Shader: {fileID: 4800000, guid: 5cb53ea1643d562439f373395911d5a7, type: 3} - m_ShaderKeywords: _DISABLE_SSR _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 1 @@ -120,6 +120,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -161,7 +162,7 @@ Material: - _Drag: 1 - _DstBlend: 0 - _EmissiveColorMode: 1 - - _EnableBlendModePreserveSpecularLighting: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableMotionVectorForVertexAnimation: 0 @@ -188,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -221,7 +223,7 @@ Material: - _StencilWriteMaskMV: 40 - _Stiffness: 1 - _SubsurfaceMask: 1 - - _SupportDecals: 1 + - _SupportDecals: 0 - _SurfaceType: 0 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 @@ -233,6 +235,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -271,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_DS_None.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_DS_None.mat index 48a93843ff2..72727673c95 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_DS_None.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_DS_None.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_DS_None m_Shader: {fileID: 4800000, guid: d22313a829200014b80b91723546ee3e, type: 3} - m_ShaderKeywords: _DISABLE_SSR _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -133,6 +133,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -174,7 +175,7 @@ Material: - _Drag: 1 - _DstBlend: 0 - _EmissiveColorMode: 1 - - _EnableBlendModePreserveSpecularLighting: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableMotionVectorForVertexAnimation: 0 @@ -201,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -234,7 +236,7 @@ Material: - _StencilWriteMaskMV: 40 - _Stiffness: 1 - _SubsurfaceMask: 1 - - _SupportDecals: 1 + - _SupportDecals: 0 - _SurfaceType: 0 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 @@ -246,6 +248,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_GSAA.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_GSAA.mat index 8da66621867..e2e6e7f49ad 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_GSAA.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_GSAA.mat @@ -9,7 +9,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_GSAA m_Shader: {fileID: 4800000, guid: c99e098f2f21b0c468ed12e3ae50f0b2, type: 3} - m_ShaderKeywords: _DISABLE_SSR _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -33,6 +33,7 @@ Material: - Vector1_94EF1A0C: 0.95 - Vector1_A20A5B58: 0.95 - Vector1_C439D8D5: 0.95 + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -42,11 +43,14 @@ Material: - _CoatMask: 0.95 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _Metallic: 0.75 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -66,12 +70,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -94,4 +100,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_IrideBentNormal.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_IrideBentNormal.mat index 33bd783b9d1..88dbbf9ea9b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_IrideBentNormal.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_IrideBentNormal.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -50,6 +50,7 @@ Material: - Vector1_5DAD63CC: 0.95 - Vector1_9F784B29: 0.35 - Vector1_F50A7CEC: 0.95 + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -58,10 +59,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -78,12 +82,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_IrideBentNormalSpecularOcclusion.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_IrideBentNormalSpecularOcclusion.mat index 934403aea51..6cf31d6c990 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_IrideBentNormalSpecularOcclusion.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_IrideBentNormalSpecularOcclusion.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -50,6 +50,7 @@ Material: - Vector1_5DAD63CC: 0.95 - Vector1_9F784B29: 0.35 - Vector1_F50A7CEC: 0.95 + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -58,9 +59,11 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _OpaqueCullMode: 2 - _RayTracing: 0 @@ -79,12 +82,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_IrideMask.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_IrideMask.mat index 05ae4af6815..5ee8c9b23c3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_IrideMask.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_IrideMask.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_IrideMask m_Shader: {fileID: 4800000, guid: 05aa78ee93a9fee4bb93a2b3e4c3f96f, type: 3} - m_ShaderKeywords: _DISABLE_SSR _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -60,6 +60,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_8776B5DB: 1 + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -69,12 +70,15 @@ Material: - _CoatMask: 1 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _Metallic: 0.5 - _Occlusion: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -92,12 +96,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_OpaqueFrontCullModeSSS.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_OpaqueFrontCullModeSSS.mat index 9ea6c525daa..abb0183cf79 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_OpaqueFrontCullModeSSS.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_OpaqueFrontCullModeSSS.mat @@ -43,6 +43,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -50,10 +51,12 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DiffusionProfileHash: 2.6490312 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _OpaqueCullMode: 1 - _RayTracing: 0 @@ -72,12 +75,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -102,4 +107,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_ShinyStone.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_ShinyStone.mat index f392aa17c59..50526e3f5b1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_ShinyStone.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_ShinyStone.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_ShinyStone m_Shader: {fileID: 4800000, guid: 073c209412f85184fb3005fe5f16aca7, type: 3} - m_ShaderKeywords: _DISABLE_SSR _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -143,6 +143,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -185,7 +186,7 @@ Material: - _Drag: 1 - _DstBlend: 0 - _EmissiveColorMode: 1 - - _EnableBlendModePreserveSpecularLighting: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableMotionVectorForVertexAnimation: 0 @@ -212,6 +213,7 @@ Material: - _Metallic: 0.291 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -257,6 +259,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_Standard.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_Standard.mat index 36b46a764d0..9e00f7e0c74 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_Standard.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_Standard.mat @@ -9,7 +9,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_Standard m_Shader: {fileID: 4800000, guid: 8b27de8e3aab00e488052030cb0a6566, type: 3} - m_ShaderKeywords: _DISABLE_SSR _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -141,6 +141,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -182,7 +183,7 @@ Material: - _Drag: 1 - _DstBlend: 0 - _EmissiveColorMode: 1 - - _EnableBlendModePreserveSpecularLighting: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableMotionVectorForVertexAnimation: 0 @@ -210,6 +211,7 @@ Material: - _Metallic: 0.1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -243,7 +245,7 @@ Material: - _StencilWriteMaskMV: 40 - _Stiffness: 1 - _SubsurfaceMask: 1 - - _SupportDecals: 1 + - _SupportDecals: 0 - _SurfaceType: 0 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 @@ -255,6 +257,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -301,4 +304,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_SubSurface.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_SubSurface.mat index 5786e61ca5e..b2addc25629 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_SubSurface.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_SubSurface.mat @@ -122,6 +122,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -164,7 +165,7 @@ Material: - _Drag: 1 - _DstBlend: 0 - _EmissiveColorMode: 1 - - _EnableBlendModePreserveSpecularLighting: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableMotionVectorForVertexAnimation: 0 @@ -192,6 +193,7 @@ Material: - _NormalMapSpace: 0 - _NormalScale: 1 - _Occlusion: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -238,6 +240,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -278,4 +281,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_TransNormal.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_TransNormal.mat index b2f6458575b..0f7ae751988 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_TransNormal.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8101_Opaque/SG_TransNormal.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_TransNormal m_Shader: {fileID: 4800000, guid: dba356246cc0d8b4896760550a4433fc, type: 3} - m_ShaderKeywords: _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -47,6 +47,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 @@ -56,12 +57,15 @@ Material: - _CoatMask: 0.7 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DiffusionProfileHash: 2.7967417 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _Occlusion: 1 + - _OpaqueCullMode: 2 - _Profile: 8 - _RayTracing: 0 - _ReceivesSSR: 1 @@ -80,6 +84,7 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 0 - _Thickness: 0.9 - _TransparentBackfaceEnable: 0 @@ -87,6 +92,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BG.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BG.mat index 4ad1f440322..b390b47d939 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BG.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BG.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -208,6 +208,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_Additive.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_Additive.mat index 58d51d4746f..e9a38e4add3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_Additive.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_Additive.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -203,6 +203,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_Alpha.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_Alpha.mat index 48014e13881..9e0972358ff 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_Alpha.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_Alpha.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -203,6 +203,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_BackThenFront.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_BackThenFront.mat index 16121295c0b..25132724b0b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_BackThenFront.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_BackThenFront.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_BlendPerserveSpecularOff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_BlendPerserveSpecularOff.mat index 9e004da3afb..770edb853cb 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_BlendPerserveSpecularOff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_BlendPerserveSpecularOff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -203,6 +203,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_BlendPerserveSpecularOn.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_BlendPerserveSpecularOn.mat index dde29c7a18f..fabb6a4d936 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_BlendPerserveSpecularOn.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_BlendPerserveSpecularOn.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -204,6 +204,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionMultiply.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionMultiply.mat index 42ed8bdd610..8989c6e938a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionMultiply.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionMultiply.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionSimpleAdd.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionSimpleAdd.mat index caf3f017141..2a74ef226b1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionSimpleAdd.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionSimpleAdd.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionVectorMap.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionVectorMap.mat index fee1dba9060..95d9db9367a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionVectorMap.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionVectorMap.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionVectorMapDepthTest.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionVectorMapDepthTest.mat index 4eb2ef30180..7d409820cab 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionVectorMapDepthTest.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionVectorMapDepthTest.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionVectorMapNoDepthTest.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionVectorMapNoDepthTest.mat index 4cf3b53cdbc..7fe2f6efd4a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionVectorMapNoDepthTest.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_DistortionVectorMapNoDepthTest.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_FogOn0.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_FogOn0.mat index 7ff10811ba3..46049ef18b4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_FogOn0.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_FogOn0.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -203,6 +203,7 @@ Material: - _Metallic: 0.2 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_PostPass.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_PostPass.mat index 85a9438e9c8..c8be596e591 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_PostPass.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_PostPass.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -203,6 +203,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_PrePass.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_PrePass.mat index 19ed22ab8e2..c076f417288 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_PrePass.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_PrePass.mat @@ -190,6 +190,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -276,4 +277,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_Premultiply.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_Premultiply.mat index 70454e21b07..a34c968aeaa 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_Premultiply.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_Premultiply.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -203,6 +203,7 @@ Material: - _Metallic: 0.5 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_RefractionPlaneHiZNormal.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_RefractionPlaneHiZNormal.mat index 886293f4494..461172f3e45 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_RefractionPlaneHiZNormal.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_RefractionPlaneHiZNormal.mat @@ -203,6 +203,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -297,4 +298,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_RefractionPlaneProxy.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_RefractionPlaneProxy.mat index 0ce07a7d867..17e0a2b6559 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_RefractionPlaneProxy.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_RefractionPlaneProxy.mat @@ -202,6 +202,7 @@ Material: - _Metallic: 1 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -296,4 +297,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_RefractionSphereHiZ.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_RefractionSphereHiZ.mat index 1b29255986b..fd79bfee236 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_RefractionSphereHiZ.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_RefractionSphereHiZ.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -216,6 +216,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_RefractionSphereProxy.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_RefractionSphereProxy.mat index e09e5e737ee..ad10cfd6755 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_RefractionSphereProxy.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/BI_RefractionSphereProxy.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -216,6 +216,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_Additive.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_Additive.mat index 5f1715ebab1..8aee23a137b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_Additive.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_Additive.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_Additive m_Shader: {fileID: 4800000, guid: fc2c98b073232f94eaf96a78e756e847, type: 3} - m_ShaderKeywords: _BLENDMODE_ADD _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ADD _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 @@ -138,6 +138,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -179,7 +180,7 @@ Material: - _Drag: 1 - _DstBlend: 1 - _EmissiveColorMode: 1 - - _EnableBlendModePreserveSpecularLighting: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableMotionVectorForVertexAnimation: 0 @@ -206,6 +207,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -239,7 +241,7 @@ Material: - _StencilWriteMaskMV: 40 - _Stiffness: 1 - _SubsurfaceMask: 1 - - _SupportDecals: 1 + - _SupportDecals: 0 - _SurfaceType: 1 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 @@ -251,6 +253,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_Alpha.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_Alpha.mat index c8f478b484d..c2f0f42996f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_Alpha.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_Alpha.mat @@ -9,7 +9,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_Alpha m_Shader: {fileID: 4800000, guid: 2ed62fccf800a864bbaa23bf28a93893, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 @@ -121,6 +121,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -162,7 +163,7 @@ Material: - _Drag: 1 - _DstBlend: 10 - _EmissiveColorMode: 1 - - _EnableBlendModePreserveSpecularLighting: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableMotionVectorForVertexAnimation: 0 @@ -189,6 +190,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -222,7 +224,7 @@ Material: - _StencilWriteMaskMV: 40 - _Stiffness: 1 - _SubsurfaceMask: 1 - - _SupportDecals: 1 + - _SupportDecals: 0 - _SurfaceType: 1 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 @@ -234,6 +236,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -271,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_BackThenFront.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_BackThenFront.mat index 2cbf836d430..5625d69a035 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_BackThenFront.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_BackThenFront.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,8 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_BackThenFront m_Shader: {fileID: 4800000, guid: 738260c0c8503b74db5e12d6fa56160d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 1 @@ -45,6 +46,7 @@ Material: m_Floats: - Vector1_52486F46: 0.5 - Vector1_BEAFB0DB: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 0 @@ -52,10 +54,13 @@ Material: - _BlendMode: 0 - _CullMode: 0 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 1 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -72,12 +77,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 1 - _TransparentBackfaceEnable: 1 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_BlendPerserveSpecularOff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_BlendPerserveSpecularOff.mat index b16a22aa03b..94145d350f7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_BlendPerserveSpecularOff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_BlendPerserveSpecularOff.mat @@ -9,7 +9,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_BlendPerserveSpecularOff m_Shader: {fileID: 4800000, guid: 7d7e3e3d8a432f34e9c352247a46239d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -40,6 +40,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_41C5C4B1: 0.3 + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -48,10 +49,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -97,4 +103,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_BlendPerserveSpecularOn.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_BlendPerserveSpecularOn.mat index ef9de62ad1f..1d0cb4a4b83 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_BlendPerserveSpecularOn.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_BlendPerserveSpecularOn.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,8 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_BlendPerserveSpecularOn m_Shader: {fileID: 4800000, guid: d2f7622176f18ca48adc675f04b91787, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_DECALS + _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -84,6 +85,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -94,10 +96,12 @@ Material: - _CullMode: 2 - _CullModeForward: 2 - _Cutoff: 0.5 + - _DepthOffsetEnable: 0 - _DetailNormalMapScale: 1 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 0 - _GlossMapScale: 1 - _Glossiness: 0.5 @@ -105,6 +109,7 @@ Material: - _Metallic: 0 - _Mode: 0 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _Parallax: 0.02 - _RayTracing: 0 - _ReceivesSSR: 1 @@ -124,12 +129,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVSec: 0 - _UseShadowThreshold: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionMultiply.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionMultiply.mat index d411e8e5a07..e88b0ce2789 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionMultiply.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionMultiply.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_DistortionMultiply m_Shader: {fileID: 4800000, guid: 3f024a525123c15418bd06468180775e, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -42,6 +42,7 @@ Material: m_Floats: - Vector1_2448F057: 0.5 - Vector1_30CF8A67: 100 + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -50,10 +51,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionSimpleAdd.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionSimpleAdd.mat index 0826cc2a762..fc8cd69b921 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionSimpleAdd.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionSimpleAdd.mat @@ -9,7 +9,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_DistortionSimpleAdd m_Shader: {fileID: 4800000, guid: b13e693e4ab7ce04cbe9575ba2d8cdf1, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: m_TexEnvs: [] m_Floats: - Vector1_2038AEEA: 0.36 + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -56,12 +60,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -85,4 +91,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionVectorMap.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionVectorMap.mat index 7761efb0744..e768a5b358c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionVectorMap.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionVectorMap.mat @@ -9,7 +9,8 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_DistortionVectorMap m_Shader: {fileID: 4800000, guid: 91c8b35cf25ced04da970874cfa4977f, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_DECALS + _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -33,6 +34,7 @@ Material: m_Floats: - Vector1_2D036B32: 1 - Vector1_6B0C14DF: 1 + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -41,10 +43,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -61,12 +66,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -89,4 +96,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionVectorMapDepthTest.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionVectorMapDepthTest.mat index 96d3ae34342..c1093ff5b32 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionVectorMapDepthTest.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionVectorMapDepthTest.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_DistortionVectorMapDepthTest m_Shader: {fileID: 4800000, guid: 9c8c243d7a3586b4f9b05a702dddfedc, type: 3} - m_ShaderKeywords: _BLENDMODE_ADD _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ADD _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -46,6 +46,7 @@ Material: m_Floats: - Vector1_2D036B32: 0.5 - Vector1_6B0C14DF: 200 + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 1 @@ -54,10 +55,13 @@ Material: - _BlendMode: 1 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -74,12 +78,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionVectorMapNoDepthTest.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionVectorMapNoDepthTest.mat index eda896a51f6..209b9eddd71 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionVectorMapNoDepthTest.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_DistortionVectorMapNoDepthTest.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,8 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_DistortionVectorMapNoDepthTest m_Shader: {fileID: 4800000, guid: 91c8b35cf25ced04da970874cfa4977f, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_DECALS + _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -46,6 +47,7 @@ Material: m_Floats: - Vector1_2D036B32: 0.5 - Vector1_6B0C14DF: 200 + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -54,10 +56,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -74,12 +79,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_FogOn.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_FogOn.mat index 9441bb765b6..60096ad4d9b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_FogOn.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_FogOn.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_FogOn m_Shader: {fileID: 4800000, guid: 38047697ebc6ac14c9eedde488783065, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -69,12 +73,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_PostRefraction.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_PostRefraction.mat index a377ad8445e..25c3f60bad1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_PostRefraction.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_PostRefraction.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_PostRefraction m_Shader: {fileID: 4800000, guid: 99259a56c1ccc144e9c032a9e9de8b51, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -40,6 +40,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -48,10 +49,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_PreRefraction.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_PreRefraction.mat index b2a5548be5e..01353a86564 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_PreRefraction.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_PreRefraction.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_PreRefraction m_Shader: {fileID: 4800000, guid: ac72badfaa3749f45bb32973961ad823, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -40,6 +40,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -48,10 +49,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_Premultiply.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_Premultiply.mat index 136a5f21ca0..010c1992d8a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_Premultiply.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_Premultiply.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,8 +22,8 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_Premultiply m_Shader: {fileID: 4800000, guid: 1558b8fce4a360c40928e686b19d4017, type: 3} - m_ShaderKeywords: _BLENDMODE_PRE_MULTIPLY _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_PRE_MULTIPLY _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -138,6 +138,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -179,7 +180,7 @@ Material: - _Drag: 1 - _DstBlend: 10 - _EmissiveColorMode: 1 - - _EnableBlendModePreserveSpecularLighting: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnableMotionVectorForVertexAnimation: 0 @@ -206,6 +207,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -239,7 +241,7 @@ Material: - _StencilWriteMaskMV: 40 - _Stiffness: 1 - _SubsurfaceMask: 1 - - _SupportDecals: 1 + - _SupportDecals: 0 - _SurfaceType: 1 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 @@ -251,6 +253,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_RefractionPlaneHiZNormal.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_RefractionPlaneHiZNormal.mat index 1f57ef8ffac..33508f12d34 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_RefractionPlaneHiZNormal.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_RefractionPlaneHiZNormal.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_RefractionPlaneHiZNormal m_Shader: {fileID: 4800000, guid: 06c613a2a7b19444a99d697c69336cc8, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -45,6 +45,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_C1D4B96B: 1 + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -53,10 +54,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -73,12 +77,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_RefractionPlaneProxy.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_RefractionPlaneProxy.mat index 4cc97df68cf..45a0f0fd425 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_RefractionPlaneProxy.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_RefractionPlaneProxy.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_RefractionPlaneProxy m_Shader: {fileID: 4800000, guid: 934c5655a74dd054f8e53f86de97f5fe, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -44,6 +44,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -52,10 +53,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -72,12 +76,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_RefractionSphereHiZ.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_RefractionSphereHiZ.mat index 7722123963c..df99eca8654 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_RefractionSphereHiZ.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_RefractionSphereHiZ.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -52,6 +52,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -60,10 +61,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -80,12 +84,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_RefractionSphereProxy.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_RefractionSphereProxy.mat index 8b4fc07bc57..9faf668c4a1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_RefractionSphereProxy.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8102_Transparent/SG_RefractionSphereProxy.mat @@ -35,6 +35,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -43,10 +44,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -63,12 +67,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -92,4 +98,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/Materials/PrePassRT.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/Materials/PrePassRT.mat index a0cd23ae6d0..7c67ca03b60 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/Materials/PrePassRT.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/Materials/PrePassRT.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PostPass.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PostPass.mat index 0aaab7b4319..9e6884fe400 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PostPass.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PostPass.mat @@ -190,6 +190,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PostPassColor.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PostPassColor.mat index 8e8c8982946..4598cf76eda 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PostPassColor.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PostPassColor.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -187,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PostPassRed.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PostPassRed.mat index d663d531d20..3e33ab74c6a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PostPassRed.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PostPassRed.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -128,6 +128,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -201,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PrePass.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PrePass.mat index 0ad3a8f8158..6d3e01dca84 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PrePass.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PrePass.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -274,4 +275,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PrePass2.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PrePass2.mat index 05734e99eec..608e2dcdbe1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PrePass2.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PrePass2.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -210,6 +210,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PrePassGreen.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PrePassGreen.mat index cc5d69696e4..3296ce67e0b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PrePassGreen.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PrePassGreen.mat @@ -115,6 +115,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -188,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +277,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PrePassRT.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PrePassRT.mat index 66ec4c8e3e4..e324fe2b439 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PrePassRT.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/PrePassRT.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/SG_PostPass.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/SG_PostPass.mat index 611b14d919e..e7923224408 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/SG_PostPass.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/SG_PostPass.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: SG_PostPass m_Shader: {fileID: -6465566751694194690, guid: ff2fd7a424eacdd46a11b107e96ee671, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -134,6 +134,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -207,6 +208,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/SG_PrePass 1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/SG_PrePass 1.mat index a7750a3d152..b603baf565b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/SG_PrePass 1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/SG_PrePass 1.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,8 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_PrePass 1 m_Shader: {fileID: 4800000, guid: e162a55de287e2343878fe6397ddc837, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -47,6 +48,7 @@ Material: - Vector1_75F0A2CE: 0.375 - Vector1_D4C3882B: 0.25 - Vector1_FE430A52: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 0 @@ -54,10 +56,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -74,12 +79,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 1 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 1 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/SG_PrePass.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/SG_PrePass.mat index 3292089c253..0f251a86e52 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/SG_PrePass.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/SG_PrePass.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,8 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_PrePass m_Shader: {fileID: 4800000, guid: e162a55de287e2343878fe6397ddc837, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -47,6 +48,7 @@ Material: - Vector1_75F0A2CE: 0.375 - Vector1_D4C3882B: 0.25 - Vector1_FE430A52: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 @@ -55,10 +57,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -75,12 +80,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 1 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 1 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/SG_PrePassDisabled.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/SG_PrePassDisabled.mat index 758832469f9..1e75ac4832a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/SG_PrePassDisabled.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8103_PrePostPass/SG_PrePassDisabled.mat @@ -9,7 +9,8 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_PrePassDisabled m_Shader: {fileID: 4800000, guid: 64a2356af187b7a43b07329a2f5c4e1b, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT + _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -35,6 +36,7 @@ Material: - Vector1_75F0A2CE: 0.375 - Vector1_D4C3882B: 0.25 - Vector1_FE430A52: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 @@ -43,10 +45,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -63,12 +68,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -92,4 +99,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitAlphaClip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitAlphaClip.mat index 20c918c2263..b1be5249d40 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitAlphaClip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitAlphaClip.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -114,6 +114,7 @@ Material: - _IncludeIndirectLighting: 1 - _Metallic: 0 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PreRefractionPass: 0 - _ReceiveShadows: 1 - _SampleGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitAlphaClipDoubleSided.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitAlphaClipDoubleSided.mat index 71a1904cc3d..14ec805ba6c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitAlphaClipDoubleSided.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitAlphaClipDoubleSided.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -114,6 +114,7 @@ Material: - _IncludeIndirectLighting: 1 - _Metallic: 0 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PreRefractionPass: 0 - _ReceiveShadows: 1 - _SampleGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitAlphaClipDoubleSidedTransparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitAlphaClipDoubleSidedTransparent.mat index 028558aab91..f6708ab3347 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitAlphaClipDoubleSidedTransparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitAlphaClipDoubleSidedTransparent.mat @@ -101,6 +101,7 @@ Material: - _IncludeIndirectLighting: 1 - _Metallic: 0 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PreRefractionPass: 0 - _ReceiveShadows: 1 - _SampleGI: 0 @@ -147,4 +148,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitBlendAdditive.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitBlendAdditive.mat index 5e466f427dd..2b276ff5ceb 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitBlendAdditive.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitBlendAdditive.mat @@ -101,6 +101,7 @@ Material: - _IncludeIndirectLighting: 1 - _Metallic: 0 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PreRefractionPass: 0 - _ReceiveShadows: 1 - _SampleGI: 0 @@ -147,4 +148,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitBlendAlpha.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitBlendAlpha.mat index 8c35471c289..bf18bf1aa0a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitBlendAlpha.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitBlendAlpha.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -114,6 +114,7 @@ Material: - _IncludeIndirectLighting: 1 - _Metallic: 0 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PreRefractionPass: 0 - _ReceiveShadows: 1 - _SampleGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitBlendPremult.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitBlendPremult.mat index 28967000f00..0b37c7a665a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitBlendPremult.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitBlendPremult.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -114,6 +114,7 @@ Material: - _IncludeIndirectLighting: 1 - _Metallic: 0 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PreRefractionPass: 0 - _ReceiveShadows: 1 - _SampleGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitYellow.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitYellow.mat index 97764831c77..221a338a24a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitYellow.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BI_UnlitYellow.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -113,6 +113,7 @@ Material: - _IncludeIndirectLighting: 1 - _Metallic: 0 - _OcclusionStrength: 1 + - _OpaqueCullMode: 2 - _PreRefractionPass: 0 - _ReceiveShadows: 1 - _SampleGI: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BackgroundHoleQuad.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BackgroundHoleQuad.mat index 59530b0bbf1..0731544e8a5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BackgroundHoleQuad.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/BackgroundHoleQuad.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAdditive.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAdditive.mat index fc4dfb9368e..6f4b4bdbb1b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAdditive.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAdditive.mat @@ -31,6 +31,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_90AA7A8: 0 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 1 - _AlphaSrcBlend: 1 @@ -38,10 +39,12 @@ Material: - _BlendMode: 1 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -63,6 +66,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -87,4 +91,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAlpha.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAlpha.mat index 230ddd668bf..9285c30ef11 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAlpha.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAlpha.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -44,6 +44,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_90AA7A8: 0 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -51,10 +52,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -76,6 +79,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAlphablendAlphaclipDoublesided.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAlphablendAlphaclipDoublesided.mat index 82eaccf92f0..0b226a4259e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAlphablendAlphaclipDoublesided.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAlphablendAlphaclipDoublesided.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -45,6 +45,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_90AA7A8: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -52,10 +53,12 @@ Material: - _BlendMode: 0 - _CullMode: 0 - _CullModeForward: 0 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 1 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -77,6 +80,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAlphaclip.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAlphaclip.mat index 8d3ceed10a1..cfbda3a6fb3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAlphaclip.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAlphaclip.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -44,6 +44,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_90AA7A8: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -51,10 +52,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -76,6 +79,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAlphaclipDoublesided.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAlphaclipDoublesided.mat index 6fd2c925ae0..a7cb851dada 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAlphaclipDoublesided.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitAlphaclipDoublesided.mat @@ -29,6 +29,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_90AA7A8: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -36,10 +37,12 @@ Material: - _BlendMode: 0 - _CullMode: 0 - _CullModeForward: 0 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 1 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -61,6 +64,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -85,4 +89,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitPremult.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitPremult.mat index 6d82e97a9cc..b19bb19b30f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitPremult.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitPremult.mat @@ -32,6 +32,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_90AA7A8: 0 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 @@ -39,10 +40,12 @@ Material: - _BlendMode: 4 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -64,6 +67,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -88,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitYellow.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitYellow.mat index 09e71a9e510..1c5385f0eaa 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitYellow.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8104_Unlit/SG_UnlitYellow.mat @@ -31,6 +31,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_90AA7A8: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -38,10 +39,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -63,6 +66,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -87,4 +91,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/BlendStateRenderTexture.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/BlendStateRenderTexture.mat index 7dbc6e063db..13da5c23eda 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/BlendStateRenderTexture.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/BlendStateRenderTexture.mat @@ -71,6 +71,7 @@ Material: - _EnableFogOnTransparent: 0 - _HdrpVersion: 2 - _IncludeIndirectLighting: 1 + - _OpaqueCullMode: 2 - _SrcBlend: 1 - _StencilRef: 0 - _StencilRefDepth: 0 @@ -109,4 +110,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphCullBack.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphCullBack.mat index a68587a2a77..0ab4b515d54 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphCullBack.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphCullBack.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_FabricGraphCullBack m_Shader: {fileID: -6465566751694194690, guid: be29b4caf2bf0a348b277981027bfd16, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphCullBackZTestGreater.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphCullBackZTestGreater.mat index 86e84f4f539..eb0da2b59f7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphCullBackZTestGreater.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphCullBackZTestGreater.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_FabricGraphCullBackZTestGreater m_Shader: {fileID: -6465566751694194690, guid: be29b4caf2bf0a348b277981027bfd16, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 5 @@ -86,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphCullFront.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphCullFront.mat index 4135cf0131c..bd85305ea18 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphCullFront.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphCullFront.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_FabricGraphCullFront m_Shader: {fileID: -6465566751694194690, guid: be29b4caf2bf0a348b277981027bfd16, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphCullFrontEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphCullFrontEqual.mat index 83beaab0fb5..bd4d3eddd5e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphCullFrontEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphCullFrontEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_FabricGraphCullFrontEqual m_Shader: {fileID: -6465566751694194690, guid: be29b4caf2bf0a348b277981027bfd16, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 7 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphDoubleSided.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphDoubleSided.mat index 238a23b04ad..ba9b842a8c0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphDoubleSided.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphDoubleSided.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_FabricGraphDoubleSided m_Shader: {fileID: -6465566751694194690, guid: be29b4caf2bf0a348b277981027bfd16, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _DOUBLESIDED_ON _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 1 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 0 - _CullModeForward: 0 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 1 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 7 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZTestAlways.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZTestAlways.mat index 5102e9d58d3..03d484a23e7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZTestAlways.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZTestAlways.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_FabricGraphZTestAlways m_Shader: {fileID: -6465566751694194690, guid: be29b4caf2bf0a348b277981027bfd16, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 2 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 8 @@ -86,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZTestDisabled.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZTestDisabled.mat index 49f3513c0d7..02484c5832e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZTestDisabled.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZTestDisabled.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_FabricGraphZTestDisabled m_Shader: {fileID: -6465566751694194690, guid: be29b4caf2bf0a348b277981027bfd16, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 0 @@ -86,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZTestLessEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZTestLessEqual.mat index 87b7be30228..9c5b15e5975 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZTestLessEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZTestLessEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_FabricGraphZTestLessEqual m_Shader: {fileID: -6465566751694194690, guid: be29b4caf2bf0a348b277981027bfd16, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: -2 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZTestNeverBackThenFront.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZTestNeverBackThenFront.mat index 7903a0bf9d4..2373536183c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZTestNeverBackThenFront.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZTestNeverBackThenFront.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_FabricGraphZTestNeverBackThenFront m_Shader: {fileID: -6465566751694194690, guid: 80a7ee3189c21cb429fdd7ad3eba0fc3, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 1 @@ -85,4 +91,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteGreaterEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteGreaterEqual.mat index 0ace06a1900..38534ebab1d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteGreaterEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteGreaterEqual.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_FabricGraphZWriteGreaterEqual m_Shader: {fileID: -6465566751694194690, guid: be29b4caf2bf0a348b277981027bfd16, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -29,6 +29,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -37,10 +38,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -57,12 +61,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 7 @@ -87,4 +93,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteLessEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteLessEqual.mat index 3d2c18a3343..9b27974aa97 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteLessEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteLessEqual.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_FabricGraphZWriteLessEqual m_Shader: {fileID: -6465566751694194690, guid: be29b4caf2bf0a348b277981027bfd16, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -85,4 +91,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteOff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteOff.mat index eb804c20918..b2ab7a33266 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteOff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteOff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_FabricGraphZWriteOff m_Shader: {fileID: -6465566751694194690, guid: be29b4caf2bf0a348b277981027bfd16, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteOn.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteOn.mat index cdcd8df78ab..eb684f0b5e0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteOn.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteOn.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_FabricGraphZWriteOn m_Shader: {fileID: -6465566751694194690, guid: be29b4caf2bf0a348b277981027bfd16, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: -1 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteOnAlpha1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteOnAlpha1.mat index e115d5c0400..78648687efb 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteOnAlpha1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteOnAlpha1.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_FabricGraphZWriteOnAlpha1 m_Shader: {fileID: -6465566751694194690, guid: be29b4caf2bf0a348b277981027bfd16, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 1 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteOnTransparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteOnTransparent.mat index e6c6d5e93eb..6960fb5110f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteOnTransparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/FabricGraph/Shader Graphs_FabricGraphZWriteOnTransparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_FabricGraphZWriteOnTransparent m_Shader: {fileID: -6465566751694194690, guid: be29b4caf2bf0a348b277981027bfd16, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: -1 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphCullBack.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphCullBack.mat index 0becd5cacaa..ad74cc2eea6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphCullBack.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphCullBack.mat @@ -27,6 +27,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -35,10 +36,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -60,6 +63,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -85,4 +89,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphCullBackZTestGreater.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphCullBackZTestGreater.mat index 0d6f5cba437..98e3c9b16f8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphCullBackZTestGreater.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphCullBackZTestGreater.mat @@ -27,6 +27,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -35,10 +36,12 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -60,6 +63,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 5 @@ -85,4 +89,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphCullFront.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphCullFront.mat index 3c8c7435847..086b15ec632 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphCullFront.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphCullFront.mat @@ -27,6 +27,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -35,10 +36,12 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -60,6 +63,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -85,4 +89,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphCullFrontEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphCullFrontEqual.mat index 90b88a2caef..b32b61cd952 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphCullFrontEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphCullFrontEqual.mat @@ -27,6 +27,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -35,10 +36,12 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -60,6 +63,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 7 @@ -85,4 +89,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphDoubleSided.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphDoubleSided.mat index 2d37817f64d..512ac80bc2e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphDoubleSided.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphDoubleSided.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -40,6 +40,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -48,10 +49,12 @@ Material: - _BlendMode: 0 - _CullMode: 0 - _CullModeForward: 0 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 1 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -73,6 +76,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 7 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZTestAlways.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZTestAlways.mat index 3e5f7febf0e..1c30ffc65f1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZTestAlways.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZTestAlways.mat @@ -27,6 +27,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -35,10 +36,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -60,6 +63,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 2 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 8 @@ -85,4 +89,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZTestDisabled.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZTestDisabled.mat index 880a946b476..00efd1c7b43 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZTestDisabled.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZTestDisabled.mat @@ -27,6 +27,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -35,10 +36,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -60,6 +63,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 0 @@ -85,4 +89,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZTestLessEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZTestLessEqual.mat index 67c49b1d0ff..e7a42a3c28e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZTestLessEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZTestLessEqual.mat @@ -27,6 +27,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -35,10 +36,12 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -60,6 +63,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: -2 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -85,4 +89,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZTestNeverBackThenFront.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZTestNeverBackThenFront.mat index dadfcbd30bd..77eb0c4c550 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZTestNeverBackThenFront.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZTestNeverBackThenFront.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -40,6 +40,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -48,10 +49,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -73,6 +76,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 1 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteGreaterEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteGreaterEqual.mat index 3f0ad37d29d..ec34a6c8322 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteGreaterEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteGreaterEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -40,6 +40,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -48,10 +49,12 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -73,6 +76,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 7 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteLessEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteLessEqual.mat index d46f7755cbc..73e0d82e417 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteLessEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteLessEqual.mat @@ -27,6 +27,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -35,10 +36,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -60,6 +63,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -84,4 +88,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteOff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteOff.mat index cb6f3067f5a..111248fe2e3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteOff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteOff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -40,6 +40,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -48,10 +49,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -73,6 +76,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteOn.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteOn.mat index 0a4772c93bf..2ad649b7f06 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteOn.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteOn.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -40,6 +40,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -48,10 +49,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -73,6 +76,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: -1 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteOnAlpha1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteOnAlpha1.mat index 72c6d4cd2df..2a0c228330d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteOnAlpha1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteOnAlpha1.mat @@ -27,6 +27,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -35,10 +36,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -60,6 +63,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 1 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -85,4 +89,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteOnTransparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteOnTransparent.mat index b3a29fda7c1..aaa040f563a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteOnTransparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HDUnlitGraph/Shader Graphs_UnLitGraphZWriteOnTransparent.mat @@ -27,6 +27,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -35,10 +36,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 4 @@ -60,6 +63,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: -1 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -85,4 +89,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphCullBack.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphCullBack.mat index 141608c1450..3e0d37ea370 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphCullBack.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphCullBack.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_HairGraphCullBack m_Shader: {fileID: -6465566751694194690, guid: 4513b7d5b2355b94caa367597065917d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphCullBackZTestGreater.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphCullBackZTestGreater.mat index 4aabd301eaa..f23f85a436c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphCullBackZTestGreater.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphCullBackZTestGreater.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_HairGraphCullBackZTestGreater m_Shader: {fileID: -6465566751694194690, guid: 4513b7d5b2355b94caa367597065917d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphCullFront.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphCullFront.mat index a79ba43ba62..f3bc6ace171 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphCullFront.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphCullFront.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_HairGraphCullFront m_Shader: {fileID: -6465566751694194690, guid: 4513b7d5b2355b94caa367597065917d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -86,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphCullFrontEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphCullFrontEqual.mat index 0091f04531b..240ab440fff 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphCullFrontEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphCullFrontEqual.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_HairGraphCullFrontEqual m_Shader: {fileID: -6465566751694194690, guid: 4513b7d5b2355b94caa367597065917d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 7 @@ -86,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphDoubleSided.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphDoubleSided.mat index d1522085a9d..2f0c7a4bc14 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphDoubleSided.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphDoubleSided.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_HairGraphDoubleSided m_Shader: {fileID: -6465566751694194690, guid: 4513b7d5b2355b94caa367597065917d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _DOUBLESIDED_ON _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 1 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 0 - _CullModeForward: 0 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 1 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 7 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZTestAlways.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZTestAlways.mat index 910fbd709a4..a6eac9248b2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZTestAlways.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZTestAlways.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_HairGraphZTestAlways m_Shader: {fileID: -6465566751694194690, guid: 4513b7d5b2355b94caa367597065917d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 2 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 8 @@ -86,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZTestDisabled.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZTestDisabled.mat index f206a13c544..91a53385b3a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZTestDisabled.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZTestDisabled.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_HairGraphZTestDisabled m_Shader: {fileID: -6465566751694194690, guid: 4513b7d5b2355b94caa367597065917d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 0 @@ -86,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZTestLessEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZTestLessEqual.mat index b4c66c9fe3d..a58544f1e53 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZTestLessEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZTestLessEqual.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_HairGraphZTestLessEqual m_Shader: {fileID: -6465566751694194690, guid: 4513b7d5b2355b94caa367597065917d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: -2 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -86,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZTestNeverBackThenFront.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZTestNeverBackThenFront.mat index 685668b8ff3..2ecf1639dd0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZTestNeverBackThenFront.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZTestNeverBackThenFront.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_HairGraphZTestNeverBackThenFront m_Shader: {fileID: -6465566751694194690, guid: 656fc851c71caa1498d55be6b90d382a, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -40,6 +40,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -48,10 +49,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -67,12 +71,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 1 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 1 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteGreaterEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteGreaterEqual.mat index 922380fb783..6c914db553d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteGreaterEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteGreaterEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_HairGraphZWriteGreaterEqual m_Shader: {fileID: -6465566751694194690, guid: 4513b7d5b2355b94caa367597065917d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 7 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteLessEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteLessEqual.mat index 6d89e180930..cc0e5f724ad 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteLessEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteLessEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_HairGraphZWriteLessEqual m_Shader: {fileID: -6465566751694194690, guid: 4513b7d5b2355b94caa367597065917d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteOff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteOff.mat index a7cad9ec854..20e3373d26a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteOff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteOff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_HairGraphZWriteOff m_Shader: {fileID: -6465566751694194690, guid: 4513b7d5b2355b94caa367597065917d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteOn.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteOn.mat index 32022bf37ae..37a0b2b97fc 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteOn.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteOn.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_HairGraphZWriteOn m_Shader: {fileID: -6465566751694194690, guid: 4513b7d5b2355b94caa367597065917d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: -1 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteOnAlpha1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteOnAlpha1.mat index a026821bf3d..858470859d0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteOnAlpha1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteOnAlpha1.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_HairGraphZWriteOnAlpha1 m_Shader: {fileID: -6465566751694194690, guid: 4513b7d5b2355b94caa367597065917d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 1 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -86,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteOnTransparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteOnTransparent.mat index 055b25e1807..1d770aa8bee 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteOnTransparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/HairGraph/Shader Graphs_HairGraphZWriteOnTransparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_HairGraphZWriteOnTransparent m_Shader: {fileID: -6465566751694194690, guid: 4513b7d5b2355b94caa367597065917d, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: -1 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitCullBack.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitCullBack.mat index 5beff6deeda..98a21c594b3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitCullBack.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitCullBack.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitCullBackZTestGreater.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitCullBackZTestGreater.mat index c44556e5301..a8f20a6cca9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitCullBackZTestGreater.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitCullBackZTestGreater.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitCullFront.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitCullFront.mat index 3dc132a36ff..1247ebdf9d1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitCullFront.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitCullFront.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitCullFrontEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitCullFrontEqual.mat index 2d6b604abcd..518bafa6f25 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitCullFrontEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitCullFrontEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitDoubleSided.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitDoubleSided.mat index 7c5895d8451..56298aa5818 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitDoubleSided.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitDoubleSided.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZTestAlways.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZTestAlways.mat index 81e6008c82e..e0c31098bc5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZTestAlways.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZTestAlways.mat @@ -186,6 +186,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZTestDisabled.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZTestDisabled.mat index c70f5cbc4c2..4a77fe1f32d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZTestDisabled.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZTestDisabled.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZTestLessEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZTestLessEqual.mat index 51c582c25b3..cde8b8656af 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZTestLessEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZTestLessEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZTestNeverBackThenFront.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZTestNeverBackThenFront.mat index 98d658b5429..4f21fad92a8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZTestNeverBackThenFront.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZTestNeverBackThenFront.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteGreaterEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteGreaterEqual.mat index 5029b168cf1..943d0f23479 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteGreaterEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteGreaterEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteLessEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteLessEqual.mat index d08cd38742e..fcdd6393502 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteLessEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteLessEqual.mat @@ -185,6 +185,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -270,4 +271,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteOff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteOff.mat index e232551e81b..1aa0ad3a007 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteOff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteOff.mat @@ -185,6 +185,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -270,4 +271,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteOn.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteOn.mat index a89fc732a1d..a4749f90441 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteOn.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteOn.mat @@ -186,6 +186,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteOnAlpha1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteOnAlpha1.mat index 8e1efc3f4ae..d8b20c6df8a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteOnAlpha1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteOnAlpha1.mat @@ -186,6 +186,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteOnTransparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteOnTransparent.mat index a8023bc5f46..5dc92b60bba 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteOnTransparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Lit/LitZWriteOnTransparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -199,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphCullBack.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphCullBack.mat index 2fe7f5782db..fc726517105 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphCullBack.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphCullBack.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_LitGraphCullBack m_Shader: {fileID: -6465566751694194690, guid: cf0ca455f8234d24cab4a6184cec6116, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -42,6 +42,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -50,10 +51,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphCullBackZTestGreater.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphCullBackZTestGreater.mat index e00c23a17ad..420e9cbb345 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphCullBackZTestGreater.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphCullBackZTestGreater.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_LitGraphCullBackZTestGreater m_Shader: {fileID: -6465566751694194690, guid: cf0ca455f8234d24cab4a6184cec6116, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -42,6 +42,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -50,10 +51,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphCullFront.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphCullFront.mat index b68370973de..a1182d09983 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphCullFront.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphCullFront.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_LitGraphCullFront m_Shader: {fileID: -6465566751694194690, guid: cf0ca455f8234d24cab4a6184cec6116, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -42,6 +42,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -50,10 +51,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphCullFrontEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphCullFrontEqual.mat index 308ce87c6d7..b691a1375e4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphCullFrontEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphCullFrontEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_LitGraphCullFrontEqual m_Shader: {fileID: -6465566751694194690, guid: cf0ca455f8234d24cab4a6184cec6116, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -42,6 +42,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -50,10 +51,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 7 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphDoubleSided.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphDoubleSided.mat index 4ed4c13a11f..afc7807954f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphDoubleSided.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphDoubleSided.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_LitGraphDoubleSided m_Shader: {fileID: -6465566751694194690, guid: cf0ca455f8234d24cab4a6184cec6116, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _DOUBLESIDED_ON _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 1 @@ -42,6 +42,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -50,10 +51,13 @@ Material: - _BlendMode: 0 - _CullMode: 0 - _CullModeForward: 0 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 1 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 7 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZTestAlways.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZTestAlways.mat index 24e3ebc68eb..3f239024618 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZTestAlways.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZTestAlways.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_LitGraphZTestAlways m_Shader: {fileID: -6465566751694194690, guid: cf0ca455f8234d24cab4a6184cec6116, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -42,6 +42,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -50,10 +51,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 2 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 8 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZTestDisabled.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZTestDisabled.mat index 9274738927e..7168f33cda1 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZTestDisabled.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZTestDisabled.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_LitGraphZTestDisabled m_Shader: {fileID: -6465566751694194690, guid: cf0ca455f8234d24cab4a6184cec6116, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -42,6 +42,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -50,10 +51,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZTestLessEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZTestLessEqual.mat index ea802d951f8..5e36d98c2ec 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZTestLessEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZTestLessEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_LitGraphZTestLessEqual m_Shader: {fileID: -6465566751694194690, guid: cf0ca455f8234d24cab4a6184cec6116, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -42,6 +42,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -50,10 +51,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: -2 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZTestNeverBackThenFront.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZTestNeverBackThenFront.mat index 049c8a0f0a0..0c27d4a1277 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZTestNeverBackThenFront.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZTestNeverBackThenFront.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_LitGraphZTestNeverBackThenFront m_Shader: {fileID: -6465566751694194690, guid: 78a116865d6930d4f8f8cfce7aafb5c4, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -69,12 +73,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 1 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 1 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteGreaterEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteGreaterEqual.mat index 8ea1070bd4a..6d36ede00f4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteGreaterEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteGreaterEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_LitGraphZWriteGreaterEqual m_Shader: {fileID: -6465566751694194690, guid: cf0ca455f8234d24cab4a6184cec6116, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -42,6 +42,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -50,10 +51,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 7 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteLessEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteLessEqual.mat index 37755a26ff2..c222483276d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteLessEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteLessEqual.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_LitGraphZWriteLessEqual m_Shader: {fileID: -6465566751694194690, guid: 78a116865d6930d4f8f8cfce7aafb5c4, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -56,12 +60,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 1 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -85,4 +91,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteOff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteOff.mat index 851e771c7a4..5e11d2b204f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteOff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteOff.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_LitGraphZWriteOff m_Shader: {fileID: -6465566751694194690, guid: 78a116865d6930d4f8f8cfce7aafb5c4, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -69,12 +73,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 1 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteOn.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteOn.mat index f74e832a1b7..7c222b33484 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteOn.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteOn.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_LitGraphZWriteOn m_Shader: {fileID: -6465566751694194690, guid: cf0ca455f8234d24cab4a6184cec6116, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -29,6 +29,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -37,10 +38,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -57,12 +61,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: -1 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -87,4 +93,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteOnAlpha1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteOnAlpha1.mat index 5e48e5abd23..a695ecfd5c4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteOnAlpha1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteOnAlpha1.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_LitGraphZWriteOnAlpha1 m_Shader: {fileID: -6465566751694194690, guid: cf0ca455f8234d24cab4a6184cec6116, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -42,6 +42,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -50,10 +51,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 1 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteOnTransparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteOnTransparent.mat index 00860ee96a4..9bc00c39c86 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteOnTransparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/LitGraph/Shader Graphs_LitGraphZWriteOnTransparent.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_LitGraphZWriteOnTransparent m_Shader: {fileID: -6465566751694194690, guid: cf0ca455f8234d24cab4a6184cec6116, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -29,6 +29,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -37,10 +38,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -57,12 +61,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: -1 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -87,4 +93,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphCullBack.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphCullBack.mat index b8512eabfab..0af40696333 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphCullBack.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphCullBack.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_StackLitGraphCullBack m_Shader: {fileID: -6465566751694194690, guid: fa98c77453c592147a3a9d017024826c, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphCullBackZTestGreater.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphCullBackZTestGreater.mat index 106bcc03c2d..095236da3fa 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphCullBackZTestGreater.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphCullBackZTestGreater.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_StackLitGraphCullBackZTestGreater m_Shader: {fileID: -6465566751694194690, guid: fa98c77453c592147a3a9d017024826c, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphCullFront.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphCullFront.mat index 01789bdfa2f..2ed682bcff4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphCullFront.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphCullFront.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_StackLitGraphCullFront m_Shader: {fileID: -6465566751694194690, guid: fa98c77453c592147a3a9d017024826c, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -86,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphCullFrontEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphCullFrontEqual.mat index bb644a2dc23..0ce1362ff66 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphCullFrontEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphCullFrontEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_StackLitGraphCullFrontEqual m_Shader: {fileID: -6465566751694194690, guid: fa98c77453c592147a3a9d017024826c, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 7 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphDoubleSided.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphDoubleSided.mat index 6e20db9d198..0f9ad89b58d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphDoubleSided.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphDoubleSided.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_StackLitGraphDoubleSided m_Shader: {fileID: -6465566751694194690, guid: fa98c77453c592147a3a9d017024826c, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _DOUBLESIDED_ON _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 1 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 0 - _CullModeForward: 0 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 1 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 7 @@ -86,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZTestAlways.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZTestAlways.mat index 1a3b4a9047a..7cfd196c7bb 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZTestAlways.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZTestAlways.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_StackLitGraphZTestAlways m_Shader: {fileID: -6465566751694194690, guid: fa98c77453c592147a3a9d017024826c, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 2 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 8 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZTestDisabled.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZTestDisabled.mat index 7395d6f3a64..ef9810015b6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZTestDisabled.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZTestDisabled.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_StackLitGraphZTestDisabled m_Shader: {fileID: -6465566751694194690, guid: fa98c77453c592147a3a9d017024826c, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 0 @@ -86,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZTestLessEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZTestLessEqual.mat index d063ecea2d8..b7766367b4a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZTestLessEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZTestLessEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_StackLitGraphZTestLessEqual m_Shader: {fileID: -6465566751694194690, guid: fa98c77453c592147a3a9d017024826c, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: -2 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZTestNeverBackThenFront.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZTestNeverBackThenFront.mat index a9eb25729fd..77a20456351 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZTestNeverBackThenFront.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZTestNeverBackThenFront.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_StackLitGraphZTestNeverBackThenFront m_Shader: {fileID: -6465566751694194690, guid: fa98c77453c592147a3a9d017024826c, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 1 @@ -85,4 +91,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteGreaterEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteGreaterEqual.mat index b69b6da3f24..b06986af19e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteGreaterEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteGreaterEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_StackLitGraphZWriteGreaterEqual m_Shader: {fileID: -6465566751694194690, guid: fa98c77453c592147a3a9d017024826c, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 1 - _CullModeForward: 1 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 1 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 7 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteLessEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteLessEqual.mat index fa4f338f9b3..0d47194eaf0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteLessEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteLessEqual.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_StackLitGraphZWriteLessEqual m_Shader: {fileID: -6465566751694194690, guid: fa98c77453c592147a3a9d017024826c, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -85,4 +91,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteOff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteOff.mat index 3fa52f64da5..12b23c2f491 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteOff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteOff.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_StackLitGraphZWriteOff m_Shader: {fileID: -6465566751694194690, guid: fa98c77453c592147a3a9d017024826c, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -85,4 +91,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteOn.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteOn.mat index 4700d30bf16..23bf7c6af73 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteOn.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteOn.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_StackLitGraphZWriteOn m_Shader: {fileID: -6465566751694194690, guid: fa98c77453c592147a3a9d017024826c, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: -1 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -86,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteOnAlpha1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteOnAlpha1.mat index a26b3689e6a..10b11db05ad 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteOnAlpha1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteOnAlpha1.mat @@ -10,8 +10,8 @@ Material: m_Name: Shader Graphs_StackLitGraphZWriteOnAlpha1 m_Shader: {fileID: -6465566751694194690, guid: fa98c77453c592147a3a9d017024826c, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -28,6 +28,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -36,10 +37,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -55,12 +59,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 1 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 @@ -86,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteOnTransparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteOnTransparent.mat index 09875721643..e7e0d14b716 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteOnTransparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/StackLitGraph/Shader Graphs_StackLitGraphZWriteOnTransparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: Shader Graphs_StackLitGraphZWriteOnTransparent m_Shader: {fileID: -6465566751694194690, guid: fa98c77453c592147a3a9d017024826c, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -41,6 +41,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 10 @@ -49,10 +50,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 0 - _DstBlend: 10 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 5 @@ -68,12 +72,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 1 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: -1 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 4 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitCullBack.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitCullBack.mat index 5f740e268ab..39978c3bf0e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitCullBack.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitCullBack.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitCullBackZTestGreater.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitCullBackZTestGreater.mat index 4c7284d7d6f..28d0d928b2e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitCullBackZTestGreater.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitCullBackZTestGreater.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitCullFront.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitCullFront.mat index c602c53e835..d709b46ee09 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitCullFront.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitCullFront.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitCullFrontEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitCullFrontEqual.mat index af17403b481..53e5e3bdeae 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitCullFrontEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitCullFrontEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitDoubleSided.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitDoubleSided.mat index 44f60384d13..48b2fc15f2a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitDoubleSided.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitDoubleSided.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZTestAlways.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZTestAlways.mat index b3d8e60e938..0f84e5d216f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZTestAlways.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZTestAlways.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZTestDisabled.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZTestDisabled.mat index 94c16895ffd..4a15c91e1f5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZTestDisabled.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZTestDisabled.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZTestLessEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZTestLessEqual.mat index 560bd15150a..d122d6208dc 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZTestLessEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZTestLessEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZTestNeverBackThenFront.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZTestNeverBackThenFront.mat index 5a20abc5053..8cb89f22dce 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZTestNeverBackThenFront.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZTestNeverBackThenFront.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -271,4 +272,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteGreaterEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteGreaterEqual.mat index f06694ef694..363486a0e98 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteGreaterEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteGreaterEqual.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteLessEqual.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteLessEqual.mat index f90b1ef5d83..32fe6a856dc 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteLessEqual.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteLessEqual.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -88,6 +88,7 @@ Material: - _EnableFogOnTransparent: 0 - _HdrpVersion: 2 - _IncludeIndirectLighting: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _RenderQueueType: 5 - _RequireSplitLighting: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteOff.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteOff.mat index 2c80c9d356e..443237af91b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteOff.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteOff.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -271,4 +272,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteOn.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteOn.mat index a05c9a4a911..d9e251553f5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteOn.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteOn.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteOnAlpha1.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteOnAlpha1.mat index 1df43cbdbb8..be978604915 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteOnAlpha1.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteOnAlpha1.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteOnTransparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteOnTransparent.mat index 84d0d78f3de..7596a6681c3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteOnTransparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8105_BlendStates/Unlit/UnlitZWriteOnTransparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/00.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/00.mat index 87eb8d0d5bf..90c34f9d554 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/00.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/00.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/01.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/01.mat index 26630d69ab6..48dca3882f8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/01.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/01.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/02.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/02.mat index 14462e60c87..257122651ae 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/02.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/02.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/03.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/03.mat index a19cf3f3428..8e8d395bc59 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/03.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/03.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -197,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/10.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/10.mat index 3470900e270..b95c9ef0052 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/10.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/10.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/11.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/11.mat index 26a64c3981f..80ffc6282e9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/11.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/11.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/12.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/12.mat index 6e5ea2cb1cd..3e28834d60b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/12.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/12.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/13.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/13.mat index 0ab16d735fc..24fb8258374 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/13.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/13.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/20.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/20.mat index 906f563e5e4..a0d940d9cd4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/20.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/20.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -111,10 +111,18 @@ Material: m_Texture: {fileID: 2800000, guid: e9c4da07dec84e440bc5ce22500f0a2e, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_9b3c98decac54749bc4fefcdf27a61ac_Texture_1: + m_Texture: {fileID: 2800000, guid: e9c4da07dec84e440bc5ce22500f0a2e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_D17B323C_Texture_1: m_Texture: {fileID: 2800000, guid: 4f1015d86699e824f808554286b883b6, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_bddcb008c3b646d583151f75b6bec9dd_Texture_1: + m_Texture: {fileID: 2800000, guid: 4f1015d86699e824f808554286b883b6, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SpecularColorMap: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} @@ -213,6 +221,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/21.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/21.mat index 9db3205c53f..dbd09efc536 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/21.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/21.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -103,6 +103,10 @@ Material: m_Texture: {fileID: 2800000, guid: 4b1f9f1b31bb3dd42aad46703e1da91b, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_4ad1c5757f9e46cf98987aeeb2710731_Texture_1: + m_Texture: {fileID: 2800000, guid: aed9f348a004bff4987b87e0f1c072ec, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_5939B2BD_Texture_1: m_Texture: {fileID: 2800000, guid: e9c4da07dec84e440bc5ce22500f0a2e, type: 3} m_Scale: {x: 1, y: 1} @@ -123,6 +127,10 @@ Material: m_Texture: {fileID: 2800000, guid: aed9f348a004bff4987b87e0f1c072ec, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_f62ffc6990434899bb5d49621c1ef4fa_Texture_1: + m_Texture: {fileID: 2800000, guid: 4b1f9f1b31bb3dd42aad46703e1da91b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SpecularColorMap: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} @@ -221,6 +229,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/22.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/22.mat index c0d58d8f260..6dd48da397f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/22.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/22.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -99,6 +99,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_103c03151f104a988ddb066d45c8b20d_Texture_1: + m_Texture: {fileID: 2800000, guid: 65a8d3a22d015e44baa453611634cb63, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_445b310ded9e48ce89eb2de59c3eb296_Texture_1: m_Texture: {fileID: 2800000, guid: 0b12b8920ebf9474b99a2e124dea26ee, type: 3} m_Scale: {x: 1, y: 1} @@ -115,6 +119,10 @@ Material: m_Texture: {fileID: 2800000, guid: 65a8d3a22d015e44baa453611634cb63, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_93a4424a21524ceb9d3f64dc657f2e55_Texture_1: + m_Texture: {fileID: 2800000, guid: 0b12b8920ebf9474b99a2e124dea26ee, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_BED8FCB2_Texture_1: m_Texture: {fileID: 2800000, guid: 4b1f9f1b31bb3dd42aad46703e1da91b, type: 3} m_Scale: {x: 1, y: 1} @@ -221,6 +229,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/23.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/23.mat index 566ddf1c7a6..6928abe483b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/23.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/23.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -99,6 +99,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_94317f7616a747f6a290318bcc10826b_Texture_1: + m_Texture: {fileID: 2800000, guid: 65a8d3a22d015e44baa453611634cb63, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_9A9546A1_Texture_1: m_Texture: {fileID: 2800000, guid: 0b12b8920ebf9474b99a2e124dea26ee, type: 3} m_Scale: {x: 1, y: 1} @@ -107,6 +111,10 @@ Material: m_Texture: {fileID: 2800000, guid: 0b12b8920ebf9474b99a2e124dea26ee, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_9fcf0979c42c448ea7afa53e17dc7d4f_Texture_1: + m_Texture: {fileID: 2800000, guid: 0b12b8920ebf9474b99a2e124dea26ee, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_B4F2EFC2_Texture_1: m_Texture: {fileID: 2800000, guid: 65a8d3a22d015e44baa453611634cb63, type: 3} m_Scale: {x: 1, y: 1} @@ -213,6 +221,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/Cube.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/Cube.mat index dd8b6c038a9..c1362a6d59a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/Cube.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8106_UnlitShadowMatte/Cube.mat @@ -183,6 +183,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/HD.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/HD.mat index 7774e9fe36c..4d440a9d0b2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/HD.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/HD.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -39,6 +39,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -46,10 +47,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -66,12 +70,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/PBRboi.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/PBRboi.mat index 4acfb9aa8bf..a1839467fe0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/PBRboi.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/PBRboi.mat @@ -9,7 +9,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: PBRboi m_Shader: {fileID: 4800000, guid: 330f831fb8dcd1b498b27407db29e71b, type: 3} - m_ShaderKeywords: _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -24,6 +24,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -31,10 +32,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -51,12 +55,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -79,4 +85,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/SGVertexRotationHDLit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/SGVertexRotationHDLit.mat index d5306086def..72a5254a91b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/SGVertexRotationHDLit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/SGVertexRotationHDLit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -45,6 +45,7 @@ Material: m_Floats: - Vector1_9728B000: 7 - Vector1_CAC83531: 1 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -52,10 +53,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -72,12 +76,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/SGVertexRotationPBR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/SGVertexRotationPBR.mat index 0e3dcde8044..0a42b0fd6b9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/SGVertexRotationPBR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/SGVertexRotationPBR.mat @@ -9,7 +9,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SGVertexRotationPBR m_Shader: {fileID: 4800000, guid: 3f08d4d70c34c774993f41347910264e, type: 3} - m_ShaderKeywords: _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -32,6 +32,7 @@ Material: m_Floats: - Vector1_9728B000: 7 - Vector1_CAC83531: 1 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -39,10 +40,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -59,12 +63,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -87,4 +93,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/SGVertexWaveHDLit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/SGVertexWaveHDLit.mat index cb56a1afc9d..ed7a4f3f02c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/SGVertexWaveHDLit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/SGVertexWaveHDLit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SGVertexWaveHDLit m_Shader: {fileID: 4800000, guid: 7673e4256ab954641926d59f47d4499f, type: 3} - m_ShaderKeywords: _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -43,6 +43,7 @@ Material: - Vector1_59861A97: 6 - Vector1_6B058E37: 999 - Vector1_895C97D6: 0.3 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -50,10 +51,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/SGVertexWaveUnlit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/SGVertexWaveUnlit.mat index 1c8ac9b890c..cb6019790fd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/SGVertexWaveUnlit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8201_VertexAnimation/SGVertexWaveUnlit.mat @@ -29,6 +29,7 @@ Material: - Vector1_59861A97: 2.5 - Vector1_6B058E37: -0.1 - Vector1_895C97D6: 0.2 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -36,10 +37,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 - _RenderQueueType: 1 @@ -61,6 +64,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -83,4 +87,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8202_BentNormals/SG_Bent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8202_BentNormals/SG_Bent.mat index 221973630ad..518947e6fea 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8202_BentNormals/SG_Bent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8202_BentNormals/SG_Bent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_Bent m_Shader: {fileID: 4800000, guid: 26717ac03df1dcd43bce5be22d2556c0, type: 3} - m_ShaderKeywords: _DISABLE_SSR _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -47,6 +47,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -54,10 +55,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -74,12 +78,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/Lit_BakedEmission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/Lit_BakedEmission.mat index 5761e6ae29d..d6921fe9af2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/Lit_BakedEmission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/Lit_BakedEmission.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -208,6 +208,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/Lit_RealtimeEmission.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/Lit_RealtimeEmission.mat index d9b0ac9707e..cf714df213c 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/Lit_RealtimeEmission.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/Lit_RealtimeEmission.mat @@ -195,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -286,4 +287,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/SG_EmissionAlbedoNoAffects.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/SG_EmissionAlbedoNoAffects.mat index 33d2215628c..a855bc6c32d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/SG_EmissionAlbedoNoAffects.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/SG_EmissionAlbedoNoAffects.mat @@ -30,6 +30,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -37,10 +38,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -57,12 +61,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -86,4 +92,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/SG_EmissionAlbedoNoAffectsBaked.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/SG_EmissionAlbedoNoAffectsBaked.mat index 8b7de31f507..a5c42d49be3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/SG_EmissionAlbedoNoAffectsBaked.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/SG_EmissionAlbedoNoAffectsBaked.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -43,6 +43,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -50,10 +51,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -70,12 +74,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/SG_EmissionBaked.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/SG_EmissionBaked.mat index e90486b7a56..568a72db554 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/SG_EmissionBaked.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/SG_EmissionBaked.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_EmissionBaked m_Shader: {fileID: 4800000, guid: f6875cc15c658804086e31f155407bde, type: 3} - m_ShaderKeywords: _DISABLE_SSR _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 2 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -39,6 +39,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -46,10 +47,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -66,12 +70,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/SG_EmissionRealT.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/SG_EmissionRealT.mat index f2a5962027f..0cc09577349 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/SG_EmissionRealT.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8203_Emission/SG_EmissionRealT.mat @@ -9,7 +9,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: SG_EmissionRealT m_Shader: {fileID: 4800000, guid: f6875cc15c658804086e31f155407bde, type: 3} - m_ShaderKeywords: _DISABLE_SSR _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 1 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -26,6 +26,7 @@ Material: serializedVersion: 3 m_TexEnvs: [] m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -33,10 +34,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -53,12 +57,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -81,4 +87,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8204_CustomSpecOcclusion/CustomSpecOcclusion.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8204_CustomSpecOcclusion/CustomSpecOcclusion.mat index 8f32fa1cbe0..c9eaa0a4dc5 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8204_CustomSpecOcclusion/CustomSpecOcclusion.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8204_CustomSpecOcclusion/CustomSpecOcclusion.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: CustomSpecOcclusion m_Shader: {fileID: 4800000, guid: 4c3270cffc718274d8125f46df8eadf5, type: 3} - m_ShaderKeywords: _DISABLE_SSR _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -55,6 +55,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -63,11 +64,14 @@ Material: - _CoatMask: 0.95 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _Metallic: 0.9 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -85,12 +89,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/HDSceneColorMaterialLit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/HDSceneColorMaterialLit.mat index cd7a74a8770..970891275d8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/HDSceneColorMaterialLit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/HDSceneColorMaterialLit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: HDSceneColorMaterialLit m_Shader: {fileID: -6465566751694194690, guid: 784bd5308e576e24387ec115c5e2d66f, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -131,6 +131,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -200,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -244,6 +246,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/HDSceneColorMaterialUnlit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/HDSceneColorMaterialUnlit.mat index 9c628e5b340..1a321ef0c88 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/HDSceneColorMaterialUnlit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/HDSceneColorMaterialUnlit.mat @@ -116,6 +116,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -185,6 +186,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -228,6 +230,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UVBase: 0 - _UVDetail: 0 @@ -266,4 +269,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/SceneColorMaterialLit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/SceneColorMaterialLit.mat index 94d04e73755..8b9e4d2c6a4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/SceneColorMaterialLit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/SceneColorMaterialLit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: SceneColorMaterialLit m_Shader: {fileID: -6465566751694194690, guid: 7195fac95cd22264980f0a67951bb2d4, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -129,6 +129,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -198,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -242,6 +244,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/SceneColorMaterialUnlit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/SceneColorMaterialUnlit.mat index 4783cc6f497..33f19328a64 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/SceneColorMaterialUnlit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/SceneColorMaterialUnlit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -196,6 +197,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -239,6 +241,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/SceneDepthMaterialLit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/SceneDepthMaterialLit.mat index 67d2e384f15..4d0d89b77c6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/SceneDepthMaterialLit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/SceneDepthMaterialLit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,8 +23,8 @@ Material: m_Name: SceneDepthMaterialLit m_Shader: {fileID: -6465566751694194690, guid: f0920199eae002a4ea89225464a38e44, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -129,6 +129,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -198,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -242,6 +244,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/SceneDepthMaterialUnlit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/SceneDepthMaterialUnlit.mat index cc6341537a5..8ee099a3d7a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/SceneDepthMaterialUnlit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8205_SceneDepthColorNodes/SceneDepthMaterialUnlit.mat @@ -114,6 +114,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -183,6 +184,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -226,6 +228,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UVBase: 0 - _UVDetail: 0 @@ -263,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8206_VertexNormalTangent/Shader Graphs_SG_vertexNormalTangent_Lit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8206_VertexNormalTangent/Shader Graphs_SG_vertexNormalTangent_Lit.mat index 353f3af0e01..2c97abaa1af 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8206_VertexNormalTangent/Shader Graphs_SG_vertexNormalTangent_Lit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/8x_ShaderGraph/8206_VertexNormalTangent/Shader Graphs_SG_vertexNormalTangent_Lit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -47,6 +47,7 @@ Material: - Vector1_3d5f4a898a21409794bdc6e2b7fa6d6b: 0 - Vector1_573d9e618521464da296cbf51a3bf762: 10 - Vector1_d4504f57ae6f4b00966847403c2a1b24: 2 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -54,10 +55,13 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _RayTracing: 0 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 @@ -74,12 +78,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9001_LODTransition/9001_LOD-Transition_Display.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9001_LODTransition/9001_LOD-Transition_Display.mat index 29745b08294..68250c7a169 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9001_LODTransition/9001_LOD-Transition_Display.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9001_LODTransition/9001_LOD-Transition_Display.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/9801_Lit_Blue.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/9801_Lit_Blue.mat index a15b77b2d7c..4ba952bf214 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/9801_Lit_Blue.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/9801_Lit_Blue.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/9801_Lit_Green.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/9801_Lit_Green.mat index 0596bfd40e0..f8f3efb6163 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/9801_Lit_Green.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/9801_Lit_Green.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/9801_Lit_Red.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/9801_Lit_Red.mat index e851cdf2f43..8892b99faaa 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/9801_Lit_Red.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/9801_Lit_Red.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/9801_Viewer.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/9801_Viewer.mat index 46fa9b07a11..47cdcc450b7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/9801_Viewer.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/9801_Viewer.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -201,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/checker.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/checker.mat index 4411eea0902..b04337d866a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/checker.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9002_FrameSettings_LOD/checker.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9003_CameraRelativeRendering/Floor.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9003_CameraRelativeRendering/Floor.mat index b5ae8b50baa..cb84756bebd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9003_CameraRelativeRendering/Floor.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9003_CameraRelativeRendering/Floor.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9003_CameraRelativeRendering/pointlighht.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9003_CameraRelativeRendering/pointlighht.mat index c48b3727211..fcde778f8cd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9003_CameraRelativeRendering/pointlighht.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9003_CameraRelativeRendering/pointlighht.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9003_CameraRelativeRendering/triplanar.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9003_CameraRelativeRendering/triplanar.mat index 1536a4da188..fb1409cca05 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9003_CameraRelativeRendering/triplanar.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9003_CameraRelativeRendering/triplanar.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9004_MultiViewport/MultiViewport_Material.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9004_MultiViewport/MultiViewport_Material.mat index 0ad3711ed0e..4ba585febdb 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9004_MultiViewport/MultiViewport_Material.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9004_MultiViewport/MultiViewport_Material.mat @@ -188,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit.mat index 5b169936eba..4f2bdc23a4e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit.mat @@ -188,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_Add.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_Add.mat index 5119c9adcfe..fc8c0ab6407 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_Add.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_Add.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_Add_AfterPost.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_Add_AfterPost.mat index 382a80ce9fc..989ff26d2ce 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_Add_AfterPost.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_Add_AfterPost.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -268,4 +269,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_AfterPost.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_AfterPost.mat index 3501f55738d..941b5976ab9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_AfterPost.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_AfterPost.mat @@ -188,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_Alpha.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_Alpha.mat index ddc729b9cdd..9537eeb4c78 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_Alpha.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_Alpha.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_Alpha_AfterPost.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_Alpha_AfterPost.mat index ac8a4e76b8e..e9d4f0aa189 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_Alpha_AfterPost.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9005_AfterPostProcess/TestAfterPostProcess_Unlit_Alpha_AfterPost.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit.mat index 1ee2c91c79d..438542c1fb2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_Decals.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_Decals.mat index a0ff91f9983..77813146527 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_Decals.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_Decals.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_Decals_SSS.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_Decals_SSS.mat index a9179a453f6..e8a0fa0b798 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_Decals_SSS.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_Decals_SSS.mat @@ -188,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSR.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSR.mat index 162b1d473af..96a29275b33 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSR.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSR.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -200,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSR_Decals.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSR_Decals.mat index 7f2025f28d4..12fbbb5b892 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSR_Decals.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSR_Decals.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSR_Decals_SSS.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSR_Decals_SSS.mat index ad2b0fa2728..03684141f58 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSR_Decals_SSS.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSR_Decals_SSS.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -201,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSR_SSS.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSR_SSS.mat index 6d5c0a3645c..99e71857f8b 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSR_SSS.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSR_SSS.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -201,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSS.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSS.mat index dd27d9c087c..47b77312dad 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSS.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Lit_SSS.mat @@ -188,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Projector.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Projector.mat index 494ea590b4a..5ac3355a146 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Projector.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Projector.mat @@ -274,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_Decal_Mat.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_Decal_Mat.mat index 8ec1cca62b0..28923ed7671 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_Decal_Mat.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_Decal_Mat.mat @@ -113,6 +113,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -185,6 +186,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -228,6 +230,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -269,4 +272,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_Decal_SSS_Mat.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_Decal_SSS_Mat.mat index c73aefd0e3b..407ba14d59f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_Decal_SSS_Mat.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_Decal_SSS_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -126,6 +126,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -199,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -242,6 +244,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_Mat.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_Mat.mat index c70598a1159..1398d924b04 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_Mat.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,7 +23,7 @@ Material: m_Name: Stencil_StackLit_Mat m_Shader: {fileID: -6465566751694194690, guid: d9120eb615483354d875695a0635e0f8, type: 3} - m_ShaderKeywords: _DISABLE_SSR _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -127,6 +127,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -199,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -230,7 +232,7 @@ Material: - _StencilWriteMaskMV: 40 - _Stiffness: 1 - _SubsurfaceMask: 1 - - _SupportDecals: 1 + - _SupportDecals: 0 - _SurfaceType: 0 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 @@ -242,6 +244,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSR_Decal_Mat.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSR_Decal_Mat.mat index 28abec493ab..9cb746f27b9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSR_Decal_Mat.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSR_Decal_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -126,6 +126,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -198,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -241,6 +243,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSR_Decal_SSS_Mat.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSR_Decal_SSS_Mat.mat index 5436f95cb6f..93fb38f3cf8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSR_Decal_SSS_Mat.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSR_Decal_SSS_Mat.mat @@ -113,6 +113,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -186,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -229,6 +231,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 @@ -271,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSR_Mat.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSR_Mat.mat index f774036095d..6c98a1d3770 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSR_Mat.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSR_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,7 +23,7 @@ Material: m_Name: Stencil_StackLit_SSR_Mat m_Shader: {fileID: -6465566751694194690, guid: e7655d3558b203f44816cb27b5bf78b6, type: 3} - m_ShaderKeywords: _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -126,6 +126,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -198,6 +199,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -229,7 +231,7 @@ Material: - _StencilWriteMaskMV: 40 - _Stiffness: 1 - _SubsurfaceMask: 1 - - _SupportDecals: 1 + - _SupportDecals: 0 - _SurfaceType: 0 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 @@ -241,6 +243,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSR_SSS_Mat.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSR_SSS_Mat.mat index 1b1196b159b..cc2c06637b3 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSR_SSS_Mat.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSR_SSS_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,7 +23,7 @@ Material: m_Name: Stencil_StackLit_SSR_SSS_Mat m_Shader: {fileID: -6465566751694194690, guid: 5fde891b3850936488620b29e1e23c0c, type: 3} - m_ShaderKeywords: _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -126,6 +126,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -199,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -230,7 +232,7 @@ Material: - _StencilWriteMaskMV: 40 - _Stiffness: 1 - _SubsurfaceMask: 1 - - _SupportDecals: 1 + - _SupportDecals: 0 - _SurfaceType: 0 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 @@ -242,6 +244,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSS_Mat.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSS_Mat.mat index 59a2286d26d..28a0d8888bc 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSS_Mat.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_StackLit_SSS_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,7 +23,7 @@ Material: m_Name: Stencil_StackLit_SSS_Mat m_Shader: {fileID: -6465566751694194690, guid: 7535cb9e524537f46af3830a373a4c40, type: 3} - m_ShaderKeywords: _DISABLE_SSR _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -126,6 +126,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -199,6 +200,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -230,7 +232,7 @@ Material: - _StencilWriteMaskMV: 40 - _Stiffness: 1 - _SubsurfaceMask: 1 - - _SupportDecals: 1 + - _SupportDecals: 0 - _SurfaceType: 0 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 @@ -242,6 +244,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Unlit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Unlit.mat index a283527aad4..554ad8156fc 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Unlit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Unlit.mat @@ -188,6 +188,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -270,4 +271,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Unlit_SG_Mat.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Unlit_SG_Mat.mat index ba24c1eca8c..07f230db1d9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Unlit_SG_Mat.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9006_StencilUsage/Stencil_Unlit_SG_Mat.mat @@ -113,6 +113,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -185,6 +186,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -228,6 +230,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UVBase: 0 - _UVDetail: 0 @@ -268,4 +271,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9007_CameraAlphaComposition/AlphaCompositingMaterial_Alpha.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9007_CameraAlphaComposition/AlphaCompositingMaterial_Alpha.mat index ee690d02947..986c1a1bed8 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9007_CameraAlphaComposition/AlphaCompositingMaterial_Alpha.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9007_CameraAlphaComposition/AlphaCompositingMaterial_Alpha.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -198,6 +198,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9007_CameraAlphaComposition/GenerateComposite.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9007_CameraAlphaComposition/GenerateComposite.mat index 7805a978557..1e2251fd740 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9007_CameraAlphaComposition/GenerateComposite.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9007_CameraAlphaComposition/GenerateComposite.mat @@ -186,6 +186,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9007_CameraAlphaComposition/UseComposite.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9007_CameraAlphaComposition/UseComposite.mat index 7725904b31b..510d311fbd4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9007_CameraAlphaComposition/UseComposite.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9007_CameraAlphaComposition/UseComposite.mat @@ -186,6 +186,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -267,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_AxF.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_AxF.mat index 91d33b30c74..3110350c7c0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_AxF.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_AxF.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -22,7 +22,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: M_AxF m_Shader: {fileID: 4800000, guid: 6510c57cccce5674092bdc0dd1ae98c1, type: 3} - m_ShaderKeywords: _AXF_BRDF_TYPE_SVBRDF + m_ShaderKeywords: _AXF_BRDF_TYPE_SVBRDF _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -257,6 +257,7 @@ Material: - _IridescenceMask: 1 - _IridescenceThickness: 1 - _LinkDetailsWithBase: 1 + - _MappingMode: 0 - _MaterialID: 1 - _MaterialTilingU: 1 - _MaterialTilingV: 1 @@ -268,8 +269,10 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 + - _PlanarSpace: 0 - _PreRefractionPass: 0 - _ReceivesSSR: 1 + - _ReceivesSSRTransparent: 0 - _RefractionModel: 0 - _SSRefractionProjectionModel: 0 - _SVBRDF_BRDFType: 3 @@ -327,6 +330,7 @@ Material: - _EmissiveColor: {r: 0, g: 0, b: 0, a: 1} - _InvPrimScale: {r: 1, g: 1, b: 0, a: 0} - _IridescenceThicknessRemap: {r: 0, g: 1, b: 0, a: 0} + - _MappingMask: {r: 1, g: 0, b: 0, a: 0} - _Material_SO: {r: 1, g: 1, b: 0, a: 0} - _SVBRDF_AlphaMap_SO: {r: 1, g: 1, b: 0, a: 0} - _SVBRDF_AnisoRotationMap_SO: {r: 1, g: 1, b: 0, a: 0} diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_Fabric.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_Fabric.mat index 3c61bc3864a..82b25c9e250 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_Fabric.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_Fabric.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -138,6 +138,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -215,6 +216,7 @@ Material: - _NormalMapSpace: 0 - _NormalMapStrength: 1 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -266,6 +268,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_LayeredLit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_LayeredLit.mat index 5f6acd90ade..6bc79e2cf0e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_LayeredLit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_LayeredLit.mat @@ -455,6 +455,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -594,4 +595,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_LineMaterial.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_LineMaterial.mat index 098aad152c9..e9d76811335 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_LineMaterial.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_LineMaterial.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -204,6 +204,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_Lit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_Lit.mat index 3b534bb04dc..cfeb17b8f0e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_Lit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_Lit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -201,6 +201,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_StackLit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_StackLit.mat index 3adafae4e6a..0cc4166b377 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_StackLit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_StackLit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -126,6 +126,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -194,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -238,6 +240,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_Unlit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_Unlit.mat index 74c008e5ced..7a8e26aa50f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_Unlit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9301_MotionVectors/M_Unlit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -204,6 +204,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9401_MSAA/M_GreenLit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9401_MSAA/M_GreenLit.mat index fbac831bcd4..c823012696e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9401_MSAA/M_GreenLit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9401_MSAA/M_GreenLit.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9401_MSAA/M_RedLit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9401_MSAA/M_RedLit.mat index 244a73c8af8..38f7c8f5caf 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9401_MSAA/M_RedLit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9401_MSAA/M_RedLit.mat @@ -187,6 +187,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9401_MSAA/M_TransparentBlueLit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9401_MSAA/M_TransparentBlueLit.mat index 38034aed454..9c6cf194976 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9401_MSAA/M_TransparentBlueLit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9401_MSAA/M_TransparentBlueLit.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -275,4 +276,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9401_MSAA/M_TransparentRefractive.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9401_MSAA/M_TransparentRefractive.mat index 8f147966a93..fc46d54f69f 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9401_MSAA/M_TransparentRefractive.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9401_MSAA/M_TransparentRefractive.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_AxF.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_AxF.mat index ab8cba81157..3c31cf84cb7 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_AxF.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_AxF.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -521,6 +521,7 @@ Material: - _LinkDetailsWithBase1: 1 - _LinkDetailsWithBase2: 1 - _LinkDetailsWithBase3: 1 + - _MappingMode: 0 - _MaterialID: 1 - _MaterialTilingU: 0.21 - _MaterialTilingV: 0.37 @@ -549,6 +550,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 + - _PlanarSpace: 0 - _PreRefractionPass: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 1 @@ -676,6 +678,7 @@ Material: - _EmissiveColorLDR: {r: 0, g: 0, b: 0, a: 1} - _InvPrimScale: {r: 1, g: 1, b: 0, a: 0} - _IridescenceThicknessRemap: {r: 0, g: 1, b: 0, a: 0} + - _MappingMask: {r: 1, g: 0, b: 0, a: 0} - _Material_SO: {r: 0.34, g: 0.08, b: 0.4, a: 0.4} - _SVBRDF_AlphaMap_SO: {r: 1, g: 1, b: 0, a: 0} - _SVBRDF_AnisoRotationMap_SO: {r: 1, g: 1, b: 0, a: 0} diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_LayeredLit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_LayeredLit.mat index 368dffd5137..93629c217de 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_LayeredLit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_LayeredLit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -545,6 +545,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_LayeredLitTessellation.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_LayeredLitTessellation.mat index 1bb8fb2a5d4..bd8acbdd1cd 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_LayeredLitTessellation.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_LayeredLitTessellation.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -475,6 +475,7 @@ Material: - _OpacityAsDensity1: 0 - _OpacityAsDensity2: 0 - _OpacityAsDensity3: 0 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_Lit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_Lit.mat index 362b2f2aaae..c9383d7ed14 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_Lit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_Lit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -207,6 +207,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_LitTessellation.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_LitTessellation.mat index 0a1663c366d..1f0f3d531ac 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_LitTessellation.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_LitTessellation.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -206,6 +206,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_Unlit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_Unlit.mat index 5cd83ce0957..dad4bef90f9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_Unlit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_HDRP_Unlit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -209,6 +209,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Eye.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Eye.mat index 8a3320f3fb5..be486eee08a 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Eye.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Eye.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -104,6 +104,10 @@ Material: m_Texture: {fileID: 2800000, guid: 3f9313f68c2869648b020663f29c8420, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_3585dd9854944427ba81565da7ebb4d4_Texture_1: + m_Texture: {fileID: 2800000, guid: 3f9313f68c2869648b020663f29c8420, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_E46AEF4A_Texture_1: m_Texture: {fileID: 2800000, guid: 3f9313f68c2869648b020663f29c8420, type: 3} m_Scale: {x: 1, y: 1} @@ -211,6 +215,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -244,7 +249,7 @@ Material: - _StencilWriteMaskMV: 40 - _Stiffness: 1 - _SubsurfaceMask: 1 - - _SupportDecals: 0 + - _SupportDecals: 1 - _SurfaceType: 0 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Fabric.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Fabric.mat index 1cb8c0f9003..b6d29c48d65 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Fabric.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Fabric.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -100,6 +100,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_028befed9c4d4311900e9b95fd3dad9d_Texture_1: + m_Texture: {fileID: 2800000, guid: 3f9313f68c2869648b020663f29c8420, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_30B74B6C_Texture_1: m_Texture: {fileID: 2800000, guid: 3f9313f68c2869648b020663f29c8420, type: 3} m_Scale: {x: 1, y: 1} @@ -215,6 +219,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -248,7 +253,7 @@ Material: - _StencilWriteMaskMV: 40 - _Stiffness: 1 - _SubsurfaceMask: 1 - - _SupportDecals: 0 + - _SupportDecals: 1 - _SurfaceType: 0 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Hair.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Hair.mat index 508139af177..ccad87b84fa 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Hair.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Hair.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -112,6 +112,10 @@ Material: m_Texture: {fileID: 2800000, guid: 3f9313f68c2869648b020663f29c8420, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_9b63a1839d594416860e54830dfdcab3_Texture_1: + m_Texture: {fileID: 2800000, guid: 3f9313f68c2869648b020663f29c8420, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SpecularColorMap: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} @@ -215,6 +219,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -248,7 +253,7 @@ Material: - _StencilWriteMaskMV: 40 - _Stiffness: 1 - _SubsurfaceMask: 1 - - _SupportDecals: 0 + - _SupportDecals: 1 - _SurfaceType: 0 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Lit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Lit.mat index 6115391a535..54c00d0dc8e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Lit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Lit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,7 +23,7 @@ Material: m_Name: M_SG_Lit m_Shader: {fileID: -6465566751694194690, guid: 55272e59a56bf8541b011c7b02b2d7bc, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _ALPHATOMASK_ON _DISABLE_SSR + m_ShaderKeywords: _ALPHATEST_ON _ALPHATOMASK_ON _DISABLE_DECALS _DISABLE_SSR m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -109,6 +109,10 @@ Material: m_Texture: {fileID: 2800000, guid: 3f9313f68c2869648b020663f29c8420, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_d53343dd7383422184c5da3b34d1132d_Texture_1: + m_Texture: {fileID: 2800000, guid: 3f9313f68c2869648b020663f29c8420, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SpecularColorMap: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} @@ -212,6 +216,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_StackLit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_StackLit.mat index 7d3f4779327..355b46dbf89 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_StackLit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_StackLit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -103,6 +103,10 @@ Material: m_Texture: {fileID: 2800000, guid: 3f9313f68c2869648b020663f29c8420, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_932d47ba6f8e48aaa26ac31e5cb90c2b_Texture_1: + m_Texture: {fileID: 2800000, guid: 3f9313f68c2869648b020663f29c8420, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_ba9f843042bd4fb6a245d8a0f461fbf1_Texture_1: m_Texture: {fileID: 2800000, guid: 3f9313f68c2869648b020663f29c8420, type: 3} m_Scale: {x: 1, y: 1} @@ -135,6 +139,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 1 @@ -203,6 +208,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -247,6 +253,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Unlit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Unlit.mat index 6ca29c47b36..e8da990aaa9 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Unlit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9402_AlphaToMask/M_SG_Unlit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -112,6 +112,10 @@ Material: m_Texture: {fileID: 2800000, guid: 3f9313f68c2869648b020663f29c8420, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_d85f4c5dda824148ae2b3a4642f52f46_Texture_1: + m_Texture: {fileID: 2800000, guid: 3f9313f68c2869648b020663f29c8420, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SpecularColorMap: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} @@ -215,6 +219,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9500_LightScripting/trasnparnetShadowCasting.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9500_LightScripting/trasnparnetShadowCasting.mat index 59dcec121d8..2d6c7e5cad4 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9500_LightScripting/trasnparnetShadowCasting.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9500_LightScripting/trasnparnetShadowCasting.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9601_SkinnedMeshBatching/9601_LOD-Transition_Display.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9601_SkinnedMeshBatching/9601_LOD-Transition_Display.mat index e988244257d..f8cbc9dec1d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9601_SkinnedMeshBatching/9601_LOD-Transition_Display.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9601_SkinnedMeshBatching/9601_LOD-Transition_Display.mat @@ -189,6 +189,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -273,4 +274,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9601_SkinnedMeshBatching/HeadInstanced.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9601_SkinnedMeshBatching/HeadInstanced.mat index c2ac63c189c..64044329079 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9601_SkinnedMeshBatching/HeadInstanced.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9601_SkinnedMeshBatching/HeadInstanced.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -204,6 +204,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9700_CustomPass_FullScreen/Opaque.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9700_CustomPass_FullScreen/Opaque.mat index ca14d3dcaef..a5c7fea58d2 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9700_CustomPass_FullScreen/Opaque.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9700_CustomPass_FullScreen/Opaque.mat @@ -182,6 +182,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -263,4 +264,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9700_CustomPass_FullScreen/Transparent.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9700_CustomPass_FullScreen/Transparent.mat index ee55a7ff674..53d7cfaf6e0 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9700_CustomPass_FullScreen/Transparent.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9700_CustomPass_FullScreen/Transparent.mat @@ -184,6 +184,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 @@ -265,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9700_CustomPass_FullScreen/Unlit.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9700_CustomPass_FullScreen/Unlit.mat index 29de860eb75..c8d889ae19d 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9700_CustomPass_FullScreen/Unlit.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9700_CustomPass_FullScreen/Unlit.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9701_CustomPass_DrawRenderers/9701_UnlitRT.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9701_CustomPass_DrawRenderers/9701_UnlitRT.mat index 153faa67c30..e6f8c11dabf 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9701_CustomPass_DrawRenderers/9701_UnlitRT.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9701_CustomPass_DrawRenderers/9701_UnlitRT.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -196,6 +196,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9701_CustomPass_DrawRenderers/BackgroundCube.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9701_CustomPass_DrawRenderers/BackgroundCube.mat index c10b93c534f..36d35eecfd6 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9701_CustomPass_DrawRenderers/BackgroundCube.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9701_CustomPass_DrawRenderers/BackgroundCube.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -195,6 +195,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9702_CustomPass_API/9702_LitUV.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9702_CustomPass_API/9702_LitUV.mat index 6e7084331d3..7abbee77400 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9702_CustomPass_API/9702_LitUV.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9702_CustomPass_API/9702_LitUV.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -194,6 +194,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9702_CustomPass_API/9702_UnlitUVChecker.mat b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9702_CustomPass_API/9702_UnlitUVChecker.mat index 9417d8ff2b5..62bc134033e 100644 --- a/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9702_CustomPass_API/9702_UnlitUVChecker.mat +++ b/TestProjects/HDRP_Tests/Assets/GraphicTests/Scenes/9x_Other/9702_CustomPass_API/9702_UnlitUVChecker.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -202,6 +202,7 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 diff --git a/TestProjects/HDRP_Tests/Assets/ReferenceImages/Linear/LinuxEditor/Vulkan/None/8206_VertexNormalTangent.png.meta b/TestProjects/HDRP_Tests/Assets/ReferenceImages/Linear/LinuxEditor/Vulkan/None/8206_VertexNormalTangent.png.meta new file mode 100644 index 00000000000..bde39853536 --- /dev/null +++ b/TestProjects/HDRP_Tests/Assets/ReferenceImages/Linear/LinuxEditor/Vulkan/None/8206_VertexNormalTangent.png.meta @@ -0,0 +1,96 @@ +fileFormatVersion: 2 +guid: b157ecc19be831545b9df3b6273720b0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/TestProjects/HDRP_Tests/Assets/ReferenceImages/Linear/OSXEditor/Metal/None/8206_VertexNormalTangent.png.meta b/TestProjects/HDRP_Tests/Assets/ReferenceImages/Linear/OSXEditor/Metal/None/8206_VertexNormalTangent.png.meta new file mode 100644 index 00000000000..5f9fa92e3a5 --- /dev/null +++ b/TestProjects/HDRP_Tests/Assets/ReferenceImages/Linear/OSXEditor/Metal/None/8206_VertexNormalTangent.png.meta @@ -0,0 +1,96 @@ +fileFormatVersion: 2 +guid: 58ab2257e706c0e4f9c0ba86f70e10fd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/TestProjects/HDRP_Tests/Assets/ReferenceImages/Linear/WindowsEditor/Direct3D12/None/8206_VertexNormalTangent.png.meta b/TestProjects/HDRP_Tests/Assets/ReferenceImages/Linear/WindowsEditor/Direct3D12/None/8206_VertexNormalTangent.png.meta new file mode 100644 index 00000000000..4fdee7dfe4e --- /dev/null +++ b/TestProjects/HDRP_Tests/Assets/ReferenceImages/Linear/WindowsEditor/Direct3D12/None/8206_VertexNormalTangent.png.meta @@ -0,0 +1,96 @@ +fileFormatVersion: 2 +guid: 8e3de75463035924983445a6dc364c88 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/TestProjects/HDRP_Tests/Assets/ReferenceImages/Linear/WindowsEditor/Vulkan/None/8206_VertexNormalTangent.png.meta b/TestProjects/HDRP_Tests/Assets/ReferenceImages/Linear/WindowsEditor/Vulkan/None/8206_VertexNormalTangent.png.meta new file mode 100644 index 00000000000..817c821bbfe --- /dev/null +++ b/TestProjects/HDRP_Tests/Assets/ReferenceImages/Linear/WindowsEditor/Vulkan/None/8206_VertexNormalTangent.png.meta @@ -0,0 +1,96 @@ +fileFormatVersion: 2 +guid: aa5fcb93b8c192c4f87da0956ad927bd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: From e6f7dd882136ea8283165adc42bd4dbb1459d413 Mon Sep 17 00:00:00 2001 From: sebastienlagarde Date: Sun, 28 Jun 2020 21:21:41 +0200 Subject: [PATCH 31/32] Update hdrp Runtime project material --- .../Assets/Datas/Materials/Glass_PreRefr.mat | 2 +- .../Assets/Datas/Materials/LowResBubble.mat | 7 ++++--- .../Datas/Models/Bust/Materials/FacialHair.mat | 2 +- .../Assets/Datas/Models/Bust/Materials/Head.mat | 3 ++- .../Assets/Datas/Models/Bust/Materials/Jacket.mat | 3 ++- .../Assets/Datas/Models/IndoorPlant/Base.mat | 2 +- .../Assets/Datas/Models/IndoorPlant/Leaves.mat | 2 +- .../Datas/Models/IndoorPlant/SphereLight.mat | 2 +- .../Assets/Datas/Models/IndoorPlant/Stems.mat | 2 +- .../Assets/Datas/Models/LucyStatue/GlassLucy.mat | 2 +- .../Materials/ConstructionLight_Mat.mat | 2 +- .../Materials/DryWallPainted_Mat.mat | 2 +- .../001-HDTemplate/Materials/DryWall_Mat.mat | 2 +- .../Scenes/001-HDTemplate/Materials/Glass.mat | 2 +- .../Scenes/001-HDTemplate/Materials/Glass_Blur.mat | 2 +- .../Scenes/001-HDTemplate/Materials/Graffiti.mat | 2 +- .../Scenes/001-HDTemplate/Materials/Ground_Mat.mat | 2 +- .../Scenes/001-HDTemplate/Materials/Hammer_Mat.mat | 2 +- .../001-HDTemplate/Materials/HardHat_Mat.mat | 2 +- .../Scenes/001-HDTemplate/Materials/Jigsaw_Mat.mat | 2 +- .../001-HDTemplate/Materials/LightBulb_Mat.mat | 2 +- .../Scenes/001-HDTemplate/Materials/Liquid_Mat.mat | 2 +- .../Materials/Metal_Blue_Simple_Mat.mat | 2 +- .../001-HDTemplate/Materials/Metal_Simple_Mat.mat | 2 +- .../001-HDTemplate/Materials/MirrorDecal.mat | 2 +- .../Scenes/001-HDTemplate/Materials/OBS_Mat.mat | 2 +- .../001-HDTemplate/Materials/PaintBrush_Mat.mat | 2 +- .../001-HDTemplate/Materials/PaintCan_mat.mat | 2 +- .../001-HDTemplate/Materials/PaintLabel_Mat.mat | 2 +- .../001-HDTemplate/Materials/Plastic_Black_Mat.mat | 2 +- .../001-HDTemplate/Materials/Plastic_Gray_Mat.mat | 2 +- .../Materials/Plastic_Ridges_Mat.mat | 2 +- .../001-HDTemplate/Materials/Plastic_Rough_Mat.mat | 2 +- .../Materials/Plastic_Transparent.mat | 2 +- .../001-HDTemplate/Materials/Plastic_White_Mat.mat | 2 +- .../Materials/Plastic_Yellow_Mat.mat | 2 +- .../Scenes/001-HDTemplate/Materials/Strap_Mat.mat | 2 +- .../Scenes/001-HDTemplate/Materials/Stud_Mat.mat | 2 +- .../001-HDTemplate/Materials/WaterPuddle.mat | 2 +- .../Assets/Scenes/001-HDTemplate/Mirror.mat | 2 +- .../Assets/Scenes/001-HDTemplate/MirrorNoSSR.mat | 2 +- .../AllMaterials/AutodeskInteractive.mat | 8 ++++---- .../Scenes/002-HDMaterials/AllMaterials/AxF.mat | 2 +- .../AllMaterials/AxF_Transparent.mat | 2 +- .../Scenes/002-HDMaterials/AllMaterials/Eye.mat | 7 ++++++- .../AllMaterials/Eye_Transparent.mat | 6 +++++- .../Scenes/002-HDMaterials/AllMaterials/Fabric.mat | 2 +- .../AllMaterials/Fabric_Transparent.mat | 6 +++--- .../Scenes/002-HDMaterials/AllMaterials/Hair.mat | 2 +- .../AllMaterials/Hair_Transparent.mat | 6 +++--- .../002-HDMaterials/AllMaterials/LayeredLit.mat | 2 +- .../AllMaterials/LayeredLitTesselation.mat | 2 +- .../LayeredLitTesselation_Transparent.mat | 2 +- .../AllMaterials/LayeredLit_Transparent.mat | 2 +- .../Scenes/002-HDMaterials/AllMaterials/Lit.mat | 2 +- .../AllMaterials/LitTesselation.mat | 2 +- .../AllMaterials/LitTesselation_Transparent.mat | 2 +- .../AllMaterials/Lit_Transparent.mat | 2 +- .../002-HDMaterials/AllMaterials/StackLit.mat | 2 +- .../AllMaterials/StackLit_Transparent.mat | 6 +++--- .../Scenes/002-HDMaterials/AllMaterials/Unlit.mat | 2 +- .../AllMaterials/Unlit_Transparent.mat | 2 +- .../Scenes/002-HDMaterials/AnimatedDecal 1.mat | 6 +++++- .../Scenes/002-HDMaterials/AnimatedDecal 2.mat | 6 +++++- .../Scenes/002-HDMaterials/AnimatedDecal 3.mat | 6 +++++- .../Scenes/002-HDMaterials/AnimatedDecal 4.mat | 6 +++++- .../Scenes/002-HDMaterials/AnimatedDecal.mat | 6 +++++- .../Scenes/002-HDMaterials/AnimatedMeshDecal.mat | 14 +++++++++++++- .../Assets/Scenes/002-HDMaterials/Background.mat | 2 +- .../Assets/Scenes/002-HDMaterials/Decal-2.mat | 2 +- .../Assets/Scenes/002-HDMaterials/Decal.mat | 2 +- .../Assets/Scenes/002-HDMaterials/Distortion.mat | 2 +- .../Scenes/002-HDMaterials/MirrorWithoutSSR.mat | 2 +- .../Assets/Scenes/002-HDMaterials/Refraction.mat | 2 +- .../002-HDMaterials/RefractionDistortion.mat | 2 +- .../Scenes/003-VirtualTexturing/AnisotrpicMat.mat | 5 ++++- .../Scenes/003-VirtualTexturing/BiasGraphMat.mat | 5 ++++- .../Scenes/003-VirtualTexturing/CloudGraphMat.mat | 9 +++++++-- .../Scenes/003-VirtualTexturing/EmisUnlitMat.mat | 5 ++++- .../Scenes/003-VirtualTexturing/ExplicitLodMat.mat | 11 ++++++++++- .../Scenes/003-VirtualTexturing/EyeGraphMat.mat | 11 ++++++++++- .../Scenes/003-VirtualTexturing/FabricGraphMat.mat | 7 ++++++- .../Scenes/003-VirtualTexturing/HairGraphMat.mat | 7 ++++++- .../003-VirtualTexturing/KeywordGraphMat.mat | 9 ++++++++- .../KeywordGraphMat_Variant.mat | 9 ++++++++- .../Scenes/003-VirtualTexturing/LitGraphMat.mat | 7 ++++++- .../003-VirtualTexturing/LowQualGraphMat.mat | 7 ++++++- .../003-VirtualTexturing/MipEquivalentMat.mat | 9 ++++++++- .../003-VirtualTexturing/MultiSampleGraphMat.mat | 7 ++++++- .../Scenes/003-VirtualTexturing/PBRGraphMat.mat | 9 +++++++-- .../Scenes/003-VirtualTexturing/SSSGraphMat.mat | 7 ++++++- .../003-VirtualTexturing/StackLitGraphMat.mat | 7 ++++++- .../Scenes/003-VirtualTexturing/UnlitGraphMat.mat | 5 ++++- .../003-VirtualTexturing/VTSubGraphShaderMat.mat | 5 ++++- .../003-VirtualTexturing/VertexShaderMat.mat | 7 ++++++- .../VtSubGraphTexArgShaderMat.mat | 5 ++++- 96 files changed, 260 insertions(+), 109 deletions(-) diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Materials/Glass_PreRefr.mat b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Materials/Glass_PreRefr.mat index 2fec154132c..9bbf4c62c00 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Materials/Glass_PreRefr.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Materials/Glass_PreRefr.mat @@ -268,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Materials/LowResBubble.mat b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Materials/LowResBubble.mat index d4dbfce09f8..ce66dfdc53c 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Materials/LowResBubble.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Materials/LowResBubble.mat @@ -10,8 +10,8 @@ Material: m_Name: LowResBubble m_Shader: {fileID: -6465566751694194690, guid: ef3fd2fe1cf6c074a9322132aa0765f2, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _DOUBLESIDED_ON _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 1 @@ -119,6 +119,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 @@ -272,4 +273,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/Bust/Materials/FacialHair.mat b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/Bust/Materials/FacialHair.mat index 7b661c330bb..64d7215763c 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/Bust/Materials/FacialHair.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/Bust/Materials/FacialHair.mat @@ -267,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/Bust/Materials/Head.mat b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/Bust/Materials/Head.mat index e1834d77620..c14ad1922ba 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/Bust/Materials/Head.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/Bust/Materials/Head.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -154,6 +154,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/Bust/Materials/Jacket.mat b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/Bust/Materials/Jacket.mat index 923c5139e23..3a1e03b8cdb 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/Bust/Materials/Jacket.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/Bust/Materials/Jacket.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -153,6 +153,7 @@ Material: - _AORemapMax: 1 - _AORemapMin: 0 - _ATDistance: 1 + - _AddPrecomputedVelocity: 0 - _AlbedoAffectEmissive: 0 - _AlphaCutoff: 0.5 - _AlphaCutoffEnable: 0 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/IndoorPlant/Base.mat b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/IndoorPlant/Base.mat index 2225bc014f7..79d78c4efbc 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/IndoorPlant/Base.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/IndoorPlant/Base.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/IndoorPlant/Leaves.mat b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/IndoorPlant/Leaves.mat index 8a0debe956a..6b8bfe67a7d 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/IndoorPlant/Leaves.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/IndoorPlant/Leaves.mat @@ -268,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/IndoorPlant/SphereLight.mat b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/IndoorPlant/SphereLight.mat index 497137ea0b2..c31ad7647fc 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/IndoorPlant/SphereLight.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/IndoorPlant/SphereLight.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/IndoorPlant/Stems.mat b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/IndoorPlant/Stems.mat index 795fbd5d4c1..2bc56479c4f 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/IndoorPlant/Stems.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/IndoorPlant/Stems.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/LucyStatue/GlassLucy.mat b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/LucyStatue/GlassLucy.mat index f4adaf3a9fc..0658d21a05b 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/LucyStatue/GlassLucy.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Datas/Models/LucyStatue/GlassLucy.mat @@ -269,4 +269,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/ConstructionLight_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/ConstructionLight_Mat.mat index b5aab2fc185..60f05540901 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/ConstructionLight_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/ConstructionLight_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/DryWallPainted_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/DryWallPainted_Mat.mat index 9ead4f3dc17..3a5281650cc 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/DryWallPainted_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/DryWallPainted_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/DryWall_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/DryWall_Mat.mat index 174158eb230..1a5bb9232f1 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/DryWall_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/DryWall_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Glass.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Glass.mat index 8cc42f22b72..5a544b09d61 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Glass.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Glass.mat @@ -268,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Glass_Blur.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Glass_Blur.mat index 0087476768d..614b6173c3f 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Glass_Blur.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Glass_Blur.mat @@ -268,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Graffiti.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Graffiti.mat index ed78bdd3150..23b10e26ac8 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Graffiti.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Graffiti.mat @@ -277,4 +277,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Ground_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Ground_Mat.mat index a760c5bf330..4c56de65946 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Ground_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Ground_Mat.mat @@ -319,4 +319,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Hammer_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Hammer_Mat.mat index ebcf135d607..d862d0144d5 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Hammer_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Hammer_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/HardHat_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/HardHat_Mat.mat index 9470f69262e..b92c7a2dc1c 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/HardHat_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/HardHat_Mat.mat @@ -319,4 +319,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Jigsaw_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Jigsaw_Mat.mat index ba08bde4d36..e0e74ce86e7 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Jigsaw_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Jigsaw_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/LightBulb_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/LightBulb_Mat.mat index c9d2faa2a1f..904e26d1d68 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/LightBulb_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/LightBulb_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Liquid_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Liquid_Mat.mat index 40ae5ca0328..776ee048f9c 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Liquid_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Liquid_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Metal_Blue_Simple_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Metal_Blue_Simple_Mat.mat index 3322c3aea5b..225f3bab439 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Metal_Blue_Simple_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Metal_Blue_Simple_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Metal_Simple_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Metal_Simple_Mat.mat index a3658721a00..732504e1f12 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Metal_Simple_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Metal_Simple_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/MirrorDecal.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/MirrorDecal.mat index f27901c5b56..56719474e2c 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/MirrorDecal.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/MirrorDecal.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/OBS_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/OBS_Mat.mat index e0a0e855e6c..c5138f9d5f6 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/OBS_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/OBS_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/PaintBrush_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/PaintBrush_Mat.mat index dfd75ba0256..3f4c318a728 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/PaintBrush_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/PaintBrush_Mat.mat @@ -319,4 +319,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/PaintCan_mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/PaintCan_mat.mat index efb6df93596..af92ae43ac8 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/PaintCan_mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/PaintCan_mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/PaintLabel_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/PaintLabel_Mat.mat index 3c091623a84..c07f171c220 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/PaintLabel_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/PaintLabel_Mat.mat @@ -319,4 +319,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Black_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Black_Mat.mat index 9a21e8baf15..a0042699985 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Black_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Black_Mat.mat @@ -319,4 +319,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Gray_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Gray_Mat.mat index 0fddd143977..2ec2828ad03 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Gray_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Gray_Mat.mat @@ -319,4 +319,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Ridges_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Ridges_Mat.mat index 6a36ece461f..a60c269c3aa 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Ridges_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Ridges_Mat.mat @@ -319,4 +319,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Rough_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Rough_Mat.mat index c272d9a51a0..cbbd5651bb2 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Rough_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Rough_Mat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Transparent.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Transparent.mat index 13cdbaa72d6..30786301219 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Transparent.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Transparent.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_White_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_White_Mat.mat index d7d6adc2270..977efd991f4 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_White_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_White_Mat.mat @@ -319,4 +319,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Yellow_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Yellow_Mat.mat index d237f4eac78..3849daf69ce 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Yellow_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Plastic_Yellow_Mat.mat @@ -319,4 +319,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Strap_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Strap_Mat.mat index 6f742a93c5f..4412be658a0 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Strap_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Strap_Mat.mat @@ -319,4 +319,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Stud_Mat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Stud_Mat.mat index ddd2b59d1b4..35f68c1609b 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Stud_Mat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/Stud_Mat.mat @@ -319,4 +319,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/WaterPuddle.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/WaterPuddle.mat index 0ed17f6495d..476953bdc23 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/WaterPuddle.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Materials/WaterPuddle.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Mirror.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Mirror.mat index f1c67841f3a..54baf38c253 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Mirror.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/Mirror.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/MirrorNoSSR.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/MirrorNoSSR.mat index 3faabb346b8..07dc9e27349 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/MirrorNoSSR.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/001-HDTemplate/MirrorNoSSR.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/AutodeskInteractive.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/AutodeskInteractive.mat index 6b7097c1d17..b676e17db87 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/AutodeskInteractive.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/AutodeskInteractive.mat @@ -9,7 +9,7 @@ Material: m_PrefabAsset: {fileID: 0} m_Name: AutodeskInteractive m_Shader: {fileID: 4800000, guid: 7252379db4c18b641b517f2c91bb57e1, type: 3} - m_ShaderKeywords: _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -185,7 +185,7 @@ Material: - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 - _EmissiveIntensityUnit: 0 - - _EnableBlendModePreserveSpecularLighting: 1 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _EnableGeometricSpecularAA: 0 - _EnergyConservingSpecularColor: 1 @@ -241,7 +241,7 @@ Material: - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 - _SubsurfaceMask: 1 - - _SupportDecals: 1 + - _SupportDecals: 0 - _SurfaceType: 0 - _TexWorldScale: 1 - _TexWorldScaleEmissive: 1 @@ -303,4 +303,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/AxF.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/AxF.mat index 436c022fe9d..dfbb0f9ae36 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/AxF.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/AxF.mat @@ -350,4 +350,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/AxF_Transparent.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/AxF_Transparent.mat index 637822960d9..3b741fe9ed4 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/AxF_Transparent.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/AxF_Transparent.mat @@ -350,4 +350,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Eye.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Eye.mat index ae2bb305e8f..e36ab9af8a7 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Eye.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Eye.mat @@ -121,6 +121,7 @@ Material: - _AlphaCutoffShadow: 0.5 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 + - _AlphaToMask: 0 - _Anisotropy: 0 - _BlendMode: 0 - _CoatMask: 0 @@ -180,13 +181,16 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - _ReceivesSSR: 1 + - _ReceivesSSRTransparent: 0 - _RefractionModel: 0 + - _RenderQueueType: 1 - _RequireSplitLighting: 1 - _SSRefractionProjectionModel: 0 - _Smoothness: 0.5 @@ -219,6 +223,7 @@ Material: - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 - _TransparentWritingMotionVec: 0 + - _TransparentZWrite: 0 - _UVBase: 0 - _UVDetail: 0 - _UVEmissive: 0 @@ -261,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Eye_Transparent.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Eye_Transparent.mat index efb8728c636..fd33a332dfb 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Eye_Transparent.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Eye_Transparent.mat @@ -122,6 +122,7 @@ Material: - _AlphaCutoffShadow: 0.5 - _AlphaDstBlend: 10 - _AlphaSrcBlend: 1 + - _AlphaToMask: 0 - _Anisotropy: 0 - _BlendMode: 0 - _CoatMask: 0 @@ -181,13 +182,16 @@ Material: - _Metallic: 0 - _NormalMapSpace: 0 - _NormalScale: 1 + - _OpaqueCullMode: 2 - _PPDLodThreshold: 5 - _PPDMaxSamples: 15 - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - _ReceivesSSR: 1 + - _ReceivesSSRTransparent: 0 - _RefractionModel: 0 + - _RenderQueueType: 1 - _RequireSplitLighting: 0 - _SSRefractionProjectionModel: 0 - _Smoothness: 0.5 @@ -262,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Fabric.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Fabric.mat index b6b655d2e03..778ec9aa805 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Fabric.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Fabric.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Fabric_Transparent.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Fabric_Transparent.mat index 5c798f6e913..e0dcc057d9a 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Fabric_Transparent.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Fabric_Transparent.mat @@ -10,8 +10,8 @@ Material: m_Name: Fabric_Transparent m_Shader: {fileID: -6465566751694194690, guid: bc0522f108e13e74fa9bd96d2ecb914e, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -268,4 +268,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Hair.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Hair.mat index b06faeffa5a..c12ce812862 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Hair.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Hair.mat @@ -271,4 +271,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Hair_Transparent.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Hair_Transparent.mat index 54468ecbcca..22dd863fb84 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Hair_Transparent.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Hair_Transparent.mat @@ -10,8 +10,8 @@ Material: m_Name: Hair_Transparent m_Shader: {fileID: -6465566751694194690, guid: 904e85bd6bd30d84888cdb5e96bd9c12, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON - _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING + _DISABLE_SSR_TRANSPARENT _DOUBLESIDED_ON _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 1 @@ -272,4 +272,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LayeredLit.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LayeredLit.mat index ee3a606d127..f65fcbdad75 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LayeredLit.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LayeredLit.mat @@ -607,4 +607,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LayeredLitTesselation.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LayeredLitTesselation.mat index a2665b3519d..fc7b6b765bf 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LayeredLitTesselation.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LayeredLitTesselation.mat @@ -607,4 +607,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LayeredLitTesselation_Transparent.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LayeredLitTesselation_Transparent.mat index 53e6aa9debb..a70a20da920 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LayeredLitTesselation_Transparent.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LayeredLitTesselation_Transparent.mat @@ -609,4 +609,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LayeredLit_Transparent.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LayeredLit_Transparent.mat index bbe888f50a2..606fed2df9c 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LayeredLit_Transparent.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LayeredLit_Transparent.mat @@ -609,4 +609,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Lit.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Lit.mat index d20337715cf..ac6ef3ea015 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Lit.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Lit.mat @@ -267,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LitTesselation.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LitTesselation.mat index 848dc50dc1f..89886dcf863 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LitTesselation.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LitTesselation.mat @@ -277,4 +277,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LitTesselation_Transparent.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LitTesselation_Transparent.mat index 3eef496481c..5418d8083ac 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LitTesselation_Transparent.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/LitTesselation_Transparent.mat @@ -278,4 +278,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Lit_Transparent.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Lit_Transparent.mat index 303e0adde91..e8704c1beca 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Lit_Transparent.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Lit_Transparent.mat @@ -269,4 +269,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/StackLit.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/StackLit.mat index 338feb621e2..c393e6a5efe 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/StackLit.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/StackLit.mat @@ -267,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/StackLit_Transparent.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/StackLit_Transparent.mat index e9f079f7e43..ce83fd2b054 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/StackLit_Transparent.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/StackLit_Transparent.mat @@ -10,8 +10,8 @@ Material: m_Name: StackLit_Transparent m_Shader: {fileID: -6465566751694194690, guid: eb443aefcbc480743893993fad713b7a, type: 3} - m_ShaderKeywords: _BLENDMODE_ALPHA _DISABLE_SSR_TRANSPARENT _ENABLE_FOG_ON_TRANSPARENT - _SURFACE_TYPE_TRANSPARENT + m_ShaderKeywords: _BLENDMODE_ALPHA _BLENDMODE_PRESERVE_SPECULAR_LIGHTING _DISABLE_SSR_TRANSPARENT + _ENABLE_FOG_ON_TRANSPARENT _SURFACE_TYPE_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -269,4 +269,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Unlit.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Unlit.mat index 710886db97c..e6f4951bcca 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Unlit.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Unlit.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Unlit_Transparent.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Unlit_Transparent.mat index 065e7c74df6..4a9c09ca73f 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Unlit_Transparent.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AllMaterials/Unlit_Transparent.mat @@ -267,4 +267,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal 1.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal 1.mat index d180fc6ef77..aedd7700f5a 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal 1.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal 1.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -41,6 +41,10 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_d6ba1463d51b438abece808d3c6efd17_Texture_1: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} m_Floats: - _CustomTime: 4.15 - _DecalMeshDepthBias: 0 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal 2.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal 2.mat index c9cf69b2d4c..a7a61fdcf6a 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal 2.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal 2.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -41,6 +41,10 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_d6ba1463d51b438abece808d3c6efd17_Texture_1: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} m_Floats: - _CustomTime: 4.15 - _DecalMeshDepthBias: 0 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal 3.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal 3.mat index 0739d160560..f9dcd691370 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal 3.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal 3.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -41,6 +41,10 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_d6ba1463d51b438abece808d3c6efd17_Texture_1: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} m_Floats: - _CustomTime: 4.15 - _DecalMeshDepthBias: 0 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal 4.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal 4.mat index a51c060b553..d842d6a0033 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal 4.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal 4.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -41,6 +41,10 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_d6ba1463d51b438abece808d3c6efd17_Texture_1: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} m_Floats: - _CustomTime: 4.15 - _DecalMeshDepthBias: 0 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal.mat index 2adfb07c90c..6eefd027f71 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedDecal.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -41,6 +41,10 @@ Material: m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_d6ba1463d51b438abece808d3c6efd17_Texture_1: + m_Texture: {fileID: 2800000, guid: fcecce6d2c9be8d418a27f0658a2210d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} m_Floats: - _CustomTime: 4.15 - _DecalMeshDepthBias: 0 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedMeshDecal.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedMeshDecal.mat index 864a127657f..dfdd3931e45 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedMeshDecal.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/AnimatedMeshDecal.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -41,6 +41,10 @@ Material: m_Texture: {fileID: 2800000, guid: f23830c1beb532d4a8bf9a720ef56e25, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_363637e1cabf4e52802eafff7462998c_Texture_1: + m_Texture: {fileID: 2800000, guid: 9afbfdeb6447dc74089f286f49995089, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTexture2D_5F69095A_Texture_1: m_Texture: {fileID: 2800000, guid: 9afbfdeb6447dc74089f286f49995089, type: 3} m_Scale: {x: 1, y: 1} @@ -57,6 +61,14 @@ Material: m_Texture: {fileID: 2800000, guid: 9afbfdeb6447dc74089f286f49995089, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_eed3d4cce23e4fc5a8be2f202d2e7a4b_Texture_1: + m_Texture: {fileID: 2800000, guid: f23830c1beb532d4a8bf9a720ef56e25, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SampleTexture2D_f29eace1c002424a904d8731fb32c0a7_Texture_1: + m_Texture: {fileID: 2800000, guid: 9f19737ffbb4a694caf1778274c346ab, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} m_Floats: - _CustomTime: 4.15 - _DecalMeshDepthBias: 0 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Background.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Background.mat index 81891849b04..620b5ffbd02 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Background.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Background.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Decal-2.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Decal-2.mat index 500f871f399..4e08e32d925 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Decal-2.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Decal-2.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Decal.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Decal.mat index 38588ad6e4d..b00e4a3a67e 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Decal.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Decal.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Distortion.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Distortion.mat index 01a42ceb0e8..cae87f1c0ee 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Distortion.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Distortion.mat @@ -265,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/MirrorWithoutSSR.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/MirrorWithoutSSR.mat index a7bcbbc0476..89e0e9d54ea 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/MirrorWithoutSSR.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/MirrorWithoutSSR.mat @@ -264,4 +264,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Refraction.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Refraction.mat index fba044015a9..c5664683860 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Refraction.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/Refraction.mat @@ -266,4 +266,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/RefractionDistortion.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/RefractionDistortion.mat index 82199600c62..644451a5afb 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/RefractionDistortion.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/002-HDMaterials/RefractionDistortion.mat @@ -265,4 +265,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/AnisotrpicMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/AnisotrpicMat.mat index 68164196744..05b37f1711d 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/AnisotrpicMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/AnisotrpicMat.mat @@ -47,6 +47,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -54,6 +55,7 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 @@ -80,6 +82,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -102,4 +105,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/BiasGraphMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/BiasGraphMat.mat index 8d7ad46e4af..698adf14a41 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/BiasGraphMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/BiasGraphMat.mat @@ -56,6 +56,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - Vector1_304AE820: 3 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -63,6 +64,7 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 @@ -89,6 +91,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -111,4 +114,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/CloudGraphMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/CloudGraphMat.mat index 034d77794f1..bbd7bf28db4 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/CloudGraphMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/CloudGraphMat.mat @@ -10,7 +10,7 @@ Material: m_Name: CloudGraphMat m_Shader: {fileID: -6465566751694194690, guid: ab27d72fec363a047a6c74c0b7f8cef1, type: 3} - m_ShaderKeywords: _ALPHATEST_ON + m_ShaderKeywords: _ALPHATEST_ON _DISABLE_DECALS m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -74,6 +74,7 @@ Material: m_Floats: - Vector1_1EC2602A: 0.5 - Vector1_A6D4BDE2: 0.5 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -81,9 +82,11 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _OpaqueCullMode: 2 - _RayTracing: 0 @@ -102,12 +105,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -130,4 +135,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/EmisUnlitMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/EmisUnlitMat.mat index 9e12f3379a2..f6965864d95 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/EmisUnlitMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/EmisUnlitMat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -59,6 +59,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -66,6 +67,7 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 @@ -92,6 +94,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/ExplicitLodMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/ExplicitLodMat.mat index 5781e37c22f..fe179e3c7a6 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/ExplicitLodMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/ExplicitLodMat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -51,6 +51,10 @@ Material: m_Texture: {fileID: 2800000, guid: 526f56bddea1ec94abca08e368cb7006, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2DLOD_afe2690cd5a04d75a6ef12bcebe7b2b1_Texture_1: + m_Texture: {fileID: 2800000, guid: 526f56bddea1ec94abca08e368cb7006, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleTextureStack_622C0D0_Texture_5: m_Texture: {fileID: 2800000, guid: 45616a16dd1d6db4c8b22f5f0963c86a, type: 3} m_Scale: {x: 1, y: 1} @@ -64,6 +68,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -71,9 +76,11 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _OpaqueCullMode: 2 - _RayTracing: 0 @@ -92,12 +99,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/EyeGraphMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/EyeGraphMat.mat index a6e6ec618cb..5a3e7023e2f 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/EyeGraphMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/EyeGraphMat.mat @@ -40,6 +40,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -47,12 +48,16 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 + - _OpaqueCullMode: 2 - _ReceivesSSR: 1 - _ReceivesSSRTransparent: 0 + - _RenderQueueType: 1 - _RequireSplitLighting: 0 - _SrcBlend: 1 - _StencilRef: 0 @@ -65,10 +70,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 + - _TransparentDepthPostpassEnable: 0 + - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -91,4 +100,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/FabricGraphMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/FabricGraphMat.mat index 1e7aec65182..fe72c576a48 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/FabricGraphMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/FabricGraphMat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -55,6 +55,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -62,9 +63,11 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _OpaqueCullMode: 2 - _ReceivesSSR: 1 @@ -82,12 +85,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/HairGraphMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/HairGraphMat.mat index 21bdf81dc52..7e960613310 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/HairGraphMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/HairGraphMat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -55,6 +55,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -62,9 +63,11 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _OpaqueCullMode: 2 - _ReceivesSSR: 1 @@ -82,12 +85,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/KeywordGraphMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/KeywordGraphMat.mat index 2d131467530..c84ce37134b 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/KeywordGraphMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/KeywordGraphMat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -54,6 +54,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_a3500dc3c08b40c780ef998735134fef_Texture_1: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleVTStack_10927F28_Texture_5: m_Texture: {fileID: 2800000, guid: 45616a16dd1d6db4c8b22f5f0963c86a, type: 3} m_Scale: {x: 1, y: 1} @@ -68,6 +72,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - TESTKEYWORD: 0 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -75,6 +80,7 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 @@ -101,6 +107,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/KeywordGraphMat_Variant.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/KeywordGraphMat_Variant.mat index 85fae6cbcc5..9b7dcf6df27 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/KeywordGraphMat_Variant.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/KeywordGraphMat_Variant.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -54,6 +54,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_a3500dc3c08b40c780ef998735134fef_Texture_1: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleVTStack_10927F28_Texture_5: m_Texture: {fileID: 2800000, guid: 45616a16dd1d6db4c8b22f5f0963c86a, type: 3} m_Scale: {x: 1, y: 1} @@ -68,6 +72,7 @@ Material: m_Offset: {x: 0, y: 0} m_Floats: - TESTKEYWORD: 1 + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -75,6 +80,7 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 @@ -101,6 +107,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 1 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/LitGraphMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/LitGraphMat.mat index fd581f64b0e..836fae4a7ee 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/LitGraphMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/LitGraphMat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -80,6 +80,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -87,9 +88,11 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _OpaqueCullMode: 2 - _RayTracing: 0 @@ -108,12 +111,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/LowQualGraphMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/LowQualGraphMat.mat index 238d2eb975d..9280f10ad63 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/LowQualGraphMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/LowQualGraphMat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -48,6 +48,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -55,9 +56,11 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _OpaqueCullMode: 2 - _RayTracing: 0 @@ -76,12 +79,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/MipEquivalentMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/MipEquivalentMat.mat index 865a4657bc2..de1a6e9761a 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/MipEquivalentMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/MipEquivalentMat.mat @@ -38,6 +38,10 @@ Material: m_Texture: {fileID: 2800000, guid: 526f56bddea1ec94abca08e368cb7006, type: 3} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _SampleTexture2D_b9272dbf7677451397e03e6b774a0cd6_Texture_1: + m_Texture: {fileID: 2800000, guid: 526f56bddea1ec94abca08e368cb7006, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SampleVTStack_50FF769D_Texture_5: m_Texture: {fileID: 2800000, guid: 526f56bddea1ec94abca08e368cb7006, type: 3} m_Scale: {x: 1, y: 1} @@ -47,6 +51,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -54,6 +59,7 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 @@ -80,6 +86,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -102,4 +109,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/MultiSampleGraphMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/MultiSampleGraphMat.mat index 28ca17432fd..a041bb45843 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/MultiSampleGraphMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/MultiSampleGraphMat.mat @@ -63,6 +63,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -70,9 +71,11 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _OpaqueCullMode: 2 - _RayTracing: 0 @@ -91,12 +94,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -119,4 +124,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/PBRGraphMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/PBRGraphMat.mat index ae21a7181d5..601e09fbc3c 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/PBRGraphMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/PBRGraphMat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -23,7 +23,7 @@ Material: m_Name: PBRGraphMat m_Shader: {fileID: -6465566751694194690, guid: be9ecaa0f5557d24794cda5e7f2647b1, type: 3} - m_ShaderKeywords: _ALPHATEST_ON _DISABLE_SSR_TRANSPARENT + m_ShaderKeywords: _ALPHATEST_ON _DISABLE_DECALS _DISABLE_SSR_TRANSPARENT m_LightmapFlags: 4 m_EnableInstancingVariants: 0 m_DoubleSidedGI: 0 @@ -81,6 +81,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -88,9 +89,11 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 1 - _OpaqueCullMode: 2 - _RayTracing: 0 @@ -109,12 +112,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 0 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/SSSGraphMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/SSSGraphMat.mat index f250f663c78..8e685522f63 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/SSSGraphMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/SSSGraphMat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -80,6 +80,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -87,10 +88,12 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DiffusionProfileHash: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _OpaqueCullMode: 2 - _RayTracing: 0 @@ -109,12 +112,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/StackLitGraphMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/StackLitGraphMat.mat index 244778e1d5f..447a0c42c7f 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/StackLitGraphMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/StackLitGraphMat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -55,6 +55,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -62,9 +63,11 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _OpaqueCullMode: 2 - _ReceivesSSR: 1 @@ -82,12 +85,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/UnlitGraphMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/UnlitGraphMat.mat index db56b4ce0c9..0e13ee331be 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/UnlitGraphMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/UnlitGraphMat.mat @@ -47,6 +47,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -54,6 +55,7 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 @@ -80,6 +82,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -102,4 +105,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/VTSubGraphShaderMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/VTSubGraphShaderMat.mat index ddf7f593dd8..89b7da34552 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/VTSubGraphShaderMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/VTSubGraphShaderMat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -52,6 +52,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -59,6 +60,7 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 @@ -85,6 +87,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/VertexShaderMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/VertexShaderMat.mat index df9a673f575..625e05770c4 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/VertexShaderMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/VertexShaderMat.mat @@ -59,6 +59,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 0 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -66,9 +67,11 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 + - _EnableBlendModePreserveSpecularLighting: 1 - _EnableFogOnTransparent: 1 - _OpaqueCullMode: 2 - _RayTracing: 0 @@ -87,12 +90,14 @@ Material: - _StencilWriteMaskDistortionVec: 4 - _StencilWriteMaskGBuffer: 14 - _StencilWriteMaskMV: 40 + - _SupportDecals: 1 - _SurfaceType: 0 - _TransparentBackfaceEnable: 0 - _TransparentCullMode: 2 - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 @@ -115,4 +120,4 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 diff --git a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/VtSubGraphTexArgShaderMat.mat b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/VtSubGraphTexArgShaderMat.mat index cc9204d8e0b..e3f5c4698e4 100644 --- a/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/VtSubGraphTexArgShaderMat.mat +++ b/TestProjects/HDRP_RuntimeTests/Assets/Scenes/003-VirtualTexturing/VtSubGraphTexArgShaderMat.mat @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} m_Name: m_EditorClassIdentifier: - version: 4 + version: 5 --- !u!21 &2100000 Material: serializedVersion: 6 @@ -52,6 +52,7 @@ Material: m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} m_Floats: + - _AddPrecomputedVelocity: 0 - _AlphaCutoffEnable: 1 - _AlphaDstBlend: 0 - _AlphaSrcBlend: 1 @@ -59,6 +60,7 @@ Material: - _BlendMode: 0 - _CullMode: 2 - _CullModeForward: 2 + - _DepthOffsetEnable: 0 - _DoubleSidedEnable: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 0 @@ -85,6 +87,7 @@ Material: - _TransparentDepthPostpassEnable: 0 - _TransparentDepthPrepassEnable: 0 - _TransparentSortPriority: 0 + - _TransparentWritingMotionVec: 0 - _TransparentZWrite: 0 - _UseShadowThreshold: 0 - _ZTestDepthEqualForOpaque: 3 From d48f4aedff5c80079fd0634cb675cced72823f56 Mon Sep 17 00:00:00 2001 From: sebastienlagarde Date: Sun, 28 Jun 2020 22:17:42 +0200 Subject: [PATCH 32/32] Update hdrp Runtime project material --- 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 1629595155b..3aa79910b0e 100644 --- a/com.unity.render-pipelines.high-definition/CHANGELOG.md +++ b/com.unity.render-pipelines.high-definition/CHANGELOG.md @@ -849,6 +849,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Changed extensions of shader CAS include files. - Making the planar probe atlas's format match the color buffer's format. - Removing the planarReflectionCacheCompressed setting from asset. +- SHADERPASS for TransparentDepthPrepass and TransparentDepthPostpass identification is using respectively SHADERPASS_TRANSPARENT_DEPTH_PREPASS and SHADERPASS_TRANSPARENT_DEPTH_POSTPASS ## [7.1.1] - 2019-09-05