summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2026-01-19 18:40:39 -0800
committeryum <yum.food.vr@gmail.com>2026-01-19 18:40:39 -0800
commit0ef282da6a87c27e4056faaedb2847eed1f5a8a7 (patch)
tree3eaf26a8216f0efc94edc1499e0ab9241b5aac83
parentf6e54271cddfec5ef16e986a94edf2db380bc458 (diff)
shadows now use pbr normal; reparameterize tesellation falloff
-rw-r--r--2ner.cginc10
-rw-r--r--2ner.shader11
-rw-r--r--Materials/Filament calibration/Mat00.mat306
-rw-r--r--Materials/Filament calibration/Mat01.mat306
-rw-r--r--Materials/Filament calibration/Mat02.mat306
-rw-r--r--Materials/Filament calibration/Mat03.mat306
-rw-r--r--Materials/Filament calibration/Mat04.mat306
-rw-r--r--Materials/Filament calibration/Mat05.mat306
-rw-r--r--Materials/Filament calibration/Mat06.mat306
-rw-r--r--Materials/Filament calibration/Mat07.mat306
-rw-r--r--Materials/Filament calibration/Mat08.mat306
-rw-r--r--Materials/Filament calibration/Mat09.mat306
-rw-r--r--Materials/Filament calibration/Mat10.mat306
-rw-r--r--Materials/Filament calibration/Mat11.mat306
-rw-r--r--Materials/Filament calibration/Mat12.mat306
-rw-r--r--Materials/Filament calibration/Mat13.mat306
-rw-r--r--Materials/Filament calibration/Mat14.mat306
-rw-r--r--Materials/Filament calibration/Mat15.mat306
-rw-r--r--globals.cginc1
-rw-r--r--tessellation.cginc11
-rw-r--r--yum_lighting.cginc8
21 files changed, 4905 insertions, 32 deletions
diff --git a/2ner.cginc b/2ner.cginc
index 7cbc96f..a4ef84a 100644
--- a/2ner.cginc
+++ b/2ner.cginc
@@ -239,16 +239,16 @@ float4 frag(v2f i, uint facing : SV_IsFrontFace
return 0;
#endif
+ i.normal *= facing ? 1 : -1;
+ i.normal = UnityObjectToWorldNormal(i.normal);
+ i.tangent = mul(unity_ObjectToWorld, i.tangent);
+ i.binormal = mul(unity_ObjectToWorld, i.binormal);
+
// Not necessarily normalized after interpolation
i.normal = normalize(i.normal);
i.tangent = normalize(i.tangent);
i.binormal = normalize(i.binormal);
- i.normal *= facing ? 1 : -1;
- i.normal = UnityObjectToWorldNormal(i.normal);
- i.tangent = UnityObjectToWorldNormal(i.tangent);
- i.binormal = UnityObjectToWorldNormal(i.binormal);
-
#if defined(_RAYMARCHED_FOG)
{
// Many fields are overspecified as .rgb or .xyz. This is because thry's
diff --git a/2ner.shader b/2ner.shader
index eb182f1..d5e0d6c 100644
--- a/2ner.shader
+++ b/2ner.shader
@@ -1174,9 +1174,9 @@ Shader "yum_food/2ner"
//ifex _Oklch_Correction_Enabled==0
[HideInInspector] m_start_Oklch_Correction("Oklch", Float) = 0
[ThryToggle(_OKLCH_CORRECTION)] _Oklch_Correction_Enabled("Enable", Float) = 0
- _Oklch_Correction_L("L", Range(0,1)) = 1
- _Oklch_Correction_C("C", Range(0,1)) = 1
- _Oklch_Correction_H("H", Range(0,1)) = 1
+ _Oklch_Correction_L("L", Range(0,2)) = 1
+ _Oklch_Correction_C("C", Range(0,2)) = 1
+ _Oklch_Correction_H("H", Range(0,2)) = 1
[HideInInspector] m_end_Oklch_Correction("Oklch", Float) = 0
//endex
//ifex _Oklab_Brightness_Clamp_Enabled==0
@@ -1876,6 +1876,7 @@ Shader "yum_food/2ner"
[HideInInspector] m_start_Tessellation("Tessellation", Float) = 0
[ThryToggle(_TESSELLATION)] _Tessellation_Enabled("Enable", Float) = 0
_Tessellation_Factor("Factor", Range(1, 256)) = 1
+ _Tessellation_Falloff_Factor("Falloff factor", Range(0, 256)) = 1
_Tessellation_Frustum_Culling_Bias("Frustum culling bias", Float) = 35
[HideInInspector] m_start_Tessellation_Heightmap("Heightmap", Float) = 0
[ThryToggle(_TESSELLATION_HEIGHTMAP_WORLD_SPACE)] _Tessellation_Heightmap_World_Space_Enabled("World space mode (RGB)", Float) = 0
@@ -2287,7 +2288,7 @@ Shader "yum_food/2ner"
//ifex _Light_Volumes_Brightness_Enabled==0
[HideInInspector] m_start_Light_Volumes_Brightness("Light Volumes Brightness", Float) = 0
[ThryToggle(_LIGHT_VOLUMES_BRIGHTNESS)] _Light_Volumes_Brightness_Enabled("Enable", Float) = 0
- _Light_Volumes_Brightness_Enabled_Dynamic("Enable (dynamic)", Float) = 1
+ [MaterialToggle] _Light_Volumes_Brightness_Enabled_Dynamic("Enable (dynamic)", Float) = 1
_Light_Volumes_Brightness("Brightness", Range(0, 1)) = 1
[HideInInspector] m_end_Light_Volumes_Brightness("Light Volumes Brightness", Float) = 0
//endex
@@ -2426,7 +2427,7 @@ Shader "yum_food/2ner"
}
SubShader {
- Tags { "RenderType" = "Opaque" "Queue" = "Geometry" "VRCFallback" = "Standard" "DisableBatching" = "True" }
+ Tags { "RenderType" = "Opaque" "Queue" = "Geometry" "VRCFallback" = "Standard" }
//ifex _Depth_Prepass_Enabled==0
Pass {
diff --git a/Materials/Filament calibration/Mat00.mat b/Materials/Filament calibration/Mat00.mat
index c6dbb73..9e30ac4 100644
--- a/Materials/Filament calibration/Mat00.mat
+++ b/Materials/Filament calibration/Mat00.mat
@@ -13,11 +13,13 @@ Material:
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _CAST_SHADOWS
+ - _CLEARCOAT_GEOMETRIC_NORMALS
- _METALLICS
- _RECEIVE_SHADOWS
- - _SPHERICAL_HARMONICS_L1
m_InvalidKeywords:
- _BUMP_SHADOWS
+ - _LIGHT_VOLUMES_BRIGHTNESS_ENABLED_DYNAMIC_ON
+ - _SPHERICAL_HARMONICS_L1
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
@@ -36,6 +38,10 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Clearcoat_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Cloth_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -268,6 +274,38 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Letter_Grid_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -312,6 +350,14 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Matcap2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Matcap2_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -368,6 +414,22 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_0_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_1_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_2_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_3_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _SmoothnessMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -376,6 +438,42 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_0:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_1:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_3:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_4:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_5:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_6:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_7:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Trochoid_Color_Ramp:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _UV_Domain_Warping_Noise:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -426,6 +524,7 @@ Material:
- _Bump_Shadows_Enabled: 1
- _Cast_Shadows_Enabled: 1
- _Clearcoat_Enabled: 0
+ - _Clearcoat_Geometric_Normals_Enabled: 1
- _Clearcoat_Roughness: 0.089
- _Clearcoat_Strength: 1
- _Clip: 0.5
@@ -450,6 +549,7 @@ Material:
- _Custom30_ro_Offset: 0
- _Cutoff: 0.5
- _Decal0_Angle: 0
+ - _Decal0_Bias: 0
- _Decal0_CMYK_Warping_Planes_Enabled: 0
- _Decal0_CMYK_Warping_Planes_Scale: 0.1
- _Decal0_CMYK_Warping_Planes_Speed: 1
@@ -466,23 +566,30 @@ Material:
- _Decal0_Emissions_Proximity_Max_Distance: 1
- _Decal0_Emissions_Proximity_Min_Distance: 0
- _Decal0_Enabled: 0
+ - _Decal0_Invert_Blend_Order: 0
- _Decal0_Mask_Enabled: 0
- _Decal0_Metallic: 0
- _Decal0_Normal_Enabled: 0
- _Decal0_Normal_Scale: 1
- _Decal0_Opacity: 1
+ - _Decal0_Reflections_Alpha_Blend: 0
- _Decal0_Reflections_Enabled: 0
- _Decal0_Replace_Alpha_Mode: 0
- _Decal0_Replace_Multiply_Mode: 0
- _Decal0_SDF_Enabled: 0
- _Decal0_SDF_Invert: 0
- _Decal0_SDF_Px_Range: 2
+ - _Decal0_SDF_SSN_Enabled: 0
+ - _Decal0_SDF_SSN_Only: 0
+ - _Decal0_SDF_SSN_Replace: 0
+ - _Decal0_SDF_SSN_Strength: 1
- _Decal0_SDF_Softness: 0.01
- _Decal0_SDF_Threshold: 0.5
- _Decal0_Smoothness: 0.5
- _Decal0_Tiling_Mode: 0
- _Decal0_UV_Channel: 0
- _Decal1_Angle: 0
+ - _Decal1_Bias: 0
- _Decal1_CMYK_Warping_Planes_Enabled: 0
- _Decal1_CMYK_Warping_Planes_Scale: 0.1
- _Decal1_CMYK_Warping_Planes_Speed: 1
@@ -499,23 +606,30 @@ Material:
- _Decal1_Emissions_Proximity_Max_Distance: 1
- _Decal1_Emissions_Proximity_Min_Distance: 0
- _Decal1_Enabled: 0
+ - _Decal1_Invert_Blend_Order: 0
- _Decal1_Mask_Enabled: 0
- _Decal1_Metallic: 0
- _Decal1_Normal_Enabled: 0
- _Decal1_Normal_Scale: 1
- _Decal1_Opacity: 1
+ - _Decal1_Reflections_Alpha_Blend: 0
- _Decal1_Reflections_Enabled: 0
- _Decal1_Replace_Alpha_Mode: 0
- _Decal1_Replace_Multiply_Mode: 0
- _Decal1_SDF_Enabled: 0
- _Decal1_SDF_Invert: 0
- _Decal1_SDF_Px_Range: 2
+ - _Decal1_SDF_SSN_Enabled: 0
+ - _Decal1_SDF_SSN_Only: 0
+ - _Decal1_SDF_SSN_Replace: 0
+ - _Decal1_SDF_SSN_Strength: 1
- _Decal1_SDF_Softness: 0.01
- _Decal1_SDF_Threshold: 0.5
- _Decal1_Smoothness: 0.5
- _Decal1_Tiling_Mode: 0
- _Decal1_UV_Channel: 0
- _Decal2_Angle: 0
+ - _Decal2_Bias: 0
- _Decal2_CMYK_Warping_Planes_Enabled: 0
- _Decal2_CMYK_Warping_Planes_Scale: 0.1
- _Decal2_CMYK_Warping_Planes_Speed: 1
@@ -532,23 +646,30 @@ Material:
- _Decal2_Emissions_Proximity_Max_Distance: 1
- _Decal2_Emissions_Proximity_Min_Distance: 0
- _Decal2_Enabled: 0
+ - _Decal2_Invert_Blend_Order: 0
- _Decal2_Mask_Enabled: 0
- _Decal2_Metallic: 0
- _Decal2_Normal_Enabled: 0
- _Decal2_Normal_Scale: 1
- _Decal2_Opacity: 1
+ - _Decal2_Reflections_Alpha_Blend: 0
- _Decal2_Reflections_Enabled: 0
- _Decal2_Replace_Alpha_Mode: 0
- _Decal2_Replace_Multiply_Mode: 0
- _Decal2_SDF_Enabled: 0
- _Decal2_SDF_Invert: 0
- _Decal2_SDF_Px_Range: 2
+ - _Decal2_SDF_SSN_Enabled: 0
+ - _Decal2_SDF_SSN_Only: 0
+ - _Decal2_SDF_SSN_Replace: 0
+ - _Decal2_SDF_SSN_Strength: 1
- _Decal2_SDF_Softness: 0.01
- _Decal2_SDF_Threshold: 0.5
- _Decal2_Smoothness: 0.5
- _Decal2_Tiling_Mode: 0
- _Decal2_UV_Channel: 0
- _Decal3_Angle: 0
+ - _Decal3_Bias: 0
- _Decal3_CMYK_Warping_Planes_Enabled: 0
- _Decal3_CMYK_Warping_Planes_Scale: 0.1
- _Decal3_CMYK_Warping_Planes_Speed: 1
@@ -565,23 +686,30 @@ Material:
- _Decal3_Emissions_Proximity_Max_Distance: 1
- _Decal3_Emissions_Proximity_Min_Distance: 0
- _Decal3_Enabled: 0
+ - _Decal3_Invert_Blend_Order: 0
- _Decal3_Mask_Enabled: 0
- _Decal3_Metallic: 0
- _Decal3_Normal_Enabled: 0
- _Decal3_Normal_Scale: 1
- _Decal3_Opacity: 1
+ - _Decal3_Reflections_Alpha_Blend: 0
- _Decal3_Reflections_Enabled: 0
- _Decal3_Replace_Alpha_Mode: 0
- _Decal3_Replace_Multiply_Mode: 0
- _Decal3_SDF_Enabled: 0
- _Decal3_SDF_Invert: 0
- _Decal3_SDF_Px_Range: 2
+ - _Decal3_SDF_SSN_Enabled: 0
+ - _Decal3_SDF_SSN_Only: 0
+ - _Decal3_SDF_SSN_Replace: 0
+ - _Decal3_SDF_SSN_Strength: 1
- _Decal3_SDF_Softness: 0.01
- _Decal3_SDF_Threshold: 0.5
- _Decal3_Smoothness: 0.5
- _Decal3_Tiling_Mode: 0
- _Decal3_UV_Channel: 0
- _Decal4_Angle: 0
+ - _Decal4_Bias: 0
- _Decal4_CMYK_Warping_Planes_Enabled: 0
- _Decal4_CMYK_Warping_Planes_Scale: 0.1
- _Decal4_CMYK_Warping_Planes_Speed: 1
@@ -598,23 +726,30 @@ Material:
- _Decal4_Emissions_Proximity_Max_Distance: 1
- _Decal4_Emissions_Proximity_Min_Distance: 0
- _Decal4_Enabled: 0
+ - _Decal4_Invert_Blend_Order: 0
- _Decal4_Mask_Enabled: 0
- _Decal4_Metallic: 0
- _Decal4_Normal_Enabled: 0
- _Decal4_Normal_Scale: 1
- _Decal4_Opacity: 1
+ - _Decal4_Reflections_Alpha_Blend: 0
- _Decal4_Reflections_Enabled: 0
- _Decal4_Replace_Alpha_Mode: 0
- _Decal4_Replace_Multiply_Mode: 0
- _Decal4_SDF_Enabled: 0
- _Decal4_SDF_Invert: 0
- _Decal4_SDF_Px_Range: 2
+ - _Decal4_SDF_SSN_Enabled: 0
+ - _Decal4_SDF_SSN_Only: 0
+ - _Decal4_SDF_SSN_Replace: 0
+ - _Decal4_SDF_SSN_Strength: 1
- _Decal4_SDF_Softness: 0.01
- _Decal4_SDF_Threshold: 0.5
- _Decal4_Smoothness: 0.5
- _Decal4_Tiling_Mode: 0
- _Decal4_UV_Channel: 0
- _Decal5_Angle: 0
+ - _Decal5_Bias: 0
- _Decal5_CMYK_Warping_Planes_Enabled: 0
- _Decal5_CMYK_Warping_Planes_Scale: 0.1
- _Decal5_CMYK_Warping_Planes_Speed: 1
@@ -631,23 +766,30 @@ Material:
- _Decal5_Emissions_Proximity_Max_Distance: 1
- _Decal5_Emissions_Proximity_Min_Distance: 0
- _Decal5_Enabled: 0
+ - _Decal5_Invert_Blend_Order: 0
- _Decal5_Mask_Enabled: 0
- _Decal5_Metallic: 0
- _Decal5_Normal_Enabled: 0
- _Decal5_Normal_Scale: 1
- _Decal5_Opacity: 1
+ - _Decal5_Reflections_Alpha_Blend: 0
- _Decal5_Reflections_Enabled: 0
- _Decal5_Replace_Alpha_Mode: 0
- _Decal5_Replace_Multiply_Mode: 0
- _Decal5_SDF_Enabled: 0
- _Decal5_SDF_Invert: 0
- _Decal5_SDF_Px_Range: 2
+ - _Decal5_SDF_SSN_Enabled: 0
+ - _Decal5_SDF_SSN_Only: 0
+ - _Decal5_SDF_SSN_Replace: 0
+ - _Decal5_SDF_SSN_Strength: 1
- _Decal5_SDF_Softness: 0.01
- _Decal5_SDF_Threshold: 0.5
- _Decal5_Smoothness: 0.5
- _Decal5_Tiling_Mode: 0
- _Decal5_UV_Channel: 0
- _Decal6_Angle: 0
+ - _Decal6_Bias: 0
- _Decal6_CMYK_Warping_Planes_Enabled: 0
- _Decal6_CMYK_Warping_Planes_Scale: 0.1
- _Decal6_CMYK_Warping_Planes_Speed: 1
@@ -664,23 +806,30 @@ Material:
- _Decal6_Emissions_Proximity_Max_Distance: 1
- _Decal6_Emissions_Proximity_Min_Distance: 0
- _Decal6_Enabled: 0
+ - _Decal6_Invert_Blend_Order: 0
- _Decal6_Mask_Enabled: 0
- _Decal6_Metallic: 0
- _Decal6_Normal_Enabled: 0
- _Decal6_Normal_Scale: 1
- _Decal6_Opacity: 1
+ - _Decal6_Reflections_Alpha_Blend: 0
- _Decal6_Reflections_Enabled: 0
- _Decal6_Replace_Alpha_Mode: 0
- _Decal6_Replace_Multiply_Mode: 0
- _Decal6_SDF_Enabled: 0
- _Decal6_SDF_Invert: 0
- _Decal6_SDF_Px_Range: 2
+ - _Decal6_SDF_SSN_Enabled: 0
+ - _Decal6_SDF_SSN_Only: 0
+ - _Decal6_SDF_SSN_Replace: 0
+ - _Decal6_SDF_SSN_Strength: 1
- _Decal6_SDF_Softness: 0.01
- _Decal6_SDF_Threshold: 0.5
- _Decal6_Smoothness: 0.5
- _Decal6_Tiling_Mode: 0
- _Decal6_UV_Channel: 0
- _Decal7_Angle: 0
+ - _Decal7_Bias: 0
- _Decal7_CMYK_Warping_Planes_Enabled: 0
- _Decal7_CMYK_Warping_Planes_Scale: 0.1
- _Decal7_CMYK_Warping_Planes_Speed: 1
@@ -697,17 +846,23 @@ Material:
- _Decal7_Emissions_Proximity_Max_Distance: 1
- _Decal7_Emissions_Proximity_Min_Distance: 0
- _Decal7_Enabled: 0
+ - _Decal7_Invert_Blend_Order: 0
- _Decal7_Mask_Enabled: 0
- _Decal7_Metallic: 0
- _Decal7_Normal_Enabled: 0
- _Decal7_Normal_Scale: 1
- _Decal7_Opacity: 1
+ - _Decal7_Reflections_Alpha_Blend: 0
- _Decal7_Reflections_Enabled: 0
- _Decal7_Replace_Alpha_Mode: 0
- _Decal7_Replace_Multiply_Mode: 0
- _Decal7_SDF_Enabled: 0
- _Decal7_SDF_Invert: 0
- _Decal7_SDF_Px_Range: 2
+ - _Decal7_SDF_SSN_Enabled: 0
+ - _Decal7_SDF_SSN_Only: 0
+ - _Decal7_SDF_SSN_Replace: 0
+ - _Decal7_SDF_SSN_Strength: 1
- _Decal7_SDF_Softness: 0.01
- _Decal7_SDF_Threshold: 0.5
- _Decal7_Smoothness: 0.5
@@ -716,6 +871,7 @@ Material:
- _Depth_Prepass_Enabled: 0
- _DetailNormalMapScale: 1
- _Detail_Maps_Enabled: 0
+ - _Detail_Maps_UV_Channel: 0
- _DstBlend: 0
- _DstBlendAlpha: 10
- _Emission_Enabled: 0
@@ -772,9 +928,19 @@ Material:
- _Glitter_Mask_Enabled: 0
- _Glitter_Size: 1
- _Glitter_Size_Randomization_Range: 0.4
+ - _Glitter_UV_Channel: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
+ - _Gradient_Normals_0_Horizontal_Enabled: 0
+ - _Gradient_Normals_0_Vertical_Enabled: 0
+ - _Gradient_Normals_1_Horizontal_Enabled: 0
+ - _Gradient_Normals_1_Vertical_Enabled: 0
+ - _Gradient_Normals_2_Horizontal_Enabled: 0
+ - _Gradient_Normals_2_Vertical_Enabled: 0
+ - _Gradient_Normals_3_Horizontal_Enabled: 0
+ - _Gradient_Normals_3_Vertical_Enabled: 0
+ - _Gradient_Normals_Enabled: 0
- _Grayscale_Lightmaps_Enabled: 0
- _Harnack_Tracing_Enabled: 0
- _Harnack_Tracing_Gyroid_Enabled: 0
@@ -797,6 +963,9 @@ Material:
- _Letter_Grid_Screen_Px_Range: 10
- _Letter_Grid_Tex_Res_X: 16
- _Letter_Grid_Tex_Res_Y: 8
+ - _Light_Volumes_Brightness: 1
+ - _Light_Volumes_Brightness_Enabled: 0
+ - _Light_Volumes_Brightness_Enabled_Dynamic: 1
- _MaskedStencil1BackCompareFunction: 8
- _MaskedStencil1BackFailOp: 0
- _MaskedStencil1BackPassOp: 0
@@ -877,6 +1046,14 @@ Material:
- _Matcap1_Quantization_Steps: 1
- _Matcap1_Strength: 1
- _Matcap1_Target_Mask: 1
+ - _Matcap2_Enabled: 0
+ - _Matcap2_Invert: 0
+ - _Matcap2_Mask_Enabled: 0
+ - _Matcap2_Mode: 0
+ - _Matcap2_Quantization_Enabled: 0
+ - _Matcap2_Quantization_Steps: 1
+ - _Matcap2_Strength: 1
+ - _Matcap2_Target_Mask: 1
- _Material_Type_Cloth_Enabled: 0
- _Material_Type_Cloth_Subsurface: 0
- _Metallic: 0
@@ -928,6 +1105,9 @@ Material:
- _Quantize_NoL_Steps: 1
- _Quantize_Specular_Enabled: 0
- _Quantize_Specular_Steps: 1
+ - _Quasi_Shadows_0_Threshold: 0.5
+ - _Quasi_Shadows_0_Width: 0.1
+ - _Quasi_Shadows_Enabled: 0
- _Raymarched_Fog_Albedo: 1
- _Raymarched_Fog_Density_Exponent: 1
- _Raymarched_Fog_Density_Exponent_Enabled: 0
@@ -1009,6 +1189,17 @@ Material:
- _SSFD_Threshold: 0.5
- _SampleWorld: 0
- _Saturation: 0
+ - _Screen_Space_Normals_Enabled: 0
+ - _Sea_Foam_0_Enabled: 0
+ - _Sea_Foam_1_Enabled: 0
+ - _Sea_Foam_2_Enabled: 0
+ - _Sea_Foam_3_Enabled: 0
+ - _Sea_Foam_Bias: 0
+ - _Sea_Foam_Enabled: 0
+ - _Sea_Foam_Factor: 1
+ - _Sea_Foam_Lambda: 1
+ - _Sea_Foam_Power: 1
+ - _Sea_Foam_Roughness: 0.85
- _ShaderOptimizerEnabled: 0
- _Shadow_Strength: 0.25
- _Shatter_Wave_Audiolink_Enabled: 0
@@ -1047,16 +1238,53 @@ Material:
- _Stencil_Enabled: 0
- _Tessellation_Enabled: 0
- _Tessellation_Factor: 1
+ - _Tessellation_Falloff_Factor: 1
+ - _Tessellation_Frustum_Culling_Bias: 35
+ - _Tessellation_Heightmap_0_Enabled: 0
+ - _Tessellation_Heightmap_0_Offset: 0
+ - _Tessellation_Heightmap_0_Scale: 1
+ - _Tessellation_Heightmap_1_Enabled: 0
+ - _Tessellation_Heightmap_1_Offset: 0
+ - _Tessellation_Heightmap_1_Scale: 1
+ - _Tessellation_Heightmap_2_Enabled: 0
+ - _Tessellation_Heightmap_2_Offset: 0
+ - _Tessellation_Heightmap_2_Scale: 1
+ - _Tessellation_Heightmap_3_Enabled: 0
+ - _Tessellation_Heightmap_3_Offset: 0
+ - _Tessellation_Heightmap_3_Scale: 1
+ - _Tessellation_Heightmap_4_Enabled: 0
+ - _Tessellation_Heightmap_4_Offset: 0
+ - _Tessellation_Heightmap_4_Scale: 1
+ - _Tessellation_Heightmap_5_Enabled: 0
+ - _Tessellation_Heightmap_5_Offset: 0
+ - _Tessellation_Heightmap_5_Scale: 1
+ - _Tessellation_Heightmap_6_Enabled: 0
+ - _Tessellation_Heightmap_6_Offset: 0
+ - _Tessellation_Heightmap_6_Scale: 1
+ - _Tessellation_Heightmap_7_Enabled: 0
+ - _Tessellation_Heightmap_7_Offset: 0
+ - _Tessellation_Heightmap_7_Scale: 1
- _Tessellation_Heightmap_Direction_Control_Enabled: 0
- _Tessellation_Heightmap_Enabled: 0
- _Tessellation_Heightmap_Offset: 0
- _Tessellation_Heightmap_Scale: 1
+ - _Tessellation_Heightmap_World_Space_Enabled: 0
- _Tessellation_Range_Factor_Distance_Far: 1
- _Tessellation_Range_Factor_Distance_Near: 1
- _Tessellation_Range_Factor_Enabled: 0
- _Tessellation_Range_Factor_Factor_Far: 1
- _Tessellation_Range_Factor_Factor_Near: 1
- _Tessellation_Range_Factor_Help: 0
+ - _Trochoid_Enabled: 0
+ - _Trochoid_R: 1
+ - _Trochoid_X_Scale: 1
+ - _Trochoid_Y_Scale: 1
+ - _Trochoid_Z_Scale: 1
+ - _Trochoid_d: 1
+ - _Trochoid_r: 1
+ - _Trochoid_r_Power: 1
+ - _Trochoid_t_k: 1
+ - _Trochoid_theta_k: 1
- _UVSec: 0
- _UV_Domain_Warping_Enabled: 0
- _UV_Domain_Warping_Spatial_Octaves: 1
@@ -1558,6 +1786,7 @@ Material:
- m_end_Decal0_Normal: 0
- m_end_Decal0_Reflections: 0
- m_end_Decal0_SDF: 0
+ - m_end_Decal0_SSN: 0
- m_end_Decal1: 0
- m_end_Decal1_CMYK_Warping_Planes: 0
- m_end_Decal1_Domain_Warping: 0
@@ -1567,6 +1796,7 @@ Material:
- m_end_Decal1_Normal: 0
- m_end_Decal1_Reflections: 0
- m_end_Decal1_SDF: 0
+ - m_end_Decal1_SSN: 0
- m_end_Decal2: 0
- m_end_Decal2_CMYK_Warping_Planes: 0
- m_end_Decal2_Domain_Warping: 0
@@ -1576,6 +1806,7 @@ Material:
- m_end_Decal2_Normal: 0
- m_end_Decal2_Reflections: 0
- m_end_Decal2_SDF: 0
+ - m_end_Decal2_SSN: 0
- m_end_Decal3: 0
- m_end_Decal3_CMYK_Warping_Planes: 0
- m_end_Decal3_Domain_Warping: 0
@@ -1585,6 +1816,7 @@ Material:
- m_end_Decal3_Normal: 0
- m_end_Decal3_Reflections: 0
- m_end_Decal3_SDF: 0
+ - m_end_Decal3_SSN: 0
- m_end_Decal4: 0
- m_end_Decal4_CMYK_Warping_Planes: 0
- m_end_Decal4_Domain_Warping: 0
@@ -1594,6 +1826,7 @@ Material:
- m_end_Decal4_Normal: 0
- m_end_Decal4_Reflections: 0
- m_end_Decal4_SDF: 0
+ - m_end_Decal4_SSN: 0
- m_end_Decal5: 0
- m_end_Decal5_CMYK_Warping_Planes: 0
- m_end_Decal5_Domain_Warping: 0
@@ -1603,6 +1836,7 @@ Material:
- m_end_Decal5_Normal: 0
- m_end_Decal5_Reflections: 0
- m_end_Decal5_SDF: 0
+ - m_end_Decal5_SSN: 0
- m_end_Decal6: 0
- m_end_Decal6_CMYK_Warping_Planes: 0
- m_end_Decal6_Domain_Warping: 0
@@ -1612,6 +1846,7 @@ Material:
- m_end_Decal6_Normal: 0
- m_end_Decal6_Reflections: 0
- m_end_Decal6_SDF: 0
+ - m_end_Decal6_SSN: 0
- m_end_Decal7: 0
- m_end_Decal7_CMYK_Warping_Planes: 0
- m_end_Decal7_Domain_Warping: 0
@@ -1621,6 +1856,7 @@ Material:
- m_end_Decal7_Normal: 0
- m_end_Decal7_Reflections: 0
- m_end_Decal7_SDF: 0
+ - m_end_Decal7_SSN: 0
- m_end_Decals: 0
- m_end_Depth_Prepass: 0
- m_end_Detail_Maps: 0
@@ -1637,11 +1873,21 @@ Material:
- m_end_Glitter: 0
- m_end_Glitter_Angle_Limit: 0
- m_end_Glitter_Mask: 0
+ - m_end_Gradient_Normals: 0
+ - m_end_Gradient_Normals_0: 0
+ - m_end_Gradient_Normals_0_Horizontal: 0
+ - m_end_Gradient_Normals_1: 0
+ - m_end_Gradient_Normals_1_Horizontal: 0
+ - m_end_Gradient_Normals_2: 0
+ - m_end_Gradient_Normals_2_Horizontal: 0
+ - m_end_Gradient_Normals_3: 0
+ - m_end_Gradient_Normals_3_Horizontal: 0
- m_end_Grayscale_Lightmaps: 0
- m_end_Harnack_Tracing: 0
- m_end_Harnack_Tracing_Gyroid: 0
- m_end_LTCGI: 0
- m_end_Letter_Grid: 0
+ - m_end_Light_Volumes_Brightness: 0
- m_end_MaskedStencil1PassBackOptions: 0
- m_end_MaskedStencil1PassFrontOptions: 0
- m_end_MaskedStencil2PassBackOptions: 0
@@ -1660,6 +1906,9 @@ Material:
- m_end_Matcap1: 0
- m_end_Matcap1_Mask: 0
- m_end_Matcap1_Quantization: 0
+ - m_end_Matcap2: 0
+ - m_end_Matcap2_Mask: 0
+ - m_end_Matcap2_Quantization: 0
- m_end_Matcaps: 0
- m_end_Material_Type_Cloth: 0
- m_end_Material_Type_Cloth_Subsurface: 0
@@ -1675,6 +1924,7 @@ Material:
- m_end_OutlinesMask: 0
- m_end_Quantize_NoL: 0
- m_end_Quantize_Specular: 0
+ - m_end_Quasi_Shadows: 0
- m_end_Raymarched_Fog: 0
- m_end_Raymarched_Fog_Density_Exponent: 0
- m_end_Raymarched_Fog_Emitter_Texture: 0
@@ -1698,6 +1948,12 @@ Material:
- m_end_Rim_Lighting3_Quantization: 0
- m_end_SSAO: 0
- m_end_SSFD: 0
+ - m_end_Screen_Space_Normals: 0
+ - m_end_Sea_Foam: 0
+ - m_end_Sea_Foam_0: 0
+ - m_end_Sea_Foam_1: 0
+ - m_end_Sea_Foam_2: 0
+ - m_end_Sea_Foam_3: 0
- m_end_Shadow_Casting: 0
- m_end_Shadow_Receiving: 0
- m_end_Shatter_Wave: 0
@@ -1710,8 +1966,17 @@ Material:
- m_end_StencilPassFrontOptions: 0
- m_end_Tessellation: 0
- m_end_Tessellation_Heightmap: 0
+ - m_end_Tessellation_Heightmap_0: 0
+ - m_end_Tessellation_Heightmap_1: 0
+ - m_end_Tessellation_Heightmap_2: 0
+ - m_end_Tessellation_Heightmap_3: 0
+ - m_end_Tessellation_Heightmap_4: 0
+ - m_end_Tessellation_Heightmap_5: 0
+ - m_end_Tessellation_Heightmap_6: 0
+ - m_end_Tessellation_Heightmap_7: 0
- m_end_Tessellation_Heightmap_Direction_Control: 0
- m_end_Tessellation_Range_Factor: 0
+ - m_end_Trochoid: 0
- m_end_UV_Domain_Warping: 0
- m_end_Unigram_Letter_Grid: 0
- m_end_Unlit: 0
@@ -1749,6 +2014,7 @@ Material:
- m_start_Decal0_Normal: 0
- m_start_Decal0_Reflections: 0
- m_start_Decal0_SDF: 0
+ - m_start_Decal0_SSN: 0
- m_start_Decal1: 0
- m_start_Decal1_CMYK_Warping_Planes: 0
- m_start_Decal1_Domain_Warping: 0
@@ -1758,6 +2024,7 @@ Material:
- m_start_Decal1_Normal: 0
- m_start_Decal1_Reflections: 0
- m_start_Decal1_SDF: 0
+ - m_start_Decal1_SSN: 0
- m_start_Decal2: 0
- m_start_Decal2_CMYK_Warping_Planes: 0
- m_start_Decal2_Domain_Warping: 0
@@ -1767,6 +2034,7 @@ Material:
- m_start_Decal2_Normal: 0
- m_start_Decal2_Reflections: 0
- m_start_Decal2_SDF: 0
+ - m_start_Decal2_SSN: 0
- m_start_Decal3: 0
- m_start_Decal3_CMYK_Warping_Planes: 0
- m_start_Decal3_Domain_Warping: 0
@@ -1776,6 +2044,7 @@ Material:
- m_start_Decal3_Normal: 0
- m_start_Decal3_Reflections: 0
- m_start_Decal3_SDF: 0
+ - m_start_Decal3_SSN: 0
- m_start_Decal4: 0
- m_start_Decal4_CMYK_Warping_Planes: 0
- m_start_Decal4_Domain_Warping: 0
@@ -1785,6 +2054,7 @@ Material:
- m_start_Decal4_Normal: 0
- m_start_Decal4_Reflections: 0
- m_start_Decal4_SDF: 0
+ - m_start_Decal4_SSN: 0
- m_start_Decal5: 0
- m_start_Decal5_CMYK_Warping_Planes: 0
- m_start_Decal5_Domain_Warping: 0
@@ -1794,6 +2064,7 @@ Material:
- m_start_Decal5_Normal: 0
- m_start_Decal5_Reflections: 0
- m_start_Decal5_SDF: 0
+ - m_start_Decal5_SSN: 0
- m_start_Decal6: 0
- m_start_Decal6_CMYK_Warping_Planes: 0
- m_start_Decal6_Domain_Warping: 0
@@ -1803,6 +2074,7 @@ Material:
- m_start_Decal6_Normal: 0
- m_start_Decal6_Reflections: 0
- m_start_Decal6_SDF: 0
+ - m_start_Decal6_SSN: 0
- m_start_Decal7: 0
- m_start_Decal7_CMYK_Warping_Planes: 0
- m_start_Decal7_Domain_Warping: 0
@@ -1812,6 +2084,7 @@ Material:
- m_start_Decal7_Normal: 0
- m_start_Decal7_Reflections: 0
- m_start_Decal7_SDF: 0
+ - m_start_Decal7_SSN: 0
- m_start_Decals: 0
- m_start_Depth_Prepass: 0
- m_start_Detail_Maps: 0
@@ -1828,11 +2101,21 @@ Material:
- m_start_Glitter: 0
- m_start_Glitter_Angle_Limit: 0
- m_start_Glitter_Mask: 0
+ - m_start_Gradient_Normals: 0
+ - m_start_Gradient_Normals_0: 0
+ - m_start_Gradient_Normals_0_Horizontal: 0
+ - m_start_Gradient_Normals_1: 0
+ - m_start_Gradient_Normals_1_Horizontal: 0
+ - m_start_Gradient_Normals_2: 0
+ - m_start_Gradient_Normals_2_Horizontal: 0
+ - m_start_Gradient_Normals_3: 0
+ - m_start_Gradient_Normals_3_Horizontal: 0
- m_start_Grayscale_Lightmaps: 0
- m_start_Harnack_Tracing: 0
- m_start_Harnack_Tracing_Gyroid: 0
- m_start_LTCGI: 0
- m_start_Letter_Grid: 0
+ - m_start_Light_Volumes_Brightness: 0
- m_start_MaskedStencil1PassBackOptions: 0
- m_start_MaskedStencil1PassFrontOptions: 0
- m_start_MaskedStencil2PassBackOptions: 0
@@ -1851,6 +2134,9 @@ Material:
- m_start_Matcap1: 0
- m_start_Matcap1_Mask: 0
- m_start_Matcap1_Quantization: 0
+ - m_start_Matcap2: 0
+ - m_start_Matcap2_Mask: 0
+ - m_start_Matcap2_Quantization: 0
- m_start_Matcaps: 0
- m_start_Material_Type_Cloth: 0
- m_start_Material_Type_Cloth_Subsurface: 0
@@ -1866,6 +2152,7 @@ Material:
- m_start_OutlinesMask: 0
- m_start_Quantize_NoL: 0
- m_start_Quantize_Specular: 0
+ - m_start_Quasi_Shadows: 0
- m_start_Raymarched_Fog: 0
- m_start_Raymarched_Fog_Density_Exponent: 0
- m_start_Raymarched_Fog_Emitter_Texture: 0
@@ -1889,6 +2176,12 @@ Material:
- m_start_Rim_Lighting3_Quantization: 0
- m_start_SSAO: 0
- m_start_SSFD: 0
+ - m_start_Screen_Space_Normals: 0
+ - m_start_Sea_Foam: 0
+ - m_start_Sea_Foam_0: 0
+ - m_start_Sea_Foam_1: 0
+ - m_start_Sea_Foam_2: 0
+ - m_start_Sea_Foam_3: 0
- m_start_Shadow_Casting: 0
- m_start_Shadow_Receiving: 0
- m_start_Shatter_Wave: 0
@@ -1901,8 +2194,17 @@ Material:
- m_start_StencilPassFrontOptions: 0
- m_start_Tessellation: 0
- m_start_Tessellation_Heightmap: 0
+ - m_start_Tessellation_Heightmap_0: 0
+ - m_start_Tessellation_Heightmap_1: 0
+ - m_start_Tessellation_Heightmap_2: 0
+ - m_start_Tessellation_Heightmap_3: 0
+ - m_start_Tessellation_Heightmap_4: 0
+ - m_start_Tessellation_Heightmap_5: 0
+ - m_start_Tessellation_Heightmap_6: 0
+ - m_start_Tessellation_Heightmap_7: 0
- m_start_Tessellation_Heightmap_Direction_Control: 0
- m_start_Tessellation_Range_Factor: 0
+ - m_start_Trochoid: 0
- m_start_UV_Domain_Warping: 0
- m_start_Unigram_Letter_Grid: 0
- m_start_Unlit: 0
@@ -1961,6 +2263,7 @@ Material:
- _Letter_Grid_UV_Scale_Offset: {r: 1, g: 1, b: 0, a: 0}
- _MetalReflectionTint: {r: 1, g: 1, b: 1, a: 1}
- _Outline_Color: {r: 0, g: 0, b: 0, a: 1}
+ - _Quasi_Shadows_0_Color: {r: 1, g: 1, b: 1, a: 1}
- _Raymarched_Fog_Color: {r: 0.29999998, g: 0.29999998, b: 0.29999998, a: 1}
- _Raymarched_Fog_Density_Noise_Scale: {r: 1, g: 1, b: 1, a: 0}
- _Raymarched_Fog_Emitter_Texture_World_Normal: {r: 0, g: 0, b: 0, a: 0}
@@ -1977,6 +2280,7 @@ Material:
- _Rim_Lighting2_Color: {r: 1, g: 1, b: 1, a: 1}
- _Rim_Lighting3_Angle_Limit_Target_Vector: {r: 0, g: -1, b: 0, a: 0}
- _Rim_Lighting3_Color: {r: 1, g: 1, b: 1, a: 1}
+ - _Sea_Foam_Color: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Amplitude: {r: 0.4, g: 0.4, b: 0.4, a: 0.4}
- _Shatter_Wave_Chronotensity_Time_Factor: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Chronotensity_Weights0: {r: 0, g: 0, b: 0, a: 0}
diff --git a/Materials/Filament calibration/Mat01.mat b/Materials/Filament calibration/Mat01.mat
index faac686..31c6191 100644
--- a/Materials/Filament calibration/Mat01.mat
+++ b/Materials/Filament calibration/Mat01.mat
@@ -13,11 +13,13 @@ Material:
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _CAST_SHADOWS
+ - _CLEARCOAT_GEOMETRIC_NORMALS
- _METALLICS
- _RECEIVE_SHADOWS
- - _SPHERICAL_HARMONICS_L1
m_InvalidKeywords:
- _BUMP_SHADOWS
+ - _LIGHT_VOLUMES_BRIGHTNESS_ENABLED_DYNAMIC_ON
+ - _SPHERICAL_HARMONICS_L1
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
@@ -36,6 +38,10 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Clearcoat_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Cloth_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -268,6 +274,38 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Letter_Grid_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -312,6 +350,14 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Matcap2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Matcap2_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -368,6 +414,22 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_0_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_1_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_2_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_3_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _SmoothnessMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -376,6 +438,42 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_0:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_1:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_3:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_4:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_5:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_6:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_7:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Trochoid_Color_Ramp:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _UV_Domain_Warping_Noise:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -426,6 +524,7 @@ Material:
- _Bump_Shadows_Enabled: 1
- _Cast_Shadows_Enabled: 1
- _Clearcoat_Enabled: 0
+ - _Clearcoat_Geometric_Normals_Enabled: 1
- _Clearcoat_Roughness: 0.089
- _Clearcoat_Strength: 1
- _Clip: 0.5
@@ -450,6 +549,7 @@ Material:
- _Custom30_ro_Offset: 0
- _Cutoff: 0.5
- _Decal0_Angle: 0
+ - _Decal0_Bias: 0
- _Decal0_CMYK_Warping_Planes_Enabled: 0
- _Decal0_CMYK_Warping_Planes_Scale: 0.1
- _Decal0_CMYK_Warping_Planes_Speed: 1
@@ -466,23 +566,30 @@ Material:
- _Decal0_Emissions_Proximity_Max_Distance: 1
- _Decal0_Emissions_Proximity_Min_Distance: 0
- _Decal0_Enabled: 0
+ - _Decal0_Invert_Blend_Order: 0
- _Decal0_Mask_Enabled: 0
- _Decal0_Metallic: 0
- _Decal0_Normal_Enabled: 0
- _Decal0_Normal_Scale: 1
- _Decal0_Opacity: 1
+ - _Decal0_Reflections_Alpha_Blend: 0
- _Decal0_Reflections_Enabled: 0
- _Decal0_Replace_Alpha_Mode: 0
- _Decal0_Replace_Multiply_Mode: 0
- _Decal0_SDF_Enabled: 0
- _Decal0_SDF_Invert: 0
- _Decal0_SDF_Px_Range: 2
+ - _Decal0_SDF_SSN_Enabled: 0
+ - _Decal0_SDF_SSN_Only: 0
+ - _Decal0_SDF_SSN_Replace: 0
+ - _Decal0_SDF_SSN_Strength: 1
- _Decal0_SDF_Softness: 0.01
- _Decal0_SDF_Threshold: 0.5
- _Decal0_Smoothness: 0.5
- _Decal0_Tiling_Mode: 0
- _Decal0_UV_Channel: 0
- _Decal1_Angle: 0
+ - _Decal1_Bias: 0
- _Decal1_CMYK_Warping_Planes_Enabled: 0
- _Decal1_CMYK_Warping_Planes_Scale: 0.1
- _Decal1_CMYK_Warping_Planes_Speed: 1
@@ -499,23 +606,30 @@ Material:
- _Decal1_Emissions_Proximity_Max_Distance: 1
- _Decal1_Emissions_Proximity_Min_Distance: 0
- _Decal1_Enabled: 0
+ - _Decal1_Invert_Blend_Order: 0
- _Decal1_Mask_Enabled: 0
- _Decal1_Metallic: 0
- _Decal1_Normal_Enabled: 0
- _Decal1_Normal_Scale: 1
- _Decal1_Opacity: 1
+ - _Decal1_Reflections_Alpha_Blend: 0
- _Decal1_Reflections_Enabled: 0
- _Decal1_Replace_Alpha_Mode: 0
- _Decal1_Replace_Multiply_Mode: 0
- _Decal1_SDF_Enabled: 0
- _Decal1_SDF_Invert: 0
- _Decal1_SDF_Px_Range: 2
+ - _Decal1_SDF_SSN_Enabled: 0
+ - _Decal1_SDF_SSN_Only: 0
+ - _Decal1_SDF_SSN_Replace: 0
+ - _Decal1_SDF_SSN_Strength: 1
- _Decal1_SDF_Softness: 0.01
- _Decal1_SDF_Threshold: 0.5
- _Decal1_Smoothness: 0.5
- _Decal1_Tiling_Mode: 0
- _Decal1_UV_Channel: 0
- _Decal2_Angle: 0
+ - _Decal2_Bias: 0
- _Decal2_CMYK_Warping_Planes_Enabled: 0
- _Decal2_CMYK_Warping_Planes_Scale: 0.1
- _Decal2_CMYK_Warping_Planes_Speed: 1
@@ -532,23 +646,30 @@ Material:
- _Decal2_Emissions_Proximity_Max_Distance: 1
- _Decal2_Emissions_Proximity_Min_Distance: 0
- _Decal2_Enabled: 0
+ - _Decal2_Invert_Blend_Order: 0
- _Decal2_Mask_Enabled: 0
- _Decal2_Metallic: 0
- _Decal2_Normal_Enabled: 0
- _Decal2_Normal_Scale: 1
- _Decal2_Opacity: 1
+ - _Decal2_Reflections_Alpha_Blend: 0
- _Decal2_Reflections_Enabled: 0
- _Decal2_Replace_Alpha_Mode: 0
- _Decal2_Replace_Multiply_Mode: 0
- _Decal2_SDF_Enabled: 0
- _Decal2_SDF_Invert: 0
- _Decal2_SDF_Px_Range: 2
+ - _Decal2_SDF_SSN_Enabled: 0
+ - _Decal2_SDF_SSN_Only: 0
+ - _Decal2_SDF_SSN_Replace: 0
+ - _Decal2_SDF_SSN_Strength: 1
- _Decal2_SDF_Softness: 0.01
- _Decal2_SDF_Threshold: 0.5
- _Decal2_Smoothness: 0.5
- _Decal2_Tiling_Mode: 0
- _Decal2_UV_Channel: 0
- _Decal3_Angle: 0
+ - _Decal3_Bias: 0
- _Decal3_CMYK_Warping_Planes_Enabled: 0
- _Decal3_CMYK_Warping_Planes_Scale: 0.1
- _Decal3_CMYK_Warping_Planes_Speed: 1
@@ -565,23 +686,30 @@ Material:
- _Decal3_Emissions_Proximity_Max_Distance: 1
- _Decal3_Emissions_Proximity_Min_Distance: 0
- _Decal3_Enabled: 0
+ - _Decal3_Invert_Blend_Order: 0
- _Decal3_Mask_Enabled: 0
- _Decal3_Metallic: 0
- _Decal3_Normal_Enabled: 0
- _Decal3_Normal_Scale: 1
- _Decal3_Opacity: 1
+ - _Decal3_Reflections_Alpha_Blend: 0
- _Decal3_Reflections_Enabled: 0
- _Decal3_Replace_Alpha_Mode: 0
- _Decal3_Replace_Multiply_Mode: 0
- _Decal3_SDF_Enabled: 0
- _Decal3_SDF_Invert: 0
- _Decal3_SDF_Px_Range: 2
+ - _Decal3_SDF_SSN_Enabled: 0
+ - _Decal3_SDF_SSN_Only: 0
+ - _Decal3_SDF_SSN_Replace: 0
+ - _Decal3_SDF_SSN_Strength: 1
- _Decal3_SDF_Softness: 0.01
- _Decal3_SDF_Threshold: 0.5
- _Decal3_Smoothness: 0.5
- _Decal3_Tiling_Mode: 0
- _Decal3_UV_Channel: 0
- _Decal4_Angle: 0
+ - _Decal4_Bias: 0
- _Decal4_CMYK_Warping_Planes_Enabled: 0
- _Decal4_CMYK_Warping_Planes_Scale: 0.1
- _Decal4_CMYK_Warping_Planes_Speed: 1
@@ -598,23 +726,30 @@ Material:
- _Decal4_Emissions_Proximity_Max_Distance: 1
- _Decal4_Emissions_Proximity_Min_Distance: 0
- _Decal4_Enabled: 0
+ - _Decal4_Invert_Blend_Order: 0
- _Decal4_Mask_Enabled: 0
- _Decal4_Metallic: 0
- _Decal4_Normal_Enabled: 0
- _Decal4_Normal_Scale: 1
- _Decal4_Opacity: 1
+ - _Decal4_Reflections_Alpha_Blend: 0
- _Decal4_Reflections_Enabled: 0
- _Decal4_Replace_Alpha_Mode: 0
- _Decal4_Replace_Multiply_Mode: 0
- _Decal4_SDF_Enabled: 0
- _Decal4_SDF_Invert: 0
- _Decal4_SDF_Px_Range: 2
+ - _Decal4_SDF_SSN_Enabled: 0
+ - _Decal4_SDF_SSN_Only: 0
+ - _Decal4_SDF_SSN_Replace: 0
+ - _Decal4_SDF_SSN_Strength: 1
- _Decal4_SDF_Softness: 0.01
- _Decal4_SDF_Threshold: 0.5
- _Decal4_Smoothness: 0.5
- _Decal4_Tiling_Mode: 0
- _Decal4_UV_Channel: 0
- _Decal5_Angle: 0
+ - _Decal5_Bias: 0
- _Decal5_CMYK_Warping_Planes_Enabled: 0
- _Decal5_CMYK_Warping_Planes_Scale: 0.1
- _Decal5_CMYK_Warping_Planes_Speed: 1
@@ -631,23 +766,30 @@ Material:
- _Decal5_Emissions_Proximity_Max_Distance: 1
- _Decal5_Emissions_Proximity_Min_Distance: 0
- _Decal5_Enabled: 0
+ - _Decal5_Invert_Blend_Order: 0
- _Decal5_Mask_Enabled: 0
- _Decal5_Metallic: 0
- _Decal5_Normal_Enabled: 0
- _Decal5_Normal_Scale: 1
- _Decal5_Opacity: 1
+ - _Decal5_Reflections_Alpha_Blend: 0
- _Decal5_Reflections_Enabled: 0
- _Decal5_Replace_Alpha_Mode: 0
- _Decal5_Replace_Multiply_Mode: 0
- _Decal5_SDF_Enabled: 0
- _Decal5_SDF_Invert: 0
- _Decal5_SDF_Px_Range: 2
+ - _Decal5_SDF_SSN_Enabled: 0
+ - _Decal5_SDF_SSN_Only: 0
+ - _Decal5_SDF_SSN_Replace: 0
+ - _Decal5_SDF_SSN_Strength: 1
- _Decal5_SDF_Softness: 0.01
- _Decal5_SDF_Threshold: 0.5
- _Decal5_Smoothness: 0.5
- _Decal5_Tiling_Mode: 0
- _Decal5_UV_Channel: 0
- _Decal6_Angle: 0
+ - _Decal6_Bias: 0
- _Decal6_CMYK_Warping_Planes_Enabled: 0
- _Decal6_CMYK_Warping_Planes_Scale: 0.1
- _Decal6_CMYK_Warping_Planes_Speed: 1
@@ -664,23 +806,30 @@ Material:
- _Decal6_Emissions_Proximity_Max_Distance: 1
- _Decal6_Emissions_Proximity_Min_Distance: 0
- _Decal6_Enabled: 0
+ - _Decal6_Invert_Blend_Order: 0
- _Decal6_Mask_Enabled: 0
- _Decal6_Metallic: 0
- _Decal6_Normal_Enabled: 0
- _Decal6_Normal_Scale: 1
- _Decal6_Opacity: 1
+ - _Decal6_Reflections_Alpha_Blend: 0
- _Decal6_Reflections_Enabled: 0
- _Decal6_Replace_Alpha_Mode: 0
- _Decal6_Replace_Multiply_Mode: 0
- _Decal6_SDF_Enabled: 0
- _Decal6_SDF_Invert: 0
- _Decal6_SDF_Px_Range: 2
+ - _Decal6_SDF_SSN_Enabled: 0
+ - _Decal6_SDF_SSN_Only: 0
+ - _Decal6_SDF_SSN_Replace: 0
+ - _Decal6_SDF_SSN_Strength: 1
- _Decal6_SDF_Softness: 0.01
- _Decal6_SDF_Threshold: 0.5
- _Decal6_Smoothness: 0.5
- _Decal6_Tiling_Mode: 0
- _Decal6_UV_Channel: 0
- _Decal7_Angle: 0
+ - _Decal7_Bias: 0
- _Decal7_CMYK_Warping_Planes_Enabled: 0
- _Decal7_CMYK_Warping_Planes_Scale: 0.1
- _Decal7_CMYK_Warping_Planes_Speed: 1
@@ -697,17 +846,23 @@ Material:
- _Decal7_Emissions_Proximity_Max_Distance: 1
- _Decal7_Emissions_Proximity_Min_Distance: 0
- _Decal7_Enabled: 0
+ - _Decal7_Invert_Blend_Order: 0
- _Decal7_Mask_Enabled: 0
- _Decal7_Metallic: 0
- _Decal7_Normal_Enabled: 0
- _Decal7_Normal_Scale: 1
- _Decal7_Opacity: 1
+ - _Decal7_Reflections_Alpha_Blend: 0
- _Decal7_Reflections_Enabled: 0
- _Decal7_Replace_Alpha_Mode: 0
- _Decal7_Replace_Multiply_Mode: 0
- _Decal7_SDF_Enabled: 0
- _Decal7_SDF_Invert: 0
- _Decal7_SDF_Px_Range: 2
+ - _Decal7_SDF_SSN_Enabled: 0
+ - _Decal7_SDF_SSN_Only: 0
+ - _Decal7_SDF_SSN_Replace: 0
+ - _Decal7_SDF_SSN_Strength: 1
- _Decal7_SDF_Softness: 0.01
- _Decal7_SDF_Threshold: 0.5
- _Decal7_Smoothness: 0.5
@@ -716,6 +871,7 @@ Material:
- _Depth_Prepass_Enabled: 0
- _DetailNormalMapScale: 1
- _Detail_Maps_Enabled: 0
+ - _Detail_Maps_UV_Channel: 0
- _DstBlend: 0
- _DstBlendAlpha: 10
- _Emission_Enabled: 0
@@ -772,9 +928,19 @@ Material:
- _Glitter_Mask_Enabled: 0
- _Glitter_Size: 1
- _Glitter_Size_Randomization_Range: 0.4
+ - _Glitter_UV_Channel: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
+ - _Gradient_Normals_0_Horizontal_Enabled: 0
+ - _Gradient_Normals_0_Vertical_Enabled: 0
+ - _Gradient_Normals_1_Horizontal_Enabled: 0
+ - _Gradient_Normals_1_Vertical_Enabled: 0
+ - _Gradient_Normals_2_Horizontal_Enabled: 0
+ - _Gradient_Normals_2_Vertical_Enabled: 0
+ - _Gradient_Normals_3_Horizontal_Enabled: 0
+ - _Gradient_Normals_3_Vertical_Enabled: 0
+ - _Gradient_Normals_Enabled: 0
- _Grayscale_Lightmaps_Enabled: 0
- _Harnack_Tracing_Enabled: 0
- _Harnack_Tracing_Gyroid_Enabled: 0
@@ -797,6 +963,9 @@ Material:
- _Letter_Grid_Screen_Px_Range: 10
- _Letter_Grid_Tex_Res_X: 16
- _Letter_Grid_Tex_Res_Y: 8
+ - _Light_Volumes_Brightness: 1
+ - _Light_Volumes_Brightness_Enabled: 0
+ - _Light_Volumes_Brightness_Enabled_Dynamic: 1
- _MaskedStencil1BackCompareFunction: 8
- _MaskedStencil1BackFailOp: 0
- _MaskedStencil1BackPassOp: 0
@@ -877,6 +1046,14 @@ Material:
- _Matcap1_Quantization_Steps: 1
- _Matcap1_Strength: 1
- _Matcap1_Target_Mask: 1
+ - _Matcap2_Enabled: 0
+ - _Matcap2_Invert: 0
+ - _Matcap2_Mask_Enabled: 0
+ - _Matcap2_Mode: 0
+ - _Matcap2_Quantization_Enabled: 0
+ - _Matcap2_Quantization_Steps: 1
+ - _Matcap2_Strength: 1
+ - _Matcap2_Target_Mask: 1
- _Material_Type_Cloth_Enabled: 0
- _Material_Type_Cloth_Subsurface: 0
- _Metallic: 0
@@ -928,6 +1105,9 @@ Material:
- _Quantize_NoL_Steps: 1
- _Quantize_Specular_Enabled: 0
- _Quantize_Specular_Steps: 1
+ - _Quasi_Shadows_0_Threshold: 0.5
+ - _Quasi_Shadows_0_Width: 0.1
+ - _Quasi_Shadows_Enabled: 0
- _Raymarched_Fog_Albedo: 1
- _Raymarched_Fog_Density_Exponent: 1
- _Raymarched_Fog_Density_Exponent_Enabled: 0
@@ -1009,6 +1189,17 @@ Material:
- _SSFD_Threshold: 0.5
- _SampleWorld: 0
- _Saturation: 0
+ - _Screen_Space_Normals_Enabled: 0
+ - _Sea_Foam_0_Enabled: 0
+ - _Sea_Foam_1_Enabled: 0
+ - _Sea_Foam_2_Enabled: 0
+ - _Sea_Foam_3_Enabled: 0
+ - _Sea_Foam_Bias: 0
+ - _Sea_Foam_Enabled: 0
+ - _Sea_Foam_Factor: 1
+ - _Sea_Foam_Lambda: 1
+ - _Sea_Foam_Power: 1
+ - _Sea_Foam_Roughness: 0.85
- _ShaderOptimizerEnabled: 0
- _Shadow_Strength: 0.25
- _Shatter_Wave_Audiolink_Enabled: 0
@@ -1047,16 +1238,53 @@ Material:
- _Stencil_Enabled: 0
- _Tessellation_Enabled: 0
- _Tessellation_Factor: 1
+ - _Tessellation_Falloff_Factor: 1
+ - _Tessellation_Frustum_Culling_Bias: 35
+ - _Tessellation_Heightmap_0_Enabled: 0
+ - _Tessellation_Heightmap_0_Offset: 0
+ - _Tessellation_Heightmap_0_Scale: 1
+ - _Tessellation_Heightmap_1_Enabled: 0
+ - _Tessellation_Heightmap_1_Offset: 0
+ - _Tessellation_Heightmap_1_Scale: 1
+ - _Tessellation_Heightmap_2_Enabled: 0
+ - _Tessellation_Heightmap_2_Offset: 0
+ - _Tessellation_Heightmap_2_Scale: 1
+ - _Tessellation_Heightmap_3_Enabled: 0
+ - _Tessellation_Heightmap_3_Offset: 0
+ - _Tessellation_Heightmap_3_Scale: 1
+ - _Tessellation_Heightmap_4_Enabled: 0
+ - _Tessellation_Heightmap_4_Offset: 0
+ - _Tessellation_Heightmap_4_Scale: 1
+ - _Tessellation_Heightmap_5_Enabled: 0
+ - _Tessellation_Heightmap_5_Offset: 0
+ - _Tessellation_Heightmap_5_Scale: 1
+ - _Tessellation_Heightmap_6_Enabled: 0
+ - _Tessellation_Heightmap_6_Offset: 0
+ - _Tessellation_Heightmap_6_Scale: 1
+ - _Tessellation_Heightmap_7_Enabled: 0
+ - _Tessellation_Heightmap_7_Offset: 0
+ - _Tessellation_Heightmap_7_Scale: 1
- _Tessellation_Heightmap_Direction_Control_Enabled: 0
- _Tessellation_Heightmap_Enabled: 0
- _Tessellation_Heightmap_Offset: 0
- _Tessellation_Heightmap_Scale: 1
+ - _Tessellation_Heightmap_World_Space_Enabled: 0
- _Tessellation_Range_Factor_Distance_Far: 1
- _Tessellation_Range_Factor_Distance_Near: 1
- _Tessellation_Range_Factor_Enabled: 0
- _Tessellation_Range_Factor_Factor_Far: 1
- _Tessellation_Range_Factor_Factor_Near: 1
- _Tessellation_Range_Factor_Help: 0
+ - _Trochoid_Enabled: 0
+ - _Trochoid_R: 1
+ - _Trochoid_X_Scale: 1
+ - _Trochoid_Y_Scale: 1
+ - _Trochoid_Z_Scale: 1
+ - _Trochoid_d: 1
+ - _Trochoid_r: 1
+ - _Trochoid_r_Power: 1
+ - _Trochoid_t_k: 1
+ - _Trochoid_theta_k: 1
- _UVSec: 0
- _UV_Domain_Warping_Enabled: 0
- _UV_Domain_Warping_Spatial_Octaves: 1
@@ -1558,6 +1786,7 @@ Material:
- m_end_Decal0_Normal: 0
- m_end_Decal0_Reflections: 0
- m_end_Decal0_SDF: 0
+ - m_end_Decal0_SSN: 0
- m_end_Decal1: 0
- m_end_Decal1_CMYK_Warping_Planes: 0
- m_end_Decal1_Domain_Warping: 0
@@ -1567,6 +1796,7 @@ Material:
- m_end_Decal1_Normal: 0
- m_end_Decal1_Reflections: 0
- m_end_Decal1_SDF: 0
+ - m_end_Decal1_SSN: 0
- m_end_Decal2: 0
- m_end_Decal2_CMYK_Warping_Planes: 0
- m_end_Decal2_Domain_Warping: 0
@@ -1576,6 +1806,7 @@ Material:
- m_end_Decal2_Normal: 0
- m_end_Decal2_Reflections: 0
- m_end_Decal2_SDF: 0
+ - m_end_Decal2_SSN: 0
- m_end_Decal3: 0
- m_end_Decal3_CMYK_Warping_Planes: 0
- m_end_Decal3_Domain_Warping: 0
@@ -1585,6 +1816,7 @@ Material:
- m_end_Decal3_Normal: 0
- m_end_Decal3_Reflections: 0
- m_end_Decal3_SDF: 0
+ - m_end_Decal3_SSN: 0
- m_end_Decal4: 0
- m_end_Decal4_CMYK_Warping_Planes: 0
- m_end_Decal4_Domain_Warping: 0
@@ -1594,6 +1826,7 @@ Material:
- m_end_Decal4_Normal: 0
- m_end_Decal4_Reflections: 0
- m_end_Decal4_SDF: 0
+ - m_end_Decal4_SSN: 0
- m_end_Decal5: 0
- m_end_Decal5_CMYK_Warping_Planes: 0
- m_end_Decal5_Domain_Warping: 0
@@ -1603,6 +1836,7 @@ Material:
- m_end_Decal5_Normal: 0
- m_end_Decal5_Reflections: 0
- m_end_Decal5_SDF: 0
+ - m_end_Decal5_SSN: 0
- m_end_Decal6: 0
- m_end_Decal6_CMYK_Warping_Planes: 0
- m_end_Decal6_Domain_Warping: 0
@@ -1612,6 +1846,7 @@ Material:
- m_end_Decal6_Normal: 0
- m_end_Decal6_Reflections: 0
- m_end_Decal6_SDF: 0
+ - m_end_Decal6_SSN: 0
- m_end_Decal7: 0
- m_end_Decal7_CMYK_Warping_Planes: 0
- m_end_Decal7_Domain_Warping: 0
@@ -1621,6 +1856,7 @@ Material:
- m_end_Decal7_Normal: 0
- m_end_Decal7_Reflections: 0
- m_end_Decal7_SDF: 0
+ - m_end_Decal7_SSN: 0
- m_end_Decals: 0
- m_end_Depth_Prepass: 0
- m_end_Detail_Maps: 0
@@ -1637,11 +1873,21 @@ Material:
- m_end_Glitter: 0
- m_end_Glitter_Angle_Limit: 0
- m_end_Glitter_Mask: 0
+ - m_end_Gradient_Normals: 0
+ - m_end_Gradient_Normals_0: 0
+ - m_end_Gradient_Normals_0_Horizontal: 0
+ - m_end_Gradient_Normals_1: 0
+ - m_end_Gradient_Normals_1_Horizontal: 0
+ - m_end_Gradient_Normals_2: 0
+ - m_end_Gradient_Normals_2_Horizontal: 0
+ - m_end_Gradient_Normals_3: 0
+ - m_end_Gradient_Normals_3_Horizontal: 0
- m_end_Grayscale_Lightmaps: 0
- m_end_Harnack_Tracing: 0
- m_end_Harnack_Tracing_Gyroid: 0
- m_end_LTCGI: 0
- m_end_Letter_Grid: 0
+ - m_end_Light_Volumes_Brightness: 0
- m_end_MaskedStencil1PassBackOptions: 0
- m_end_MaskedStencil1PassFrontOptions: 0
- m_end_MaskedStencil2PassBackOptions: 0
@@ -1660,6 +1906,9 @@ Material:
- m_end_Matcap1: 0
- m_end_Matcap1_Mask: 0
- m_end_Matcap1_Quantization: 0
+ - m_end_Matcap2: 0
+ - m_end_Matcap2_Mask: 0
+ - m_end_Matcap2_Quantization: 0
- m_end_Matcaps: 0
- m_end_Material_Type_Cloth: 0
- m_end_Material_Type_Cloth_Subsurface: 0
@@ -1675,6 +1924,7 @@ Material:
- m_end_OutlinesMask: 0
- m_end_Quantize_NoL: 0
- m_end_Quantize_Specular: 0
+ - m_end_Quasi_Shadows: 0
- m_end_Raymarched_Fog: 0
- m_end_Raymarched_Fog_Density_Exponent: 0
- m_end_Raymarched_Fog_Emitter_Texture: 0
@@ -1698,6 +1948,12 @@ Material:
- m_end_Rim_Lighting3_Quantization: 0
- m_end_SSAO: 0
- m_end_SSFD: 0
+ - m_end_Screen_Space_Normals: 0
+ - m_end_Sea_Foam: 0
+ - m_end_Sea_Foam_0: 0
+ - m_end_Sea_Foam_1: 0
+ - m_end_Sea_Foam_2: 0
+ - m_end_Sea_Foam_3: 0
- m_end_Shadow_Casting: 0
- m_end_Shadow_Receiving: 0
- m_end_Shatter_Wave: 0
@@ -1710,8 +1966,17 @@ Material:
- m_end_StencilPassFrontOptions: 0
- m_end_Tessellation: 0
- m_end_Tessellation_Heightmap: 0
+ - m_end_Tessellation_Heightmap_0: 0
+ - m_end_Tessellation_Heightmap_1: 0
+ - m_end_Tessellation_Heightmap_2: 0
+ - m_end_Tessellation_Heightmap_3: 0
+ - m_end_Tessellation_Heightmap_4: 0
+ - m_end_Tessellation_Heightmap_5: 0
+ - m_end_Tessellation_Heightmap_6: 0
+ - m_end_Tessellation_Heightmap_7: 0
- m_end_Tessellation_Heightmap_Direction_Control: 0
- m_end_Tessellation_Range_Factor: 0
+ - m_end_Trochoid: 0
- m_end_UV_Domain_Warping: 0
- m_end_Unigram_Letter_Grid: 0
- m_end_Unlit: 0
@@ -1749,6 +2014,7 @@ Material:
- m_start_Decal0_Normal: 0
- m_start_Decal0_Reflections: 0
- m_start_Decal0_SDF: 0
+ - m_start_Decal0_SSN: 0
- m_start_Decal1: 0
- m_start_Decal1_CMYK_Warping_Planes: 0
- m_start_Decal1_Domain_Warping: 0
@@ -1758,6 +2024,7 @@ Material:
- m_start_Decal1_Normal: 0
- m_start_Decal1_Reflections: 0
- m_start_Decal1_SDF: 0
+ - m_start_Decal1_SSN: 0
- m_start_Decal2: 0
- m_start_Decal2_CMYK_Warping_Planes: 0
- m_start_Decal2_Domain_Warping: 0
@@ -1767,6 +2034,7 @@ Material:
- m_start_Decal2_Normal: 0
- m_start_Decal2_Reflections: 0
- m_start_Decal2_SDF: 0
+ - m_start_Decal2_SSN: 0
- m_start_Decal3: 0
- m_start_Decal3_CMYK_Warping_Planes: 0
- m_start_Decal3_Domain_Warping: 0
@@ -1776,6 +2044,7 @@ Material:
- m_start_Decal3_Normal: 0
- m_start_Decal3_Reflections: 0
- m_start_Decal3_SDF: 0
+ - m_start_Decal3_SSN: 0
- m_start_Decal4: 0
- m_start_Decal4_CMYK_Warping_Planes: 0
- m_start_Decal4_Domain_Warping: 0
@@ -1785,6 +2054,7 @@ Material:
- m_start_Decal4_Normal: 0
- m_start_Decal4_Reflections: 0
- m_start_Decal4_SDF: 0
+ - m_start_Decal4_SSN: 0
- m_start_Decal5: 0
- m_start_Decal5_CMYK_Warping_Planes: 0
- m_start_Decal5_Domain_Warping: 0
@@ -1794,6 +2064,7 @@ Material:
- m_start_Decal5_Normal: 0
- m_start_Decal5_Reflections: 0
- m_start_Decal5_SDF: 0
+ - m_start_Decal5_SSN: 0
- m_start_Decal6: 0
- m_start_Decal6_CMYK_Warping_Planes: 0
- m_start_Decal6_Domain_Warping: 0
@@ -1803,6 +2074,7 @@ Material:
- m_start_Decal6_Normal: 0
- m_start_Decal6_Reflections: 0
- m_start_Decal6_SDF: 0
+ - m_start_Decal6_SSN: 0
- m_start_Decal7: 0
- m_start_Decal7_CMYK_Warping_Planes: 0
- m_start_Decal7_Domain_Warping: 0
@@ -1812,6 +2084,7 @@ Material:
- m_start_Decal7_Normal: 0
- m_start_Decal7_Reflections: 0
- m_start_Decal7_SDF: 0
+ - m_start_Decal7_SSN: 0
- m_start_Decals: 0
- m_start_Depth_Prepass: 0
- m_start_Detail_Maps: 0
@@ -1828,11 +2101,21 @@ Material:
- m_start_Glitter: 0
- m_start_Glitter_Angle_Limit: 0
- m_start_Glitter_Mask: 0
+ - m_start_Gradient_Normals: 0
+ - m_start_Gradient_Normals_0: 0
+ - m_start_Gradient_Normals_0_Horizontal: 0
+ - m_start_Gradient_Normals_1: 0
+ - m_start_Gradient_Normals_1_Horizontal: 0
+ - m_start_Gradient_Normals_2: 0
+ - m_start_Gradient_Normals_2_Horizontal: 0
+ - m_start_Gradient_Normals_3: 0
+ - m_start_Gradient_Normals_3_Horizontal: 0
- m_start_Grayscale_Lightmaps: 0
- m_start_Harnack_Tracing: 0
- m_start_Harnack_Tracing_Gyroid: 0
- m_start_LTCGI: 0
- m_start_Letter_Grid: 0
+ - m_start_Light_Volumes_Brightness: 0
- m_start_MaskedStencil1PassBackOptions: 0
- m_start_MaskedStencil1PassFrontOptions: 0
- m_start_MaskedStencil2PassBackOptions: 0
@@ -1851,6 +2134,9 @@ Material:
- m_start_Matcap1: 0
- m_start_Matcap1_Mask: 0
- m_start_Matcap1_Quantization: 0
+ - m_start_Matcap2: 0
+ - m_start_Matcap2_Mask: 0
+ - m_start_Matcap2_Quantization: 0
- m_start_Matcaps: 0
- m_start_Material_Type_Cloth: 0
- m_start_Material_Type_Cloth_Subsurface: 0
@@ -1866,6 +2152,7 @@ Material:
- m_start_OutlinesMask: 0
- m_start_Quantize_NoL: 0
- m_start_Quantize_Specular: 0
+ - m_start_Quasi_Shadows: 0
- m_start_Raymarched_Fog: 0
- m_start_Raymarched_Fog_Density_Exponent: 0
- m_start_Raymarched_Fog_Emitter_Texture: 0
@@ -1889,6 +2176,12 @@ Material:
- m_start_Rim_Lighting3_Quantization: 0
- m_start_SSAO: 0
- m_start_SSFD: 0
+ - m_start_Screen_Space_Normals: 0
+ - m_start_Sea_Foam: 0
+ - m_start_Sea_Foam_0: 0
+ - m_start_Sea_Foam_1: 0
+ - m_start_Sea_Foam_2: 0
+ - m_start_Sea_Foam_3: 0
- m_start_Shadow_Casting: 0
- m_start_Shadow_Receiving: 0
- m_start_Shatter_Wave: 0
@@ -1901,8 +2194,17 @@ Material:
- m_start_StencilPassFrontOptions: 0
- m_start_Tessellation: 0
- m_start_Tessellation_Heightmap: 0
+ - m_start_Tessellation_Heightmap_0: 0
+ - m_start_Tessellation_Heightmap_1: 0
+ - m_start_Tessellation_Heightmap_2: 0
+ - m_start_Tessellation_Heightmap_3: 0
+ - m_start_Tessellation_Heightmap_4: 0
+ - m_start_Tessellation_Heightmap_5: 0
+ - m_start_Tessellation_Heightmap_6: 0
+ - m_start_Tessellation_Heightmap_7: 0
- m_start_Tessellation_Heightmap_Direction_Control: 0
- m_start_Tessellation_Range_Factor: 0
+ - m_start_Trochoid: 0
- m_start_UV_Domain_Warping: 0
- m_start_Unigram_Letter_Grid: 0
- m_start_Unlit: 0
@@ -1961,6 +2263,7 @@ Material:
- _Letter_Grid_UV_Scale_Offset: {r: 1, g: 1, b: 0, a: 0}
- _MetalReflectionTint: {r: 1, g: 1, b: 1, a: 1}
- _Outline_Color: {r: 0, g: 0, b: 0, a: 1}
+ - _Quasi_Shadows_0_Color: {r: 1, g: 1, b: 1, a: 1}
- _Raymarched_Fog_Color: {r: 0.29999998, g: 0.29999998, b: 0.29999998, a: 1}
- _Raymarched_Fog_Density_Noise_Scale: {r: 1, g: 1, b: 1, a: 0}
- _Raymarched_Fog_Emitter_Texture_World_Normal: {r: 0, g: 0, b: 0, a: 0}
@@ -1977,6 +2280,7 @@ Material:
- _Rim_Lighting2_Color: {r: 1, g: 1, b: 1, a: 1}
- _Rim_Lighting3_Angle_Limit_Target_Vector: {r: 0, g: -1, b: 0, a: 0}
- _Rim_Lighting3_Color: {r: 1, g: 1, b: 1, a: 1}
+ - _Sea_Foam_Color: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Amplitude: {r: 0.4, g: 0.4, b: 0.4, a: 0.4}
- _Shatter_Wave_Chronotensity_Time_Factor: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Chronotensity_Weights0: {r: 0, g: 0, b: 0, a: 0}
diff --git a/Materials/Filament calibration/Mat02.mat b/Materials/Filament calibration/Mat02.mat
index 9f5cddd..7404d0c 100644
--- a/Materials/Filament calibration/Mat02.mat
+++ b/Materials/Filament calibration/Mat02.mat
@@ -13,11 +13,13 @@ Material:
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _CAST_SHADOWS
+ - _CLEARCOAT_GEOMETRIC_NORMALS
- _METALLICS
- _RECEIVE_SHADOWS
- - _SPHERICAL_HARMONICS_L1
m_InvalidKeywords:
- _BUMP_SHADOWS
+ - _LIGHT_VOLUMES_BRIGHTNESS_ENABLED_DYNAMIC_ON
+ - _SPHERICAL_HARMONICS_L1
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
@@ -36,6 +38,10 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Clearcoat_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Cloth_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -268,6 +274,38 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Letter_Grid_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -312,6 +350,14 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Matcap2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Matcap2_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -368,6 +414,22 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_0_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_1_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_2_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_3_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _SmoothnessMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -376,6 +438,42 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_0:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_1:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_3:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_4:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_5:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_6:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_7:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Trochoid_Color_Ramp:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _UV_Domain_Warping_Noise:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -426,6 +524,7 @@ Material:
- _Bump_Shadows_Enabled: 1
- _Cast_Shadows_Enabled: 1
- _Clearcoat_Enabled: 0
+ - _Clearcoat_Geometric_Normals_Enabled: 1
- _Clearcoat_Roughness: 0.089
- _Clearcoat_Strength: 1
- _Clip: 0.5
@@ -450,6 +549,7 @@ Material:
- _Custom30_ro_Offset: 0
- _Cutoff: 0.5
- _Decal0_Angle: 0
+ - _Decal0_Bias: 0
- _Decal0_CMYK_Warping_Planes_Enabled: 0
- _Decal0_CMYK_Warping_Planes_Scale: 0.1
- _Decal0_CMYK_Warping_Planes_Speed: 1
@@ -466,23 +566,30 @@ Material:
- _Decal0_Emissions_Proximity_Max_Distance: 1
- _Decal0_Emissions_Proximity_Min_Distance: 0
- _Decal0_Enabled: 0
+ - _Decal0_Invert_Blend_Order: 0
- _Decal0_Mask_Enabled: 0
- _Decal0_Metallic: 0
- _Decal0_Normal_Enabled: 0
- _Decal0_Normal_Scale: 1
- _Decal0_Opacity: 1
+ - _Decal0_Reflections_Alpha_Blend: 0
- _Decal0_Reflections_Enabled: 0
- _Decal0_Replace_Alpha_Mode: 0
- _Decal0_Replace_Multiply_Mode: 0
- _Decal0_SDF_Enabled: 0
- _Decal0_SDF_Invert: 0
- _Decal0_SDF_Px_Range: 2
+ - _Decal0_SDF_SSN_Enabled: 0
+ - _Decal0_SDF_SSN_Only: 0
+ - _Decal0_SDF_SSN_Replace: 0
+ - _Decal0_SDF_SSN_Strength: 1
- _Decal0_SDF_Softness: 0.01
- _Decal0_SDF_Threshold: 0.5
- _Decal0_Smoothness: 0.5
- _Decal0_Tiling_Mode: 0
- _Decal0_UV_Channel: 0
- _Decal1_Angle: 0
+ - _Decal1_Bias: 0
- _Decal1_CMYK_Warping_Planes_Enabled: 0
- _Decal1_CMYK_Warping_Planes_Scale: 0.1
- _Decal1_CMYK_Warping_Planes_Speed: 1
@@ -499,23 +606,30 @@ Material:
- _Decal1_Emissions_Proximity_Max_Distance: 1
- _Decal1_Emissions_Proximity_Min_Distance: 0
- _Decal1_Enabled: 0
+ - _Decal1_Invert_Blend_Order: 0
- _Decal1_Mask_Enabled: 0
- _Decal1_Metallic: 0
- _Decal1_Normal_Enabled: 0
- _Decal1_Normal_Scale: 1
- _Decal1_Opacity: 1
+ - _Decal1_Reflections_Alpha_Blend: 0
- _Decal1_Reflections_Enabled: 0
- _Decal1_Replace_Alpha_Mode: 0
- _Decal1_Replace_Multiply_Mode: 0
- _Decal1_SDF_Enabled: 0
- _Decal1_SDF_Invert: 0
- _Decal1_SDF_Px_Range: 2
+ - _Decal1_SDF_SSN_Enabled: 0
+ - _Decal1_SDF_SSN_Only: 0
+ - _Decal1_SDF_SSN_Replace: 0
+ - _Decal1_SDF_SSN_Strength: 1
- _Decal1_SDF_Softness: 0.01
- _Decal1_SDF_Threshold: 0.5
- _Decal1_Smoothness: 0.5
- _Decal1_Tiling_Mode: 0
- _Decal1_UV_Channel: 0
- _Decal2_Angle: 0
+ - _Decal2_Bias: 0
- _Decal2_CMYK_Warping_Planes_Enabled: 0
- _Decal2_CMYK_Warping_Planes_Scale: 0.1
- _Decal2_CMYK_Warping_Planes_Speed: 1
@@ -532,23 +646,30 @@ Material:
- _Decal2_Emissions_Proximity_Max_Distance: 1
- _Decal2_Emissions_Proximity_Min_Distance: 0
- _Decal2_Enabled: 0
+ - _Decal2_Invert_Blend_Order: 0
- _Decal2_Mask_Enabled: 0
- _Decal2_Metallic: 0
- _Decal2_Normal_Enabled: 0
- _Decal2_Normal_Scale: 1
- _Decal2_Opacity: 1
+ - _Decal2_Reflections_Alpha_Blend: 0
- _Decal2_Reflections_Enabled: 0
- _Decal2_Replace_Alpha_Mode: 0
- _Decal2_Replace_Multiply_Mode: 0
- _Decal2_SDF_Enabled: 0
- _Decal2_SDF_Invert: 0
- _Decal2_SDF_Px_Range: 2
+ - _Decal2_SDF_SSN_Enabled: 0
+ - _Decal2_SDF_SSN_Only: 0
+ - _Decal2_SDF_SSN_Replace: 0
+ - _Decal2_SDF_SSN_Strength: 1
- _Decal2_SDF_Softness: 0.01
- _Decal2_SDF_Threshold: 0.5
- _Decal2_Smoothness: 0.5
- _Decal2_Tiling_Mode: 0
- _Decal2_UV_Channel: 0
- _Decal3_Angle: 0
+ - _Decal3_Bias: 0
- _Decal3_CMYK_Warping_Planes_Enabled: 0
- _Decal3_CMYK_Warping_Planes_Scale: 0.1
- _Decal3_CMYK_Warping_Planes_Speed: 1
@@ -565,23 +686,30 @@ Material:
- _Decal3_Emissions_Proximity_Max_Distance: 1
- _Decal3_Emissions_Proximity_Min_Distance: 0
- _Decal3_Enabled: 0
+ - _Decal3_Invert_Blend_Order: 0
- _Decal3_Mask_Enabled: 0
- _Decal3_Metallic: 0
- _Decal3_Normal_Enabled: 0
- _Decal3_Normal_Scale: 1
- _Decal3_Opacity: 1
+ - _Decal3_Reflections_Alpha_Blend: 0
- _Decal3_Reflections_Enabled: 0
- _Decal3_Replace_Alpha_Mode: 0
- _Decal3_Replace_Multiply_Mode: 0
- _Decal3_SDF_Enabled: 0
- _Decal3_SDF_Invert: 0
- _Decal3_SDF_Px_Range: 2
+ - _Decal3_SDF_SSN_Enabled: 0
+ - _Decal3_SDF_SSN_Only: 0
+ - _Decal3_SDF_SSN_Replace: 0
+ - _Decal3_SDF_SSN_Strength: 1
- _Decal3_SDF_Softness: 0.01
- _Decal3_SDF_Threshold: 0.5
- _Decal3_Smoothness: 0.5
- _Decal3_Tiling_Mode: 0
- _Decal3_UV_Channel: 0
- _Decal4_Angle: 0
+ - _Decal4_Bias: 0
- _Decal4_CMYK_Warping_Planes_Enabled: 0
- _Decal4_CMYK_Warping_Planes_Scale: 0.1
- _Decal4_CMYK_Warping_Planes_Speed: 1
@@ -598,23 +726,30 @@ Material:
- _Decal4_Emissions_Proximity_Max_Distance: 1
- _Decal4_Emissions_Proximity_Min_Distance: 0
- _Decal4_Enabled: 0
+ - _Decal4_Invert_Blend_Order: 0
- _Decal4_Mask_Enabled: 0
- _Decal4_Metallic: 0
- _Decal4_Normal_Enabled: 0
- _Decal4_Normal_Scale: 1
- _Decal4_Opacity: 1
+ - _Decal4_Reflections_Alpha_Blend: 0
- _Decal4_Reflections_Enabled: 0
- _Decal4_Replace_Alpha_Mode: 0
- _Decal4_Replace_Multiply_Mode: 0
- _Decal4_SDF_Enabled: 0
- _Decal4_SDF_Invert: 0
- _Decal4_SDF_Px_Range: 2
+ - _Decal4_SDF_SSN_Enabled: 0
+ - _Decal4_SDF_SSN_Only: 0
+ - _Decal4_SDF_SSN_Replace: 0
+ - _Decal4_SDF_SSN_Strength: 1
- _Decal4_SDF_Softness: 0.01
- _Decal4_SDF_Threshold: 0.5
- _Decal4_Smoothness: 0.5
- _Decal4_Tiling_Mode: 0
- _Decal4_UV_Channel: 0
- _Decal5_Angle: 0
+ - _Decal5_Bias: 0
- _Decal5_CMYK_Warping_Planes_Enabled: 0
- _Decal5_CMYK_Warping_Planes_Scale: 0.1
- _Decal5_CMYK_Warping_Planes_Speed: 1
@@ -631,23 +766,30 @@ Material:
- _Decal5_Emissions_Proximity_Max_Distance: 1
- _Decal5_Emissions_Proximity_Min_Distance: 0
- _Decal5_Enabled: 0
+ - _Decal5_Invert_Blend_Order: 0
- _Decal5_Mask_Enabled: 0
- _Decal5_Metallic: 0
- _Decal5_Normal_Enabled: 0
- _Decal5_Normal_Scale: 1
- _Decal5_Opacity: 1
+ - _Decal5_Reflections_Alpha_Blend: 0
- _Decal5_Reflections_Enabled: 0
- _Decal5_Replace_Alpha_Mode: 0
- _Decal5_Replace_Multiply_Mode: 0
- _Decal5_SDF_Enabled: 0
- _Decal5_SDF_Invert: 0
- _Decal5_SDF_Px_Range: 2
+ - _Decal5_SDF_SSN_Enabled: 0
+ - _Decal5_SDF_SSN_Only: 0
+ - _Decal5_SDF_SSN_Replace: 0
+ - _Decal5_SDF_SSN_Strength: 1
- _Decal5_SDF_Softness: 0.01
- _Decal5_SDF_Threshold: 0.5
- _Decal5_Smoothness: 0.5
- _Decal5_Tiling_Mode: 0
- _Decal5_UV_Channel: 0
- _Decal6_Angle: 0
+ - _Decal6_Bias: 0
- _Decal6_CMYK_Warping_Planes_Enabled: 0
- _Decal6_CMYK_Warping_Planes_Scale: 0.1
- _Decal6_CMYK_Warping_Planes_Speed: 1
@@ -664,23 +806,30 @@ Material:
- _Decal6_Emissions_Proximity_Max_Distance: 1
- _Decal6_Emissions_Proximity_Min_Distance: 0
- _Decal6_Enabled: 0
+ - _Decal6_Invert_Blend_Order: 0
- _Decal6_Mask_Enabled: 0
- _Decal6_Metallic: 0
- _Decal6_Normal_Enabled: 0
- _Decal6_Normal_Scale: 1
- _Decal6_Opacity: 1
+ - _Decal6_Reflections_Alpha_Blend: 0
- _Decal6_Reflections_Enabled: 0
- _Decal6_Replace_Alpha_Mode: 0
- _Decal6_Replace_Multiply_Mode: 0
- _Decal6_SDF_Enabled: 0
- _Decal6_SDF_Invert: 0
- _Decal6_SDF_Px_Range: 2
+ - _Decal6_SDF_SSN_Enabled: 0
+ - _Decal6_SDF_SSN_Only: 0
+ - _Decal6_SDF_SSN_Replace: 0
+ - _Decal6_SDF_SSN_Strength: 1
- _Decal6_SDF_Softness: 0.01
- _Decal6_SDF_Threshold: 0.5
- _Decal6_Smoothness: 0.5
- _Decal6_Tiling_Mode: 0
- _Decal6_UV_Channel: 0
- _Decal7_Angle: 0
+ - _Decal7_Bias: 0
- _Decal7_CMYK_Warping_Planes_Enabled: 0
- _Decal7_CMYK_Warping_Planes_Scale: 0.1
- _Decal7_CMYK_Warping_Planes_Speed: 1
@@ -697,17 +846,23 @@ Material:
- _Decal7_Emissions_Proximity_Max_Distance: 1
- _Decal7_Emissions_Proximity_Min_Distance: 0
- _Decal7_Enabled: 0
+ - _Decal7_Invert_Blend_Order: 0
- _Decal7_Mask_Enabled: 0
- _Decal7_Metallic: 0
- _Decal7_Normal_Enabled: 0
- _Decal7_Normal_Scale: 1
- _Decal7_Opacity: 1
+ - _Decal7_Reflections_Alpha_Blend: 0
- _Decal7_Reflections_Enabled: 0
- _Decal7_Replace_Alpha_Mode: 0
- _Decal7_Replace_Multiply_Mode: 0
- _Decal7_SDF_Enabled: 0
- _Decal7_SDF_Invert: 0
- _Decal7_SDF_Px_Range: 2
+ - _Decal7_SDF_SSN_Enabled: 0
+ - _Decal7_SDF_SSN_Only: 0
+ - _Decal7_SDF_SSN_Replace: 0
+ - _Decal7_SDF_SSN_Strength: 1
- _Decal7_SDF_Softness: 0.01
- _Decal7_SDF_Threshold: 0.5
- _Decal7_Smoothness: 0.5
@@ -716,6 +871,7 @@ Material:
- _Depth_Prepass_Enabled: 0
- _DetailNormalMapScale: 1
- _Detail_Maps_Enabled: 0
+ - _Detail_Maps_UV_Channel: 0
- _DstBlend: 0
- _DstBlendAlpha: 10
- _Emission_Enabled: 0
@@ -772,9 +928,19 @@ Material:
- _Glitter_Mask_Enabled: 0
- _Glitter_Size: 1
- _Glitter_Size_Randomization_Range: 0.4
+ - _Glitter_UV_Channel: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
+ - _Gradient_Normals_0_Horizontal_Enabled: 0
+ - _Gradient_Normals_0_Vertical_Enabled: 0
+ - _Gradient_Normals_1_Horizontal_Enabled: 0
+ - _Gradient_Normals_1_Vertical_Enabled: 0
+ - _Gradient_Normals_2_Horizontal_Enabled: 0
+ - _Gradient_Normals_2_Vertical_Enabled: 0
+ - _Gradient_Normals_3_Horizontal_Enabled: 0
+ - _Gradient_Normals_3_Vertical_Enabled: 0
+ - _Gradient_Normals_Enabled: 0
- _Grayscale_Lightmaps_Enabled: 0
- _Harnack_Tracing_Enabled: 0
- _Harnack_Tracing_Gyroid_Enabled: 0
@@ -797,6 +963,9 @@ Material:
- _Letter_Grid_Screen_Px_Range: 10
- _Letter_Grid_Tex_Res_X: 16
- _Letter_Grid_Tex_Res_Y: 8
+ - _Light_Volumes_Brightness: 1
+ - _Light_Volumes_Brightness_Enabled: 0
+ - _Light_Volumes_Brightness_Enabled_Dynamic: 1
- _MaskedStencil1BackCompareFunction: 8
- _MaskedStencil1BackFailOp: 0
- _MaskedStencil1BackPassOp: 0
@@ -877,6 +1046,14 @@ Material:
- _Matcap1_Quantization_Steps: 1
- _Matcap1_Strength: 1
- _Matcap1_Target_Mask: 1
+ - _Matcap2_Enabled: 0
+ - _Matcap2_Invert: 0
+ - _Matcap2_Mask_Enabled: 0
+ - _Matcap2_Mode: 0
+ - _Matcap2_Quantization_Enabled: 0
+ - _Matcap2_Quantization_Steps: 1
+ - _Matcap2_Strength: 1
+ - _Matcap2_Target_Mask: 1
- _Material_Type_Cloth_Enabled: 0
- _Material_Type_Cloth_Subsurface: 0
- _Metallic: 0
@@ -928,6 +1105,9 @@ Material:
- _Quantize_NoL_Steps: 1
- _Quantize_Specular_Enabled: 0
- _Quantize_Specular_Steps: 1
+ - _Quasi_Shadows_0_Threshold: 0.5
+ - _Quasi_Shadows_0_Width: 0.1
+ - _Quasi_Shadows_Enabled: 0
- _Raymarched_Fog_Albedo: 1
- _Raymarched_Fog_Density_Exponent: 1
- _Raymarched_Fog_Density_Exponent_Enabled: 0
@@ -1009,6 +1189,17 @@ Material:
- _SSFD_Threshold: 0.5
- _SampleWorld: 0
- _Saturation: 0
+ - _Screen_Space_Normals_Enabled: 0
+ - _Sea_Foam_0_Enabled: 0
+ - _Sea_Foam_1_Enabled: 0
+ - _Sea_Foam_2_Enabled: 0
+ - _Sea_Foam_3_Enabled: 0
+ - _Sea_Foam_Bias: 0
+ - _Sea_Foam_Enabled: 0
+ - _Sea_Foam_Factor: 1
+ - _Sea_Foam_Lambda: 1
+ - _Sea_Foam_Power: 1
+ - _Sea_Foam_Roughness: 0.85
- _ShaderOptimizerEnabled: 0
- _Shadow_Strength: 0.25
- _Shatter_Wave_Audiolink_Enabled: 0
@@ -1047,16 +1238,53 @@ Material:
- _Stencil_Enabled: 0
- _Tessellation_Enabled: 0
- _Tessellation_Factor: 1
+ - _Tessellation_Falloff_Factor: 1
+ - _Tessellation_Frustum_Culling_Bias: 35
+ - _Tessellation_Heightmap_0_Enabled: 0
+ - _Tessellation_Heightmap_0_Offset: 0
+ - _Tessellation_Heightmap_0_Scale: 1
+ - _Tessellation_Heightmap_1_Enabled: 0
+ - _Tessellation_Heightmap_1_Offset: 0
+ - _Tessellation_Heightmap_1_Scale: 1
+ - _Tessellation_Heightmap_2_Enabled: 0
+ - _Tessellation_Heightmap_2_Offset: 0
+ - _Tessellation_Heightmap_2_Scale: 1
+ - _Tessellation_Heightmap_3_Enabled: 0
+ - _Tessellation_Heightmap_3_Offset: 0
+ - _Tessellation_Heightmap_3_Scale: 1
+ - _Tessellation_Heightmap_4_Enabled: 0
+ - _Tessellation_Heightmap_4_Offset: 0
+ - _Tessellation_Heightmap_4_Scale: 1
+ - _Tessellation_Heightmap_5_Enabled: 0
+ - _Tessellation_Heightmap_5_Offset: 0
+ - _Tessellation_Heightmap_5_Scale: 1
+ - _Tessellation_Heightmap_6_Enabled: 0
+ - _Tessellation_Heightmap_6_Offset: 0
+ - _Tessellation_Heightmap_6_Scale: 1
+ - _Tessellation_Heightmap_7_Enabled: 0
+ - _Tessellation_Heightmap_7_Offset: 0
+ - _Tessellation_Heightmap_7_Scale: 1
- _Tessellation_Heightmap_Direction_Control_Enabled: 0
- _Tessellation_Heightmap_Enabled: 0
- _Tessellation_Heightmap_Offset: 0
- _Tessellation_Heightmap_Scale: 1
+ - _Tessellation_Heightmap_World_Space_Enabled: 0
- _Tessellation_Range_Factor_Distance_Far: 1
- _Tessellation_Range_Factor_Distance_Near: 1
- _Tessellation_Range_Factor_Enabled: 0
- _Tessellation_Range_Factor_Factor_Far: 1
- _Tessellation_Range_Factor_Factor_Near: 1
- _Tessellation_Range_Factor_Help: 0
+ - _Trochoid_Enabled: 0
+ - _Trochoid_R: 1
+ - _Trochoid_X_Scale: 1
+ - _Trochoid_Y_Scale: 1
+ - _Trochoid_Z_Scale: 1
+ - _Trochoid_d: 1
+ - _Trochoid_r: 1
+ - _Trochoid_r_Power: 1
+ - _Trochoid_t_k: 1
+ - _Trochoid_theta_k: 1
- _UVSec: 0
- _UV_Domain_Warping_Enabled: 0
- _UV_Domain_Warping_Spatial_Octaves: 1
@@ -1558,6 +1786,7 @@ Material:
- m_end_Decal0_Normal: 0
- m_end_Decal0_Reflections: 0
- m_end_Decal0_SDF: 0
+ - m_end_Decal0_SSN: 0
- m_end_Decal1: 0
- m_end_Decal1_CMYK_Warping_Planes: 0
- m_end_Decal1_Domain_Warping: 0
@@ -1567,6 +1796,7 @@ Material:
- m_end_Decal1_Normal: 0
- m_end_Decal1_Reflections: 0
- m_end_Decal1_SDF: 0
+ - m_end_Decal1_SSN: 0
- m_end_Decal2: 0
- m_end_Decal2_CMYK_Warping_Planes: 0
- m_end_Decal2_Domain_Warping: 0
@@ -1576,6 +1806,7 @@ Material:
- m_end_Decal2_Normal: 0
- m_end_Decal2_Reflections: 0
- m_end_Decal2_SDF: 0
+ - m_end_Decal2_SSN: 0
- m_end_Decal3: 0
- m_end_Decal3_CMYK_Warping_Planes: 0
- m_end_Decal3_Domain_Warping: 0
@@ -1585,6 +1816,7 @@ Material:
- m_end_Decal3_Normal: 0
- m_end_Decal3_Reflections: 0
- m_end_Decal3_SDF: 0
+ - m_end_Decal3_SSN: 0
- m_end_Decal4: 0
- m_end_Decal4_CMYK_Warping_Planes: 0
- m_end_Decal4_Domain_Warping: 0
@@ -1594,6 +1826,7 @@ Material:
- m_end_Decal4_Normal: 0
- m_end_Decal4_Reflections: 0
- m_end_Decal4_SDF: 0
+ - m_end_Decal4_SSN: 0
- m_end_Decal5: 0
- m_end_Decal5_CMYK_Warping_Planes: 0
- m_end_Decal5_Domain_Warping: 0
@@ -1603,6 +1836,7 @@ Material:
- m_end_Decal5_Normal: 0
- m_end_Decal5_Reflections: 0
- m_end_Decal5_SDF: 0
+ - m_end_Decal5_SSN: 0
- m_end_Decal6: 0
- m_end_Decal6_CMYK_Warping_Planes: 0
- m_end_Decal6_Domain_Warping: 0
@@ -1612,6 +1846,7 @@ Material:
- m_end_Decal6_Normal: 0
- m_end_Decal6_Reflections: 0
- m_end_Decal6_SDF: 0
+ - m_end_Decal6_SSN: 0
- m_end_Decal7: 0
- m_end_Decal7_CMYK_Warping_Planes: 0
- m_end_Decal7_Domain_Warping: 0
@@ -1621,6 +1856,7 @@ Material:
- m_end_Decal7_Normal: 0
- m_end_Decal7_Reflections: 0
- m_end_Decal7_SDF: 0
+ - m_end_Decal7_SSN: 0
- m_end_Decals: 0
- m_end_Depth_Prepass: 0
- m_end_Detail_Maps: 0
@@ -1637,11 +1873,21 @@ Material:
- m_end_Glitter: 0
- m_end_Glitter_Angle_Limit: 0
- m_end_Glitter_Mask: 0
+ - m_end_Gradient_Normals: 0
+ - m_end_Gradient_Normals_0: 0
+ - m_end_Gradient_Normals_0_Horizontal: 0
+ - m_end_Gradient_Normals_1: 0
+ - m_end_Gradient_Normals_1_Horizontal: 0
+ - m_end_Gradient_Normals_2: 0
+ - m_end_Gradient_Normals_2_Horizontal: 0
+ - m_end_Gradient_Normals_3: 0
+ - m_end_Gradient_Normals_3_Horizontal: 0
- m_end_Grayscale_Lightmaps: 0
- m_end_Harnack_Tracing: 0
- m_end_Harnack_Tracing_Gyroid: 0
- m_end_LTCGI: 0
- m_end_Letter_Grid: 0
+ - m_end_Light_Volumes_Brightness: 0
- m_end_MaskedStencil1PassBackOptions: 0
- m_end_MaskedStencil1PassFrontOptions: 0
- m_end_MaskedStencil2PassBackOptions: 0
@@ -1660,6 +1906,9 @@ Material:
- m_end_Matcap1: 0
- m_end_Matcap1_Mask: 0
- m_end_Matcap1_Quantization: 0
+ - m_end_Matcap2: 0
+ - m_end_Matcap2_Mask: 0
+ - m_end_Matcap2_Quantization: 0
- m_end_Matcaps: 0
- m_end_Material_Type_Cloth: 0
- m_end_Material_Type_Cloth_Subsurface: 0
@@ -1675,6 +1924,7 @@ Material:
- m_end_OutlinesMask: 0
- m_end_Quantize_NoL: 0
- m_end_Quantize_Specular: 0
+ - m_end_Quasi_Shadows: 0
- m_end_Raymarched_Fog: 0
- m_end_Raymarched_Fog_Density_Exponent: 0
- m_end_Raymarched_Fog_Emitter_Texture: 0
@@ -1698,6 +1948,12 @@ Material:
- m_end_Rim_Lighting3_Quantization: 0
- m_end_SSAO: 0
- m_end_SSFD: 0
+ - m_end_Screen_Space_Normals: 0
+ - m_end_Sea_Foam: 0
+ - m_end_Sea_Foam_0: 0
+ - m_end_Sea_Foam_1: 0
+ - m_end_Sea_Foam_2: 0
+ - m_end_Sea_Foam_3: 0
- m_end_Shadow_Casting: 0
- m_end_Shadow_Receiving: 0
- m_end_Shatter_Wave: 0
@@ -1710,8 +1966,17 @@ Material:
- m_end_StencilPassFrontOptions: 0
- m_end_Tessellation: 0
- m_end_Tessellation_Heightmap: 0
+ - m_end_Tessellation_Heightmap_0: 0
+ - m_end_Tessellation_Heightmap_1: 0
+ - m_end_Tessellation_Heightmap_2: 0
+ - m_end_Tessellation_Heightmap_3: 0
+ - m_end_Tessellation_Heightmap_4: 0
+ - m_end_Tessellation_Heightmap_5: 0
+ - m_end_Tessellation_Heightmap_6: 0
+ - m_end_Tessellation_Heightmap_7: 0
- m_end_Tessellation_Heightmap_Direction_Control: 0
- m_end_Tessellation_Range_Factor: 0
+ - m_end_Trochoid: 0
- m_end_UV_Domain_Warping: 0
- m_end_Unigram_Letter_Grid: 0
- m_end_Unlit: 0
@@ -1749,6 +2014,7 @@ Material:
- m_start_Decal0_Normal: 0
- m_start_Decal0_Reflections: 0
- m_start_Decal0_SDF: 0
+ - m_start_Decal0_SSN: 0
- m_start_Decal1: 0
- m_start_Decal1_CMYK_Warping_Planes: 0
- m_start_Decal1_Domain_Warping: 0
@@ -1758,6 +2024,7 @@ Material:
- m_start_Decal1_Normal: 0
- m_start_Decal1_Reflections: 0
- m_start_Decal1_SDF: 0
+ - m_start_Decal1_SSN: 0
- m_start_Decal2: 0
- m_start_Decal2_CMYK_Warping_Planes: 0
- m_start_Decal2_Domain_Warping: 0
@@ -1767,6 +2034,7 @@ Material:
- m_start_Decal2_Normal: 0
- m_start_Decal2_Reflections: 0
- m_start_Decal2_SDF: 0
+ - m_start_Decal2_SSN: 0
- m_start_Decal3: 0
- m_start_Decal3_CMYK_Warping_Planes: 0
- m_start_Decal3_Domain_Warping: 0
@@ -1776,6 +2044,7 @@ Material:
- m_start_Decal3_Normal: 0
- m_start_Decal3_Reflections: 0
- m_start_Decal3_SDF: 0
+ - m_start_Decal3_SSN: 0
- m_start_Decal4: 0
- m_start_Decal4_CMYK_Warping_Planes: 0
- m_start_Decal4_Domain_Warping: 0
@@ -1785,6 +2054,7 @@ Material:
- m_start_Decal4_Normal: 0
- m_start_Decal4_Reflections: 0
- m_start_Decal4_SDF: 0
+ - m_start_Decal4_SSN: 0
- m_start_Decal5: 0
- m_start_Decal5_CMYK_Warping_Planes: 0
- m_start_Decal5_Domain_Warping: 0
@@ -1794,6 +2064,7 @@ Material:
- m_start_Decal5_Normal: 0
- m_start_Decal5_Reflections: 0
- m_start_Decal5_SDF: 0
+ - m_start_Decal5_SSN: 0
- m_start_Decal6: 0
- m_start_Decal6_CMYK_Warping_Planes: 0
- m_start_Decal6_Domain_Warping: 0
@@ -1803,6 +2074,7 @@ Material:
- m_start_Decal6_Normal: 0
- m_start_Decal6_Reflections: 0
- m_start_Decal6_SDF: 0
+ - m_start_Decal6_SSN: 0
- m_start_Decal7: 0
- m_start_Decal7_CMYK_Warping_Planes: 0
- m_start_Decal7_Domain_Warping: 0
@@ -1812,6 +2084,7 @@ Material:
- m_start_Decal7_Normal: 0
- m_start_Decal7_Reflections: 0
- m_start_Decal7_SDF: 0
+ - m_start_Decal7_SSN: 0
- m_start_Decals: 0
- m_start_Depth_Prepass: 0
- m_start_Detail_Maps: 0
@@ -1828,11 +2101,21 @@ Material:
- m_start_Glitter: 0
- m_start_Glitter_Angle_Limit: 0
- m_start_Glitter_Mask: 0
+ - m_start_Gradient_Normals: 0
+ - m_start_Gradient_Normals_0: 0
+ - m_start_Gradient_Normals_0_Horizontal: 0
+ - m_start_Gradient_Normals_1: 0
+ - m_start_Gradient_Normals_1_Horizontal: 0
+ - m_start_Gradient_Normals_2: 0
+ - m_start_Gradient_Normals_2_Horizontal: 0
+ - m_start_Gradient_Normals_3: 0
+ - m_start_Gradient_Normals_3_Horizontal: 0
- m_start_Grayscale_Lightmaps: 0
- m_start_Harnack_Tracing: 0
- m_start_Harnack_Tracing_Gyroid: 0
- m_start_LTCGI: 0
- m_start_Letter_Grid: 0
+ - m_start_Light_Volumes_Brightness: 0
- m_start_MaskedStencil1PassBackOptions: 0
- m_start_MaskedStencil1PassFrontOptions: 0
- m_start_MaskedStencil2PassBackOptions: 0
@@ -1851,6 +2134,9 @@ Material:
- m_start_Matcap1: 0
- m_start_Matcap1_Mask: 0
- m_start_Matcap1_Quantization: 0
+ - m_start_Matcap2: 0
+ - m_start_Matcap2_Mask: 0
+ - m_start_Matcap2_Quantization: 0
- m_start_Matcaps: 0
- m_start_Material_Type_Cloth: 0
- m_start_Material_Type_Cloth_Subsurface: 0
@@ -1866,6 +2152,7 @@ Material:
- m_start_OutlinesMask: 0
- m_start_Quantize_NoL: 0
- m_start_Quantize_Specular: 0
+ - m_start_Quasi_Shadows: 0
- m_start_Raymarched_Fog: 0
- m_start_Raymarched_Fog_Density_Exponent: 0
- m_start_Raymarched_Fog_Emitter_Texture: 0
@@ -1889,6 +2176,12 @@ Material:
- m_start_Rim_Lighting3_Quantization: 0
- m_start_SSAO: 0
- m_start_SSFD: 0
+ - m_start_Screen_Space_Normals: 0
+ - m_start_Sea_Foam: 0
+ - m_start_Sea_Foam_0: 0
+ - m_start_Sea_Foam_1: 0
+ - m_start_Sea_Foam_2: 0
+ - m_start_Sea_Foam_3: 0
- m_start_Shadow_Casting: 0
- m_start_Shadow_Receiving: 0
- m_start_Shatter_Wave: 0
@@ -1901,8 +2194,17 @@ Material:
- m_start_StencilPassFrontOptions: 0
- m_start_Tessellation: 0
- m_start_Tessellation_Heightmap: 0
+ - m_start_Tessellation_Heightmap_0: 0
+ - m_start_Tessellation_Heightmap_1: 0
+ - m_start_Tessellation_Heightmap_2: 0
+ - m_start_Tessellation_Heightmap_3: 0
+ - m_start_Tessellation_Heightmap_4: 0
+ - m_start_Tessellation_Heightmap_5: 0
+ - m_start_Tessellation_Heightmap_6: 0
+ - m_start_Tessellation_Heightmap_7: 0
- m_start_Tessellation_Heightmap_Direction_Control: 0
- m_start_Tessellation_Range_Factor: 0
+ - m_start_Trochoid: 0
- m_start_UV_Domain_Warping: 0
- m_start_Unigram_Letter_Grid: 0
- m_start_Unlit: 0
@@ -1961,6 +2263,7 @@ Material:
- _Letter_Grid_UV_Scale_Offset: {r: 1, g: 1, b: 0, a: 0}
- _MetalReflectionTint: {r: 1, g: 1, b: 1, a: 1}
- _Outline_Color: {r: 0, g: 0, b: 0, a: 1}
+ - _Quasi_Shadows_0_Color: {r: 1, g: 1, b: 1, a: 1}
- _Raymarched_Fog_Color: {r: 0.29999998, g: 0.29999998, b: 0.29999998, a: 1}
- _Raymarched_Fog_Density_Noise_Scale: {r: 1, g: 1, b: 1, a: 0}
- _Raymarched_Fog_Emitter_Texture_World_Normal: {r: 0, g: 0, b: 0, a: 0}
@@ -1977,6 +2280,7 @@ Material:
- _Rim_Lighting2_Color: {r: 1, g: 1, b: 1, a: 1}
- _Rim_Lighting3_Angle_Limit_Target_Vector: {r: 0, g: -1, b: 0, a: 0}
- _Rim_Lighting3_Color: {r: 1, g: 1, b: 1, a: 1}
+ - _Sea_Foam_Color: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Amplitude: {r: 0.4, g: 0.4, b: 0.4, a: 0.4}
- _Shatter_Wave_Chronotensity_Time_Factor: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Chronotensity_Weights0: {r: 0, g: 0, b: 0, a: 0}
diff --git a/Materials/Filament calibration/Mat03.mat b/Materials/Filament calibration/Mat03.mat
index cc38eac..3fd9e31 100644
--- a/Materials/Filament calibration/Mat03.mat
+++ b/Materials/Filament calibration/Mat03.mat
@@ -13,11 +13,13 @@ Material:
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _CAST_SHADOWS
+ - _CLEARCOAT_GEOMETRIC_NORMALS
- _METALLICS
- _RECEIVE_SHADOWS
- - _SPHERICAL_HARMONICS_L1
m_InvalidKeywords:
- _BUMP_SHADOWS
+ - _LIGHT_VOLUMES_BRIGHTNESS_ENABLED_DYNAMIC_ON
+ - _SPHERICAL_HARMONICS_L1
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
@@ -36,6 +38,10 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Clearcoat_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Cloth_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -268,6 +274,38 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Letter_Grid_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -312,6 +350,14 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Matcap2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Matcap2_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -368,6 +414,22 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_0_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_1_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_2_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_3_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _SmoothnessMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -376,6 +438,42 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_0:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_1:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_3:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_4:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_5:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_6:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_7:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Trochoid_Color_Ramp:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _UV_Domain_Warping_Noise:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -426,6 +524,7 @@ Material:
- _Bump_Shadows_Enabled: 1
- _Cast_Shadows_Enabled: 1
- _Clearcoat_Enabled: 0
+ - _Clearcoat_Geometric_Normals_Enabled: 1
- _Clearcoat_Roughness: 0.089
- _Clearcoat_Strength: 1
- _Clip: 0.5
@@ -450,6 +549,7 @@ Material:
- _Custom30_ro_Offset: 0
- _Cutoff: 0.5
- _Decal0_Angle: 0
+ - _Decal0_Bias: 0
- _Decal0_CMYK_Warping_Planes_Enabled: 0
- _Decal0_CMYK_Warping_Planes_Scale: 0.1
- _Decal0_CMYK_Warping_Planes_Speed: 1
@@ -466,23 +566,30 @@ Material:
- _Decal0_Emissions_Proximity_Max_Distance: 1
- _Decal0_Emissions_Proximity_Min_Distance: 0
- _Decal0_Enabled: 0
+ - _Decal0_Invert_Blend_Order: 0
- _Decal0_Mask_Enabled: 0
- _Decal0_Metallic: 0
- _Decal0_Normal_Enabled: 0
- _Decal0_Normal_Scale: 1
- _Decal0_Opacity: 1
+ - _Decal0_Reflections_Alpha_Blend: 0
- _Decal0_Reflections_Enabled: 0
- _Decal0_Replace_Alpha_Mode: 0
- _Decal0_Replace_Multiply_Mode: 0
- _Decal0_SDF_Enabled: 0
- _Decal0_SDF_Invert: 0
- _Decal0_SDF_Px_Range: 2
+ - _Decal0_SDF_SSN_Enabled: 0
+ - _Decal0_SDF_SSN_Only: 0
+ - _Decal0_SDF_SSN_Replace: 0
+ - _Decal0_SDF_SSN_Strength: 1
- _Decal0_SDF_Softness: 0.01
- _Decal0_SDF_Threshold: 0.5
- _Decal0_Smoothness: 0.5
- _Decal0_Tiling_Mode: 0
- _Decal0_UV_Channel: 0
- _Decal1_Angle: 0
+ - _Decal1_Bias: 0
- _Decal1_CMYK_Warping_Planes_Enabled: 0
- _Decal1_CMYK_Warping_Planes_Scale: 0.1
- _Decal1_CMYK_Warping_Planes_Speed: 1
@@ -499,23 +606,30 @@ Material:
- _Decal1_Emissions_Proximity_Max_Distance: 1
- _Decal1_Emissions_Proximity_Min_Distance: 0
- _Decal1_Enabled: 0
+ - _Decal1_Invert_Blend_Order: 0
- _Decal1_Mask_Enabled: 0
- _Decal1_Metallic: 0
- _Decal1_Normal_Enabled: 0
- _Decal1_Normal_Scale: 1
- _Decal1_Opacity: 1
+ - _Decal1_Reflections_Alpha_Blend: 0
- _Decal1_Reflections_Enabled: 0
- _Decal1_Replace_Alpha_Mode: 0
- _Decal1_Replace_Multiply_Mode: 0
- _Decal1_SDF_Enabled: 0
- _Decal1_SDF_Invert: 0
- _Decal1_SDF_Px_Range: 2
+ - _Decal1_SDF_SSN_Enabled: 0
+ - _Decal1_SDF_SSN_Only: 0
+ - _Decal1_SDF_SSN_Replace: 0
+ - _Decal1_SDF_SSN_Strength: 1
- _Decal1_SDF_Softness: 0.01
- _Decal1_SDF_Threshold: 0.5
- _Decal1_Smoothness: 0.5
- _Decal1_Tiling_Mode: 0
- _Decal1_UV_Channel: 0
- _Decal2_Angle: 0
+ - _Decal2_Bias: 0
- _Decal2_CMYK_Warping_Planes_Enabled: 0
- _Decal2_CMYK_Warping_Planes_Scale: 0.1
- _Decal2_CMYK_Warping_Planes_Speed: 1
@@ -532,23 +646,30 @@ Material:
- _Decal2_Emissions_Proximity_Max_Distance: 1
- _Decal2_Emissions_Proximity_Min_Distance: 0
- _Decal2_Enabled: 0
+ - _Decal2_Invert_Blend_Order: 0
- _Decal2_Mask_Enabled: 0
- _Decal2_Metallic: 0
- _Decal2_Normal_Enabled: 0
- _Decal2_Normal_Scale: 1
- _Decal2_Opacity: 1
+ - _Decal2_Reflections_Alpha_Blend: 0
- _Decal2_Reflections_Enabled: 0
- _Decal2_Replace_Alpha_Mode: 0
- _Decal2_Replace_Multiply_Mode: 0
- _Decal2_SDF_Enabled: 0
- _Decal2_SDF_Invert: 0
- _Decal2_SDF_Px_Range: 2
+ - _Decal2_SDF_SSN_Enabled: 0
+ - _Decal2_SDF_SSN_Only: 0
+ - _Decal2_SDF_SSN_Replace: 0
+ - _Decal2_SDF_SSN_Strength: 1
- _Decal2_SDF_Softness: 0.01
- _Decal2_SDF_Threshold: 0.5
- _Decal2_Smoothness: 0.5
- _Decal2_Tiling_Mode: 0
- _Decal2_UV_Channel: 0
- _Decal3_Angle: 0
+ - _Decal3_Bias: 0
- _Decal3_CMYK_Warping_Planes_Enabled: 0
- _Decal3_CMYK_Warping_Planes_Scale: 0.1
- _Decal3_CMYK_Warping_Planes_Speed: 1
@@ -565,23 +686,30 @@ Material:
- _Decal3_Emissions_Proximity_Max_Distance: 1
- _Decal3_Emissions_Proximity_Min_Distance: 0
- _Decal3_Enabled: 0
+ - _Decal3_Invert_Blend_Order: 0
- _Decal3_Mask_Enabled: 0
- _Decal3_Metallic: 0
- _Decal3_Normal_Enabled: 0
- _Decal3_Normal_Scale: 1
- _Decal3_Opacity: 1
+ - _Decal3_Reflections_Alpha_Blend: 0
- _Decal3_Reflections_Enabled: 0
- _Decal3_Replace_Alpha_Mode: 0
- _Decal3_Replace_Multiply_Mode: 0
- _Decal3_SDF_Enabled: 0
- _Decal3_SDF_Invert: 0
- _Decal3_SDF_Px_Range: 2
+ - _Decal3_SDF_SSN_Enabled: 0
+ - _Decal3_SDF_SSN_Only: 0
+ - _Decal3_SDF_SSN_Replace: 0
+ - _Decal3_SDF_SSN_Strength: 1
- _Decal3_SDF_Softness: 0.01
- _Decal3_SDF_Threshold: 0.5
- _Decal3_Smoothness: 0.5
- _Decal3_Tiling_Mode: 0
- _Decal3_UV_Channel: 0
- _Decal4_Angle: 0
+ - _Decal4_Bias: 0
- _Decal4_CMYK_Warping_Planes_Enabled: 0
- _Decal4_CMYK_Warping_Planes_Scale: 0.1
- _Decal4_CMYK_Warping_Planes_Speed: 1
@@ -598,23 +726,30 @@ Material:
- _Decal4_Emissions_Proximity_Max_Distance: 1
- _Decal4_Emissions_Proximity_Min_Distance: 0
- _Decal4_Enabled: 0
+ - _Decal4_Invert_Blend_Order: 0
- _Decal4_Mask_Enabled: 0
- _Decal4_Metallic: 0
- _Decal4_Normal_Enabled: 0
- _Decal4_Normal_Scale: 1
- _Decal4_Opacity: 1
+ - _Decal4_Reflections_Alpha_Blend: 0
- _Decal4_Reflections_Enabled: 0
- _Decal4_Replace_Alpha_Mode: 0
- _Decal4_Replace_Multiply_Mode: 0
- _Decal4_SDF_Enabled: 0
- _Decal4_SDF_Invert: 0
- _Decal4_SDF_Px_Range: 2
+ - _Decal4_SDF_SSN_Enabled: 0
+ - _Decal4_SDF_SSN_Only: 0
+ - _Decal4_SDF_SSN_Replace: 0
+ - _Decal4_SDF_SSN_Strength: 1
- _Decal4_SDF_Softness: 0.01
- _Decal4_SDF_Threshold: 0.5
- _Decal4_Smoothness: 0.5
- _Decal4_Tiling_Mode: 0
- _Decal4_UV_Channel: 0
- _Decal5_Angle: 0
+ - _Decal5_Bias: 0
- _Decal5_CMYK_Warping_Planes_Enabled: 0
- _Decal5_CMYK_Warping_Planes_Scale: 0.1
- _Decal5_CMYK_Warping_Planes_Speed: 1
@@ -631,23 +766,30 @@ Material:
- _Decal5_Emissions_Proximity_Max_Distance: 1
- _Decal5_Emissions_Proximity_Min_Distance: 0
- _Decal5_Enabled: 0
+ - _Decal5_Invert_Blend_Order: 0
- _Decal5_Mask_Enabled: 0
- _Decal5_Metallic: 0
- _Decal5_Normal_Enabled: 0
- _Decal5_Normal_Scale: 1
- _Decal5_Opacity: 1
+ - _Decal5_Reflections_Alpha_Blend: 0
- _Decal5_Reflections_Enabled: 0
- _Decal5_Replace_Alpha_Mode: 0
- _Decal5_Replace_Multiply_Mode: 0
- _Decal5_SDF_Enabled: 0
- _Decal5_SDF_Invert: 0
- _Decal5_SDF_Px_Range: 2
+ - _Decal5_SDF_SSN_Enabled: 0
+ - _Decal5_SDF_SSN_Only: 0
+ - _Decal5_SDF_SSN_Replace: 0
+ - _Decal5_SDF_SSN_Strength: 1
- _Decal5_SDF_Softness: 0.01
- _Decal5_SDF_Threshold: 0.5
- _Decal5_Smoothness: 0.5
- _Decal5_Tiling_Mode: 0
- _Decal5_UV_Channel: 0
- _Decal6_Angle: 0
+ - _Decal6_Bias: 0
- _Decal6_CMYK_Warping_Planes_Enabled: 0
- _Decal6_CMYK_Warping_Planes_Scale: 0.1
- _Decal6_CMYK_Warping_Planes_Speed: 1
@@ -664,23 +806,30 @@ Material:
- _Decal6_Emissions_Proximity_Max_Distance: 1
- _Decal6_Emissions_Proximity_Min_Distance: 0
- _Decal6_Enabled: 0
+ - _Decal6_Invert_Blend_Order: 0
- _Decal6_Mask_Enabled: 0
- _Decal6_Metallic: 0
- _Decal6_Normal_Enabled: 0
- _Decal6_Normal_Scale: 1
- _Decal6_Opacity: 1
+ - _Decal6_Reflections_Alpha_Blend: 0
- _Decal6_Reflections_Enabled: 0
- _Decal6_Replace_Alpha_Mode: 0
- _Decal6_Replace_Multiply_Mode: 0
- _Decal6_SDF_Enabled: 0
- _Decal6_SDF_Invert: 0
- _Decal6_SDF_Px_Range: 2
+ - _Decal6_SDF_SSN_Enabled: 0
+ - _Decal6_SDF_SSN_Only: 0
+ - _Decal6_SDF_SSN_Replace: 0
+ - _Decal6_SDF_SSN_Strength: 1
- _Decal6_SDF_Softness: 0.01
- _Decal6_SDF_Threshold: 0.5
- _Decal6_Smoothness: 0.5
- _Decal6_Tiling_Mode: 0
- _Decal6_UV_Channel: 0
- _Decal7_Angle: 0
+ - _Decal7_Bias: 0
- _Decal7_CMYK_Warping_Planes_Enabled: 0
- _Decal7_CMYK_Warping_Planes_Scale: 0.1
- _Decal7_CMYK_Warping_Planes_Speed: 1
@@ -697,17 +846,23 @@ Material:
- _Decal7_Emissions_Proximity_Max_Distance: 1
- _Decal7_Emissions_Proximity_Min_Distance: 0
- _Decal7_Enabled: 0
+ - _Decal7_Invert_Blend_Order: 0
- _Decal7_Mask_Enabled: 0
- _Decal7_Metallic: 0
- _Decal7_Normal_Enabled: 0
- _Decal7_Normal_Scale: 1
- _Decal7_Opacity: 1
+ - _Decal7_Reflections_Alpha_Blend: 0
- _Decal7_Reflections_Enabled: 0
- _Decal7_Replace_Alpha_Mode: 0
- _Decal7_Replace_Multiply_Mode: 0
- _Decal7_SDF_Enabled: 0
- _Decal7_SDF_Invert: 0
- _Decal7_SDF_Px_Range: 2
+ - _Decal7_SDF_SSN_Enabled: 0
+ - _Decal7_SDF_SSN_Only: 0
+ - _Decal7_SDF_SSN_Replace: 0
+ - _Decal7_SDF_SSN_Strength: 1
- _Decal7_SDF_Softness: 0.01
- _Decal7_SDF_Threshold: 0.5
- _Decal7_Smoothness: 0.5
@@ -716,6 +871,7 @@ Material:
- _Depth_Prepass_Enabled: 0
- _DetailNormalMapScale: 1
- _Detail_Maps_Enabled: 0
+ - _Detail_Maps_UV_Channel: 0
- _DstBlend: 0
- _DstBlendAlpha: 10
- _Emission_Enabled: 0
@@ -772,9 +928,19 @@ Material:
- _Glitter_Mask_Enabled: 0
- _Glitter_Size: 1
- _Glitter_Size_Randomization_Range: 0.4
+ - _Glitter_UV_Channel: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
+ - _Gradient_Normals_0_Horizontal_Enabled: 0
+ - _Gradient_Normals_0_Vertical_Enabled: 0
+ - _Gradient_Normals_1_Horizontal_Enabled: 0
+ - _Gradient_Normals_1_Vertical_Enabled: 0
+ - _Gradient_Normals_2_Horizontal_Enabled: 0
+ - _Gradient_Normals_2_Vertical_Enabled: 0
+ - _Gradient_Normals_3_Horizontal_Enabled: 0
+ - _Gradient_Normals_3_Vertical_Enabled: 0
+ - _Gradient_Normals_Enabled: 0
- _Grayscale_Lightmaps_Enabled: 0
- _Harnack_Tracing_Enabled: 0
- _Harnack_Tracing_Gyroid_Enabled: 0
@@ -797,6 +963,9 @@ Material:
- _Letter_Grid_Screen_Px_Range: 10
- _Letter_Grid_Tex_Res_X: 16
- _Letter_Grid_Tex_Res_Y: 8
+ - _Light_Volumes_Brightness: 1
+ - _Light_Volumes_Brightness_Enabled: 0
+ - _Light_Volumes_Brightness_Enabled_Dynamic: 1
- _MaskedStencil1BackCompareFunction: 8
- _MaskedStencil1BackFailOp: 0
- _MaskedStencil1BackPassOp: 0
@@ -877,6 +1046,14 @@ Material:
- _Matcap1_Quantization_Steps: 1
- _Matcap1_Strength: 1
- _Matcap1_Target_Mask: 1
+ - _Matcap2_Enabled: 0
+ - _Matcap2_Invert: 0
+ - _Matcap2_Mask_Enabled: 0
+ - _Matcap2_Mode: 0
+ - _Matcap2_Quantization_Enabled: 0
+ - _Matcap2_Quantization_Steps: 1
+ - _Matcap2_Strength: 1
+ - _Matcap2_Target_Mask: 1
- _Material_Type_Cloth_Enabled: 0
- _Material_Type_Cloth_Subsurface: 0
- _Metallic: 0
@@ -928,6 +1105,9 @@ Material:
- _Quantize_NoL_Steps: 1
- _Quantize_Specular_Enabled: 0
- _Quantize_Specular_Steps: 1
+ - _Quasi_Shadows_0_Threshold: 0.5
+ - _Quasi_Shadows_0_Width: 0.1
+ - _Quasi_Shadows_Enabled: 0
- _Raymarched_Fog_Albedo: 1
- _Raymarched_Fog_Density_Exponent: 1
- _Raymarched_Fog_Density_Exponent_Enabled: 0
@@ -1009,6 +1189,17 @@ Material:
- _SSFD_Threshold: 0.5
- _SampleWorld: 0
- _Saturation: 0
+ - _Screen_Space_Normals_Enabled: 0
+ - _Sea_Foam_0_Enabled: 0
+ - _Sea_Foam_1_Enabled: 0
+ - _Sea_Foam_2_Enabled: 0
+ - _Sea_Foam_3_Enabled: 0
+ - _Sea_Foam_Bias: 0
+ - _Sea_Foam_Enabled: 0
+ - _Sea_Foam_Factor: 1
+ - _Sea_Foam_Lambda: 1
+ - _Sea_Foam_Power: 1
+ - _Sea_Foam_Roughness: 0.85
- _ShaderOptimizerEnabled: 0
- _Shadow_Strength: 0.25
- _Shatter_Wave_Audiolink_Enabled: 0
@@ -1047,16 +1238,53 @@ Material:
- _Stencil_Enabled: 0
- _Tessellation_Enabled: 0
- _Tessellation_Factor: 1
+ - _Tessellation_Falloff_Factor: 1
+ - _Tessellation_Frustum_Culling_Bias: 35
+ - _Tessellation_Heightmap_0_Enabled: 0
+ - _Tessellation_Heightmap_0_Offset: 0
+ - _Tessellation_Heightmap_0_Scale: 1
+ - _Tessellation_Heightmap_1_Enabled: 0
+ - _Tessellation_Heightmap_1_Offset: 0
+ - _Tessellation_Heightmap_1_Scale: 1
+ - _Tessellation_Heightmap_2_Enabled: 0
+ - _Tessellation_Heightmap_2_Offset: 0
+ - _Tessellation_Heightmap_2_Scale: 1
+ - _Tessellation_Heightmap_3_Enabled: 0
+ - _Tessellation_Heightmap_3_Offset: 0
+ - _Tessellation_Heightmap_3_Scale: 1
+ - _Tessellation_Heightmap_4_Enabled: 0
+ - _Tessellation_Heightmap_4_Offset: 0
+ - _Tessellation_Heightmap_4_Scale: 1
+ - _Tessellation_Heightmap_5_Enabled: 0
+ - _Tessellation_Heightmap_5_Offset: 0
+ - _Tessellation_Heightmap_5_Scale: 1
+ - _Tessellation_Heightmap_6_Enabled: 0
+ - _Tessellation_Heightmap_6_Offset: 0
+ - _Tessellation_Heightmap_6_Scale: 1
+ - _Tessellation_Heightmap_7_Enabled: 0
+ - _Tessellation_Heightmap_7_Offset: 0
+ - _Tessellation_Heightmap_7_Scale: 1
- _Tessellation_Heightmap_Direction_Control_Enabled: 0
- _Tessellation_Heightmap_Enabled: 0
- _Tessellation_Heightmap_Offset: 0
- _Tessellation_Heightmap_Scale: 1
+ - _Tessellation_Heightmap_World_Space_Enabled: 0
- _Tessellation_Range_Factor_Distance_Far: 1
- _Tessellation_Range_Factor_Distance_Near: 1
- _Tessellation_Range_Factor_Enabled: 0
- _Tessellation_Range_Factor_Factor_Far: 1
- _Tessellation_Range_Factor_Factor_Near: 1
- _Tessellation_Range_Factor_Help: 0
+ - _Trochoid_Enabled: 0
+ - _Trochoid_R: 1
+ - _Trochoid_X_Scale: 1
+ - _Trochoid_Y_Scale: 1
+ - _Trochoid_Z_Scale: 1
+ - _Trochoid_d: 1
+ - _Trochoid_r: 1
+ - _Trochoid_r_Power: 1
+ - _Trochoid_t_k: 1
+ - _Trochoid_theta_k: 1
- _UVSec: 0
- _UV_Domain_Warping_Enabled: 0
- _UV_Domain_Warping_Spatial_Octaves: 1
@@ -1558,6 +1786,7 @@ Material:
- m_end_Decal0_Normal: 0
- m_end_Decal0_Reflections: 0
- m_end_Decal0_SDF: 0
+ - m_end_Decal0_SSN: 0
- m_end_Decal1: 0
- m_end_Decal1_CMYK_Warping_Planes: 0
- m_end_Decal1_Domain_Warping: 0
@@ -1567,6 +1796,7 @@ Material:
- m_end_Decal1_Normal: 0
- m_end_Decal1_Reflections: 0
- m_end_Decal1_SDF: 0
+ - m_end_Decal1_SSN: 0
- m_end_Decal2: 0
- m_end_Decal2_CMYK_Warping_Planes: 0
- m_end_Decal2_Domain_Warping: 0
@@ -1576,6 +1806,7 @@ Material:
- m_end_Decal2_Normal: 0
- m_end_Decal2_Reflections: 0
- m_end_Decal2_SDF: 0
+ - m_end_Decal2_SSN: 0
- m_end_Decal3: 0
- m_end_Decal3_CMYK_Warping_Planes: 0
- m_end_Decal3_Domain_Warping: 0
@@ -1585,6 +1816,7 @@ Material:
- m_end_Decal3_Normal: 0
- m_end_Decal3_Reflections: 0
- m_end_Decal3_SDF: 0
+ - m_end_Decal3_SSN: 0
- m_end_Decal4: 0
- m_end_Decal4_CMYK_Warping_Planes: 0
- m_end_Decal4_Domain_Warping: 0
@@ -1594,6 +1826,7 @@ Material:
- m_end_Decal4_Normal: 0
- m_end_Decal4_Reflections: 0
- m_end_Decal4_SDF: 0
+ - m_end_Decal4_SSN: 0
- m_end_Decal5: 0
- m_end_Decal5_CMYK_Warping_Planes: 0
- m_end_Decal5_Domain_Warping: 0
@@ -1603,6 +1836,7 @@ Material:
- m_end_Decal5_Normal: 0
- m_end_Decal5_Reflections: 0
- m_end_Decal5_SDF: 0
+ - m_end_Decal5_SSN: 0
- m_end_Decal6: 0
- m_end_Decal6_CMYK_Warping_Planes: 0
- m_end_Decal6_Domain_Warping: 0
@@ -1612,6 +1846,7 @@ Material:
- m_end_Decal6_Normal: 0
- m_end_Decal6_Reflections: 0
- m_end_Decal6_SDF: 0
+ - m_end_Decal6_SSN: 0
- m_end_Decal7: 0
- m_end_Decal7_CMYK_Warping_Planes: 0
- m_end_Decal7_Domain_Warping: 0
@@ -1621,6 +1856,7 @@ Material:
- m_end_Decal7_Normal: 0
- m_end_Decal7_Reflections: 0
- m_end_Decal7_SDF: 0
+ - m_end_Decal7_SSN: 0
- m_end_Decals: 0
- m_end_Depth_Prepass: 0
- m_end_Detail_Maps: 0
@@ -1637,11 +1873,21 @@ Material:
- m_end_Glitter: 0
- m_end_Glitter_Angle_Limit: 0
- m_end_Glitter_Mask: 0
+ - m_end_Gradient_Normals: 0
+ - m_end_Gradient_Normals_0: 0
+ - m_end_Gradient_Normals_0_Horizontal: 0
+ - m_end_Gradient_Normals_1: 0
+ - m_end_Gradient_Normals_1_Horizontal: 0
+ - m_end_Gradient_Normals_2: 0
+ - m_end_Gradient_Normals_2_Horizontal: 0
+ - m_end_Gradient_Normals_3: 0
+ - m_end_Gradient_Normals_3_Horizontal: 0
- m_end_Grayscale_Lightmaps: 0
- m_end_Harnack_Tracing: 0
- m_end_Harnack_Tracing_Gyroid: 0
- m_end_LTCGI: 0
- m_end_Letter_Grid: 0
+ - m_end_Light_Volumes_Brightness: 0
- m_end_MaskedStencil1PassBackOptions: 0
- m_end_MaskedStencil1PassFrontOptions: 0
- m_end_MaskedStencil2PassBackOptions: 0
@@ -1660,6 +1906,9 @@ Material:
- m_end_Matcap1: 0
- m_end_Matcap1_Mask: 0
- m_end_Matcap1_Quantization: 0
+ - m_end_Matcap2: 0
+ - m_end_Matcap2_Mask: 0
+ - m_end_Matcap2_Quantization: 0
- m_end_Matcaps: 0
- m_end_Material_Type_Cloth: 0
- m_end_Material_Type_Cloth_Subsurface: 0
@@ -1675,6 +1924,7 @@ Material:
- m_end_OutlinesMask: 0
- m_end_Quantize_NoL: 0
- m_end_Quantize_Specular: 0
+ - m_end_Quasi_Shadows: 0
- m_end_Raymarched_Fog: 0
- m_end_Raymarched_Fog_Density_Exponent: 0
- m_end_Raymarched_Fog_Emitter_Texture: 0
@@ -1698,6 +1948,12 @@ Material:
- m_end_Rim_Lighting3_Quantization: 0
- m_end_SSAO: 0
- m_end_SSFD: 0
+ - m_end_Screen_Space_Normals: 0
+ - m_end_Sea_Foam: 0
+ - m_end_Sea_Foam_0: 0
+ - m_end_Sea_Foam_1: 0
+ - m_end_Sea_Foam_2: 0
+ - m_end_Sea_Foam_3: 0
- m_end_Shadow_Casting: 0
- m_end_Shadow_Receiving: 0
- m_end_Shatter_Wave: 0
@@ -1710,8 +1966,17 @@ Material:
- m_end_StencilPassFrontOptions: 0
- m_end_Tessellation: 0
- m_end_Tessellation_Heightmap: 0
+ - m_end_Tessellation_Heightmap_0: 0
+ - m_end_Tessellation_Heightmap_1: 0
+ - m_end_Tessellation_Heightmap_2: 0
+ - m_end_Tessellation_Heightmap_3: 0
+ - m_end_Tessellation_Heightmap_4: 0
+ - m_end_Tessellation_Heightmap_5: 0
+ - m_end_Tessellation_Heightmap_6: 0
+ - m_end_Tessellation_Heightmap_7: 0
- m_end_Tessellation_Heightmap_Direction_Control: 0
- m_end_Tessellation_Range_Factor: 0
+ - m_end_Trochoid: 0
- m_end_UV_Domain_Warping: 0
- m_end_Unigram_Letter_Grid: 0
- m_end_Unlit: 0
@@ -1749,6 +2014,7 @@ Material:
- m_start_Decal0_Normal: 0
- m_start_Decal0_Reflections: 0
- m_start_Decal0_SDF: 0
+ - m_start_Decal0_SSN: 0
- m_start_Decal1: 0
- m_start_Decal1_CMYK_Warping_Planes: 0
- m_start_Decal1_Domain_Warping: 0
@@ -1758,6 +2024,7 @@ Material:
- m_start_Decal1_Normal: 0
- m_start_Decal1_Reflections: 0
- m_start_Decal1_SDF: 0
+ - m_start_Decal1_SSN: 0
- m_start_Decal2: 0
- m_start_Decal2_CMYK_Warping_Planes: 0
- m_start_Decal2_Domain_Warping: 0
@@ -1767,6 +2034,7 @@ Material:
- m_start_Decal2_Normal: 0
- m_start_Decal2_Reflections: 0
- m_start_Decal2_SDF: 0
+ - m_start_Decal2_SSN: 0
- m_start_Decal3: 0
- m_start_Decal3_CMYK_Warping_Planes: 0
- m_start_Decal3_Domain_Warping: 0
@@ -1776,6 +2044,7 @@ Material:
- m_start_Decal3_Normal: 0
- m_start_Decal3_Reflections: 0
- m_start_Decal3_SDF: 0
+ - m_start_Decal3_SSN: 0
- m_start_Decal4: 0
- m_start_Decal4_CMYK_Warping_Planes: 0
- m_start_Decal4_Domain_Warping: 0
@@ -1785,6 +2054,7 @@ Material:
- m_start_Decal4_Normal: 0
- m_start_Decal4_Reflections: 0
- m_start_Decal4_SDF: 0
+ - m_start_Decal4_SSN: 0
- m_start_Decal5: 0
- m_start_Decal5_CMYK_Warping_Planes: 0
- m_start_Decal5_Domain_Warping: 0
@@ -1794,6 +2064,7 @@ Material:
- m_start_Decal5_Normal: 0
- m_start_Decal5_Reflections: 0
- m_start_Decal5_SDF: 0
+ - m_start_Decal5_SSN: 0
- m_start_Decal6: 0
- m_start_Decal6_CMYK_Warping_Planes: 0
- m_start_Decal6_Domain_Warping: 0
@@ -1803,6 +2074,7 @@ Material:
- m_start_Decal6_Normal: 0
- m_start_Decal6_Reflections: 0
- m_start_Decal6_SDF: 0
+ - m_start_Decal6_SSN: 0
- m_start_Decal7: 0
- m_start_Decal7_CMYK_Warping_Planes: 0
- m_start_Decal7_Domain_Warping: 0
@@ -1812,6 +2084,7 @@ Material:
- m_start_Decal7_Normal: 0
- m_start_Decal7_Reflections: 0
- m_start_Decal7_SDF: 0
+ - m_start_Decal7_SSN: 0
- m_start_Decals: 0
- m_start_Depth_Prepass: 0
- m_start_Detail_Maps: 0
@@ -1828,11 +2101,21 @@ Material:
- m_start_Glitter: 0
- m_start_Glitter_Angle_Limit: 0
- m_start_Glitter_Mask: 0
+ - m_start_Gradient_Normals: 0
+ - m_start_Gradient_Normals_0: 0
+ - m_start_Gradient_Normals_0_Horizontal: 0
+ - m_start_Gradient_Normals_1: 0
+ - m_start_Gradient_Normals_1_Horizontal: 0
+ - m_start_Gradient_Normals_2: 0
+ - m_start_Gradient_Normals_2_Horizontal: 0
+ - m_start_Gradient_Normals_3: 0
+ - m_start_Gradient_Normals_3_Horizontal: 0
- m_start_Grayscale_Lightmaps: 0
- m_start_Harnack_Tracing: 0
- m_start_Harnack_Tracing_Gyroid: 0
- m_start_LTCGI: 0
- m_start_Letter_Grid: 0
+ - m_start_Light_Volumes_Brightness: 0
- m_start_MaskedStencil1PassBackOptions: 0
- m_start_MaskedStencil1PassFrontOptions: 0
- m_start_MaskedStencil2PassBackOptions: 0
@@ -1851,6 +2134,9 @@ Material:
- m_start_Matcap1: 0
- m_start_Matcap1_Mask: 0
- m_start_Matcap1_Quantization: 0
+ - m_start_Matcap2: 0
+ - m_start_Matcap2_Mask: 0
+ - m_start_Matcap2_Quantization: 0
- m_start_Matcaps: 0
- m_start_Material_Type_Cloth: 0
- m_start_Material_Type_Cloth_Subsurface: 0
@@ -1866,6 +2152,7 @@ Material:
- m_start_OutlinesMask: 0
- m_start_Quantize_NoL: 0
- m_start_Quantize_Specular: 0
+ - m_start_Quasi_Shadows: 0
- m_start_Raymarched_Fog: 0
- m_start_Raymarched_Fog_Density_Exponent: 0
- m_start_Raymarched_Fog_Emitter_Texture: 0
@@ -1889,6 +2176,12 @@ Material:
- m_start_Rim_Lighting3_Quantization: 0
- m_start_SSAO: 0
- m_start_SSFD: 0
+ - m_start_Screen_Space_Normals: 0
+ - m_start_Sea_Foam: 0
+ - m_start_Sea_Foam_0: 0
+ - m_start_Sea_Foam_1: 0
+ - m_start_Sea_Foam_2: 0
+ - m_start_Sea_Foam_3: 0
- m_start_Shadow_Casting: 0
- m_start_Shadow_Receiving: 0
- m_start_Shatter_Wave: 0
@@ -1901,8 +2194,17 @@ Material:
- m_start_StencilPassFrontOptions: 0
- m_start_Tessellation: 0
- m_start_Tessellation_Heightmap: 0
+ - m_start_Tessellation_Heightmap_0: 0
+ - m_start_Tessellation_Heightmap_1: 0
+ - m_start_Tessellation_Heightmap_2: 0
+ - m_start_Tessellation_Heightmap_3: 0
+ - m_start_Tessellation_Heightmap_4: 0
+ - m_start_Tessellation_Heightmap_5: 0
+ - m_start_Tessellation_Heightmap_6: 0
+ - m_start_Tessellation_Heightmap_7: 0
- m_start_Tessellation_Heightmap_Direction_Control: 0
- m_start_Tessellation_Range_Factor: 0
+ - m_start_Trochoid: 0
- m_start_UV_Domain_Warping: 0
- m_start_Unigram_Letter_Grid: 0
- m_start_Unlit: 0
@@ -1961,6 +2263,7 @@ Material:
- _Letter_Grid_UV_Scale_Offset: {r: 1, g: 1, b: 0, a: 0}
- _MetalReflectionTint: {r: 1, g: 1, b: 1, a: 1}
- _Outline_Color: {r: 0, g: 0, b: 0, a: 1}
+ - _Quasi_Shadows_0_Color: {r: 1, g: 1, b: 1, a: 1}
- _Raymarched_Fog_Color: {r: 0.29999998, g: 0.29999998, b: 0.29999998, a: 1}
- _Raymarched_Fog_Density_Noise_Scale: {r: 1, g: 1, b: 1, a: 0}
- _Raymarched_Fog_Emitter_Texture_World_Normal: {r: 0, g: 0, b: 0, a: 0}
@@ -1977,6 +2280,7 @@ Material:
- _Rim_Lighting2_Color: {r: 1, g: 1, b: 1, a: 1}
- _Rim_Lighting3_Angle_Limit_Target_Vector: {r: 0, g: -1, b: 0, a: 0}
- _Rim_Lighting3_Color: {r: 1, g: 1, b: 1, a: 1}
+ - _Sea_Foam_Color: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Amplitude: {r: 0.4, g: 0.4, b: 0.4, a: 0.4}
- _Shatter_Wave_Chronotensity_Time_Factor: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Chronotensity_Weights0: {r: 0, g: 0, b: 0, a: 0}
diff --git a/Materials/Filament calibration/Mat04.mat b/Materials/Filament calibration/Mat04.mat
index cbb9048..19330b3 100644
--- a/Materials/Filament calibration/Mat04.mat
+++ b/Materials/Filament calibration/Mat04.mat
@@ -13,10 +13,12 @@ Material:
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _CAST_SHADOWS
+ - _CLEARCOAT_GEOMETRIC_NORMALS
- _METALLICS
- _RECEIVE_SHADOWS
+ m_InvalidKeywords:
+ - _LIGHT_VOLUMES_BRIGHTNESS_ENABLED_DYNAMIC_ON
- _SPHERICAL_HARMONICS_L1
- m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
@@ -35,6 +37,10 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Clearcoat_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Cloth_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -267,6 +273,38 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Letter_Grid_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -311,6 +349,14 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Matcap2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Matcap2_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -367,6 +413,22 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_0_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_1_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_2_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_3_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _SmoothnessMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -375,6 +437,42 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_0:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_1:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_3:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_4:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_5:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_6:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_7:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Trochoid_Color_Ramp:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _UV_Domain_Warping_Noise:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -421,6 +519,7 @@ Material:
- _BumpScale: 1
- _Cast_Shadows_Enabled: 1
- _Clearcoat_Enabled: 0
+ - _Clearcoat_Geometric_Normals_Enabled: 1
- _Clearcoat_Roughness: 0.089
- _Clearcoat_Strength: 1
- _Clip: 0.5
@@ -445,6 +544,7 @@ Material:
- _Custom30_ro_Offset: 0
- _Cutoff: 0.5
- _Decal0_Angle: 0
+ - _Decal0_Bias: 0
- _Decal0_CMYK_Warping_Planes_Enabled: 0
- _Decal0_CMYK_Warping_Planes_Scale: 0.1
- _Decal0_CMYK_Warping_Planes_Speed: 1
@@ -461,23 +561,30 @@ Material:
- _Decal0_Emissions_Proximity_Max_Distance: 1
- _Decal0_Emissions_Proximity_Min_Distance: 0
- _Decal0_Enabled: 0
+ - _Decal0_Invert_Blend_Order: 0
- _Decal0_Mask_Enabled: 0
- _Decal0_Metallic: 0
- _Decal0_Normal_Enabled: 0
- _Decal0_Normal_Scale: 1
- _Decal0_Opacity: 1
+ - _Decal0_Reflections_Alpha_Blend: 0
- _Decal0_Reflections_Enabled: 0
- _Decal0_Replace_Alpha_Mode: 0
- _Decal0_Replace_Multiply_Mode: 0
- _Decal0_SDF_Enabled: 0
- _Decal0_SDF_Invert: 0
- _Decal0_SDF_Px_Range: 2
+ - _Decal0_SDF_SSN_Enabled: 0
+ - _Decal0_SDF_SSN_Only: 0
+ - _Decal0_SDF_SSN_Replace: 0
+ - _Decal0_SDF_SSN_Strength: 1
- _Decal0_SDF_Softness: 0.01
- _Decal0_SDF_Threshold: 0.5
- _Decal0_Smoothness: 0.5
- _Decal0_Tiling_Mode: 0
- _Decal0_UV_Channel: 0
- _Decal1_Angle: 0
+ - _Decal1_Bias: 0
- _Decal1_CMYK_Warping_Planes_Enabled: 0
- _Decal1_CMYK_Warping_Planes_Scale: 0.1
- _Decal1_CMYK_Warping_Planes_Speed: 1
@@ -494,23 +601,30 @@ Material:
- _Decal1_Emissions_Proximity_Max_Distance: 1
- _Decal1_Emissions_Proximity_Min_Distance: 0
- _Decal1_Enabled: 0
+ - _Decal1_Invert_Blend_Order: 0
- _Decal1_Mask_Enabled: 0
- _Decal1_Metallic: 0
- _Decal1_Normal_Enabled: 0
- _Decal1_Normal_Scale: 1
- _Decal1_Opacity: 1
+ - _Decal1_Reflections_Alpha_Blend: 0
- _Decal1_Reflections_Enabled: 0
- _Decal1_Replace_Alpha_Mode: 0
- _Decal1_Replace_Multiply_Mode: 0
- _Decal1_SDF_Enabled: 0
- _Decal1_SDF_Invert: 0
- _Decal1_SDF_Px_Range: 2
+ - _Decal1_SDF_SSN_Enabled: 0
+ - _Decal1_SDF_SSN_Only: 0
+ - _Decal1_SDF_SSN_Replace: 0
+ - _Decal1_SDF_SSN_Strength: 1
- _Decal1_SDF_Softness: 0.01
- _Decal1_SDF_Threshold: 0.5
- _Decal1_Smoothness: 0.5
- _Decal1_Tiling_Mode: 0
- _Decal1_UV_Channel: 0
- _Decal2_Angle: 0
+ - _Decal2_Bias: 0
- _Decal2_CMYK_Warping_Planes_Enabled: 0
- _Decal2_CMYK_Warping_Planes_Scale: 0.1
- _Decal2_CMYK_Warping_Planes_Speed: 1
@@ -527,23 +641,30 @@ Material:
- _Decal2_Emissions_Proximity_Max_Distance: 1
- _Decal2_Emissions_Proximity_Min_Distance: 0
- _Decal2_Enabled: 0
+ - _Decal2_Invert_Blend_Order: 0
- _Decal2_Mask_Enabled: 0
- _Decal2_Metallic: 0
- _Decal2_Normal_Enabled: 0
- _Decal2_Normal_Scale: 1
- _Decal2_Opacity: 1
+ - _Decal2_Reflections_Alpha_Blend: 0
- _Decal2_Reflections_Enabled: 0
- _Decal2_Replace_Alpha_Mode: 0
- _Decal2_Replace_Multiply_Mode: 0
- _Decal2_SDF_Enabled: 0
- _Decal2_SDF_Invert: 0
- _Decal2_SDF_Px_Range: 2
+ - _Decal2_SDF_SSN_Enabled: 0
+ - _Decal2_SDF_SSN_Only: 0
+ - _Decal2_SDF_SSN_Replace: 0
+ - _Decal2_SDF_SSN_Strength: 1
- _Decal2_SDF_Softness: 0.01
- _Decal2_SDF_Threshold: 0.5
- _Decal2_Smoothness: 0.5
- _Decal2_Tiling_Mode: 0
- _Decal2_UV_Channel: 0
- _Decal3_Angle: 0
+ - _Decal3_Bias: 0
- _Decal3_CMYK_Warping_Planes_Enabled: 0
- _Decal3_CMYK_Warping_Planes_Scale: 0.1
- _Decal3_CMYK_Warping_Planes_Speed: 1
@@ -560,23 +681,30 @@ Material:
- _Decal3_Emissions_Proximity_Max_Distance: 1
- _Decal3_Emissions_Proximity_Min_Distance: 0
- _Decal3_Enabled: 0
+ - _Decal3_Invert_Blend_Order: 0
- _Decal3_Mask_Enabled: 0
- _Decal3_Metallic: 0
- _Decal3_Normal_Enabled: 0
- _Decal3_Normal_Scale: 1
- _Decal3_Opacity: 1
+ - _Decal3_Reflections_Alpha_Blend: 0
- _Decal3_Reflections_Enabled: 0
- _Decal3_Replace_Alpha_Mode: 0
- _Decal3_Replace_Multiply_Mode: 0
- _Decal3_SDF_Enabled: 0
- _Decal3_SDF_Invert: 0
- _Decal3_SDF_Px_Range: 2
+ - _Decal3_SDF_SSN_Enabled: 0
+ - _Decal3_SDF_SSN_Only: 0
+ - _Decal3_SDF_SSN_Replace: 0
+ - _Decal3_SDF_SSN_Strength: 1
- _Decal3_SDF_Softness: 0.01
- _Decal3_SDF_Threshold: 0.5
- _Decal3_Smoothness: 0.5
- _Decal3_Tiling_Mode: 0
- _Decal3_UV_Channel: 0
- _Decal4_Angle: 0
+ - _Decal4_Bias: 0
- _Decal4_CMYK_Warping_Planes_Enabled: 0
- _Decal4_CMYK_Warping_Planes_Scale: 0.1
- _Decal4_CMYK_Warping_Planes_Speed: 1
@@ -593,23 +721,30 @@ Material:
- _Decal4_Emissions_Proximity_Max_Distance: 1
- _Decal4_Emissions_Proximity_Min_Distance: 0
- _Decal4_Enabled: 0
+ - _Decal4_Invert_Blend_Order: 0
- _Decal4_Mask_Enabled: 0
- _Decal4_Metallic: 0
- _Decal4_Normal_Enabled: 0
- _Decal4_Normal_Scale: 1
- _Decal4_Opacity: 1
+ - _Decal4_Reflections_Alpha_Blend: 0
- _Decal4_Reflections_Enabled: 0
- _Decal4_Replace_Alpha_Mode: 0
- _Decal4_Replace_Multiply_Mode: 0
- _Decal4_SDF_Enabled: 0
- _Decal4_SDF_Invert: 0
- _Decal4_SDF_Px_Range: 2
+ - _Decal4_SDF_SSN_Enabled: 0
+ - _Decal4_SDF_SSN_Only: 0
+ - _Decal4_SDF_SSN_Replace: 0
+ - _Decal4_SDF_SSN_Strength: 1
- _Decal4_SDF_Softness: 0.01
- _Decal4_SDF_Threshold: 0.5
- _Decal4_Smoothness: 0.5
- _Decal4_Tiling_Mode: 0
- _Decal4_UV_Channel: 0
- _Decal5_Angle: 0
+ - _Decal5_Bias: 0
- _Decal5_CMYK_Warping_Planes_Enabled: 0
- _Decal5_CMYK_Warping_Planes_Scale: 0.1
- _Decal5_CMYK_Warping_Planes_Speed: 1
@@ -626,23 +761,30 @@ Material:
- _Decal5_Emissions_Proximity_Max_Distance: 1
- _Decal5_Emissions_Proximity_Min_Distance: 0
- _Decal5_Enabled: 0
+ - _Decal5_Invert_Blend_Order: 0
- _Decal5_Mask_Enabled: 0
- _Decal5_Metallic: 0
- _Decal5_Normal_Enabled: 0
- _Decal5_Normal_Scale: 1
- _Decal5_Opacity: 1
+ - _Decal5_Reflections_Alpha_Blend: 0
- _Decal5_Reflections_Enabled: 0
- _Decal5_Replace_Alpha_Mode: 0
- _Decal5_Replace_Multiply_Mode: 0
- _Decal5_SDF_Enabled: 0
- _Decal5_SDF_Invert: 0
- _Decal5_SDF_Px_Range: 2
+ - _Decal5_SDF_SSN_Enabled: 0
+ - _Decal5_SDF_SSN_Only: 0
+ - _Decal5_SDF_SSN_Replace: 0
+ - _Decal5_SDF_SSN_Strength: 1
- _Decal5_SDF_Softness: 0.01
- _Decal5_SDF_Threshold: 0.5
- _Decal5_Smoothness: 0.5
- _Decal5_Tiling_Mode: 0
- _Decal5_UV_Channel: 0
- _Decal6_Angle: 0
+ - _Decal6_Bias: 0
- _Decal6_CMYK_Warping_Planes_Enabled: 0
- _Decal6_CMYK_Warping_Planes_Scale: 0.1
- _Decal6_CMYK_Warping_Planes_Speed: 1
@@ -659,23 +801,30 @@ Material:
- _Decal6_Emissions_Proximity_Max_Distance: 1
- _Decal6_Emissions_Proximity_Min_Distance: 0
- _Decal6_Enabled: 0
+ - _Decal6_Invert_Blend_Order: 0
- _Decal6_Mask_Enabled: 0
- _Decal6_Metallic: 0
- _Decal6_Normal_Enabled: 0
- _Decal6_Normal_Scale: 1
- _Decal6_Opacity: 1
+ - _Decal6_Reflections_Alpha_Blend: 0
- _Decal6_Reflections_Enabled: 0
- _Decal6_Replace_Alpha_Mode: 0
- _Decal6_Replace_Multiply_Mode: 0
- _Decal6_SDF_Enabled: 0
- _Decal6_SDF_Invert: 0
- _Decal6_SDF_Px_Range: 2
+ - _Decal6_SDF_SSN_Enabled: 0
+ - _Decal6_SDF_SSN_Only: 0
+ - _Decal6_SDF_SSN_Replace: 0
+ - _Decal6_SDF_SSN_Strength: 1
- _Decal6_SDF_Softness: 0.01
- _Decal6_SDF_Threshold: 0.5
- _Decal6_Smoothness: 0.5
- _Decal6_Tiling_Mode: 0
- _Decal6_UV_Channel: 0
- _Decal7_Angle: 0
+ - _Decal7_Bias: 0
- _Decal7_CMYK_Warping_Planes_Enabled: 0
- _Decal7_CMYK_Warping_Planes_Scale: 0.1
- _Decal7_CMYK_Warping_Planes_Speed: 1
@@ -692,17 +841,23 @@ Material:
- _Decal7_Emissions_Proximity_Max_Distance: 1
- _Decal7_Emissions_Proximity_Min_Distance: 0
- _Decal7_Enabled: 0
+ - _Decal7_Invert_Blend_Order: 0
- _Decal7_Mask_Enabled: 0
- _Decal7_Metallic: 0
- _Decal7_Normal_Enabled: 0
- _Decal7_Normal_Scale: 1
- _Decal7_Opacity: 1
+ - _Decal7_Reflections_Alpha_Blend: 0
- _Decal7_Reflections_Enabled: 0
- _Decal7_Replace_Alpha_Mode: 0
- _Decal7_Replace_Multiply_Mode: 0
- _Decal7_SDF_Enabled: 0
- _Decal7_SDF_Invert: 0
- _Decal7_SDF_Px_Range: 2
+ - _Decal7_SDF_SSN_Enabled: 0
+ - _Decal7_SDF_SSN_Only: 0
+ - _Decal7_SDF_SSN_Replace: 0
+ - _Decal7_SDF_SSN_Strength: 1
- _Decal7_SDF_Softness: 0.01
- _Decal7_SDF_Threshold: 0.5
- _Decal7_Smoothness: 0.5
@@ -711,6 +866,7 @@ Material:
- _Depth_Prepass_Enabled: 0
- _DetailNormalMapScale: 1
- _Detail_Maps_Enabled: 0
+ - _Detail_Maps_UV_Channel: 0
- _DstBlend: 0
- _DstBlendAlpha: 10
- _Emission_Enabled: 0
@@ -767,9 +923,19 @@ Material:
- _Glitter_Mask_Enabled: 0
- _Glitter_Size: 1
- _Glitter_Size_Randomization_Range: 0.4
+ - _Glitter_UV_Channel: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
+ - _Gradient_Normals_0_Horizontal_Enabled: 0
+ - _Gradient_Normals_0_Vertical_Enabled: 0
+ - _Gradient_Normals_1_Horizontal_Enabled: 0
+ - _Gradient_Normals_1_Vertical_Enabled: 0
+ - _Gradient_Normals_2_Horizontal_Enabled: 0
+ - _Gradient_Normals_2_Vertical_Enabled: 0
+ - _Gradient_Normals_3_Horizontal_Enabled: 0
+ - _Gradient_Normals_3_Vertical_Enabled: 0
+ - _Gradient_Normals_Enabled: 0
- _Grayscale_Lightmaps_Enabled: 0
- _Harnack_Tracing_Enabled: 0
- _Harnack_Tracing_Gyroid_Enabled: 0
@@ -792,6 +958,9 @@ Material:
- _Letter_Grid_Screen_Px_Range: 10
- _Letter_Grid_Tex_Res_X: 16
- _Letter_Grid_Tex_Res_Y: 8
+ - _Light_Volumes_Brightness: 1
+ - _Light_Volumes_Brightness_Enabled: 0
+ - _Light_Volumes_Brightness_Enabled_Dynamic: 1
- _MaskedStencil1BackCompareFunction: 8
- _MaskedStencil1BackFailOp: 0
- _MaskedStencil1BackPassOp: 0
@@ -872,6 +1041,14 @@ Material:
- _Matcap1_Quantization_Steps: 1
- _Matcap1_Strength: 1
- _Matcap1_Target_Mask: 1
+ - _Matcap2_Enabled: 0
+ - _Matcap2_Invert: 0
+ - _Matcap2_Mask_Enabled: 0
+ - _Matcap2_Mode: 0
+ - _Matcap2_Quantization_Enabled: 0
+ - _Matcap2_Quantization_Steps: 1
+ - _Matcap2_Strength: 1
+ - _Matcap2_Target_Mask: 1
- _Material_Type_Cloth_Enabled: 0
- _Material_Type_Cloth_Subsurface: 0
- _Metallic: 1
@@ -923,6 +1100,9 @@ Material:
- _Quantize_NoL_Steps: 1
- _Quantize_Specular_Enabled: 0
- _Quantize_Specular_Steps: 1
+ - _Quasi_Shadows_0_Threshold: 0.5
+ - _Quasi_Shadows_0_Width: 0.1
+ - _Quasi_Shadows_Enabled: 0
- _Raymarched_Fog_Albedo: 1
- _Raymarched_Fog_Density_Exponent: 1
- _Raymarched_Fog_Density_Exponent_Enabled: 0
@@ -1004,6 +1184,17 @@ Material:
- _SSFD_Threshold: 0.5
- _SampleWorld: 0
- _Saturation: 0
+ - _Screen_Space_Normals_Enabled: 0
+ - _Sea_Foam_0_Enabled: 0
+ - _Sea_Foam_1_Enabled: 0
+ - _Sea_Foam_2_Enabled: 0
+ - _Sea_Foam_3_Enabled: 0
+ - _Sea_Foam_Bias: 0
+ - _Sea_Foam_Enabled: 0
+ - _Sea_Foam_Factor: 1
+ - _Sea_Foam_Lambda: 1
+ - _Sea_Foam_Power: 1
+ - _Sea_Foam_Roughness: 0.85
- _ShaderOptimizerEnabled: 0
- _Shadow_Strength: 0.25
- _Shatter_Wave_Audiolink_Enabled: 0
@@ -1042,16 +1233,53 @@ Material:
- _Stencil_Enabled: 0
- _Tessellation_Enabled: 0
- _Tessellation_Factor: 1
+ - _Tessellation_Falloff_Factor: 1
+ - _Tessellation_Frustum_Culling_Bias: 35
+ - _Tessellation_Heightmap_0_Enabled: 0
+ - _Tessellation_Heightmap_0_Offset: 0
+ - _Tessellation_Heightmap_0_Scale: 1
+ - _Tessellation_Heightmap_1_Enabled: 0
+ - _Tessellation_Heightmap_1_Offset: 0
+ - _Tessellation_Heightmap_1_Scale: 1
+ - _Tessellation_Heightmap_2_Enabled: 0
+ - _Tessellation_Heightmap_2_Offset: 0
+ - _Tessellation_Heightmap_2_Scale: 1
+ - _Tessellation_Heightmap_3_Enabled: 0
+ - _Tessellation_Heightmap_3_Offset: 0
+ - _Tessellation_Heightmap_3_Scale: 1
+ - _Tessellation_Heightmap_4_Enabled: 0
+ - _Tessellation_Heightmap_4_Offset: 0
+ - _Tessellation_Heightmap_4_Scale: 1
+ - _Tessellation_Heightmap_5_Enabled: 0
+ - _Tessellation_Heightmap_5_Offset: 0
+ - _Tessellation_Heightmap_5_Scale: 1
+ - _Tessellation_Heightmap_6_Enabled: 0
+ - _Tessellation_Heightmap_6_Offset: 0
+ - _Tessellation_Heightmap_6_Scale: 1
+ - _Tessellation_Heightmap_7_Enabled: 0
+ - _Tessellation_Heightmap_7_Offset: 0
+ - _Tessellation_Heightmap_7_Scale: 1
- _Tessellation_Heightmap_Direction_Control_Enabled: 0
- _Tessellation_Heightmap_Enabled: 0
- _Tessellation_Heightmap_Offset: 0
- _Tessellation_Heightmap_Scale: 1
+ - _Tessellation_Heightmap_World_Space_Enabled: 0
- _Tessellation_Range_Factor_Distance_Far: 1
- _Tessellation_Range_Factor_Distance_Near: 1
- _Tessellation_Range_Factor_Enabled: 0
- _Tessellation_Range_Factor_Factor_Far: 1
- _Tessellation_Range_Factor_Factor_Near: 1
- _Tessellation_Range_Factor_Help: 0
+ - _Trochoid_Enabled: 0
+ - _Trochoid_R: 1
+ - _Trochoid_X_Scale: 1
+ - _Trochoid_Y_Scale: 1
+ - _Trochoid_Z_Scale: 1
+ - _Trochoid_d: 1
+ - _Trochoid_r: 1
+ - _Trochoid_r_Power: 1
+ - _Trochoid_t_k: 1
+ - _Trochoid_theta_k: 1
- _UVSec: 0
- _UV_Domain_Warping_Enabled: 0
- _UV_Domain_Warping_Spatial_Octaves: 1
@@ -1554,6 +1782,7 @@ Material:
- m_end_Decal0_Normal: 0
- m_end_Decal0_Reflections: 0
- m_end_Decal0_SDF: 0
+ - m_end_Decal0_SSN: 0
- m_end_Decal1: 0
- m_end_Decal1_CMYK_Warping_Planes: 0
- m_end_Decal1_Domain_Warping: 0
@@ -1563,6 +1792,7 @@ Material:
- m_end_Decal1_Normal: 0
- m_end_Decal1_Reflections: 0
- m_end_Decal1_SDF: 0
+ - m_end_Decal1_SSN: 0
- m_end_Decal2: 0
- m_end_Decal2_CMYK_Warping_Planes: 0
- m_end_Decal2_Domain_Warping: 0
@@ -1572,6 +1802,7 @@ Material:
- m_end_Decal2_Normal: 0
- m_end_Decal2_Reflections: 0
- m_end_Decal2_SDF: 0
+ - m_end_Decal2_SSN: 0
- m_end_Decal3: 0
- m_end_Decal3_CMYK_Warping_Planes: 0
- m_end_Decal3_Domain_Warping: 0
@@ -1581,6 +1812,7 @@ Material:
- m_end_Decal3_Normal: 0
- m_end_Decal3_Reflections: 0
- m_end_Decal3_SDF: 0
+ - m_end_Decal3_SSN: 0
- m_end_Decal4: 0
- m_end_Decal4_CMYK_Warping_Planes: 0
- m_end_Decal4_Domain_Warping: 0
@@ -1590,6 +1822,7 @@ Material:
- m_end_Decal4_Normal: 0
- m_end_Decal4_Reflections: 0
- m_end_Decal4_SDF: 0
+ - m_end_Decal4_SSN: 0
- m_end_Decal5: 0
- m_end_Decal5_CMYK_Warping_Planes: 0
- m_end_Decal5_Domain_Warping: 0
@@ -1599,6 +1832,7 @@ Material:
- m_end_Decal5_Normal: 0
- m_end_Decal5_Reflections: 0
- m_end_Decal5_SDF: 0
+ - m_end_Decal5_SSN: 0
- m_end_Decal6: 0
- m_end_Decal6_CMYK_Warping_Planes: 0
- m_end_Decal6_Domain_Warping: 0
@@ -1608,6 +1842,7 @@ Material:
- m_end_Decal6_Normal: 0
- m_end_Decal6_Reflections: 0
- m_end_Decal6_SDF: 0
+ - m_end_Decal6_SSN: 0
- m_end_Decal7: 0
- m_end_Decal7_CMYK_Warping_Planes: 0
- m_end_Decal7_Domain_Warping: 0
@@ -1617,6 +1852,7 @@ Material:
- m_end_Decal7_Normal: 0
- m_end_Decal7_Reflections: 0
- m_end_Decal7_SDF: 0
+ - m_end_Decal7_SSN: 0
- m_end_Decals: 0
- m_end_Depth_Prepass: 0
- m_end_Detail_Maps: 0
@@ -1633,11 +1869,21 @@ Material:
- m_end_Glitter: 0
- m_end_Glitter_Angle_Limit: 0
- m_end_Glitter_Mask: 0
+ - m_end_Gradient_Normals: 0
+ - m_end_Gradient_Normals_0: 0
+ - m_end_Gradient_Normals_0_Horizontal: 0
+ - m_end_Gradient_Normals_1: 0
+ - m_end_Gradient_Normals_1_Horizontal: 0
+ - m_end_Gradient_Normals_2: 0
+ - m_end_Gradient_Normals_2_Horizontal: 0
+ - m_end_Gradient_Normals_3: 0
+ - m_end_Gradient_Normals_3_Horizontal: 0
- m_end_Grayscale_Lightmaps: 0
- m_end_Harnack_Tracing: 0
- m_end_Harnack_Tracing_Gyroid: 0
- m_end_LTCGI: 0
- m_end_Letter_Grid: 0
+ - m_end_Light_Volumes_Brightness: 0
- m_end_MaskedStencil1PassBackOptions: 0
- m_end_MaskedStencil1PassFrontOptions: 0
- m_end_MaskedStencil2PassBackOptions: 0
@@ -1656,6 +1902,9 @@ Material:
- m_end_Matcap1: 0
- m_end_Matcap1_Mask: 0
- m_end_Matcap1_Quantization: 0
+ - m_end_Matcap2: 0
+ - m_end_Matcap2_Mask: 0
+ - m_end_Matcap2_Quantization: 0
- m_end_Matcaps: 0
- m_end_Material_Type_Cloth: 0
- m_end_Material_Type_Cloth_Subsurface: 0
@@ -1671,6 +1920,7 @@ Material:
- m_end_OutlinesMask: 0
- m_end_Quantize_NoL: 0
- m_end_Quantize_Specular: 0
+ - m_end_Quasi_Shadows: 0
- m_end_Raymarched_Fog: 0
- m_end_Raymarched_Fog_Density_Exponent: 0
- m_end_Raymarched_Fog_Emitter_Texture: 0
@@ -1694,6 +1944,12 @@ Material:
- m_end_Rim_Lighting3_Quantization: 0
- m_end_SSAO: 0
- m_end_SSFD: 0
+ - m_end_Screen_Space_Normals: 0
+ - m_end_Sea_Foam: 0
+ - m_end_Sea_Foam_0: 0
+ - m_end_Sea_Foam_1: 0
+ - m_end_Sea_Foam_2: 0
+ - m_end_Sea_Foam_3: 0
- m_end_Shadow_Casting: 0
- m_end_Shadow_Receiving: 0
- m_end_Shatter_Wave: 0
@@ -1706,8 +1962,17 @@ Material:
- m_end_StencilPassFrontOptions: 0
- m_end_Tessellation: 0
- m_end_Tessellation_Heightmap: 0
+ - m_end_Tessellation_Heightmap_0: 0
+ - m_end_Tessellation_Heightmap_1: 0
+ - m_end_Tessellation_Heightmap_2: 0
+ - m_end_Tessellation_Heightmap_3: 0
+ - m_end_Tessellation_Heightmap_4: 0
+ - m_end_Tessellation_Heightmap_5: 0
+ - m_end_Tessellation_Heightmap_6: 0
+ - m_end_Tessellation_Heightmap_7: 0
- m_end_Tessellation_Heightmap_Direction_Control: 0
- m_end_Tessellation_Range_Factor: 0
+ - m_end_Trochoid: 0
- m_end_UV_Domain_Warping: 0
- m_end_Unigram_Letter_Grid: 0
- m_end_Unlit: 0
@@ -1744,6 +2009,7 @@ Material:
- m_start_Decal0_Normal: 0
- m_start_Decal0_Reflections: 0
- m_start_Decal0_SDF: 0
+ - m_start_Decal0_SSN: 0
- m_start_Decal1: 0
- m_start_Decal1_CMYK_Warping_Planes: 0
- m_start_Decal1_Domain_Warping: 0
@@ -1753,6 +2019,7 @@ Material:
- m_start_Decal1_Normal: 0
- m_start_Decal1_Reflections: 0
- m_start_Decal1_SDF: 0
+ - m_start_Decal1_SSN: 0
- m_start_Decal2: 0
- m_start_Decal2_CMYK_Warping_Planes: 0
- m_start_Decal2_Domain_Warping: 0
@@ -1762,6 +2029,7 @@ Material:
- m_start_Decal2_Normal: 0
- m_start_Decal2_Reflections: 0
- m_start_Decal2_SDF: 0
+ - m_start_Decal2_SSN: 0
- m_start_Decal3: 0
- m_start_Decal3_CMYK_Warping_Planes: 0
- m_start_Decal3_Domain_Warping: 0
@@ -1771,6 +2039,7 @@ Material:
- m_start_Decal3_Normal: 0
- m_start_Decal3_Reflections: 0
- m_start_Decal3_SDF: 0
+ - m_start_Decal3_SSN: 0
- m_start_Decal4: 0
- m_start_Decal4_CMYK_Warping_Planes: 0
- m_start_Decal4_Domain_Warping: 0
@@ -1780,6 +2049,7 @@ Material:
- m_start_Decal4_Normal: 0
- m_start_Decal4_Reflections: 0
- m_start_Decal4_SDF: 0
+ - m_start_Decal4_SSN: 0
- m_start_Decal5: 0
- m_start_Decal5_CMYK_Warping_Planes: 0
- m_start_Decal5_Domain_Warping: 0
@@ -1789,6 +2059,7 @@ Material:
- m_start_Decal5_Normal: 0
- m_start_Decal5_Reflections: 0
- m_start_Decal5_SDF: 0
+ - m_start_Decal5_SSN: 0
- m_start_Decal6: 0
- m_start_Decal6_CMYK_Warping_Planes: 0
- m_start_Decal6_Domain_Warping: 0
@@ -1798,6 +2069,7 @@ Material:
- m_start_Decal6_Normal: 0
- m_start_Decal6_Reflections: 0
- m_start_Decal6_SDF: 0
+ - m_start_Decal6_SSN: 0
- m_start_Decal7: 0
- m_start_Decal7_CMYK_Warping_Planes: 0
- m_start_Decal7_Domain_Warping: 0
@@ -1807,6 +2079,7 @@ Material:
- m_start_Decal7_Normal: 0
- m_start_Decal7_Reflections: 0
- m_start_Decal7_SDF: 0
+ - m_start_Decal7_SSN: 0
- m_start_Decals: 0
- m_start_Depth_Prepass: 0
- m_start_Detail_Maps: 0
@@ -1823,11 +2096,21 @@ Material:
- m_start_Glitter: 0
- m_start_Glitter_Angle_Limit: 0
- m_start_Glitter_Mask: 0
+ - m_start_Gradient_Normals: 0
+ - m_start_Gradient_Normals_0: 0
+ - m_start_Gradient_Normals_0_Horizontal: 0
+ - m_start_Gradient_Normals_1: 0
+ - m_start_Gradient_Normals_1_Horizontal: 0
+ - m_start_Gradient_Normals_2: 0
+ - m_start_Gradient_Normals_2_Horizontal: 0
+ - m_start_Gradient_Normals_3: 0
+ - m_start_Gradient_Normals_3_Horizontal: 0
- m_start_Grayscale_Lightmaps: 0
- m_start_Harnack_Tracing: 0
- m_start_Harnack_Tracing_Gyroid: 0
- m_start_LTCGI: 0
- m_start_Letter_Grid: 0
+ - m_start_Light_Volumes_Brightness: 0
- m_start_MaskedStencil1PassBackOptions: 0
- m_start_MaskedStencil1PassFrontOptions: 0
- m_start_MaskedStencil2PassBackOptions: 0
@@ -1846,6 +2129,9 @@ Material:
- m_start_Matcap1: 0
- m_start_Matcap1_Mask: 0
- m_start_Matcap1_Quantization: 0
+ - m_start_Matcap2: 0
+ - m_start_Matcap2_Mask: 0
+ - m_start_Matcap2_Quantization: 0
- m_start_Matcaps: 0
- m_start_Material_Type_Cloth: 0
- m_start_Material_Type_Cloth_Subsurface: 0
@@ -1861,6 +2147,7 @@ Material:
- m_start_OutlinesMask: 0
- m_start_Quantize_NoL: 0
- m_start_Quantize_Specular: 0
+ - m_start_Quasi_Shadows: 0
- m_start_Raymarched_Fog: 0
- m_start_Raymarched_Fog_Density_Exponent: 0
- m_start_Raymarched_Fog_Emitter_Texture: 0
@@ -1884,6 +2171,12 @@ Material:
- m_start_Rim_Lighting3_Quantization: 0
- m_start_SSAO: 0
- m_start_SSFD: 0
+ - m_start_Screen_Space_Normals: 0
+ - m_start_Sea_Foam: 0
+ - m_start_Sea_Foam_0: 0
+ - m_start_Sea_Foam_1: 0
+ - m_start_Sea_Foam_2: 0
+ - m_start_Sea_Foam_3: 0
- m_start_Shadow_Casting: 0
- m_start_Shadow_Receiving: 0
- m_start_Shatter_Wave: 0
@@ -1896,8 +2189,17 @@ Material:
- m_start_StencilPassFrontOptions: 0
- m_start_Tessellation: 0
- m_start_Tessellation_Heightmap: 0
+ - m_start_Tessellation_Heightmap_0: 0
+ - m_start_Tessellation_Heightmap_1: 0
+ - m_start_Tessellation_Heightmap_2: 0
+ - m_start_Tessellation_Heightmap_3: 0
+ - m_start_Tessellation_Heightmap_4: 0
+ - m_start_Tessellation_Heightmap_5: 0
+ - m_start_Tessellation_Heightmap_6: 0
+ - m_start_Tessellation_Heightmap_7: 0
- m_start_Tessellation_Heightmap_Direction_Control: 0
- m_start_Tessellation_Range_Factor: 0
+ - m_start_Trochoid: 0
- m_start_UV_Domain_Warping: 0
- m_start_Unigram_Letter_Grid: 0
- m_start_Unlit: 0
@@ -1956,6 +2258,7 @@ Material:
- _Letter_Grid_UV_Scale_Offset: {r: 1, g: 1, b: 0, a: 0}
- _MetalReflectionTint: {r: 1, g: 1, b: 1, a: 1}
- _Outline_Color: {r: 0, g: 0, b: 0, a: 1}
+ - _Quasi_Shadows_0_Color: {r: 1, g: 1, b: 1, a: 1}
- _Raymarched_Fog_Color: {r: 0.29999998, g: 0.29999998, b: 0.29999998, a: 1}
- _Raymarched_Fog_Density_Noise_Scale: {r: 1, g: 1, b: 1, a: 0}
- _Raymarched_Fog_Emitter_Texture_World_Normal: {r: 0, g: 0, b: 0, a: 0}
@@ -1972,6 +2275,7 @@ Material:
- _Rim_Lighting2_Color: {r: 1, g: 1, b: 1, a: 1}
- _Rim_Lighting3_Angle_Limit_Target_Vector: {r: 0, g: -1, b: 0, a: 0}
- _Rim_Lighting3_Color: {r: 1, g: 1, b: 1, a: 1}
+ - _Sea_Foam_Color: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Amplitude: {r: 0.4, g: 0.4, b: 0.4, a: 0.4}
- _Shatter_Wave_Chronotensity_Time_Factor: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Chronotensity_Weights0: {r: 0, g: 0, b: 0, a: 0}
diff --git a/Materials/Filament calibration/Mat05.mat b/Materials/Filament calibration/Mat05.mat
index 190a12b..559f00d 100644
--- a/Materials/Filament calibration/Mat05.mat
+++ b/Materials/Filament calibration/Mat05.mat
@@ -13,10 +13,12 @@ Material:
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _CAST_SHADOWS
+ - _CLEARCOAT_GEOMETRIC_NORMALS
- _METALLICS
- _RECEIVE_SHADOWS
+ m_InvalidKeywords:
+ - _LIGHT_VOLUMES_BRIGHTNESS_ENABLED_DYNAMIC_ON
- _SPHERICAL_HARMONICS_L1
- m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
@@ -35,6 +37,10 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Clearcoat_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Cloth_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -267,6 +273,38 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Letter_Grid_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -311,6 +349,14 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Matcap2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Matcap2_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -367,6 +413,22 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_0_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_1_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_2_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_3_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _SmoothnessMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -375,6 +437,42 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_0:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_1:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_3:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_4:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_5:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_6:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_7:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Trochoid_Color_Ramp:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _UV_Domain_Warping_Noise:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -421,6 +519,7 @@ Material:
- _BumpScale: 1
- _Cast_Shadows_Enabled: 1
- _Clearcoat_Enabled: 0
+ - _Clearcoat_Geometric_Normals_Enabled: 1
- _Clearcoat_Roughness: 0.089
- _Clearcoat_Strength: 1
- _Clip: 0.5
@@ -445,6 +544,7 @@ Material:
- _Custom30_ro_Offset: 0
- _Cutoff: 0.5
- _Decal0_Angle: 0
+ - _Decal0_Bias: 0
- _Decal0_CMYK_Warping_Planes_Enabled: 0
- _Decal0_CMYK_Warping_Planes_Scale: 0.1
- _Decal0_CMYK_Warping_Planes_Speed: 1
@@ -461,23 +561,30 @@ Material:
- _Decal0_Emissions_Proximity_Max_Distance: 1
- _Decal0_Emissions_Proximity_Min_Distance: 0
- _Decal0_Enabled: 0
+ - _Decal0_Invert_Blend_Order: 0
- _Decal0_Mask_Enabled: 0
- _Decal0_Metallic: 0
- _Decal0_Normal_Enabled: 0
- _Decal0_Normal_Scale: 1
- _Decal0_Opacity: 1
+ - _Decal0_Reflections_Alpha_Blend: 0
- _Decal0_Reflections_Enabled: 0
- _Decal0_Replace_Alpha_Mode: 0
- _Decal0_Replace_Multiply_Mode: 0
- _Decal0_SDF_Enabled: 0
- _Decal0_SDF_Invert: 0
- _Decal0_SDF_Px_Range: 2
+ - _Decal0_SDF_SSN_Enabled: 0
+ - _Decal0_SDF_SSN_Only: 0
+ - _Decal0_SDF_SSN_Replace: 0
+ - _Decal0_SDF_SSN_Strength: 1
- _Decal0_SDF_Softness: 0.01
- _Decal0_SDF_Threshold: 0.5
- _Decal0_Smoothness: 0.5
- _Decal0_Tiling_Mode: 0
- _Decal0_UV_Channel: 0
- _Decal1_Angle: 0
+ - _Decal1_Bias: 0
- _Decal1_CMYK_Warping_Planes_Enabled: 0
- _Decal1_CMYK_Warping_Planes_Scale: 0.1
- _Decal1_CMYK_Warping_Planes_Speed: 1
@@ -494,23 +601,30 @@ Material:
- _Decal1_Emissions_Proximity_Max_Distance: 1
- _Decal1_Emissions_Proximity_Min_Distance: 0
- _Decal1_Enabled: 0
+ - _Decal1_Invert_Blend_Order: 0
- _Decal1_Mask_Enabled: 0
- _Decal1_Metallic: 0
- _Decal1_Normal_Enabled: 0
- _Decal1_Normal_Scale: 1
- _Decal1_Opacity: 1
+ - _Decal1_Reflections_Alpha_Blend: 0
- _Decal1_Reflections_Enabled: 0
- _Decal1_Replace_Alpha_Mode: 0
- _Decal1_Replace_Multiply_Mode: 0
- _Decal1_SDF_Enabled: 0
- _Decal1_SDF_Invert: 0
- _Decal1_SDF_Px_Range: 2
+ - _Decal1_SDF_SSN_Enabled: 0
+ - _Decal1_SDF_SSN_Only: 0
+ - _Decal1_SDF_SSN_Replace: 0
+ - _Decal1_SDF_SSN_Strength: 1
- _Decal1_SDF_Softness: 0.01
- _Decal1_SDF_Threshold: 0.5
- _Decal1_Smoothness: 0.5
- _Decal1_Tiling_Mode: 0
- _Decal1_UV_Channel: 0
- _Decal2_Angle: 0
+ - _Decal2_Bias: 0
- _Decal2_CMYK_Warping_Planes_Enabled: 0
- _Decal2_CMYK_Warping_Planes_Scale: 0.1
- _Decal2_CMYK_Warping_Planes_Speed: 1
@@ -527,23 +641,30 @@ Material:
- _Decal2_Emissions_Proximity_Max_Distance: 1
- _Decal2_Emissions_Proximity_Min_Distance: 0
- _Decal2_Enabled: 0
+ - _Decal2_Invert_Blend_Order: 0
- _Decal2_Mask_Enabled: 0
- _Decal2_Metallic: 0
- _Decal2_Normal_Enabled: 0
- _Decal2_Normal_Scale: 1
- _Decal2_Opacity: 1
+ - _Decal2_Reflections_Alpha_Blend: 0
- _Decal2_Reflections_Enabled: 0
- _Decal2_Replace_Alpha_Mode: 0
- _Decal2_Replace_Multiply_Mode: 0
- _Decal2_SDF_Enabled: 0
- _Decal2_SDF_Invert: 0
- _Decal2_SDF_Px_Range: 2
+ - _Decal2_SDF_SSN_Enabled: 0
+ - _Decal2_SDF_SSN_Only: 0
+ - _Decal2_SDF_SSN_Replace: 0
+ - _Decal2_SDF_SSN_Strength: 1
- _Decal2_SDF_Softness: 0.01
- _Decal2_SDF_Threshold: 0.5
- _Decal2_Smoothness: 0.5
- _Decal2_Tiling_Mode: 0
- _Decal2_UV_Channel: 0
- _Decal3_Angle: 0
+ - _Decal3_Bias: 0
- _Decal3_CMYK_Warping_Planes_Enabled: 0
- _Decal3_CMYK_Warping_Planes_Scale: 0.1
- _Decal3_CMYK_Warping_Planes_Speed: 1
@@ -560,23 +681,30 @@ Material:
- _Decal3_Emissions_Proximity_Max_Distance: 1
- _Decal3_Emissions_Proximity_Min_Distance: 0
- _Decal3_Enabled: 0
+ - _Decal3_Invert_Blend_Order: 0
- _Decal3_Mask_Enabled: 0
- _Decal3_Metallic: 0
- _Decal3_Normal_Enabled: 0
- _Decal3_Normal_Scale: 1
- _Decal3_Opacity: 1
+ - _Decal3_Reflections_Alpha_Blend: 0
- _Decal3_Reflections_Enabled: 0
- _Decal3_Replace_Alpha_Mode: 0
- _Decal3_Replace_Multiply_Mode: 0
- _Decal3_SDF_Enabled: 0
- _Decal3_SDF_Invert: 0
- _Decal3_SDF_Px_Range: 2
+ - _Decal3_SDF_SSN_Enabled: 0
+ - _Decal3_SDF_SSN_Only: 0
+ - _Decal3_SDF_SSN_Replace: 0
+ - _Decal3_SDF_SSN_Strength: 1
- _Decal3_SDF_Softness: 0.01
- _Decal3_SDF_Threshold: 0.5
- _Decal3_Smoothness: 0.5
- _Decal3_Tiling_Mode: 0
- _Decal3_UV_Channel: 0
- _Decal4_Angle: 0
+ - _Decal4_Bias: 0
- _Decal4_CMYK_Warping_Planes_Enabled: 0
- _Decal4_CMYK_Warping_Planes_Scale: 0.1
- _Decal4_CMYK_Warping_Planes_Speed: 1
@@ -593,23 +721,30 @@ Material:
- _Decal4_Emissions_Proximity_Max_Distance: 1
- _Decal4_Emissions_Proximity_Min_Distance: 0
- _Decal4_Enabled: 0
+ - _Decal4_Invert_Blend_Order: 0
- _Decal4_Mask_Enabled: 0
- _Decal4_Metallic: 0
- _Decal4_Normal_Enabled: 0
- _Decal4_Normal_Scale: 1
- _Decal4_Opacity: 1
+ - _Decal4_Reflections_Alpha_Blend: 0
- _Decal4_Reflections_Enabled: 0
- _Decal4_Replace_Alpha_Mode: 0
- _Decal4_Replace_Multiply_Mode: 0
- _Decal4_SDF_Enabled: 0
- _Decal4_SDF_Invert: 0
- _Decal4_SDF_Px_Range: 2
+ - _Decal4_SDF_SSN_Enabled: 0
+ - _Decal4_SDF_SSN_Only: 0
+ - _Decal4_SDF_SSN_Replace: 0
+ - _Decal4_SDF_SSN_Strength: 1
- _Decal4_SDF_Softness: 0.01
- _Decal4_SDF_Threshold: 0.5
- _Decal4_Smoothness: 0.5
- _Decal4_Tiling_Mode: 0
- _Decal4_UV_Channel: 0
- _Decal5_Angle: 0
+ - _Decal5_Bias: 0
- _Decal5_CMYK_Warping_Planes_Enabled: 0
- _Decal5_CMYK_Warping_Planes_Scale: 0.1
- _Decal5_CMYK_Warping_Planes_Speed: 1
@@ -626,23 +761,30 @@ Material:
- _Decal5_Emissions_Proximity_Max_Distance: 1
- _Decal5_Emissions_Proximity_Min_Distance: 0
- _Decal5_Enabled: 0
+ - _Decal5_Invert_Blend_Order: 0
- _Decal5_Mask_Enabled: 0
- _Decal5_Metallic: 0
- _Decal5_Normal_Enabled: 0
- _Decal5_Normal_Scale: 1
- _Decal5_Opacity: 1
+ - _Decal5_Reflections_Alpha_Blend: 0
- _Decal5_Reflections_Enabled: 0
- _Decal5_Replace_Alpha_Mode: 0
- _Decal5_Replace_Multiply_Mode: 0
- _Decal5_SDF_Enabled: 0
- _Decal5_SDF_Invert: 0
- _Decal5_SDF_Px_Range: 2
+ - _Decal5_SDF_SSN_Enabled: 0
+ - _Decal5_SDF_SSN_Only: 0
+ - _Decal5_SDF_SSN_Replace: 0
+ - _Decal5_SDF_SSN_Strength: 1
- _Decal5_SDF_Softness: 0.01
- _Decal5_SDF_Threshold: 0.5
- _Decal5_Smoothness: 0.5
- _Decal5_Tiling_Mode: 0
- _Decal5_UV_Channel: 0
- _Decal6_Angle: 0
+ - _Decal6_Bias: 0
- _Decal6_CMYK_Warping_Planes_Enabled: 0
- _Decal6_CMYK_Warping_Planes_Scale: 0.1
- _Decal6_CMYK_Warping_Planes_Speed: 1
@@ -659,23 +801,30 @@ Material:
- _Decal6_Emissions_Proximity_Max_Distance: 1
- _Decal6_Emissions_Proximity_Min_Distance: 0
- _Decal6_Enabled: 0
+ - _Decal6_Invert_Blend_Order: 0
- _Decal6_Mask_Enabled: 0
- _Decal6_Metallic: 0
- _Decal6_Normal_Enabled: 0
- _Decal6_Normal_Scale: 1
- _Decal6_Opacity: 1
+ - _Decal6_Reflections_Alpha_Blend: 0
- _Decal6_Reflections_Enabled: 0
- _Decal6_Replace_Alpha_Mode: 0
- _Decal6_Replace_Multiply_Mode: 0
- _Decal6_SDF_Enabled: 0
- _Decal6_SDF_Invert: 0
- _Decal6_SDF_Px_Range: 2
+ - _Decal6_SDF_SSN_Enabled: 0
+ - _Decal6_SDF_SSN_Only: 0
+ - _Decal6_SDF_SSN_Replace: 0
+ - _Decal6_SDF_SSN_Strength: 1
- _Decal6_SDF_Softness: 0.01
- _Decal6_SDF_Threshold: 0.5
- _Decal6_Smoothness: 0.5
- _Decal6_Tiling_Mode: 0
- _Decal6_UV_Channel: 0
- _Decal7_Angle: 0
+ - _Decal7_Bias: 0
- _Decal7_CMYK_Warping_Planes_Enabled: 0
- _Decal7_CMYK_Warping_Planes_Scale: 0.1
- _Decal7_CMYK_Warping_Planes_Speed: 1
@@ -692,17 +841,23 @@ Material:
- _Decal7_Emissions_Proximity_Max_Distance: 1
- _Decal7_Emissions_Proximity_Min_Distance: 0
- _Decal7_Enabled: 0
+ - _Decal7_Invert_Blend_Order: 0
- _Decal7_Mask_Enabled: 0
- _Decal7_Metallic: 0
- _Decal7_Normal_Enabled: 0
- _Decal7_Normal_Scale: 1
- _Decal7_Opacity: 1
+ - _Decal7_Reflections_Alpha_Blend: 0
- _Decal7_Reflections_Enabled: 0
- _Decal7_Replace_Alpha_Mode: 0
- _Decal7_Replace_Multiply_Mode: 0
- _Decal7_SDF_Enabled: 0
- _Decal7_SDF_Invert: 0
- _Decal7_SDF_Px_Range: 2
+ - _Decal7_SDF_SSN_Enabled: 0
+ - _Decal7_SDF_SSN_Only: 0
+ - _Decal7_SDF_SSN_Replace: 0
+ - _Decal7_SDF_SSN_Strength: 1
- _Decal7_SDF_Softness: 0.01
- _Decal7_SDF_Threshold: 0.5
- _Decal7_Smoothness: 0.5
@@ -711,6 +866,7 @@ Material:
- _Depth_Prepass_Enabled: 0
- _DetailNormalMapScale: 1
- _Detail_Maps_Enabled: 0
+ - _Detail_Maps_UV_Channel: 0
- _DstBlend: 0
- _DstBlendAlpha: 10
- _Emission_Enabled: 0
@@ -767,9 +923,19 @@ Material:
- _Glitter_Mask_Enabled: 0
- _Glitter_Size: 1
- _Glitter_Size_Randomization_Range: 0.4
+ - _Glitter_UV_Channel: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
+ - _Gradient_Normals_0_Horizontal_Enabled: 0
+ - _Gradient_Normals_0_Vertical_Enabled: 0
+ - _Gradient_Normals_1_Horizontal_Enabled: 0
+ - _Gradient_Normals_1_Vertical_Enabled: 0
+ - _Gradient_Normals_2_Horizontal_Enabled: 0
+ - _Gradient_Normals_2_Vertical_Enabled: 0
+ - _Gradient_Normals_3_Horizontal_Enabled: 0
+ - _Gradient_Normals_3_Vertical_Enabled: 0
+ - _Gradient_Normals_Enabled: 0
- _Grayscale_Lightmaps_Enabled: 0
- _Harnack_Tracing_Enabled: 0
- _Harnack_Tracing_Gyroid_Enabled: 0
@@ -792,6 +958,9 @@ Material:
- _Letter_Grid_Screen_Px_Range: 10
- _Letter_Grid_Tex_Res_X: 16
- _Letter_Grid_Tex_Res_Y: 8
+ - _Light_Volumes_Brightness: 1
+ - _Light_Volumes_Brightness_Enabled: 0
+ - _Light_Volumes_Brightness_Enabled_Dynamic: 1
- _MaskedStencil1BackCompareFunction: 8
- _MaskedStencil1BackFailOp: 0
- _MaskedStencil1BackPassOp: 0
@@ -872,6 +1041,14 @@ Material:
- _Matcap1_Quantization_Steps: 1
- _Matcap1_Strength: 1
- _Matcap1_Target_Mask: 1
+ - _Matcap2_Enabled: 0
+ - _Matcap2_Invert: 0
+ - _Matcap2_Mask_Enabled: 0
+ - _Matcap2_Mode: 0
+ - _Matcap2_Quantization_Enabled: 0
+ - _Matcap2_Quantization_Steps: 1
+ - _Matcap2_Strength: 1
+ - _Matcap2_Target_Mask: 1
- _Material_Type_Cloth_Enabled: 0
- _Material_Type_Cloth_Subsurface: 0
- _Metallic: 1
@@ -923,6 +1100,9 @@ Material:
- _Quantize_NoL_Steps: 1
- _Quantize_Specular_Enabled: 0
- _Quantize_Specular_Steps: 1
+ - _Quasi_Shadows_0_Threshold: 0.5
+ - _Quasi_Shadows_0_Width: 0.1
+ - _Quasi_Shadows_Enabled: 0
- _Raymarched_Fog_Albedo: 1
- _Raymarched_Fog_Density_Exponent: 1
- _Raymarched_Fog_Density_Exponent_Enabled: 0
@@ -1004,6 +1184,17 @@ Material:
- _SSFD_Threshold: 0.5
- _SampleWorld: 0
- _Saturation: 0
+ - _Screen_Space_Normals_Enabled: 0
+ - _Sea_Foam_0_Enabled: 0
+ - _Sea_Foam_1_Enabled: 0
+ - _Sea_Foam_2_Enabled: 0
+ - _Sea_Foam_3_Enabled: 0
+ - _Sea_Foam_Bias: 0
+ - _Sea_Foam_Enabled: 0
+ - _Sea_Foam_Factor: 1
+ - _Sea_Foam_Lambda: 1
+ - _Sea_Foam_Power: 1
+ - _Sea_Foam_Roughness: 0.85
- _ShaderOptimizerEnabled: 0
- _Shadow_Strength: 0.25
- _Shatter_Wave_Audiolink_Enabled: 0
@@ -1042,16 +1233,53 @@ Material:
- _Stencil_Enabled: 0
- _Tessellation_Enabled: 0
- _Tessellation_Factor: 1
+ - _Tessellation_Falloff_Factor: 1
+ - _Tessellation_Frustum_Culling_Bias: 35
+ - _Tessellation_Heightmap_0_Enabled: 0
+ - _Tessellation_Heightmap_0_Offset: 0
+ - _Tessellation_Heightmap_0_Scale: 1
+ - _Tessellation_Heightmap_1_Enabled: 0
+ - _Tessellation_Heightmap_1_Offset: 0
+ - _Tessellation_Heightmap_1_Scale: 1
+ - _Tessellation_Heightmap_2_Enabled: 0
+ - _Tessellation_Heightmap_2_Offset: 0
+ - _Tessellation_Heightmap_2_Scale: 1
+ - _Tessellation_Heightmap_3_Enabled: 0
+ - _Tessellation_Heightmap_3_Offset: 0
+ - _Tessellation_Heightmap_3_Scale: 1
+ - _Tessellation_Heightmap_4_Enabled: 0
+ - _Tessellation_Heightmap_4_Offset: 0
+ - _Tessellation_Heightmap_4_Scale: 1
+ - _Tessellation_Heightmap_5_Enabled: 0
+ - _Tessellation_Heightmap_5_Offset: 0
+ - _Tessellation_Heightmap_5_Scale: 1
+ - _Tessellation_Heightmap_6_Enabled: 0
+ - _Tessellation_Heightmap_6_Offset: 0
+ - _Tessellation_Heightmap_6_Scale: 1
+ - _Tessellation_Heightmap_7_Enabled: 0
+ - _Tessellation_Heightmap_7_Offset: 0
+ - _Tessellation_Heightmap_7_Scale: 1
- _Tessellation_Heightmap_Direction_Control_Enabled: 0
- _Tessellation_Heightmap_Enabled: 0
- _Tessellation_Heightmap_Offset: 0
- _Tessellation_Heightmap_Scale: 1
+ - _Tessellation_Heightmap_World_Space_Enabled: 0
- _Tessellation_Range_Factor_Distance_Far: 1
- _Tessellation_Range_Factor_Distance_Near: 1
- _Tessellation_Range_Factor_Enabled: 0
- _Tessellation_Range_Factor_Factor_Far: 1
- _Tessellation_Range_Factor_Factor_Near: 1
- _Tessellation_Range_Factor_Help: 0
+ - _Trochoid_Enabled: 0
+ - _Trochoid_R: 1
+ - _Trochoid_X_Scale: 1
+ - _Trochoid_Y_Scale: 1
+ - _Trochoid_Z_Scale: 1
+ - _Trochoid_d: 1
+ - _Trochoid_r: 1
+ - _Trochoid_r_Power: 1
+ - _Trochoid_t_k: 1
+ - _Trochoid_theta_k: 1
- _UVSec: 0
- _UV_Domain_Warping_Enabled: 0
- _UV_Domain_Warping_Spatial_Octaves: 1
@@ -1554,6 +1782,7 @@ Material:
- m_end_Decal0_Normal: 0
- m_end_Decal0_Reflections: 0
- m_end_Decal0_SDF: 0
+ - m_end_Decal0_SSN: 0
- m_end_Decal1: 0
- m_end_Decal1_CMYK_Warping_Planes: 0
- m_end_Decal1_Domain_Warping: 0
@@ -1563,6 +1792,7 @@ Material:
- m_end_Decal1_Normal: 0
- m_end_Decal1_Reflections: 0
- m_end_Decal1_SDF: 0
+ - m_end_Decal1_SSN: 0
- m_end_Decal2: 0
- m_end_Decal2_CMYK_Warping_Planes: 0
- m_end_Decal2_Domain_Warping: 0
@@ -1572,6 +1802,7 @@ Material:
- m_end_Decal2_Normal: 0
- m_end_Decal2_Reflections: 0
- m_end_Decal2_SDF: 0
+ - m_end_Decal2_SSN: 0
- m_end_Decal3: 0
- m_end_Decal3_CMYK_Warping_Planes: 0
- m_end_Decal3_Domain_Warping: 0
@@ -1581,6 +1812,7 @@ Material:
- m_end_Decal3_Normal: 0
- m_end_Decal3_Reflections: 0
- m_end_Decal3_SDF: 0
+ - m_end_Decal3_SSN: 0
- m_end_Decal4: 0
- m_end_Decal4_CMYK_Warping_Planes: 0
- m_end_Decal4_Domain_Warping: 0
@@ -1590,6 +1822,7 @@ Material:
- m_end_Decal4_Normal: 0
- m_end_Decal4_Reflections: 0
- m_end_Decal4_SDF: 0
+ - m_end_Decal4_SSN: 0
- m_end_Decal5: 0
- m_end_Decal5_CMYK_Warping_Planes: 0
- m_end_Decal5_Domain_Warping: 0
@@ -1599,6 +1832,7 @@ Material:
- m_end_Decal5_Normal: 0
- m_end_Decal5_Reflections: 0
- m_end_Decal5_SDF: 0
+ - m_end_Decal5_SSN: 0
- m_end_Decal6: 0
- m_end_Decal6_CMYK_Warping_Planes: 0
- m_end_Decal6_Domain_Warping: 0
@@ -1608,6 +1842,7 @@ Material:
- m_end_Decal6_Normal: 0
- m_end_Decal6_Reflections: 0
- m_end_Decal6_SDF: 0
+ - m_end_Decal6_SSN: 0
- m_end_Decal7: 0
- m_end_Decal7_CMYK_Warping_Planes: 0
- m_end_Decal7_Domain_Warping: 0
@@ -1617,6 +1852,7 @@ Material:
- m_end_Decal7_Normal: 0
- m_end_Decal7_Reflections: 0
- m_end_Decal7_SDF: 0
+ - m_end_Decal7_SSN: 0
- m_end_Decals: 0
- m_end_Depth_Prepass: 0
- m_end_Detail_Maps: 0
@@ -1633,11 +1869,21 @@ Material:
- m_end_Glitter: 0
- m_end_Glitter_Angle_Limit: 0
- m_end_Glitter_Mask: 0
+ - m_end_Gradient_Normals: 0
+ - m_end_Gradient_Normals_0: 0
+ - m_end_Gradient_Normals_0_Horizontal: 0
+ - m_end_Gradient_Normals_1: 0
+ - m_end_Gradient_Normals_1_Horizontal: 0
+ - m_end_Gradient_Normals_2: 0
+ - m_end_Gradient_Normals_2_Horizontal: 0
+ - m_end_Gradient_Normals_3: 0
+ - m_end_Gradient_Normals_3_Horizontal: 0
- m_end_Grayscale_Lightmaps: 0
- m_end_Harnack_Tracing: 0
- m_end_Harnack_Tracing_Gyroid: 0
- m_end_LTCGI: 0
- m_end_Letter_Grid: 0
+ - m_end_Light_Volumes_Brightness: 0
- m_end_MaskedStencil1PassBackOptions: 0
- m_end_MaskedStencil1PassFrontOptions: 0
- m_end_MaskedStencil2PassBackOptions: 0
@@ -1656,6 +1902,9 @@ Material:
- m_end_Matcap1: 0
- m_end_Matcap1_Mask: 0
- m_end_Matcap1_Quantization: 0
+ - m_end_Matcap2: 0
+ - m_end_Matcap2_Mask: 0
+ - m_end_Matcap2_Quantization: 0
- m_end_Matcaps: 0
- m_end_Material_Type_Cloth: 0
- m_end_Material_Type_Cloth_Subsurface: 0
@@ -1671,6 +1920,7 @@ Material:
- m_end_OutlinesMask: 0
- m_end_Quantize_NoL: 0
- m_end_Quantize_Specular: 0
+ - m_end_Quasi_Shadows: 0
- m_end_Raymarched_Fog: 0
- m_end_Raymarched_Fog_Density_Exponent: 0
- m_end_Raymarched_Fog_Emitter_Texture: 0
@@ -1694,6 +1944,12 @@ Material:
- m_end_Rim_Lighting3_Quantization: 0
- m_end_SSAO: 0
- m_end_SSFD: 0
+ - m_end_Screen_Space_Normals: 0
+ - m_end_Sea_Foam: 0
+ - m_end_Sea_Foam_0: 0
+ - m_end_Sea_Foam_1: 0
+ - m_end_Sea_Foam_2: 0
+ - m_end_Sea_Foam_3: 0
- m_end_Shadow_Casting: 0
- m_end_Shadow_Receiving: 0
- m_end_Shatter_Wave: 0
@@ -1706,8 +1962,17 @@ Material:
- m_end_StencilPassFrontOptions: 0
- m_end_Tessellation: 0
- m_end_Tessellation_Heightmap: 0
+ - m_end_Tessellation_Heightmap_0: 0
+ - m_end_Tessellation_Heightmap_1: 0
+ - m_end_Tessellation_Heightmap_2: 0
+ - m_end_Tessellation_Heightmap_3: 0
+ - m_end_Tessellation_Heightmap_4: 0
+ - m_end_Tessellation_Heightmap_5: 0
+ - m_end_Tessellation_Heightmap_6: 0
+ - m_end_Tessellation_Heightmap_7: 0
- m_end_Tessellation_Heightmap_Direction_Control: 0
- m_end_Tessellation_Range_Factor: 0
+ - m_end_Trochoid: 0
- m_end_UV_Domain_Warping: 0
- m_end_Unigram_Letter_Grid: 0
- m_end_Unlit: 0
@@ -1744,6 +2009,7 @@ Material:
- m_start_Decal0_Normal: 0
- m_start_Decal0_Reflections: 0
- m_start_Decal0_SDF: 0
+ - m_start_Decal0_SSN: 0
- m_start_Decal1: 0
- m_start_Decal1_CMYK_Warping_Planes: 0
- m_start_Decal1_Domain_Warping: 0
@@ -1753,6 +2019,7 @@ Material:
- m_start_Decal1_Normal: 0
- m_start_Decal1_Reflections: 0
- m_start_Decal1_SDF: 0
+ - m_start_Decal1_SSN: 0
- m_start_Decal2: 0
- m_start_Decal2_CMYK_Warping_Planes: 0
- m_start_Decal2_Domain_Warping: 0
@@ -1762,6 +2029,7 @@ Material:
- m_start_Decal2_Normal: 0
- m_start_Decal2_Reflections: 0
- m_start_Decal2_SDF: 0
+ - m_start_Decal2_SSN: 0
- m_start_Decal3: 0
- m_start_Decal3_CMYK_Warping_Planes: 0
- m_start_Decal3_Domain_Warping: 0
@@ -1771,6 +2039,7 @@ Material:
- m_start_Decal3_Normal: 0
- m_start_Decal3_Reflections: 0
- m_start_Decal3_SDF: 0
+ - m_start_Decal3_SSN: 0
- m_start_Decal4: 0
- m_start_Decal4_CMYK_Warping_Planes: 0
- m_start_Decal4_Domain_Warping: 0
@@ -1780,6 +2049,7 @@ Material:
- m_start_Decal4_Normal: 0
- m_start_Decal4_Reflections: 0
- m_start_Decal4_SDF: 0
+ - m_start_Decal4_SSN: 0
- m_start_Decal5: 0
- m_start_Decal5_CMYK_Warping_Planes: 0
- m_start_Decal5_Domain_Warping: 0
@@ -1789,6 +2059,7 @@ Material:
- m_start_Decal5_Normal: 0
- m_start_Decal5_Reflections: 0
- m_start_Decal5_SDF: 0
+ - m_start_Decal5_SSN: 0
- m_start_Decal6: 0
- m_start_Decal6_CMYK_Warping_Planes: 0
- m_start_Decal6_Domain_Warping: 0
@@ -1798,6 +2069,7 @@ Material:
- m_start_Decal6_Normal: 0
- m_start_Decal6_Reflections: 0
- m_start_Decal6_SDF: 0
+ - m_start_Decal6_SSN: 0
- m_start_Decal7: 0
- m_start_Decal7_CMYK_Warping_Planes: 0
- m_start_Decal7_Domain_Warping: 0
@@ -1807,6 +2079,7 @@ Material:
- m_start_Decal7_Normal: 0
- m_start_Decal7_Reflections: 0
- m_start_Decal7_SDF: 0
+ - m_start_Decal7_SSN: 0
- m_start_Decals: 0
- m_start_Depth_Prepass: 0
- m_start_Detail_Maps: 0
@@ -1823,11 +2096,21 @@ Material:
- m_start_Glitter: 0
- m_start_Glitter_Angle_Limit: 0
- m_start_Glitter_Mask: 0
+ - m_start_Gradient_Normals: 0
+ - m_start_Gradient_Normals_0: 0
+ - m_start_Gradient_Normals_0_Horizontal: 0
+ - m_start_Gradient_Normals_1: 0
+ - m_start_Gradient_Normals_1_Horizontal: 0
+ - m_start_Gradient_Normals_2: 0
+ - m_start_Gradient_Normals_2_Horizontal: 0
+ - m_start_Gradient_Normals_3: 0
+ - m_start_Gradient_Normals_3_Horizontal: 0
- m_start_Grayscale_Lightmaps: 0
- m_start_Harnack_Tracing: 0
- m_start_Harnack_Tracing_Gyroid: 0
- m_start_LTCGI: 0
- m_start_Letter_Grid: 0
+ - m_start_Light_Volumes_Brightness: 0
- m_start_MaskedStencil1PassBackOptions: 0
- m_start_MaskedStencil1PassFrontOptions: 0
- m_start_MaskedStencil2PassBackOptions: 0
@@ -1846,6 +2129,9 @@ Material:
- m_start_Matcap1: 0
- m_start_Matcap1_Mask: 0
- m_start_Matcap1_Quantization: 0
+ - m_start_Matcap2: 0
+ - m_start_Matcap2_Mask: 0
+ - m_start_Matcap2_Quantization: 0
- m_start_Matcaps: 0
- m_start_Material_Type_Cloth: 0
- m_start_Material_Type_Cloth_Subsurface: 0
@@ -1861,6 +2147,7 @@ Material:
- m_start_OutlinesMask: 0
- m_start_Quantize_NoL: 0
- m_start_Quantize_Specular: 0
+ - m_start_Quasi_Shadows: 0
- m_start_Raymarched_Fog: 0
- m_start_Raymarched_Fog_Density_Exponent: 0
- m_start_Raymarched_Fog_Emitter_Texture: 0
@@ -1884,6 +2171,12 @@ Material:
- m_start_Rim_Lighting3_Quantization: 0
- m_start_SSAO: 0
- m_start_SSFD: 0
+ - m_start_Screen_Space_Normals: 0
+ - m_start_Sea_Foam: 0
+ - m_start_Sea_Foam_0: 0
+ - m_start_Sea_Foam_1: 0
+ - m_start_Sea_Foam_2: 0
+ - m_start_Sea_Foam_3: 0
- m_start_Shadow_Casting: 0
- m_start_Shadow_Receiving: 0
- m_start_Shatter_Wave: 0
@@ -1896,8 +2189,17 @@ Material:
- m_start_StencilPassFrontOptions: 0
- m_start_Tessellation: 0
- m_start_Tessellation_Heightmap: 0
+ - m_start_Tessellation_Heightmap_0: 0
+ - m_start_Tessellation_Heightmap_1: 0
+ - m_start_Tessellation_Heightmap_2: 0
+ - m_start_Tessellation_Heightmap_3: 0
+ - m_start_Tessellation_Heightmap_4: 0
+ - m_start_Tessellation_Heightmap_5: 0
+ - m_start_Tessellation_Heightmap_6: 0
+ - m_start_Tessellation_Heightmap_7: 0
- m_start_Tessellation_Heightmap_Direction_Control: 0
- m_start_Tessellation_Range_Factor: 0
+ - m_start_Trochoid: 0
- m_start_UV_Domain_Warping: 0
- m_start_Unigram_Letter_Grid: 0
- m_start_Unlit: 0
@@ -1956,6 +2258,7 @@ Material:
- _Letter_Grid_UV_Scale_Offset: {r: 1, g: 1, b: 0, a: 0}
- _MetalReflectionTint: {r: 1, g: 1, b: 1, a: 1}
- _Outline_Color: {r: 0, g: 0, b: 0, a: 1}
+ - _Quasi_Shadows_0_Color: {r: 1, g: 1, b: 1, a: 1}
- _Raymarched_Fog_Color: {r: 0.29999998, g: 0.29999998, b: 0.29999998, a: 1}
- _Raymarched_Fog_Density_Noise_Scale: {r: 1, g: 1, b: 1, a: 0}
- _Raymarched_Fog_Emitter_Texture_World_Normal: {r: 0, g: 0, b: 0, a: 0}
@@ -1972,6 +2275,7 @@ Material:
- _Rim_Lighting2_Color: {r: 1, g: 1, b: 1, a: 1}
- _Rim_Lighting3_Angle_Limit_Target_Vector: {r: 0, g: -1, b: 0, a: 0}
- _Rim_Lighting3_Color: {r: 1, g: 1, b: 1, a: 1}
+ - _Sea_Foam_Color: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Amplitude: {r: 0.4, g: 0.4, b: 0.4, a: 0.4}
- _Shatter_Wave_Chronotensity_Time_Factor: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Chronotensity_Weights0: {r: 0, g: 0, b: 0, a: 0}
diff --git a/Materials/Filament calibration/Mat06.mat b/Materials/Filament calibration/Mat06.mat
index 72d9f88..067a704 100644
--- a/Materials/Filament calibration/Mat06.mat
+++ b/Materials/Filament calibration/Mat06.mat
@@ -13,10 +13,12 @@ Material:
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _CAST_SHADOWS
+ - _CLEARCOAT_GEOMETRIC_NORMALS
- _METALLICS
- _RECEIVE_SHADOWS
+ m_InvalidKeywords:
+ - _LIGHT_VOLUMES_BRIGHTNESS_ENABLED_DYNAMIC_ON
- _SPHERICAL_HARMONICS_L1
- m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
@@ -35,6 +37,10 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Clearcoat_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Cloth_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -267,6 +273,38 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Letter_Grid_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -311,6 +349,14 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Matcap2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Matcap2_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -367,6 +413,22 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_0_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_1_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_2_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_3_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _SmoothnessMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -375,6 +437,42 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_0:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_1:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_3:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_4:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_5:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_6:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_7:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Trochoid_Color_Ramp:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _UV_Domain_Warping_Noise:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -421,6 +519,7 @@ Material:
- _BumpScale: 1
- _Cast_Shadows_Enabled: 1
- _Clearcoat_Enabled: 0
+ - _Clearcoat_Geometric_Normals_Enabled: 1
- _Clearcoat_Roughness: 0.089
- _Clearcoat_Strength: 1
- _Clip: 0.5
@@ -445,6 +544,7 @@ Material:
- _Custom30_ro_Offset: 0
- _Cutoff: 0.5
- _Decal0_Angle: 0
+ - _Decal0_Bias: 0
- _Decal0_CMYK_Warping_Planes_Enabled: 0
- _Decal0_CMYK_Warping_Planes_Scale: 0.1
- _Decal0_CMYK_Warping_Planes_Speed: 1
@@ -461,23 +561,30 @@ Material:
- _Decal0_Emissions_Proximity_Max_Distance: 1
- _Decal0_Emissions_Proximity_Min_Distance: 0
- _Decal0_Enabled: 0
+ - _Decal0_Invert_Blend_Order: 0
- _Decal0_Mask_Enabled: 0
- _Decal0_Metallic: 0
- _Decal0_Normal_Enabled: 0
- _Decal0_Normal_Scale: 1
- _Decal0_Opacity: 1
+ - _Decal0_Reflections_Alpha_Blend: 0
- _Decal0_Reflections_Enabled: 0
- _Decal0_Replace_Alpha_Mode: 0
- _Decal0_Replace_Multiply_Mode: 0
- _Decal0_SDF_Enabled: 0
- _Decal0_SDF_Invert: 0
- _Decal0_SDF_Px_Range: 2
+ - _Decal0_SDF_SSN_Enabled: 0
+ - _Decal0_SDF_SSN_Only: 0
+ - _Decal0_SDF_SSN_Replace: 0
+ - _Decal0_SDF_SSN_Strength: 1
- _Decal0_SDF_Softness: 0.01
- _Decal0_SDF_Threshold: 0.5
- _Decal0_Smoothness: 0.5
- _Decal0_Tiling_Mode: 0
- _Decal0_UV_Channel: 0
- _Decal1_Angle: 0
+ - _Decal1_Bias: 0
- _Decal1_CMYK_Warping_Planes_Enabled: 0
- _Decal1_CMYK_Warping_Planes_Scale: 0.1
- _Decal1_CMYK_Warping_Planes_Speed: 1
@@ -494,23 +601,30 @@ Material:
- _Decal1_Emissions_Proximity_Max_Distance: 1
- _Decal1_Emissions_Proximity_Min_Distance: 0
- _Decal1_Enabled: 0
+ - _Decal1_Invert_Blend_Order: 0
- _Decal1_Mask_Enabled: 0
- _Decal1_Metallic: 0
- _Decal1_Normal_Enabled: 0
- _Decal1_Normal_Scale: 1
- _Decal1_Opacity: 1
+ - _Decal1_Reflections_Alpha_Blend: 0
- _Decal1_Reflections_Enabled: 0
- _Decal1_Replace_Alpha_Mode: 0
- _Decal1_Replace_Multiply_Mode: 0
- _Decal1_SDF_Enabled: 0
- _Decal1_SDF_Invert: 0
- _Decal1_SDF_Px_Range: 2
+ - _Decal1_SDF_SSN_Enabled: 0
+ - _Decal1_SDF_SSN_Only: 0
+ - _Decal1_SDF_SSN_Replace: 0
+ - _Decal1_SDF_SSN_Strength: 1
- _Decal1_SDF_Softness: 0.01
- _Decal1_SDF_Threshold: 0.5
- _Decal1_Smoothness: 0.5
- _Decal1_Tiling_Mode: 0
- _Decal1_UV_Channel: 0
- _Decal2_Angle: 0
+ - _Decal2_Bias: 0
- _Decal2_CMYK_Warping_Planes_Enabled: 0
- _Decal2_CMYK_Warping_Planes_Scale: 0.1
- _Decal2_CMYK_Warping_Planes_Speed: 1
@@ -527,23 +641,30 @@ Material:
- _Decal2_Emissions_Proximity_Max_Distance: 1
- _Decal2_Emissions_Proximity_Min_Distance: 0
- _Decal2_Enabled: 0
+ - _Decal2_Invert_Blend_Order: 0
- _Decal2_Mask_Enabled: 0
- _Decal2_Metallic: 0
- _Decal2_Normal_Enabled: 0
- _Decal2_Normal_Scale: 1
- _Decal2_Opacity: 1
+ - _Decal2_Reflections_Alpha_Blend: 0
- _Decal2_Reflections_Enabled: 0
- _Decal2_Replace_Alpha_Mode: 0
- _Decal2_Replace_Multiply_Mode: 0
- _Decal2_SDF_Enabled: 0
- _Decal2_SDF_Invert: 0
- _Decal2_SDF_Px_Range: 2
+ - _Decal2_SDF_SSN_Enabled: 0
+ - _Decal2_SDF_SSN_Only: 0
+ - _Decal2_SDF_SSN_Replace: 0
+ - _Decal2_SDF_SSN_Strength: 1
- _Decal2_SDF_Softness: 0.01
- _Decal2_SDF_Threshold: 0.5
- _Decal2_Smoothness: 0.5
- _Decal2_Tiling_Mode: 0
- _Decal2_UV_Channel: 0
- _Decal3_Angle: 0
+ - _Decal3_Bias: 0
- _Decal3_CMYK_Warping_Planes_Enabled: 0
- _Decal3_CMYK_Warping_Planes_Scale: 0.1
- _Decal3_CMYK_Warping_Planes_Speed: 1
@@ -560,23 +681,30 @@ Material:
- _Decal3_Emissions_Proximity_Max_Distance: 1
- _Decal3_Emissions_Proximity_Min_Distance: 0
- _Decal3_Enabled: 0
+ - _Decal3_Invert_Blend_Order: 0
- _Decal3_Mask_Enabled: 0
- _Decal3_Metallic: 0
- _Decal3_Normal_Enabled: 0
- _Decal3_Normal_Scale: 1
- _Decal3_Opacity: 1
+ - _Decal3_Reflections_Alpha_Blend: 0
- _Decal3_Reflections_Enabled: 0
- _Decal3_Replace_Alpha_Mode: 0
- _Decal3_Replace_Multiply_Mode: 0
- _Decal3_SDF_Enabled: 0
- _Decal3_SDF_Invert: 0
- _Decal3_SDF_Px_Range: 2
+ - _Decal3_SDF_SSN_Enabled: 0
+ - _Decal3_SDF_SSN_Only: 0
+ - _Decal3_SDF_SSN_Replace: 0
+ - _Decal3_SDF_SSN_Strength: 1
- _Decal3_SDF_Softness: 0.01
- _Decal3_SDF_Threshold: 0.5
- _Decal3_Smoothness: 0.5
- _Decal3_Tiling_Mode: 0
- _Decal3_UV_Channel: 0
- _Decal4_Angle: 0
+ - _Decal4_Bias: 0
- _Decal4_CMYK_Warping_Planes_Enabled: 0
- _Decal4_CMYK_Warping_Planes_Scale: 0.1
- _Decal4_CMYK_Warping_Planes_Speed: 1
@@ -593,23 +721,30 @@ Material:
- _Decal4_Emissions_Proximity_Max_Distance: 1
- _Decal4_Emissions_Proximity_Min_Distance: 0
- _Decal4_Enabled: 0
+ - _Decal4_Invert_Blend_Order: 0
- _Decal4_Mask_Enabled: 0
- _Decal4_Metallic: 0
- _Decal4_Normal_Enabled: 0
- _Decal4_Normal_Scale: 1
- _Decal4_Opacity: 1
+ - _Decal4_Reflections_Alpha_Blend: 0
- _Decal4_Reflections_Enabled: 0
- _Decal4_Replace_Alpha_Mode: 0
- _Decal4_Replace_Multiply_Mode: 0
- _Decal4_SDF_Enabled: 0
- _Decal4_SDF_Invert: 0
- _Decal4_SDF_Px_Range: 2
+ - _Decal4_SDF_SSN_Enabled: 0
+ - _Decal4_SDF_SSN_Only: 0
+ - _Decal4_SDF_SSN_Replace: 0
+ - _Decal4_SDF_SSN_Strength: 1
- _Decal4_SDF_Softness: 0.01
- _Decal4_SDF_Threshold: 0.5
- _Decal4_Smoothness: 0.5
- _Decal4_Tiling_Mode: 0
- _Decal4_UV_Channel: 0
- _Decal5_Angle: 0
+ - _Decal5_Bias: 0
- _Decal5_CMYK_Warping_Planes_Enabled: 0
- _Decal5_CMYK_Warping_Planes_Scale: 0.1
- _Decal5_CMYK_Warping_Planes_Speed: 1
@@ -626,23 +761,30 @@ Material:
- _Decal5_Emissions_Proximity_Max_Distance: 1
- _Decal5_Emissions_Proximity_Min_Distance: 0
- _Decal5_Enabled: 0
+ - _Decal5_Invert_Blend_Order: 0
- _Decal5_Mask_Enabled: 0
- _Decal5_Metallic: 0
- _Decal5_Normal_Enabled: 0
- _Decal5_Normal_Scale: 1
- _Decal5_Opacity: 1
+ - _Decal5_Reflections_Alpha_Blend: 0
- _Decal5_Reflections_Enabled: 0
- _Decal5_Replace_Alpha_Mode: 0
- _Decal5_Replace_Multiply_Mode: 0
- _Decal5_SDF_Enabled: 0
- _Decal5_SDF_Invert: 0
- _Decal5_SDF_Px_Range: 2
+ - _Decal5_SDF_SSN_Enabled: 0
+ - _Decal5_SDF_SSN_Only: 0
+ - _Decal5_SDF_SSN_Replace: 0
+ - _Decal5_SDF_SSN_Strength: 1
- _Decal5_SDF_Softness: 0.01
- _Decal5_SDF_Threshold: 0.5
- _Decal5_Smoothness: 0.5
- _Decal5_Tiling_Mode: 0
- _Decal5_UV_Channel: 0
- _Decal6_Angle: 0
+ - _Decal6_Bias: 0
- _Decal6_CMYK_Warping_Planes_Enabled: 0
- _Decal6_CMYK_Warping_Planes_Scale: 0.1
- _Decal6_CMYK_Warping_Planes_Speed: 1
@@ -659,23 +801,30 @@ Material:
- _Decal6_Emissions_Proximity_Max_Distance: 1
- _Decal6_Emissions_Proximity_Min_Distance: 0
- _Decal6_Enabled: 0
+ - _Decal6_Invert_Blend_Order: 0
- _Decal6_Mask_Enabled: 0
- _Decal6_Metallic: 0
- _Decal6_Normal_Enabled: 0
- _Decal6_Normal_Scale: 1
- _Decal6_Opacity: 1
+ - _Decal6_Reflections_Alpha_Blend: 0
- _Decal6_Reflections_Enabled: 0
- _Decal6_Replace_Alpha_Mode: 0
- _Decal6_Replace_Multiply_Mode: 0
- _Decal6_SDF_Enabled: 0
- _Decal6_SDF_Invert: 0
- _Decal6_SDF_Px_Range: 2
+ - _Decal6_SDF_SSN_Enabled: 0
+ - _Decal6_SDF_SSN_Only: 0
+ - _Decal6_SDF_SSN_Replace: 0
+ - _Decal6_SDF_SSN_Strength: 1
- _Decal6_SDF_Softness: 0.01
- _Decal6_SDF_Threshold: 0.5
- _Decal6_Smoothness: 0.5
- _Decal6_Tiling_Mode: 0
- _Decal6_UV_Channel: 0
- _Decal7_Angle: 0
+ - _Decal7_Bias: 0
- _Decal7_CMYK_Warping_Planes_Enabled: 0
- _Decal7_CMYK_Warping_Planes_Scale: 0.1
- _Decal7_CMYK_Warping_Planes_Speed: 1
@@ -692,17 +841,23 @@ Material:
- _Decal7_Emissions_Proximity_Max_Distance: 1
- _Decal7_Emissions_Proximity_Min_Distance: 0
- _Decal7_Enabled: 0
+ - _Decal7_Invert_Blend_Order: 0
- _Decal7_Mask_Enabled: 0
- _Decal7_Metallic: 0
- _Decal7_Normal_Enabled: 0
- _Decal7_Normal_Scale: 1
- _Decal7_Opacity: 1
+ - _Decal7_Reflections_Alpha_Blend: 0
- _Decal7_Reflections_Enabled: 0
- _Decal7_Replace_Alpha_Mode: 0
- _Decal7_Replace_Multiply_Mode: 0
- _Decal7_SDF_Enabled: 0
- _Decal7_SDF_Invert: 0
- _Decal7_SDF_Px_Range: 2
+ - _Decal7_SDF_SSN_Enabled: 0
+ - _Decal7_SDF_SSN_Only: 0
+ - _Decal7_SDF_SSN_Replace: 0
+ - _Decal7_SDF_SSN_Strength: 1
- _Decal7_SDF_Softness: 0.01
- _Decal7_SDF_Threshold: 0.5
- _Decal7_Smoothness: 0.5
@@ -711,6 +866,7 @@ Material:
- _Depth_Prepass_Enabled: 0
- _DetailNormalMapScale: 1
- _Detail_Maps_Enabled: 0
+ - _Detail_Maps_UV_Channel: 0
- _DstBlend: 0
- _DstBlendAlpha: 10
- _Emission_Enabled: 0
@@ -767,9 +923,19 @@ Material:
- _Glitter_Mask_Enabled: 0
- _Glitter_Size: 1
- _Glitter_Size_Randomization_Range: 0.4
+ - _Glitter_UV_Channel: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
+ - _Gradient_Normals_0_Horizontal_Enabled: 0
+ - _Gradient_Normals_0_Vertical_Enabled: 0
+ - _Gradient_Normals_1_Horizontal_Enabled: 0
+ - _Gradient_Normals_1_Vertical_Enabled: 0
+ - _Gradient_Normals_2_Horizontal_Enabled: 0
+ - _Gradient_Normals_2_Vertical_Enabled: 0
+ - _Gradient_Normals_3_Horizontal_Enabled: 0
+ - _Gradient_Normals_3_Vertical_Enabled: 0
+ - _Gradient_Normals_Enabled: 0
- _Grayscale_Lightmaps_Enabled: 0
- _Harnack_Tracing_Enabled: 0
- _Harnack_Tracing_Gyroid_Enabled: 0
@@ -792,6 +958,9 @@ Material:
- _Letter_Grid_Screen_Px_Range: 10
- _Letter_Grid_Tex_Res_X: 16
- _Letter_Grid_Tex_Res_Y: 8
+ - _Light_Volumes_Brightness: 1
+ - _Light_Volumes_Brightness_Enabled: 0
+ - _Light_Volumes_Brightness_Enabled_Dynamic: 1
- _MaskedStencil1BackCompareFunction: 8
- _MaskedStencil1BackFailOp: 0
- _MaskedStencil1BackPassOp: 0
@@ -872,6 +1041,14 @@ Material:
- _Matcap1_Quantization_Steps: 1
- _Matcap1_Strength: 1
- _Matcap1_Target_Mask: 1
+ - _Matcap2_Enabled: 0
+ - _Matcap2_Invert: 0
+ - _Matcap2_Mask_Enabled: 0
+ - _Matcap2_Mode: 0
+ - _Matcap2_Quantization_Enabled: 0
+ - _Matcap2_Quantization_Steps: 1
+ - _Matcap2_Strength: 1
+ - _Matcap2_Target_Mask: 1
- _Material_Type_Cloth_Enabled: 0
- _Material_Type_Cloth_Subsurface: 0
- _Metallic: 1
@@ -923,6 +1100,9 @@ Material:
- _Quantize_NoL_Steps: 1
- _Quantize_Specular_Enabled: 0
- _Quantize_Specular_Steps: 1
+ - _Quasi_Shadows_0_Threshold: 0.5
+ - _Quasi_Shadows_0_Width: 0.1
+ - _Quasi_Shadows_Enabled: 0
- _Raymarched_Fog_Albedo: 1
- _Raymarched_Fog_Density_Exponent: 1
- _Raymarched_Fog_Density_Exponent_Enabled: 0
@@ -1004,6 +1184,17 @@ Material:
- _SSFD_Threshold: 0.5
- _SampleWorld: 0
- _Saturation: 0
+ - _Screen_Space_Normals_Enabled: 0
+ - _Sea_Foam_0_Enabled: 0
+ - _Sea_Foam_1_Enabled: 0
+ - _Sea_Foam_2_Enabled: 0
+ - _Sea_Foam_3_Enabled: 0
+ - _Sea_Foam_Bias: 0
+ - _Sea_Foam_Enabled: 0
+ - _Sea_Foam_Factor: 1
+ - _Sea_Foam_Lambda: 1
+ - _Sea_Foam_Power: 1
+ - _Sea_Foam_Roughness: 0.85
- _ShaderOptimizerEnabled: 0
- _Shadow_Strength: 0.25
- _Shatter_Wave_Audiolink_Enabled: 0
@@ -1042,16 +1233,53 @@ Material:
- _Stencil_Enabled: 0
- _Tessellation_Enabled: 0
- _Tessellation_Factor: 1
+ - _Tessellation_Falloff_Factor: 1
+ - _Tessellation_Frustum_Culling_Bias: 35
+ - _Tessellation_Heightmap_0_Enabled: 0
+ - _Tessellation_Heightmap_0_Offset: 0
+ - _Tessellation_Heightmap_0_Scale: 1
+ - _Tessellation_Heightmap_1_Enabled: 0
+ - _Tessellation_Heightmap_1_Offset: 0
+ - _Tessellation_Heightmap_1_Scale: 1
+ - _Tessellation_Heightmap_2_Enabled: 0
+ - _Tessellation_Heightmap_2_Offset: 0
+ - _Tessellation_Heightmap_2_Scale: 1
+ - _Tessellation_Heightmap_3_Enabled: 0
+ - _Tessellation_Heightmap_3_Offset: 0
+ - _Tessellation_Heightmap_3_Scale: 1
+ - _Tessellation_Heightmap_4_Enabled: 0
+ - _Tessellation_Heightmap_4_Offset: 0
+ - _Tessellation_Heightmap_4_Scale: 1
+ - _Tessellation_Heightmap_5_Enabled: 0
+ - _Tessellation_Heightmap_5_Offset: 0
+ - _Tessellation_Heightmap_5_Scale: 1
+ - _Tessellation_Heightmap_6_Enabled: 0
+ - _Tessellation_Heightmap_6_Offset: 0
+ - _Tessellation_Heightmap_6_Scale: 1
+ - _Tessellation_Heightmap_7_Enabled: 0
+ - _Tessellation_Heightmap_7_Offset: 0
+ - _Tessellation_Heightmap_7_Scale: 1
- _Tessellation_Heightmap_Direction_Control_Enabled: 0
- _Tessellation_Heightmap_Enabled: 0
- _Tessellation_Heightmap_Offset: 0
- _Tessellation_Heightmap_Scale: 1
+ - _Tessellation_Heightmap_World_Space_Enabled: 0
- _Tessellation_Range_Factor_Distance_Far: 1
- _Tessellation_Range_Factor_Distance_Near: 1
- _Tessellation_Range_Factor_Enabled: 0
- _Tessellation_Range_Factor_Factor_Far: 1
- _Tessellation_Range_Factor_Factor_Near: 1
- _Tessellation_Range_Factor_Help: 0
+ - _Trochoid_Enabled: 0
+ - _Trochoid_R: 1
+ - _Trochoid_X_Scale: 1
+ - _Trochoid_Y_Scale: 1
+ - _Trochoid_Z_Scale: 1
+ - _Trochoid_d: 1
+ - _Trochoid_r: 1
+ - _Trochoid_r_Power: 1
+ - _Trochoid_t_k: 1
+ - _Trochoid_theta_k: 1
- _UVSec: 0
- _UV_Domain_Warping_Enabled: 0
- _UV_Domain_Warping_Spatial_Octaves: 1
@@ -1554,6 +1782,7 @@ Material:
- m_end_Decal0_Normal: 0
- m_end_Decal0_Reflections: 0
- m_end_Decal0_SDF: 0
+ - m_end_Decal0_SSN: 0
- m_end_Decal1: 0
- m_end_Decal1_CMYK_Warping_Planes: 0
- m_end_Decal1_Domain_Warping: 0
@@ -1563,6 +1792,7 @@ Material:
- m_end_Decal1_Normal: 0
- m_end_Decal1_Reflections: 0
- m_end_Decal1_SDF: 0
+ - m_end_Decal1_SSN: 0
- m_end_Decal2: 0
- m_end_Decal2_CMYK_Warping_Planes: 0
- m_end_Decal2_Domain_Warping: 0
@@ -1572,6 +1802,7 @@ Material:
- m_end_Decal2_Normal: 0
- m_end_Decal2_Reflections: 0
- m_end_Decal2_SDF: 0
+ - m_end_Decal2_SSN: 0
- m_end_Decal3: 0
- m_end_Decal3_CMYK_Warping_Planes: 0
- m_end_Decal3_Domain_Warping: 0
@@ -1581,6 +1812,7 @@ Material:
- m_end_Decal3_Normal: 0
- m_end_Decal3_Reflections: 0
- m_end_Decal3_SDF: 0
+ - m_end_Decal3_SSN: 0
- m_end_Decal4: 0
- m_end_Decal4_CMYK_Warping_Planes: 0
- m_end_Decal4_Domain_Warping: 0
@@ -1590,6 +1822,7 @@ Material:
- m_end_Decal4_Normal: 0
- m_end_Decal4_Reflections: 0
- m_end_Decal4_SDF: 0
+ - m_end_Decal4_SSN: 0
- m_end_Decal5: 0
- m_end_Decal5_CMYK_Warping_Planes: 0
- m_end_Decal5_Domain_Warping: 0
@@ -1599,6 +1832,7 @@ Material:
- m_end_Decal5_Normal: 0
- m_end_Decal5_Reflections: 0
- m_end_Decal5_SDF: 0
+ - m_end_Decal5_SSN: 0
- m_end_Decal6: 0
- m_end_Decal6_CMYK_Warping_Planes: 0
- m_end_Decal6_Domain_Warping: 0
@@ -1608,6 +1842,7 @@ Material:
- m_end_Decal6_Normal: 0
- m_end_Decal6_Reflections: 0
- m_end_Decal6_SDF: 0
+ - m_end_Decal6_SSN: 0
- m_end_Decal7: 0
- m_end_Decal7_CMYK_Warping_Planes: 0
- m_end_Decal7_Domain_Warping: 0
@@ -1617,6 +1852,7 @@ Material:
- m_end_Decal7_Normal: 0
- m_end_Decal7_Reflections: 0
- m_end_Decal7_SDF: 0
+ - m_end_Decal7_SSN: 0
- m_end_Decals: 0
- m_end_Depth_Prepass: 0
- m_end_Detail_Maps: 0
@@ -1633,11 +1869,21 @@ Material:
- m_end_Glitter: 0
- m_end_Glitter_Angle_Limit: 0
- m_end_Glitter_Mask: 0
+ - m_end_Gradient_Normals: 0
+ - m_end_Gradient_Normals_0: 0
+ - m_end_Gradient_Normals_0_Horizontal: 0
+ - m_end_Gradient_Normals_1: 0
+ - m_end_Gradient_Normals_1_Horizontal: 0
+ - m_end_Gradient_Normals_2: 0
+ - m_end_Gradient_Normals_2_Horizontal: 0
+ - m_end_Gradient_Normals_3: 0
+ - m_end_Gradient_Normals_3_Horizontal: 0
- m_end_Grayscale_Lightmaps: 0
- m_end_Harnack_Tracing: 0
- m_end_Harnack_Tracing_Gyroid: 0
- m_end_LTCGI: 0
- m_end_Letter_Grid: 0
+ - m_end_Light_Volumes_Brightness: 0
- m_end_MaskedStencil1PassBackOptions: 0
- m_end_MaskedStencil1PassFrontOptions: 0
- m_end_MaskedStencil2PassBackOptions: 0
@@ -1656,6 +1902,9 @@ Material:
- m_end_Matcap1: 0
- m_end_Matcap1_Mask: 0
- m_end_Matcap1_Quantization: 0
+ - m_end_Matcap2: 0
+ - m_end_Matcap2_Mask: 0
+ - m_end_Matcap2_Quantization: 0
- m_end_Matcaps: 0
- m_end_Material_Type_Cloth: 0
- m_end_Material_Type_Cloth_Subsurface: 0
@@ -1671,6 +1920,7 @@ Material:
- m_end_OutlinesMask: 0
- m_end_Quantize_NoL: 0
- m_end_Quantize_Specular: 0
+ - m_end_Quasi_Shadows: 0
- m_end_Raymarched_Fog: 0
- m_end_Raymarched_Fog_Density_Exponent: 0
- m_end_Raymarched_Fog_Emitter_Texture: 0
@@ -1694,6 +1944,12 @@ Material:
- m_end_Rim_Lighting3_Quantization: 0
- m_end_SSAO: 0
- m_end_SSFD: 0
+ - m_end_Screen_Space_Normals: 0
+ - m_end_Sea_Foam: 0
+ - m_end_Sea_Foam_0: 0
+ - m_end_Sea_Foam_1: 0
+ - m_end_Sea_Foam_2: 0
+ - m_end_Sea_Foam_3: 0
- m_end_Shadow_Casting: 0
- m_end_Shadow_Receiving: 0
- m_end_Shatter_Wave: 0
@@ -1706,8 +1962,17 @@ Material:
- m_end_StencilPassFrontOptions: 0
- m_end_Tessellation: 0
- m_end_Tessellation_Heightmap: 0
+ - m_end_Tessellation_Heightmap_0: 0
+ - m_end_Tessellation_Heightmap_1: 0
+ - m_end_Tessellation_Heightmap_2: 0
+ - m_end_Tessellation_Heightmap_3: 0
+ - m_end_Tessellation_Heightmap_4: 0
+ - m_end_Tessellation_Heightmap_5: 0
+ - m_end_Tessellation_Heightmap_6: 0
+ - m_end_Tessellation_Heightmap_7: 0
- m_end_Tessellation_Heightmap_Direction_Control: 0
- m_end_Tessellation_Range_Factor: 0
+ - m_end_Trochoid: 0
- m_end_UV_Domain_Warping: 0
- m_end_Unigram_Letter_Grid: 0
- m_end_Unlit: 0
@@ -1744,6 +2009,7 @@ Material:
- m_start_Decal0_Normal: 0
- m_start_Decal0_Reflections: 0
- m_start_Decal0_SDF: 0
+ - m_start_Decal0_SSN: 0
- m_start_Decal1: 0
- m_start_Decal1_CMYK_Warping_Planes: 0
- m_start_Decal1_Domain_Warping: 0
@@ -1753,6 +2019,7 @@ Material:
- m_start_Decal1_Normal: 0
- m_start_Decal1_Reflections: 0
- m_start_Decal1_SDF: 0
+ - m_start_Decal1_SSN: 0
- m_start_Decal2: 0
- m_start_Decal2_CMYK_Warping_Planes: 0
- m_start_Decal2_Domain_Warping: 0
@@ -1762,6 +2029,7 @@ Material:
- m_start_Decal2_Normal: 0
- m_start_Decal2_Reflections: 0
- m_start_Decal2_SDF: 0
+ - m_start_Decal2_SSN: 0
- m_start_Decal3: 0
- m_start_Decal3_CMYK_Warping_Planes: 0
- m_start_Decal3_Domain_Warping: 0
@@ -1771,6 +2039,7 @@ Material:
- m_start_Decal3_Normal: 0
- m_start_Decal3_Reflections: 0
- m_start_Decal3_SDF: 0
+ - m_start_Decal3_SSN: 0
- m_start_Decal4: 0
- m_start_Decal4_CMYK_Warping_Planes: 0
- m_start_Decal4_Domain_Warping: 0
@@ -1780,6 +2049,7 @@ Material:
- m_start_Decal4_Normal: 0
- m_start_Decal4_Reflections: 0
- m_start_Decal4_SDF: 0
+ - m_start_Decal4_SSN: 0
- m_start_Decal5: 0
- m_start_Decal5_CMYK_Warping_Planes: 0
- m_start_Decal5_Domain_Warping: 0
@@ -1789,6 +2059,7 @@ Material:
- m_start_Decal5_Normal: 0
- m_start_Decal5_Reflections: 0
- m_start_Decal5_SDF: 0
+ - m_start_Decal5_SSN: 0
- m_start_Decal6: 0
- m_start_Decal6_CMYK_Warping_Planes: 0
- m_start_Decal6_Domain_Warping: 0
@@ -1798,6 +2069,7 @@ Material:
- m_start_Decal6_Normal: 0
- m_start_Decal6_Reflections: 0
- m_start_Decal6_SDF: 0
+ - m_start_Decal6_SSN: 0
- m_start_Decal7: 0
- m_start_Decal7_CMYK_Warping_Planes: 0
- m_start_Decal7_Domain_Warping: 0
@@ -1807,6 +2079,7 @@ Material:
- m_start_Decal7_Normal: 0
- m_start_Decal7_Reflections: 0
- m_start_Decal7_SDF: 0
+ - m_start_Decal7_SSN: 0
- m_start_Decals: 0
- m_start_Depth_Prepass: 0
- m_start_Detail_Maps: 0
@@ -1823,11 +2096,21 @@ Material:
- m_start_Glitter: 0
- m_start_Glitter_Angle_Limit: 0
- m_start_Glitter_Mask: 0
+ - m_start_Gradient_Normals: 0
+ - m_start_Gradient_Normals_0: 0
+ - m_start_Gradient_Normals_0_Horizontal: 0
+ - m_start_Gradient_Normals_1: 0
+ - m_start_Gradient_Normals_1_Horizontal: 0
+ - m_start_Gradient_Normals_2: 0
+ - m_start_Gradient_Normals_2_Horizontal: 0
+ - m_start_Gradient_Normals_3: 0
+ - m_start_Gradient_Normals_3_Horizontal: 0
- m_start_Grayscale_Lightmaps: 0
- m_start_Harnack_Tracing: 0
- m_start_Harnack_Tracing_Gyroid: 0
- m_start_LTCGI: 0
- m_start_Letter_Grid: 0
+ - m_start_Light_Volumes_Brightness: 0
- m_start_MaskedStencil1PassBackOptions: 0
- m_start_MaskedStencil1PassFrontOptions: 0
- m_start_MaskedStencil2PassBackOptions: 0
@@ -1846,6 +2129,9 @@ Material:
- m_start_Matcap1: 0
- m_start_Matcap1_Mask: 0
- m_start_Matcap1_Quantization: 0
+ - m_start_Matcap2: 0
+ - m_start_Matcap2_Mask: 0
+ - m_start_Matcap2_Quantization: 0
- m_start_Matcaps: 0
- m_start_Material_Type_Cloth: 0
- m_start_Material_Type_Cloth_Subsurface: 0
@@ -1861,6 +2147,7 @@ Material:
- m_start_OutlinesMask: 0
- m_start_Quantize_NoL: 0
- m_start_Quantize_Specular: 0
+ - m_start_Quasi_Shadows: 0
- m_start_Raymarched_Fog: 0
- m_start_Raymarched_Fog_Density_Exponent: 0
- m_start_Raymarched_Fog_Emitter_Texture: 0
@@ -1884,6 +2171,12 @@ Material:
- m_start_Rim_Lighting3_Quantization: 0
- m_start_SSAO: 0
- m_start_SSFD: 0
+ - m_start_Screen_Space_Normals: 0
+ - m_start_Sea_Foam: 0
+ - m_start_Sea_Foam_0: 0
+ - m_start_Sea_Foam_1: 0
+ - m_start_Sea_Foam_2: 0
+ - m_start_Sea_Foam_3: 0
- m_start_Shadow_Casting: 0
- m_start_Shadow_Receiving: 0
- m_start_Shatter_Wave: 0
@@ -1896,8 +2189,17 @@ Material:
- m_start_StencilPassFrontOptions: 0
- m_start_Tessellation: 0
- m_start_Tessellation_Heightmap: 0
+ - m_start_Tessellation_Heightmap_0: 0
+ - m_start_Tessellation_Heightmap_1: 0
+ - m_start_Tessellation_Heightmap_2: 0
+ - m_start_Tessellation_Heightmap_3: 0
+ - m_start_Tessellation_Heightmap_4: 0
+ - m_start_Tessellation_Heightmap_5: 0
+ - m_start_Tessellation_Heightmap_6: 0
+ - m_start_Tessellation_Heightmap_7: 0
- m_start_Tessellation_Heightmap_Direction_Control: 0
- m_start_Tessellation_Range_Factor: 0
+ - m_start_Trochoid: 0
- m_start_UV_Domain_Warping: 0
- m_start_Unigram_Letter_Grid: 0
- m_start_Unlit: 0
@@ -1956,6 +2258,7 @@ Material:
- _Letter_Grid_UV_Scale_Offset: {r: 1, g: 1, b: 0, a: 0}
- _MetalReflectionTint: {r: 1, g: 1, b: 1, a: 1}
- _Outline_Color: {r: 0, g: 0, b: 0, a: 1}
+ - _Quasi_Shadows_0_Color: {r: 1, g: 1, b: 1, a: 1}
- _Raymarched_Fog_Color: {r: 0.29999998, g: 0.29999998, b: 0.29999998, a: 1}
- _Raymarched_Fog_Density_Noise_Scale: {r: 1, g: 1, b: 1, a: 0}
- _Raymarched_Fog_Emitter_Texture_World_Normal: {r: 0, g: 0, b: 0, a: 0}
@@ -1972,6 +2275,7 @@ Material:
- _Rim_Lighting2_Color: {r: 1, g: 1, b: 1, a: 1}
- _Rim_Lighting3_Angle_Limit_Target_Vector: {r: 0, g: -1, b: 0, a: 0}
- _Rim_Lighting3_Color: {r: 1, g: 1, b: 1, a: 1}
+ - _Sea_Foam_Color: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Amplitude: {r: 0.4, g: 0.4, b: 0.4, a: 0.4}
- _Shatter_Wave_Chronotensity_Time_Factor: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Chronotensity_Weights0: {r: 0, g: 0, b: 0, a: 0}
diff --git a/Materials/Filament calibration/Mat07.mat b/Materials/Filament calibration/Mat07.mat
index 24e4f3a..5bc10f2 100644
--- a/Materials/Filament calibration/Mat07.mat
+++ b/Materials/Filament calibration/Mat07.mat
@@ -13,10 +13,12 @@ Material:
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _CAST_SHADOWS
+ - _CLEARCOAT_GEOMETRIC_NORMALS
- _METALLICS
- _RECEIVE_SHADOWS
+ m_InvalidKeywords:
+ - _LIGHT_VOLUMES_BRIGHTNESS_ENABLED_DYNAMIC_ON
- _SPHERICAL_HARMONICS_L1
- m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
@@ -35,6 +37,10 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Clearcoat_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Cloth_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -267,6 +273,38 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Letter_Grid_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -311,6 +349,14 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Matcap2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Matcap2_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -367,6 +413,22 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_0_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_1_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_2_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_3_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _SmoothnessMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -375,6 +437,42 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_0:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_1:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_3:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_4:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_5:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_6:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_7:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Trochoid_Color_Ramp:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _UV_Domain_Warping_Noise:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -421,6 +519,7 @@ Material:
- _BumpScale: 1.15
- _Cast_Shadows_Enabled: 1
- _Clearcoat_Enabled: 0
+ - _Clearcoat_Geometric_Normals_Enabled: 1
- _Clearcoat_Roughness: 0.089
- _Clearcoat_Strength: 1
- _Clip: 0.5
@@ -445,6 +544,7 @@ Material:
- _Custom30_ro_Offset: 0
- _Cutoff: 0.5
- _Decal0_Angle: 0
+ - _Decal0_Bias: 0
- _Decal0_CMYK_Warping_Planes_Enabled: 0
- _Decal0_CMYK_Warping_Planes_Scale: 0.1
- _Decal0_CMYK_Warping_Planes_Speed: 1
@@ -461,23 +561,30 @@ Material:
- _Decal0_Emissions_Proximity_Max_Distance: 1
- _Decal0_Emissions_Proximity_Min_Distance: 0
- _Decal0_Enabled: 0
+ - _Decal0_Invert_Blend_Order: 0
- _Decal0_Mask_Enabled: 0
- _Decal0_Metallic: 0
- _Decal0_Normal_Enabled: 0
- _Decal0_Normal_Scale: 1
- _Decal0_Opacity: 1
+ - _Decal0_Reflections_Alpha_Blend: 0
- _Decal0_Reflections_Enabled: 0
- _Decal0_Replace_Alpha_Mode: 0
- _Decal0_Replace_Multiply_Mode: 0
- _Decal0_SDF_Enabled: 0
- _Decal0_SDF_Invert: 0
- _Decal0_SDF_Px_Range: 2
+ - _Decal0_SDF_SSN_Enabled: 0
+ - _Decal0_SDF_SSN_Only: 0
+ - _Decal0_SDF_SSN_Replace: 0
+ - _Decal0_SDF_SSN_Strength: 1
- _Decal0_SDF_Softness: 0.01
- _Decal0_SDF_Threshold: 0.5
- _Decal0_Smoothness: 0.5
- _Decal0_Tiling_Mode: 0
- _Decal0_UV_Channel: 0
- _Decal1_Angle: 0
+ - _Decal1_Bias: 0
- _Decal1_CMYK_Warping_Planes_Enabled: 0
- _Decal1_CMYK_Warping_Planes_Scale: 0.1
- _Decal1_CMYK_Warping_Planes_Speed: 1
@@ -494,23 +601,30 @@ Material:
- _Decal1_Emissions_Proximity_Max_Distance: 1
- _Decal1_Emissions_Proximity_Min_Distance: 0
- _Decal1_Enabled: 0
+ - _Decal1_Invert_Blend_Order: 0
- _Decal1_Mask_Enabled: 0
- _Decal1_Metallic: 0
- _Decal1_Normal_Enabled: 0
- _Decal1_Normal_Scale: 1
- _Decal1_Opacity: 1
+ - _Decal1_Reflections_Alpha_Blend: 0
- _Decal1_Reflections_Enabled: 0
- _Decal1_Replace_Alpha_Mode: 0
- _Decal1_Replace_Multiply_Mode: 0
- _Decal1_SDF_Enabled: 0
- _Decal1_SDF_Invert: 0
- _Decal1_SDF_Px_Range: 2
+ - _Decal1_SDF_SSN_Enabled: 0
+ - _Decal1_SDF_SSN_Only: 0
+ - _Decal1_SDF_SSN_Replace: 0
+ - _Decal1_SDF_SSN_Strength: 1
- _Decal1_SDF_Softness: 0.01
- _Decal1_SDF_Threshold: 0.5
- _Decal1_Smoothness: 0.5
- _Decal1_Tiling_Mode: 0
- _Decal1_UV_Channel: 0
- _Decal2_Angle: 0
+ - _Decal2_Bias: 0
- _Decal2_CMYK_Warping_Planes_Enabled: 0
- _Decal2_CMYK_Warping_Planes_Scale: 0.1
- _Decal2_CMYK_Warping_Planes_Speed: 1
@@ -527,23 +641,30 @@ Material:
- _Decal2_Emissions_Proximity_Max_Distance: 1
- _Decal2_Emissions_Proximity_Min_Distance: 0
- _Decal2_Enabled: 0
+ - _Decal2_Invert_Blend_Order: 0
- _Decal2_Mask_Enabled: 0
- _Decal2_Metallic: 0
- _Decal2_Normal_Enabled: 0
- _Decal2_Normal_Scale: 1
- _Decal2_Opacity: 1
+ - _Decal2_Reflections_Alpha_Blend: 0
- _Decal2_Reflections_Enabled: 0
- _Decal2_Replace_Alpha_Mode: 0
- _Decal2_Replace_Multiply_Mode: 0
- _Decal2_SDF_Enabled: 0
- _Decal2_SDF_Invert: 0
- _Decal2_SDF_Px_Range: 2
+ - _Decal2_SDF_SSN_Enabled: 0
+ - _Decal2_SDF_SSN_Only: 0
+ - _Decal2_SDF_SSN_Replace: 0
+ - _Decal2_SDF_SSN_Strength: 1
- _Decal2_SDF_Softness: 0.01
- _Decal2_SDF_Threshold: 0.5
- _Decal2_Smoothness: 0.5
- _Decal2_Tiling_Mode: 0
- _Decal2_UV_Channel: 0
- _Decal3_Angle: 0
+ - _Decal3_Bias: 0
- _Decal3_CMYK_Warping_Planes_Enabled: 0
- _Decal3_CMYK_Warping_Planes_Scale: 0.1
- _Decal3_CMYK_Warping_Planes_Speed: 1
@@ -560,23 +681,30 @@ Material:
- _Decal3_Emissions_Proximity_Max_Distance: 1
- _Decal3_Emissions_Proximity_Min_Distance: 0
- _Decal3_Enabled: 0
+ - _Decal3_Invert_Blend_Order: 0
- _Decal3_Mask_Enabled: 0
- _Decal3_Metallic: 0
- _Decal3_Normal_Enabled: 0
- _Decal3_Normal_Scale: 1
- _Decal3_Opacity: 1
+ - _Decal3_Reflections_Alpha_Blend: 0
- _Decal3_Reflections_Enabled: 0
- _Decal3_Replace_Alpha_Mode: 0
- _Decal3_Replace_Multiply_Mode: 0
- _Decal3_SDF_Enabled: 0
- _Decal3_SDF_Invert: 0
- _Decal3_SDF_Px_Range: 2
+ - _Decal3_SDF_SSN_Enabled: 0
+ - _Decal3_SDF_SSN_Only: 0
+ - _Decal3_SDF_SSN_Replace: 0
+ - _Decal3_SDF_SSN_Strength: 1
- _Decal3_SDF_Softness: 0.01
- _Decal3_SDF_Threshold: 0.5
- _Decal3_Smoothness: 0.5
- _Decal3_Tiling_Mode: 0
- _Decal3_UV_Channel: 0
- _Decal4_Angle: 0
+ - _Decal4_Bias: 0
- _Decal4_CMYK_Warping_Planes_Enabled: 0
- _Decal4_CMYK_Warping_Planes_Scale: 0.1
- _Decal4_CMYK_Warping_Planes_Speed: 1
@@ -593,23 +721,30 @@ Material:
- _Decal4_Emissions_Proximity_Max_Distance: 1
- _Decal4_Emissions_Proximity_Min_Distance: 0
- _Decal4_Enabled: 0
+ - _Decal4_Invert_Blend_Order: 0
- _Decal4_Mask_Enabled: 0
- _Decal4_Metallic: 0
- _Decal4_Normal_Enabled: 0
- _Decal4_Normal_Scale: 1
- _Decal4_Opacity: 1
+ - _Decal4_Reflections_Alpha_Blend: 0
- _Decal4_Reflections_Enabled: 0
- _Decal4_Replace_Alpha_Mode: 0
- _Decal4_Replace_Multiply_Mode: 0
- _Decal4_SDF_Enabled: 0
- _Decal4_SDF_Invert: 0
- _Decal4_SDF_Px_Range: 2
+ - _Decal4_SDF_SSN_Enabled: 0
+ - _Decal4_SDF_SSN_Only: 0
+ - _Decal4_SDF_SSN_Replace: 0
+ - _Decal4_SDF_SSN_Strength: 1
- _Decal4_SDF_Softness: 0.01
- _Decal4_SDF_Threshold: 0.5
- _Decal4_Smoothness: 0.5
- _Decal4_Tiling_Mode: 0
- _Decal4_UV_Channel: 0
- _Decal5_Angle: 0
+ - _Decal5_Bias: 0
- _Decal5_CMYK_Warping_Planes_Enabled: 0
- _Decal5_CMYK_Warping_Planes_Scale: 0.1
- _Decal5_CMYK_Warping_Planes_Speed: 1
@@ -626,23 +761,30 @@ Material:
- _Decal5_Emissions_Proximity_Max_Distance: 1
- _Decal5_Emissions_Proximity_Min_Distance: 0
- _Decal5_Enabled: 0
+ - _Decal5_Invert_Blend_Order: 0
- _Decal5_Mask_Enabled: 0
- _Decal5_Metallic: 0
- _Decal5_Normal_Enabled: 0
- _Decal5_Normal_Scale: 1
- _Decal5_Opacity: 1
+ - _Decal5_Reflections_Alpha_Blend: 0
- _Decal5_Reflections_Enabled: 0
- _Decal5_Replace_Alpha_Mode: 0
- _Decal5_Replace_Multiply_Mode: 0
- _Decal5_SDF_Enabled: 0
- _Decal5_SDF_Invert: 0
- _Decal5_SDF_Px_Range: 2
+ - _Decal5_SDF_SSN_Enabled: 0
+ - _Decal5_SDF_SSN_Only: 0
+ - _Decal5_SDF_SSN_Replace: 0
+ - _Decal5_SDF_SSN_Strength: 1
- _Decal5_SDF_Softness: 0.01
- _Decal5_SDF_Threshold: 0.5
- _Decal5_Smoothness: 0.5
- _Decal5_Tiling_Mode: 0
- _Decal5_UV_Channel: 0
- _Decal6_Angle: 0
+ - _Decal6_Bias: 0
- _Decal6_CMYK_Warping_Planes_Enabled: 0
- _Decal6_CMYK_Warping_Planes_Scale: 0.1
- _Decal6_CMYK_Warping_Planes_Speed: 1
@@ -659,23 +801,30 @@ Material:
- _Decal6_Emissions_Proximity_Max_Distance: 1
- _Decal6_Emissions_Proximity_Min_Distance: 0
- _Decal6_Enabled: 0
+ - _Decal6_Invert_Blend_Order: 0
- _Decal6_Mask_Enabled: 0
- _Decal6_Metallic: 0
- _Decal6_Normal_Enabled: 0
- _Decal6_Normal_Scale: 1
- _Decal6_Opacity: 1
+ - _Decal6_Reflections_Alpha_Blend: 0
- _Decal6_Reflections_Enabled: 0
- _Decal6_Replace_Alpha_Mode: 0
- _Decal6_Replace_Multiply_Mode: 0
- _Decal6_SDF_Enabled: 0
- _Decal6_SDF_Invert: 0
- _Decal6_SDF_Px_Range: 2
+ - _Decal6_SDF_SSN_Enabled: 0
+ - _Decal6_SDF_SSN_Only: 0
+ - _Decal6_SDF_SSN_Replace: 0
+ - _Decal6_SDF_SSN_Strength: 1
- _Decal6_SDF_Softness: 0.01
- _Decal6_SDF_Threshold: 0.5
- _Decal6_Smoothness: 0.5
- _Decal6_Tiling_Mode: 0
- _Decal6_UV_Channel: 0
- _Decal7_Angle: 0
+ - _Decal7_Bias: 0
- _Decal7_CMYK_Warping_Planes_Enabled: 0
- _Decal7_CMYK_Warping_Planes_Scale: 0.1
- _Decal7_CMYK_Warping_Planes_Speed: 1
@@ -692,17 +841,23 @@ Material:
- _Decal7_Emissions_Proximity_Max_Distance: 1
- _Decal7_Emissions_Proximity_Min_Distance: 0
- _Decal7_Enabled: 0
+ - _Decal7_Invert_Blend_Order: 0
- _Decal7_Mask_Enabled: 0
- _Decal7_Metallic: 0
- _Decal7_Normal_Enabled: 0
- _Decal7_Normal_Scale: 1
- _Decal7_Opacity: 1
+ - _Decal7_Reflections_Alpha_Blend: 0
- _Decal7_Reflections_Enabled: 0
- _Decal7_Replace_Alpha_Mode: 0
- _Decal7_Replace_Multiply_Mode: 0
- _Decal7_SDF_Enabled: 0
- _Decal7_SDF_Invert: 0
- _Decal7_SDF_Px_Range: 2
+ - _Decal7_SDF_SSN_Enabled: 0
+ - _Decal7_SDF_SSN_Only: 0
+ - _Decal7_SDF_SSN_Replace: 0
+ - _Decal7_SDF_SSN_Strength: 1
- _Decal7_SDF_Softness: 0.01
- _Decal7_SDF_Threshold: 0.5
- _Decal7_Smoothness: 0.5
@@ -711,6 +866,7 @@ Material:
- _Depth_Prepass_Enabled: 0
- _DetailNormalMapScale: 1
- _Detail_Maps_Enabled: 0
+ - _Detail_Maps_UV_Channel: 0
- _DstBlend: 0
- _DstBlendAlpha: 10
- _Emission_Enabled: 0
@@ -767,9 +923,19 @@ Material:
- _Glitter_Mask_Enabled: 0
- _Glitter_Size: 1
- _Glitter_Size_Randomization_Range: 0.4
+ - _Glitter_UV_Channel: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
+ - _Gradient_Normals_0_Horizontal_Enabled: 0
+ - _Gradient_Normals_0_Vertical_Enabled: 0
+ - _Gradient_Normals_1_Horizontal_Enabled: 0
+ - _Gradient_Normals_1_Vertical_Enabled: 0
+ - _Gradient_Normals_2_Horizontal_Enabled: 0
+ - _Gradient_Normals_2_Vertical_Enabled: 0
+ - _Gradient_Normals_3_Horizontal_Enabled: 0
+ - _Gradient_Normals_3_Vertical_Enabled: 0
+ - _Gradient_Normals_Enabled: 0
- _Grayscale_Lightmaps_Enabled: 0
- _Harnack_Tracing_Enabled: 0
- _Harnack_Tracing_Gyroid_Enabled: 0
@@ -792,6 +958,9 @@ Material:
- _Letter_Grid_Screen_Px_Range: 10
- _Letter_Grid_Tex_Res_X: 16
- _Letter_Grid_Tex_Res_Y: 8
+ - _Light_Volumes_Brightness: 1
+ - _Light_Volumes_Brightness_Enabled: 0
+ - _Light_Volumes_Brightness_Enabled_Dynamic: 1
- _MaskedStencil1BackCompareFunction: 8
- _MaskedStencil1BackFailOp: 0
- _MaskedStencil1BackPassOp: 0
@@ -872,6 +1041,14 @@ Material:
- _Matcap1_Quantization_Steps: 1
- _Matcap1_Strength: 1
- _Matcap1_Target_Mask: 1
+ - _Matcap2_Enabled: 0
+ - _Matcap2_Invert: 0
+ - _Matcap2_Mask_Enabled: 0
+ - _Matcap2_Mode: 0
+ - _Matcap2_Quantization_Enabled: 0
+ - _Matcap2_Quantization_Steps: 1
+ - _Matcap2_Strength: 1
+ - _Matcap2_Target_Mask: 1
- _Material_Type_Cloth_Enabled: 0
- _Material_Type_Cloth_Subsurface: 0
- _Metallic: 1
@@ -923,6 +1100,9 @@ Material:
- _Quantize_NoL_Steps: 1
- _Quantize_Specular_Enabled: 0
- _Quantize_Specular_Steps: 1
+ - _Quasi_Shadows_0_Threshold: 0.5
+ - _Quasi_Shadows_0_Width: 0.1
+ - _Quasi_Shadows_Enabled: 0
- _Raymarched_Fog_Albedo: 1
- _Raymarched_Fog_Density_Exponent: 1
- _Raymarched_Fog_Density_Exponent_Enabled: 0
@@ -1004,6 +1184,17 @@ Material:
- _SSFD_Threshold: 0.5
- _SampleWorld: 0
- _Saturation: 0
+ - _Screen_Space_Normals_Enabled: 0
+ - _Sea_Foam_0_Enabled: 0
+ - _Sea_Foam_1_Enabled: 0
+ - _Sea_Foam_2_Enabled: 0
+ - _Sea_Foam_3_Enabled: 0
+ - _Sea_Foam_Bias: 0
+ - _Sea_Foam_Enabled: 0
+ - _Sea_Foam_Factor: 1
+ - _Sea_Foam_Lambda: 1
+ - _Sea_Foam_Power: 1
+ - _Sea_Foam_Roughness: 0.85
- _ShaderOptimizerEnabled: 0
- _Shadow_Strength: 0.25
- _Shatter_Wave_Audiolink_Enabled: 0
@@ -1042,16 +1233,53 @@ Material:
- _Stencil_Enabled: 0
- _Tessellation_Enabled: 0
- _Tessellation_Factor: 1
+ - _Tessellation_Falloff_Factor: 1
+ - _Tessellation_Frustum_Culling_Bias: 35
+ - _Tessellation_Heightmap_0_Enabled: 0
+ - _Tessellation_Heightmap_0_Offset: 0
+ - _Tessellation_Heightmap_0_Scale: 1
+ - _Tessellation_Heightmap_1_Enabled: 0
+ - _Tessellation_Heightmap_1_Offset: 0
+ - _Tessellation_Heightmap_1_Scale: 1
+ - _Tessellation_Heightmap_2_Enabled: 0
+ - _Tessellation_Heightmap_2_Offset: 0
+ - _Tessellation_Heightmap_2_Scale: 1
+ - _Tessellation_Heightmap_3_Enabled: 0
+ - _Tessellation_Heightmap_3_Offset: 0
+ - _Tessellation_Heightmap_3_Scale: 1
+ - _Tessellation_Heightmap_4_Enabled: 0
+ - _Tessellation_Heightmap_4_Offset: 0
+ - _Tessellation_Heightmap_4_Scale: 1
+ - _Tessellation_Heightmap_5_Enabled: 0
+ - _Tessellation_Heightmap_5_Offset: 0
+ - _Tessellation_Heightmap_5_Scale: 1
+ - _Tessellation_Heightmap_6_Enabled: 0
+ - _Tessellation_Heightmap_6_Offset: 0
+ - _Tessellation_Heightmap_6_Scale: 1
+ - _Tessellation_Heightmap_7_Enabled: 0
+ - _Tessellation_Heightmap_7_Offset: 0
+ - _Tessellation_Heightmap_7_Scale: 1
- _Tessellation_Heightmap_Direction_Control_Enabled: 0
- _Tessellation_Heightmap_Enabled: 0
- _Tessellation_Heightmap_Offset: 0
- _Tessellation_Heightmap_Scale: 1
+ - _Tessellation_Heightmap_World_Space_Enabled: 0
- _Tessellation_Range_Factor_Distance_Far: 1
- _Tessellation_Range_Factor_Distance_Near: 1
- _Tessellation_Range_Factor_Enabled: 0
- _Tessellation_Range_Factor_Factor_Far: 1
- _Tessellation_Range_Factor_Factor_Near: 1
- _Tessellation_Range_Factor_Help: 0
+ - _Trochoid_Enabled: 0
+ - _Trochoid_R: 1
+ - _Trochoid_X_Scale: 1
+ - _Trochoid_Y_Scale: 1
+ - _Trochoid_Z_Scale: 1
+ - _Trochoid_d: 1
+ - _Trochoid_r: 1
+ - _Trochoid_r_Power: 1
+ - _Trochoid_t_k: 1
+ - _Trochoid_theta_k: 1
- _UVSec: 0
- _UV_Domain_Warping_Enabled: 0
- _UV_Domain_Warping_Spatial_Octaves: 1
@@ -1554,6 +1782,7 @@ Material:
- m_end_Decal0_Normal: 0
- m_end_Decal0_Reflections: 0
- m_end_Decal0_SDF: 0
+ - m_end_Decal0_SSN: 0
- m_end_Decal1: 0
- m_end_Decal1_CMYK_Warping_Planes: 0
- m_end_Decal1_Domain_Warping: 0
@@ -1563,6 +1792,7 @@ Material:
- m_end_Decal1_Normal: 0
- m_end_Decal1_Reflections: 0
- m_end_Decal1_SDF: 0
+ - m_end_Decal1_SSN: 0
- m_end_Decal2: 0
- m_end_Decal2_CMYK_Warping_Planes: 0
- m_end_Decal2_Domain_Warping: 0
@@ -1572,6 +1802,7 @@ Material:
- m_end_Decal2_Normal: 0
- m_end_Decal2_Reflections: 0
- m_end_Decal2_SDF: 0
+ - m_end_Decal2_SSN: 0
- m_end_Decal3: 0
- m_end_Decal3_CMYK_Warping_Planes: 0
- m_end_Decal3_Domain_Warping: 0
@@ -1581,6 +1812,7 @@ Material:
- m_end_Decal3_Normal: 0
- m_end_Decal3_Reflections: 0
- m_end_Decal3_SDF: 0
+ - m_end_Decal3_SSN: 0
- m_end_Decal4: 0
- m_end_Decal4_CMYK_Warping_Planes: 0
- m_end_Decal4_Domain_Warping: 0
@@ -1590,6 +1822,7 @@ Material:
- m_end_Decal4_Normal: 0
- m_end_Decal4_Reflections: 0
- m_end_Decal4_SDF: 0
+ - m_end_Decal4_SSN: 0
- m_end_Decal5: 0
- m_end_Decal5_CMYK_Warping_Planes: 0
- m_end_Decal5_Domain_Warping: 0
@@ -1599,6 +1832,7 @@ Material:
- m_end_Decal5_Normal: 0
- m_end_Decal5_Reflections: 0
- m_end_Decal5_SDF: 0
+ - m_end_Decal5_SSN: 0
- m_end_Decal6: 0
- m_end_Decal6_CMYK_Warping_Planes: 0
- m_end_Decal6_Domain_Warping: 0
@@ -1608,6 +1842,7 @@ Material:
- m_end_Decal6_Normal: 0
- m_end_Decal6_Reflections: 0
- m_end_Decal6_SDF: 0
+ - m_end_Decal6_SSN: 0
- m_end_Decal7: 0
- m_end_Decal7_CMYK_Warping_Planes: 0
- m_end_Decal7_Domain_Warping: 0
@@ -1617,6 +1852,7 @@ Material:
- m_end_Decal7_Normal: 0
- m_end_Decal7_Reflections: 0
- m_end_Decal7_SDF: 0
+ - m_end_Decal7_SSN: 0
- m_end_Decals: 0
- m_end_Depth_Prepass: 0
- m_end_Detail_Maps: 0
@@ -1633,11 +1869,21 @@ Material:
- m_end_Glitter: 0
- m_end_Glitter_Angle_Limit: 0
- m_end_Glitter_Mask: 0
+ - m_end_Gradient_Normals: 0
+ - m_end_Gradient_Normals_0: 0
+ - m_end_Gradient_Normals_0_Horizontal: 0
+ - m_end_Gradient_Normals_1: 0
+ - m_end_Gradient_Normals_1_Horizontal: 0
+ - m_end_Gradient_Normals_2: 0
+ - m_end_Gradient_Normals_2_Horizontal: 0
+ - m_end_Gradient_Normals_3: 0
+ - m_end_Gradient_Normals_3_Horizontal: 0
- m_end_Grayscale_Lightmaps: 0
- m_end_Harnack_Tracing: 0
- m_end_Harnack_Tracing_Gyroid: 0
- m_end_LTCGI: 0
- m_end_Letter_Grid: 0
+ - m_end_Light_Volumes_Brightness: 0
- m_end_MaskedStencil1PassBackOptions: 0
- m_end_MaskedStencil1PassFrontOptions: 0
- m_end_MaskedStencil2PassBackOptions: 0
@@ -1656,6 +1902,9 @@ Material:
- m_end_Matcap1: 0
- m_end_Matcap1_Mask: 0
- m_end_Matcap1_Quantization: 0
+ - m_end_Matcap2: 0
+ - m_end_Matcap2_Mask: 0
+ - m_end_Matcap2_Quantization: 0
- m_end_Matcaps: 0
- m_end_Material_Type_Cloth: 0
- m_end_Material_Type_Cloth_Subsurface: 0
@@ -1671,6 +1920,7 @@ Material:
- m_end_OutlinesMask: 0
- m_end_Quantize_NoL: 0
- m_end_Quantize_Specular: 0
+ - m_end_Quasi_Shadows: 0
- m_end_Raymarched_Fog: 0
- m_end_Raymarched_Fog_Density_Exponent: 0
- m_end_Raymarched_Fog_Emitter_Texture: 0
@@ -1694,6 +1944,12 @@ Material:
- m_end_Rim_Lighting3_Quantization: 0
- m_end_SSAO: 0
- m_end_SSFD: 0
+ - m_end_Screen_Space_Normals: 0
+ - m_end_Sea_Foam: 0
+ - m_end_Sea_Foam_0: 0
+ - m_end_Sea_Foam_1: 0
+ - m_end_Sea_Foam_2: 0
+ - m_end_Sea_Foam_3: 0
- m_end_Shadow_Casting: 0
- m_end_Shadow_Receiving: 0
- m_end_Shatter_Wave: 0
@@ -1706,8 +1962,17 @@ Material:
- m_end_StencilPassFrontOptions: 0
- m_end_Tessellation: 0
- m_end_Tessellation_Heightmap: 0
+ - m_end_Tessellation_Heightmap_0: 0
+ - m_end_Tessellation_Heightmap_1: 0
+ - m_end_Tessellation_Heightmap_2: 0
+ - m_end_Tessellation_Heightmap_3: 0
+ - m_end_Tessellation_Heightmap_4: 0
+ - m_end_Tessellation_Heightmap_5: 0
+ - m_end_Tessellation_Heightmap_6: 0
+ - m_end_Tessellation_Heightmap_7: 0
- m_end_Tessellation_Heightmap_Direction_Control: 0
- m_end_Tessellation_Range_Factor: 0
+ - m_end_Trochoid: 0
- m_end_UV_Domain_Warping: 0
- m_end_Unigram_Letter_Grid: 0
- m_end_Unlit: 0
@@ -1744,6 +2009,7 @@ Material:
- m_start_Decal0_Normal: 0
- m_start_Decal0_Reflections: 0
- m_start_Decal0_SDF: 0
+ - m_start_Decal0_SSN: 0
- m_start_Decal1: 0
- m_start_Decal1_CMYK_Warping_Planes: 0
- m_start_Decal1_Domain_Warping: 0
@@ -1753,6 +2019,7 @@ Material:
- m_start_Decal1_Normal: 0
- m_start_Decal1_Reflections: 0
- m_start_Decal1_SDF: 0
+ - m_start_Decal1_SSN: 0
- m_start_Decal2: 0
- m_start_Decal2_CMYK_Warping_Planes: 0
- m_start_Decal2_Domain_Warping: 0
@@ -1762,6 +2029,7 @@ Material:
- m_start_Decal2_Normal: 0
- m_start_Decal2_Reflections: 0
- m_start_Decal2_SDF: 0
+ - m_start_Decal2_SSN: 0
- m_start_Decal3: 0
- m_start_Decal3_CMYK_Warping_Planes: 0
- m_start_Decal3_Domain_Warping: 0
@@ -1771,6 +2039,7 @@ Material:
- m_start_Decal3_Normal: 0
- m_start_Decal3_Reflections: 0
- m_start_Decal3_SDF: 0
+ - m_start_Decal3_SSN: 0
- m_start_Decal4: 0
- m_start_Decal4_CMYK_Warping_Planes: 0
- m_start_Decal4_Domain_Warping: 0
@@ -1780,6 +2049,7 @@ Material:
- m_start_Decal4_Normal: 0
- m_start_Decal4_Reflections: 0
- m_start_Decal4_SDF: 0
+ - m_start_Decal4_SSN: 0
- m_start_Decal5: 0
- m_start_Decal5_CMYK_Warping_Planes: 0
- m_start_Decal5_Domain_Warping: 0
@@ -1789,6 +2059,7 @@ Material:
- m_start_Decal5_Normal: 0
- m_start_Decal5_Reflections: 0
- m_start_Decal5_SDF: 0
+ - m_start_Decal5_SSN: 0
- m_start_Decal6: 0
- m_start_Decal6_CMYK_Warping_Planes: 0
- m_start_Decal6_Domain_Warping: 0
@@ -1798,6 +2069,7 @@ Material:
- m_start_Decal6_Normal: 0
- m_start_Decal6_Reflections: 0
- m_start_Decal6_SDF: 0
+ - m_start_Decal6_SSN: 0
- m_start_Decal7: 0
- m_start_Decal7_CMYK_Warping_Planes: 0
- m_start_Decal7_Domain_Warping: 0
@@ -1807,6 +2079,7 @@ Material:
- m_start_Decal7_Normal: 0
- m_start_Decal7_Reflections: 0
- m_start_Decal7_SDF: 0
+ - m_start_Decal7_SSN: 0
- m_start_Decals: 0
- m_start_Depth_Prepass: 0
- m_start_Detail_Maps: 0
@@ -1823,11 +2096,21 @@ Material:
- m_start_Glitter: 0
- m_start_Glitter_Angle_Limit: 0
- m_start_Glitter_Mask: 0
+ - m_start_Gradient_Normals: 0
+ - m_start_Gradient_Normals_0: 0
+ - m_start_Gradient_Normals_0_Horizontal: 0
+ - m_start_Gradient_Normals_1: 0
+ - m_start_Gradient_Normals_1_Horizontal: 0
+ - m_start_Gradient_Normals_2: 0
+ - m_start_Gradient_Normals_2_Horizontal: 0
+ - m_start_Gradient_Normals_3: 0
+ - m_start_Gradient_Normals_3_Horizontal: 0
- m_start_Grayscale_Lightmaps: 0
- m_start_Harnack_Tracing: 0
- m_start_Harnack_Tracing_Gyroid: 0
- m_start_LTCGI: 0
- m_start_Letter_Grid: 0
+ - m_start_Light_Volumes_Brightness: 0
- m_start_MaskedStencil1PassBackOptions: 0
- m_start_MaskedStencil1PassFrontOptions: 0
- m_start_MaskedStencil2PassBackOptions: 0
@@ -1846,6 +2129,9 @@ Material:
- m_start_Matcap1: 0
- m_start_Matcap1_Mask: 0
- m_start_Matcap1_Quantization: 0
+ - m_start_Matcap2: 0
+ - m_start_Matcap2_Mask: 0
+ - m_start_Matcap2_Quantization: 0
- m_start_Matcaps: 0
- m_start_Material_Type_Cloth: 0
- m_start_Material_Type_Cloth_Subsurface: 0
@@ -1861,6 +2147,7 @@ Material:
- m_start_OutlinesMask: 0
- m_start_Quantize_NoL: 0
- m_start_Quantize_Specular: 0
+ - m_start_Quasi_Shadows: 0
- m_start_Raymarched_Fog: 0
- m_start_Raymarched_Fog_Density_Exponent: 0
- m_start_Raymarched_Fog_Emitter_Texture: 0
@@ -1884,6 +2171,12 @@ Material:
- m_start_Rim_Lighting3_Quantization: 0
- m_start_SSAO: 0
- m_start_SSFD: 0
+ - m_start_Screen_Space_Normals: 0
+ - m_start_Sea_Foam: 0
+ - m_start_Sea_Foam_0: 0
+ - m_start_Sea_Foam_1: 0
+ - m_start_Sea_Foam_2: 0
+ - m_start_Sea_Foam_3: 0
- m_start_Shadow_Casting: 0
- m_start_Shadow_Receiving: 0
- m_start_Shatter_Wave: 0
@@ -1896,8 +2189,17 @@ Material:
- m_start_StencilPassFrontOptions: 0
- m_start_Tessellation: 0
- m_start_Tessellation_Heightmap: 0
+ - m_start_Tessellation_Heightmap_0: 0
+ - m_start_Tessellation_Heightmap_1: 0
+ - m_start_Tessellation_Heightmap_2: 0
+ - m_start_Tessellation_Heightmap_3: 0
+ - m_start_Tessellation_Heightmap_4: 0
+ - m_start_Tessellation_Heightmap_5: 0
+ - m_start_Tessellation_Heightmap_6: 0
+ - m_start_Tessellation_Heightmap_7: 0
- m_start_Tessellation_Heightmap_Direction_Control: 0
- m_start_Tessellation_Range_Factor: 0
+ - m_start_Trochoid: 0
- m_start_UV_Domain_Warping: 0
- m_start_Unigram_Letter_Grid: 0
- m_start_Unlit: 0
@@ -1956,6 +2258,7 @@ Material:
- _Letter_Grid_UV_Scale_Offset: {r: 1, g: 1, b: 0, a: 0}
- _MetalReflectionTint: {r: 1, g: 1, b: 1, a: 1}
- _Outline_Color: {r: 0, g: 0, b: 0, a: 1}
+ - _Quasi_Shadows_0_Color: {r: 1, g: 1, b: 1, a: 1}
- _Raymarched_Fog_Color: {r: 0.29999998, g: 0.29999998, b: 0.29999998, a: 1}
- _Raymarched_Fog_Density_Noise_Scale: {r: 1, g: 1, b: 1, a: 0}
- _Raymarched_Fog_Emitter_Texture_World_Normal: {r: 0, g: 0, b: 0, a: 0}
@@ -1972,6 +2275,7 @@ Material:
- _Rim_Lighting2_Color: {r: 1, g: 1, b: 1, a: 1}
- _Rim_Lighting3_Angle_Limit_Target_Vector: {r: 0, g: -1, b: 0, a: 0}
- _Rim_Lighting3_Color: {r: 1, g: 1, b: 1, a: 1}
+ - _Sea_Foam_Color: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Amplitude: {r: 0.4, g: 0.4, b: 0.4, a: 0.4}
- _Shatter_Wave_Chronotensity_Time_Factor: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Chronotensity_Weights0: {r: 0, g: 0, b: 0, a: 0}
diff --git a/Materials/Filament calibration/Mat08.mat b/Materials/Filament calibration/Mat08.mat
index a9fe442..845ac62 100644
--- a/Materials/Filament calibration/Mat08.mat
+++ b/Materials/Filament calibration/Mat08.mat
@@ -13,11 +13,13 @@ Material:
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _CAST_SHADOWS
+ - _CLEARCOAT_GEOMETRIC_NORMALS
- _METALLICS
- _RECEIVE_SHADOWS
- - _SPHERICAL_HARMONICS_L1
m_InvalidKeywords:
- _BUMP_SHADOWS
+ - _LIGHT_VOLUMES_BRIGHTNESS_ENABLED_DYNAMIC_ON
+ - _SPHERICAL_HARMONICS_L1
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
@@ -36,6 +38,10 @@ Material:
m_Texture: {fileID: 2800000, guid: 2dc42dfedb2bc704d984f7990c6b816a, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Clearcoat_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Cloth_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -268,6 +274,38 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Letter_Grid_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -312,6 +350,14 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Matcap2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Matcap2_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -368,6 +414,22 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_0_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_1_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_2_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_3_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _SmoothnessMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -376,6 +438,42 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_0:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_1:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_3:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_4:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_5:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_6:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_7:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Trochoid_Color_Ramp:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _UV_Domain_Warping_Noise:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -426,6 +524,7 @@ Material:
- _Bump_Shadows_Enabled: 1
- _Cast_Shadows_Enabled: 1
- _Clearcoat_Enabled: 0
+ - _Clearcoat_Geometric_Normals_Enabled: 1
- _Clearcoat_Roughness: 0.089
- _Clearcoat_Strength: 1
- _Clip: 0.5
@@ -450,6 +549,7 @@ Material:
- _Custom30_ro_Offset: 0
- _Cutoff: 0.5
- _Decal0_Angle: 0
+ - _Decal0_Bias: 0
- _Decal0_CMYK_Warping_Planes_Enabled: 0
- _Decal0_CMYK_Warping_Planes_Scale: 0.1
- _Decal0_CMYK_Warping_Planes_Speed: 1
@@ -466,23 +566,30 @@ Material:
- _Decal0_Emissions_Proximity_Max_Distance: 1
- _Decal0_Emissions_Proximity_Min_Distance: 0
- _Decal0_Enabled: 0
+ - _Decal0_Invert_Blend_Order: 0
- _Decal0_Mask_Enabled: 0
- _Decal0_Metallic: 0
- _Decal0_Normal_Enabled: 0
- _Decal0_Normal_Scale: 1
- _Decal0_Opacity: 1
+ - _Decal0_Reflections_Alpha_Blend: 0
- _Decal0_Reflections_Enabled: 0
- _Decal0_Replace_Alpha_Mode: 0
- _Decal0_Replace_Multiply_Mode: 0
- _Decal0_SDF_Enabled: 0
- _Decal0_SDF_Invert: 0
- _Decal0_SDF_Px_Range: 2
+ - _Decal0_SDF_SSN_Enabled: 0
+ - _Decal0_SDF_SSN_Only: 0
+ - _Decal0_SDF_SSN_Replace: 0
+ - _Decal0_SDF_SSN_Strength: 1
- _Decal0_SDF_Softness: 0.01
- _Decal0_SDF_Threshold: 0.5
- _Decal0_Smoothness: 0.5
- _Decal0_Tiling_Mode: 0
- _Decal0_UV_Channel: 0
- _Decal1_Angle: 0
+ - _Decal1_Bias: 0
- _Decal1_CMYK_Warping_Planes_Enabled: 0
- _Decal1_CMYK_Warping_Planes_Scale: 0.1
- _Decal1_CMYK_Warping_Planes_Speed: 1
@@ -499,23 +606,30 @@ Material:
- _Decal1_Emissions_Proximity_Max_Distance: 1
- _Decal1_Emissions_Proximity_Min_Distance: 0
- _Decal1_Enabled: 0
+ - _Decal1_Invert_Blend_Order: 0
- _Decal1_Mask_Enabled: 0
- _Decal1_Metallic: 0
- _Decal1_Normal_Enabled: 0
- _Decal1_Normal_Scale: 1
- _Decal1_Opacity: 1
+ - _Decal1_Reflections_Alpha_Blend: 0
- _Decal1_Reflections_Enabled: 0
- _Decal1_Replace_Alpha_Mode: 0
- _Decal1_Replace_Multiply_Mode: 0
- _Decal1_SDF_Enabled: 0
- _Decal1_SDF_Invert: 0
- _Decal1_SDF_Px_Range: 2
+ - _Decal1_SDF_SSN_Enabled: 0
+ - _Decal1_SDF_SSN_Only: 0
+ - _Decal1_SDF_SSN_Replace: 0
+ - _Decal1_SDF_SSN_Strength: 1
- _Decal1_SDF_Softness: 0.01
- _Decal1_SDF_Threshold: 0.5
- _Decal1_Smoothness: 0.5
- _Decal1_Tiling_Mode: 0
- _Decal1_UV_Channel: 0
- _Decal2_Angle: 0
+ - _Decal2_Bias: 0
- _Decal2_CMYK_Warping_Planes_Enabled: 0
- _Decal2_CMYK_Warping_Planes_Scale: 0.1
- _Decal2_CMYK_Warping_Planes_Speed: 1
@@ -532,23 +646,30 @@ Material:
- _Decal2_Emissions_Proximity_Max_Distance: 1
- _Decal2_Emissions_Proximity_Min_Distance: 0
- _Decal2_Enabled: 0
+ - _Decal2_Invert_Blend_Order: 0
- _Decal2_Mask_Enabled: 0
- _Decal2_Metallic: 0
- _Decal2_Normal_Enabled: 0
- _Decal2_Normal_Scale: 1
- _Decal2_Opacity: 1
+ - _Decal2_Reflections_Alpha_Blend: 0
- _Decal2_Reflections_Enabled: 0
- _Decal2_Replace_Alpha_Mode: 0
- _Decal2_Replace_Multiply_Mode: 0
- _Decal2_SDF_Enabled: 0
- _Decal2_SDF_Invert: 0
- _Decal2_SDF_Px_Range: 2
+ - _Decal2_SDF_SSN_Enabled: 0
+ - _Decal2_SDF_SSN_Only: 0
+ - _Decal2_SDF_SSN_Replace: 0
+ - _Decal2_SDF_SSN_Strength: 1
- _Decal2_SDF_Softness: 0.01
- _Decal2_SDF_Threshold: 0.5
- _Decal2_Smoothness: 0.5
- _Decal2_Tiling_Mode: 0
- _Decal2_UV_Channel: 0
- _Decal3_Angle: 0
+ - _Decal3_Bias: 0
- _Decal3_CMYK_Warping_Planes_Enabled: 0
- _Decal3_CMYK_Warping_Planes_Scale: 0.1
- _Decal3_CMYK_Warping_Planes_Speed: 1
@@ -565,23 +686,30 @@ Material:
- _Decal3_Emissions_Proximity_Max_Distance: 1
- _Decal3_Emissions_Proximity_Min_Distance: 0
- _Decal3_Enabled: 0
+ - _Decal3_Invert_Blend_Order: 0
- _Decal3_Mask_Enabled: 0
- _Decal3_Metallic: 0
- _Decal3_Normal_Enabled: 0
- _Decal3_Normal_Scale: 1
- _Decal3_Opacity: 1
+ - _Decal3_Reflections_Alpha_Blend: 0
- _Decal3_Reflections_Enabled: 0
- _Decal3_Replace_Alpha_Mode: 0
- _Decal3_Replace_Multiply_Mode: 0
- _Decal3_SDF_Enabled: 0
- _Decal3_SDF_Invert: 0
- _Decal3_SDF_Px_Range: 2
+ - _Decal3_SDF_SSN_Enabled: 0
+ - _Decal3_SDF_SSN_Only: 0
+ - _Decal3_SDF_SSN_Replace: 0
+ - _Decal3_SDF_SSN_Strength: 1
- _Decal3_SDF_Softness: 0.01
- _Decal3_SDF_Threshold: 0.5
- _Decal3_Smoothness: 0.5
- _Decal3_Tiling_Mode: 0
- _Decal3_UV_Channel: 0
- _Decal4_Angle: 0
+ - _Decal4_Bias: 0
- _Decal4_CMYK_Warping_Planes_Enabled: 0
- _Decal4_CMYK_Warping_Planes_Scale: 0.1
- _Decal4_CMYK_Warping_Planes_Speed: 1
@@ -598,23 +726,30 @@ Material:
- _Decal4_Emissions_Proximity_Max_Distance: 1
- _Decal4_Emissions_Proximity_Min_Distance: 0
- _Decal4_Enabled: 0
+ - _Decal4_Invert_Blend_Order: 0
- _Decal4_Mask_Enabled: 0
- _Decal4_Metallic: 0
- _Decal4_Normal_Enabled: 0
- _Decal4_Normal_Scale: 1
- _Decal4_Opacity: 1
+ - _Decal4_Reflections_Alpha_Blend: 0
- _Decal4_Reflections_Enabled: 0
- _Decal4_Replace_Alpha_Mode: 0
- _Decal4_Replace_Multiply_Mode: 0
- _Decal4_SDF_Enabled: 0
- _Decal4_SDF_Invert: 0
- _Decal4_SDF_Px_Range: 2
+ - _Decal4_SDF_SSN_Enabled: 0
+ - _Decal4_SDF_SSN_Only: 0
+ - _Decal4_SDF_SSN_Replace: 0
+ - _Decal4_SDF_SSN_Strength: 1
- _Decal4_SDF_Softness: 0.01
- _Decal4_SDF_Threshold: 0.5
- _Decal4_Smoothness: 0.5
- _Decal4_Tiling_Mode: 0
- _Decal4_UV_Channel: 0
- _Decal5_Angle: 0
+ - _Decal5_Bias: 0
- _Decal5_CMYK_Warping_Planes_Enabled: 0
- _Decal5_CMYK_Warping_Planes_Scale: 0.1
- _Decal5_CMYK_Warping_Planes_Speed: 1
@@ -631,23 +766,30 @@ Material:
- _Decal5_Emissions_Proximity_Max_Distance: 1
- _Decal5_Emissions_Proximity_Min_Distance: 0
- _Decal5_Enabled: 0
+ - _Decal5_Invert_Blend_Order: 0
- _Decal5_Mask_Enabled: 0
- _Decal5_Metallic: 0
- _Decal5_Normal_Enabled: 0
- _Decal5_Normal_Scale: 1
- _Decal5_Opacity: 1
+ - _Decal5_Reflections_Alpha_Blend: 0
- _Decal5_Reflections_Enabled: 0
- _Decal5_Replace_Alpha_Mode: 0
- _Decal5_Replace_Multiply_Mode: 0
- _Decal5_SDF_Enabled: 0
- _Decal5_SDF_Invert: 0
- _Decal5_SDF_Px_Range: 2
+ - _Decal5_SDF_SSN_Enabled: 0
+ - _Decal5_SDF_SSN_Only: 0
+ - _Decal5_SDF_SSN_Replace: 0
+ - _Decal5_SDF_SSN_Strength: 1
- _Decal5_SDF_Softness: 0.01
- _Decal5_SDF_Threshold: 0.5
- _Decal5_Smoothness: 0.5
- _Decal5_Tiling_Mode: 0
- _Decal5_UV_Channel: 0
- _Decal6_Angle: 0
+ - _Decal6_Bias: 0
- _Decal6_CMYK_Warping_Planes_Enabled: 0
- _Decal6_CMYK_Warping_Planes_Scale: 0.1
- _Decal6_CMYK_Warping_Planes_Speed: 1
@@ -664,23 +806,30 @@ Material:
- _Decal6_Emissions_Proximity_Max_Distance: 1
- _Decal6_Emissions_Proximity_Min_Distance: 0
- _Decal6_Enabled: 0
+ - _Decal6_Invert_Blend_Order: 0
- _Decal6_Mask_Enabled: 0
- _Decal6_Metallic: 0
- _Decal6_Normal_Enabled: 0
- _Decal6_Normal_Scale: 1
- _Decal6_Opacity: 1
+ - _Decal6_Reflections_Alpha_Blend: 0
- _Decal6_Reflections_Enabled: 0
- _Decal6_Replace_Alpha_Mode: 0
- _Decal6_Replace_Multiply_Mode: 0
- _Decal6_SDF_Enabled: 0
- _Decal6_SDF_Invert: 0
- _Decal6_SDF_Px_Range: 2
+ - _Decal6_SDF_SSN_Enabled: 0
+ - _Decal6_SDF_SSN_Only: 0
+ - _Decal6_SDF_SSN_Replace: 0
+ - _Decal6_SDF_SSN_Strength: 1
- _Decal6_SDF_Softness: 0.01
- _Decal6_SDF_Threshold: 0.5
- _Decal6_Smoothness: 0.5
- _Decal6_Tiling_Mode: 0
- _Decal6_UV_Channel: 0
- _Decal7_Angle: 0
+ - _Decal7_Bias: 0
- _Decal7_CMYK_Warping_Planes_Enabled: 0
- _Decal7_CMYK_Warping_Planes_Scale: 0.1
- _Decal7_CMYK_Warping_Planes_Speed: 1
@@ -697,17 +846,23 @@ Material:
- _Decal7_Emissions_Proximity_Max_Distance: 1
- _Decal7_Emissions_Proximity_Min_Distance: 0
- _Decal7_Enabled: 0
+ - _Decal7_Invert_Blend_Order: 0
- _Decal7_Mask_Enabled: 0
- _Decal7_Metallic: 0
- _Decal7_Normal_Enabled: 0
- _Decal7_Normal_Scale: 1
- _Decal7_Opacity: 1
+ - _Decal7_Reflections_Alpha_Blend: 0
- _Decal7_Reflections_Enabled: 0
- _Decal7_Replace_Alpha_Mode: 0
- _Decal7_Replace_Multiply_Mode: 0
- _Decal7_SDF_Enabled: 0
- _Decal7_SDF_Invert: 0
- _Decal7_SDF_Px_Range: 2
+ - _Decal7_SDF_SSN_Enabled: 0
+ - _Decal7_SDF_SSN_Only: 0
+ - _Decal7_SDF_SSN_Replace: 0
+ - _Decal7_SDF_SSN_Strength: 1
- _Decal7_SDF_Softness: 0.01
- _Decal7_SDF_Threshold: 0.5
- _Decal7_Smoothness: 0.5
@@ -716,6 +871,7 @@ Material:
- _Depth_Prepass_Enabled: 0
- _DetailNormalMapScale: 1
- _Detail_Maps_Enabled: 0
+ - _Detail_Maps_UV_Channel: 0
- _DstBlend: 0
- _DstBlendAlpha: 10
- _Emission_Enabled: 0
@@ -772,9 +928,19 @@ Material:
- _Glitter_Mask_Enabled: 0
- _Glitter_Size: 1
- _Glitter_Size_Randomization_Range: 0.4
+ - _Glitter_UV_Channel: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
+ - _Gradient_Normals_0_Horizontal_Enabled: 0
+ - _Gradient_Normals_0_Vertical_Enabled: 0
+ - _Gradient_Normals_1_Horizontal_Enabled: 0
+ - _Gradient_Normals_1_Vertical_Enabled: 0
+ - _Gradient_Normals_2_Horizontal_Enabled: 0
+ - _Gradient_Normals_2_Vertical_Enabled: 0
+ - _Gradient_Normals_3_Horizontal_Enabled: 0
+ - _Gradient_Normals_3_Vertical_Enabled: 0
+ - _Gradient_Normals_Enabled: 0
- _Grayscale_Lightmaps_Enabled: 0
- _Harnack_Tracing_Enabled: 0
- _Harnack_Tracing_Gyroid_Enabled: 0
@@ -797,6 +963,9 @@ Material:
- _Letter_Grid_Screen_Px_Range: 10
- _Letter_Grid_Tex_Res_X: 16
- _Letter_Grid_Tex_Res_Y: 8
+ - _Light_Volumes_Brightness: 1
+ - _Light_Volumes_Brightness_Enabled: 0
+ - _Light_Volumes_Brightness_Enabled_Dynamic: 1
- _MaskedStencil1BackCompareFunction: 8
- _MaskedStencil1BackFailOp: 0
- _MaskedStencil1BackPassOp: 0
@@ -877,6 +1046,14 @@ Material:
- _Matcap1_Quantization_Steps: 1
- _Matcap1_Strength: 1
- _Matcap1_Target_Mask: 1
+ - _Matcap2_Enabled: 0
+ - _Matcap2_Invert: 0
+ - _Matcap2_Mask_Enabled: 0
+ - _Matcap2_Mode: 0
+ - _Matcap2_Quantization_Enabled: 0
+ - _Matcap2_Quantization_Steps: 1
+ - _Matcap2_Strength: 1
+ - _Matcap2_Target_Mask: 1
- _Material_Type_Cloth_Enabled: 0
- _Material_Type_Cloth_Subsurface: 0
- _Metallic: 0
@@ -928,6 +1105,9 @@ Material:
- _Quantize_NoL_Steps: 1
- _Quantize_Specular_Enabled: 0
- _Quantize_Specular_Steps: 1
+ - _Quasi_Shadows_0_Threshold: 0.5
+ - _Quasi_Shadows_0_Width: 0.1
+ - _Quasi_Shadows_Enabled: 0
- _Raymarched_Fog_Albedo: 1
- _Raymarched_Fog_Density_Exponent: 1
- _Raymarched_Fog_Density_Exponent_Enabled: 0
@@ -1009,6 +1189,17 @@ Material:
- _SSFD_Threshold: 0.5
- _SampleWorld: 0
- _Saturation: 0
+ - _Screen_Space_Normals_Enabled: 0
+ - _Sea_Foam_0_Enabled: 0
+ - _Sea_Foam_1_Enabled: 0
+ - _Sea_Foam_2_Enabled: 0
+ - _Sea_Foam_3_Enabled: 0
+ - _Sea_Foam_Bias: 0
+ - _Sea_Foam_Enabled: 0
+ - _Sea_Foam_Factor: 1
+ - _Sea_Foam_Lambda: 1
+ - _Sea_Foam_Power: 1
+ - _Sea_Foam_Roughness: 0.85
- _ShaderOptimizerEnabled: 0
- _Shadow_Strength: 0.25
- _Shatter_Wave_Audiolink_Enabled: 0
@@ -1047,16 +1238,53 @@ Material:
- _Stencil_Enabled: 0
- _Tessellation_Enabled: 0
- _Tessellation_Factor: 1
+ - _Tessellation_Falloff_Factor: 1
+ - _Tessellation_Frustum_Culling_Bias: 35
+ - _Tessellation_Heightmap_0_Enabled: 0
+ - _Tessellation_Heightmap_0_Offset: 0
+ - _Tessellation_Heightmap_0_Scale: 1
+ - _Tessellation_Heightmap_1_Enabled: 0
+ - _Tessellation_Heightmap_1_Offset: 0
+ - _Tessellation_Heightmap_1_Scale: 1
+ - _Tessellation_Heightmap_2_Enabled: 0
+ - _Tessellation_Heightmap_2_Offset: 0
+ - _Tessellation_Heightmap_2_Scale: 1
+ - _Tessellation_Heightmap_3_Enabled: 0
+ - _Tessellation_Heightmap_3_Offset: 0
+ - _Tessellation_Heightmap_3_Scale: 1
+ - _Tessellation_Heightmap_4_Enabled: 0
+ - _Tessellation_Heightmap_4_Offset: 0
+ - _Tessellation_Heightmap_4_Scale: 1
+ - _Tessellation_Heightmap_5_Enabled: 0
+ - _Tessellation_Heightmap_5_Offset: 0
+ - _Tessellation_Heightmap_5_Scale: 1
+ - _Tessellation_Heightmap_6_Enabled: 0
+ - _Tessellation_Heightmap_6_Offset: 0
+ - _Tessellation_Heightmap_6_Scale: 1
+ - _Tessellation_Heightmap_7_Enabled: 0
+ - _Tessellation_Heightmap_7_Offset: 0
+ - _Tessellation_Heightmap_7_Scale: 1
- _Tessellation_Heightmap_Direction_Control_Enabled: 0
- _Tessellation_Heightmap_Enabled: 0
- _Tessellation_Heightmap_Offset: 0
- _Tessellation_Heightmap_Scale: 1
+ - _Tessellation_Heightmap_World_Space_Enabled: 0
- _Tessellation_Range_Factor_Distance_Far: 1
- _Tessellation_Range_Factor_Distance_Near: 1
- _Tessellation_Range_Factor_Enabled: 0
- _Tessellation_Range_Factor_Factor_Far: 1
- _Tessellation_Range_Factor_Factor_Near: 1
- _Tessellation_Range_Factor_Help: 0
+ - _Trochoid_Enabled: 0
+ - _Trochoid_R: 1
+ - _Trochoid_X_Scale: 1
+ - _Trochoid_Y_Scale: 1
+ - _Trochoid_Z_Scale: 1
+ - _Trochoid_d: 1
+ - _Trochoid_r: 1
+ - _Trochoid_r_Power: 1
+ - _Trochoid_t_k: 1
+ - _Trochoid_theta_k: 1
- _UVSec: 0
- _UV_Domain_Warping_Enabled: 0
- _UV_Domain_Warping_Spatial_Octaves: 1
@@ -1558,6 +1786,7 @@ Material:
- m_end_Decal0_Normal: 0
- m_end_Decal0_Reflections: 0
- m_end_Decal0_SDF: 0
+ - m_end_Decal0_SSN: 0
- m_end_Decal1: 0
- m_end_Decal1_CMYK_Warping_Planes: 0
- m_end_Decal1_Domain_Warping: 0
@@ -1567,6 +1796,7 @@ Material:
- m_end_Decal1_Normal: 0
- m_end_Decal1_Reflections: 0
- m_end_Decal1_SDF: 0
+ - m_end_Decal1_SSN: 0
- m_end_Decal2: 0
- m_end_Decal2_CMYK_Warping_Planes: 0
- m_end_Decal2_Domain_Warping: 0
@@ -1576,6 +1806,7 @@ Material:
- m_end_Decal2_Normal: 0
- m_end_Decal2_Reflections: 0
- m_end_Decal2_SDF: 0
+ - m_end_Decal2_SSN: 0
- m_end_Decal3: 0
- m_end_Decal3_CMYK_Warping_Planes: 0
- m_end_Decal3_Domain_Warping: 0
@@ -1585,6 +1816,7 @@ Material:
- m_end_Decal3_Normal: 0
- m_end_Decal3_Reflections: 0
- m_end_Decal3_SDF: 0
+ - m_end_Decal3_SSN: 0
- m_end_Decal4: 0
- m_end_Decal4_CMYK_Warping_Planes: 0
- m_end_Decal4_Domain_Warping: 0
@@ -1594,6 +1826,7 @@ Material:
- m_end_Decal4_Normal: 0
- m_end_Decal4_Reflections: 0
- m_end_Decal4_SDF: 0
+ - m_end_Decal4_SSN: 0
- m_end_Decal5: 0
- m_end_Decal5_CMYK_Warping_Planes: 0
- m_end_Decal5_Domain_Warping: 0
@@ -1603,6 +1836,7 @@ Material:
- m_end_Decal5_Normal: 0
- m_end_Decal5_Reflections: 0
- m_end_Decal5_SDF: 0
+ - m_end_Decal5_SSN: 0
- m_end_Decal6: 0
- m_end_Decal6_CMYK_Warping_Planes: 0
- m_end_Decal6_Domain_Warping: 0
@@ -1612,6 +1846,7 @@ Material:
- m_end_Decal6_Normal: 0
- m_end_Decal6_Reflections: 0
- m_end_Decal6_SDF: 0
+ - m_end_Decal6_SSN: 0
- m_end_Decal7: 0
- m_end_Decal7_CMYK_Warping_Planes: 0
- m_end_Decal7_Domain_Warping: 0
@@ -1621,6 +1856,7 @@ Material:
- m_end_Decal7_Normal: 0
- m_end_Decal7_Reflections: 0
- m_end_Decal7_SDF: 0
+ - m_end_Decal7_SSN: 0
- m_end_Decals: 0
- m_end_Depth_Prepass: 0
- m_end_Detail_Maps: 0
@@ -1637,11 +1873,21 @@ Material:
- m_end_Glitter: 0
- m_end_Glitter_Angle_Limit: 0
- m_end_Glitter_Mask: 0
+ - m_end_Gradient_Normals: 0
+ - m_end_Gradient_Normals_0: 0
+ - m_end_Gradient_Normals_0_Horizontal: 0
+ - m_end_Gradient_Normals_1: 0
+ - m_end_Gradient_Normals_1_Horizontal: 0
+ - m_end_Gradient_Normals_2: 0
+ - m_end_Gradient_Normals_2_Horizontal: 0
+ - m_end_Gradient_Normals_3: 0
+ - m_end_Gradient_Normals_3_Horizontal: 0
- m_end_Grayscale_Lightmaps: 0
- m_end_Harnack_Tracing: 0
- m_end_Harnack_Tracing_Gyroid: 0
- m_end_LTCGI: 0
- m_end_Letter_Grid: 0
+ - m_end_Light_Volumes_Brightness: 0
- m_end_MaskedStencil1PassBackOptions: 0
- m_end_MaskedStencil1PassFrontOptions: 0
- m_end_MaskedStencil2PassBackOptions: 0
@@ -1660,6 +1906,9 @@ Material:
- m_end_Matcap1: 0
- m_end_Matcap1_Mask: 0
- m_end_Matcap1_Quantization: 0
+ - m_end_Matcap2: 0
+ - m_end_Matcap2_Mask: 0
+ - m_end_Matcap2_Quantization: 0
- m_end_Matcaps: 0
- m_end_Material_Type_Cloth: 0
- m_end_Material_Type_Cloth_Subsurface: 0
@@ -1675,6 +1924,7 @@ Material:
- m_end_OutlinesMask: 0
- m_end_Quantize_NoL: 0
- m_end_Quantize_Specular: 0
+ - m_end_Quasi_Shadows: 0
- m_end_Raymarched_Fog: 0
- m_end_Raymarched_Fog_Density_Exponent: 0
- m_end_Raymarched_Fog_Emitter_Texture: 0
@@ -1698,6 +1948,12 @@ Material:
- m_end_Rim_Lighting3_Quantization: 0
- m_end_SSAO: 0
- m_end_SSFD: 0
+ - m_end_Screen_Space_Normals: 0
+ - m_end_Sea_Foam: 0
+ - m_end_Sea_Foam_0: 0
+ - m_end_Sea_Foam_1: 0
+ - m_end_Sea_Foam_2: 0
+ - m_end_Sea_Foam_3: 0
- m_end_Shadow_Casting: 0
- m_end_Shadow_Receiving: 0
- m_end_Shatter_Wave: 0
@@ -1710,8 +1966,17 @@ Material:
- m_end_StencilPassFrontOptions: 0
- m_end_Tessellation: 0
- m_end_Tessellation_Heightmap: 0
+ - m_end_Tessellation_Heightmap_0: 0
+ - m_end_Tessellation_Heightmap_1: 0
+ - m_end_Tessellation_Heightmap_2: 0
+ - m_end_Tessellation_Heightmap_3: 0
+ - m_end_Tessellation_Heightmap_4: 0
+ - m_end_Tessellation_Heightmap_5: 0
+ - m_end_Tessellation_Heightmap_6: 0
+ - m_end_Tessellation_Heightmap_7: 0
- m_end_Tessellation_Heightmap_Direction_Control: 0
- m_end_Tessellation_Range_Factor: 0
+ - m_end_Trochoid: 0
- m_end_UV_Domain_Warping: 0
- m_end_Unigram_Letter_Grid: 0
- m_end_Unlit: 0
@@ -1749,6 +2014,7 @@ Material:
- m_start_Decal0_Normal: 0
- m_start_Decal0_Reflections: 0
- m_start_Decal0_SDF: 0
+ - m_start_Decal0_SSN: 0
- m_start_Decal1: 0
- m_start_Decal1_CMYK_Warping_Planes: 0
- m_start_Decal1_Domain_Warping: 0
@@ -1758,6 +2024,7 @@ Material:
- m_start_Decal1_Normal: 0
- m_start_Decal1_Reflections: 0
- m_start_Decal1_SDF: 0
+ - m_start_Decal1_SSN: 0
- m_start_Decal2: 0
- m_start_Decal2_CMYK_Warping_Planes: 0
- m_start_Decal2_Domain_Warping: 0
@@ -1767,6 +2034,7 @@ Material:
- m_start_Decal2_Normal: 0
- m_start_Decal2_Reflections: 0
- m_start_Decal2_SDF: 0
+ - m_start_Decal2_SSN: 0
- m_start_Decal3: 0
- m_start_Decal3_CMYK_Warping_Planes: 0
- m_start_Decal3_Domain_Warping: 0
@@ -1776,6 +2044,7 @@ Material:
- m_start_Decal3_Normal: 0
- m_start_Decal3_Reflections: 0
- m_start_Decal3_SDF: 0
+ - m_start_Decal3_SSN: 0
- m_start_Decal4: 0
- m_start_Decal4_CMYK_Warping_Planes: 0
- m_start_Decal4_Domain_Warping: 0
@@ -1785,6 +2054,7 @@ Material:
- m_start_Decal4_Normal: 0
- m_start_Decal4_Reflections: 0
- m_start_Decal4_SDF: 0
+ - m_start_Decal4_SSN: 0
- m_start_Decal5: 0
- m_start_Decal5_CMYK_Warping_Planes: 0
- m_start_Decal5_Domain_Warping: 0
@@ -1794,6 +2064,7 @@ Material:
- m_start_Decal5_Normal: 0
- m_start_Decal5_Reflections: 0
- m_start_Decal5_SDF: 0
+ - m_start_Decal5_SSN: 0
- m_start_Decal6: 0
- m_start_Decal6_CMYK_Warping_Planes: 0
- m_start_Decal6_Domain_Warping: 0
@@ -1803,6 +2074,7 @@ Material:
- m_start_Decal6_Normal: 0
- m_start_Decal6_Reflections: 0
- m_start_Decal6_SDF: 0
+ - m_start_Decal6_SSN: 0
- m_start_Decal7: 0
- m_start_Decal7_CMYK_Warping_Planes: 0
- m_start_Decal7_Domain_Warping: 0
@@ -1812,6 +2084,7 @@ Material:
- m_start_Decal7_Normal: 0
- m_start_Decal7_Reflections: 0
- m_start_Decal7_SDF: 0
+ - m_start_Decal7_SSN: 0
- m_start_Decals: 0
- m_start_Depth_Prepass: 0
- m_start_Detail_Maps: 0
@@ -1828,11 +2101,21 @@ Material:
- m_start_Glitter: 0
- m_start_Glitter_Angle_Limit: 0
- m_start_Glitter_Mask: 0
+ - m_start_Gradient_Normals: 0
+ - m_start_Gradient_Normals_0: 0
+ - m_start_Gradient_Normals_0_Horizontal: 0
+ - m_start_Gradient_Normals_1: 0
+ - m_start_Gradient_Normals_1_Horizontal: 0
+ - m_start_Gradient_Normals_2: 0
+ - m_start_Gradient_Normals_2_Horizontal: 0
+ - m_start_Gradient_Normals_3: 0
+ - m_start_Gradient_Normals_3_Horizontal: 0
- m_start_Grayscale_Lightmaps: 0
- m_start_Harnack_Tracing: 0
- m_start_Harnack_Tracing_Gyroid: 0
- m_start_LTCGI: 0
- m_start_Letter_Grid: 0
+ - m_start_Light_Volumes_Brightness: 0
- m_start_MaskedStencil1PassBackOptions: 0
- m_start_MaskedStencil1PassFrontOptions: 0
- m_start_MaskedStencil2PassBackOptions: 0
@@ -1851,6 +2134,9 @@ Material:
- m_start_Matcap1: 0
- m_start_Matcap1_Mask: 0
- m_start_Matcap1_Quantization: 0
+ - m_start_Matcap2: 0
+ - m_start_Matcap2_Mask: 0
+ - m_start_Matcap2_Quantization: 0
- m_start_Matcaps: 0
- m_start_Material_Type_Cloth: 0
- m_start_Material_Type_Cloth_Subsurface: 0
@@ -1866,6 +2152,7 @@ Material:
- m_start_OutlinesMask: 0
- m_start_Quantize_NoL: 0
- m_start_Quantize_Specular: 0
+ - m_start_Quasi_Shadows: 0
- m_start_Raymarched_Fog: 0
- m_start_Raymarched_Fog_Density_Exponent: 0
- m_start_Raymarched_Fog_Emitter_Texture: 0
@@ -1889,6 +2176,12 @@ Material:
- m_start_Rim_Lighting3_Quantization: 0
- m_start_SSAO: 0
- m_start_SSFD: 0
+ - m_start_Screen_Space_Normals: 0
+ - m_start_Sea_Foam: 0
+ - m_start_Sea_Foam_0: 0
+ - m_start_Sea_Foam_1: 0
+ - m_start_Sea_Foam_2: 0
+ - m_start_Sea_Foam_3: 0
- m_start_Shadow_Casting: 0
- m_start_Shadow_Receiving: 0
- m_start_Shatter_Wave: 0
@@ -1901,8 +2194,17 @@ Material:
- m_start_StencilPassFrontOptions: 0
- m_start_Tessellation: 0
- m_start_Tessellation_Heightmap: 0
+ - m_start_Tessellation_Heightmap_0: 0
+ - m_start_Tessellation_Heightmap_1: 0
+ - m_start_Tessellation_Heightmap_2: 0
+ - m_start_Tessellation_Heightmap_3: 0
+ - m_start_Tessellation_Heightmap_4: 0
+ - m_start_Tessellation_Heightmap_5: 0
+ - m_start_Tessellation_Heightmap_6: 0
+ - m_start_Tessellation_Heightmap_7: 0
- m_start_Tessellation_Heightmap_Direction_Control: 0
- m_start_Tessellation_Range_Factor: 0
+ - m_start_Trochoid: 0
- m_start_UV_Domain_Warping: 0
- m_start_Unigram_Letter_Grid: 0
- m_start_Unlit: 0
@@ -1961,6 +2263,7 @@ Material:
- _Letter_Grid_UV_Scale_Offset: {r: 1, g: 1, b: 0, a: 0}
- _MetalReflectionTint: {r: 1, g: 1, b: 1, a: 1}
- _Outline_Color: {r: 0, g: 0, b: 0, a: 1}
+ - _Quasi_Shadows_0_Color: {r: 1, g: 1, b: 1, a: 1}
- _Raymarched_Fog_Color: {r: 0.29999998, g: 0.29999998, b: 0.29999998, a: 1}
- _Raymarched_Fog_Density_Noise_Scale: {r: 1, g: 1, b: 1, a: 0}
- _Raymarched_Fog_Emitter_Texture_World_Normal: {r: 0, g: 0, b: 0, a: 0}
@@ -1977,6 +2280,7 @@ Material:
- _Rim_Lighting2_Color: {r: 1, g: 1, b: 1, a: 1}
- _Rim_Lighting3_Angle_Limit_Target_Vector: {r: 0, g: -1, b: 0, a: 0}
- _Rim_Lighting3_Color: {r: 1, g: 1, b: 1, a: 1}
+ - _Sea_Foam_Color: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Amplitude: {r: 0.4, g: 0.4, b: 0.4, a: 0.4}
- _Shatter_Wave_Chronotensity_Time_Factor: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Chronotensity_Weights0: {r: 0, g: 0, b: 0, a: 0}
diff --git a/Materials/Filament calibration/Mat09.mat b/Materials/Filament calibration/Mat09.mat
index 36bc1cc..e2a947f 100644
--- a/Materials/Filament calibration/Mat09.mat
+++ b/Materials/Filament calibration/Mat09.mat
@@ -13,11 +13,13 @@ Material:
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _CAST_SHADOWS
+ - _CLEARCOAT_GEOMETRIC_NORMALS
- _METALLICS
- _RECEIVE_SHADOWS
- - _SPHERICAL_HARMONICS_L1
m_InvalidKeywords:
- _BUMP_SHADOWS
+ - _LIGHT_VOLUMES_BRIGHTNESS_ENABLED_DYNAMIC_ON
+ - _SPHERICAL_HARMONICS_L1
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
@@ -36,6 +38,10 @@ Material:
m_Texture: {fileID: 2800000, guid: 2dc42dfedb2bc704d984f7990c6b816a, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Clearcoat_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Cloth_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -268,6 +274,38 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Letter_Grid_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -312,6 +350,14 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Matcap2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Matcap2_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -368,6 +414,22 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_0_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_1_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_2_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_3_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _SmoothnessMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -376,6 +438,42 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_0:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_1:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_3:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_4:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_5:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_6:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_7:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Trochoid_Color_Ramp:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _UV_Domain_Warping_Noise:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -426,6 +524,7 @@ Material:
- _Bump_Shadows_Enabled: 1
- _Cast_Shadows_Enabled: 1
- _Clearcoat_Enabled: 0
+ - _Clearcoat_Geometric_Normals_Enabled: 1
- _Clearcoat_Roughness: 0.089
- _Clearcoat_Strength: 1
- _Clip: 0.5
@@ -450,6 +549,7 @@ Material:
- _Custom30_ro_Offset: 0
- _Cutoff: 0.5
- _Decal0_Angle: 0
+ - _Decal0_Bias: 0
- _Decal0_CMYK_Warping_Planes_Enabled: 0
- _Decal0_CMYK_Warping_Planes_Scale: 0.1
- _Decal0_CMYK_Warping_Planes_Speed: 1
@@ -466,23 +566,30 @@ Material:
- _Decal0_Emissions_Proximity_Max_Distance: 1
- _Decal0_Emissions_Proximity_Min_Distance: 0
- _Decal0_Enabled: 0
+ - _Decal0_Invert_Blend_Order: 0
- _Decal0_Mask_Enabled: 0
- _Decal0_Metallic: 0
- _Decal0_Normal_Enabled: 0
- _Decal0_Normal_Scale: 1
- _Decal0_Opacity: 1
+ - _Decal0_Reflections_Alpha_Blend: 0
- _Decal0_Reflections_Enabled: 0
- _Decal0_Replace_Alpha_Mode: 0
- _Decal0_Replace_Multiply_Mode: 0
- _Decal0_SDF_Enabled: 0
- _Decal0_SDF_Invert: 0
- _Decal0_SDF_Px_Range: 2
+ - _Decal0_SDF_SSN_Enabled: 0
+ - _Decal0_SDF_SSN_Only: 0
+ - _Decal0_SDF_SSN_Replace: 0
+ - _Decal0_SDF_SSN_Strength: 1
- _Decal0_SDF_Softness: 0.01
- _Decal0_SDF_Threshold: 0.5
- _Decal0_Smoothness: 0.5
- _Decal0_Tiling_Mode: 0
- _Decal0_UV_Channel: 0
- _Decal1_Angle: 0
+ - _Decal1_Bias: 0
- _Decal1_CMYK_Warping_Planes_Enabled: 0
- _Decal1_CMYK_Warping_Planes_Scale: 0.1
- _Decal1_CMYK_Warping_Planes_Speed: 1
@@ -499,23 +606,30 @@ Material:
- _Decal1_Emissions_Proximity_Max_Distance: 1
- _Decal1_Emissions_Proximity_Min_Distance: 0
- _Decal1_Enabled: 0
+ - _Decal1_Invert_Blend_Order: 0
- _Decal1_Mask_Enabled: 0
- _Decal1_Metallic: 0
- _Decal1_Normal_Enabled: 0
- _Decal1_Normal_Scale: 1
- _Decal1_Opacity: 1
+ - _Decal1_Reflections_Alpha_Blend: 0
- _Decal1_Reflections_Enabled: 0
- _Decal1_Replace_Alpha_Mode: 0
- _Decal1_Replace_Multiply_Mode: 0
- _Decal1_SDF_Enabled: 0
- _Decal1_SDF_Invert: 0
- _Decal1_SDF_Px_Range: 2
+ - _Decal1_SDF_SSN_Enabled: 0
+ - _Decal1_SDF_SSN_Only: 0
+ - _Decal1_SDF_SSN_Replace: 0
+ - _Decal1_SDF_SSN_Strength: 1
- _Decal1_SDF_Softness: 0.01
- _Decal1_SDF_Threshold: 0.5
- _Decal1_Smoothness: 0.5
- _Decal1_Tiling_Mode: 0
- _Decal1_UV_Channel: 0
- _Decal2_Angle: 0
+ - _Decal2_Bias: 0
- _Decal2_CMYK_Warping_Planes_Enabled: 0
- _Decal2_CMYK_Warping_Planes_Scale: 0.1
- _Decal2_CMYK_Warping_Planes_Speed: 1
@@ -532,23 +646,30 @@ Material:
- _Decal2_Emissions_Proximity_Max_Distance: 1
- _Decal2_Emissions_Proximity_Min_Distance: 0
- _Decal2_Enabled: 0
+ - _Decal2_Invert_Blend_Order: 0
- _Decal2_Mask_Enabled: 0
- _Decal2_Metallic: 0
- _Decal2_Normal_Enabled: 0
- _Decal2_Normal_Scale: 1
- _Decal2_Opacity: 1
+ - _Decal2_Reflections_Alpha_Blend: 0
- _Decal2_Reflections_Enabled: 0
- _Decal2_Replace_Alpha_Mode: 0
- _Decal2_Replace_Multiply_Mode: 0
- _Decal2_SDF_Enabled: 0
- _Decal2_SDF_Invert: 0
- _Decal2_SDF_Px_Range: 2
+ - _Decal2_SDF_SSN_Enabled: 0
+ - _Decal2_SDF_SSN_Only: 0
+ - _Decal2_SDF_SSN_Replace: 0
+ - _Decal2_SDF_SSN_Strength: 1
- _Decal2_SDF_Softness: 0.01
- _Decal2_SDF_Threshold: 0.5
- _Decal2_Smoothness: 0.5
- _Decal2_Tiling_Mode: 0
- _Decal2_UV_Channel: 0
- _Decal3_Angle: 0
+ - _Decal3_Bias: 0
- _Decal3_CMYK_Warping_Planes_Enabled: 0
- _Decal3_CMYK_Warping_Planes_Scale: 0.1
- _Decal3_CMYK_Warping_Planes_Speed: 1
@@ -565,23 +686,30 @@ Material:
- _Decal3_Emissions_Proximity_Max_Distance: 1
- _Decal3_Emissions_Proximity_Min_Distance: 0
- _Decal3_Enabled: 0
+ - _Decal3_Invert_Blend_Order: 0
- _Decal3_Mask_Enabled: 0
- _Decal3_Metallic: 0
- _Decal3_Normal_Enabled: 0
- _Decal3_Normal_Scale: 1
- _Decal3_Opacity: 1
+ - _Decal3_Reflections_Alpha_Blend: 0
- _Decal3_Reflections_Enabled: 0
- _Decal3_Replace_Alpha_Mode: 0
- _Decal3_Replace_Multiply_Mode: 0
- _Decal3_SDF_Enabled: 0
- _Decal3_SDF_Invert: 0
- _Decal3_SDF_Px_Range: 2
+ - _Decal3_SDF_SSN_Enabled: 0
+ - _Decal3_SDF_SSN_Only: 0
+ - _Decal3_SDF_SSN_Replace: 0
+ - _Decal3_SDF_SSN_Strength: 1
- _Decal3_SDF_Softness: 0.01
- _Decal3_SDF_Threshold: 0.5
- _Decal3_Smoothness: 0.5
- _Decal3_Tiling_Mode: 0
- _Decal3_UV_Channel: 0
- _Decal4_Angle: 0
+ - _Decal4_Bias: 0
- _Decal4_CMYK_Warping_Planes_Enabled: 0
- _Decal4_CMYK_Warping_Planes_Scale: 0.1
- _Decal4_CMYK_Warping_Planes_Speed: 1
@@ -598,23 +726,30 @@ Material:
- _Decal4_Emissions_Proximity_Max_Distance: 1
- _Decal4_Emissions_Proximity_Min_Distance: 0
- _Decal4_Enabled: 0
+ - _Decal4_Invert_Blend_Order: 0
- _Decal4_Mask_Enabled: 0
- _Decal4_Metallic: 0
- _Decal4_Normal_Enabled: 0
- _Decal4_Normal_Scale: 1
- _Decal4_Opacity: 1
+ - _Decal4_Reflections_Alpha_Blend: 0
- _Decal4_Reflections_Enabled: 0
- _Decal4_Replace_Alpha_Mode: 0
- _Decal4_Replace_Multiply_Mode: 0
- _Decal4_SDF_Enabled: 0
- _Decal4_SDF_Invert: 0
- _Decal4_SDF_Px_Range: 2
+ - _Decal4_SDF_SSN_Enabled: 0
+ - _Decal4_SDF_SSN_Only: 0
+ - _Decal4_SDF_SSN_Replace: 0
+ - _Decal4_SDF_SSN_Strength: 1
- _Decal4_SDF_Softness: 0.01
- _Decal4_SDF_Threshold: 0.5
- _Decal4_Smoothness: 0.5
- _Decal4_Tiling_Mode: 0
- _Decal4_UV_Channel: 0
- _Decal5_Angle: 0
+ - _Decal5_Bias: 0
- _Decal5_CMYK_Warping_Planes_Enabled: 0
- _Decal5_CMYK_Warping_Planes_Scale: 0.1
- _Decal5_CMYK_Warping_Planes_Speed: 1
@@ -631,23 +766,30 @@ Material:
- _Decal5_Emissions_Proximity_Max_Distance: 1
- _Decal5_Emissions_Proximity_Min_Distance: 0
- _Decal5_Enabled: 0
+ - _Decal5_Invert_Blend_Order: 0
- _Decal5_Mask_Enabled: 0
- _Decal5_Metallic: 0
- _Decal5_Normal_Enabled: 0
- _Decal5_Normal_Scale: 1
- _Decal5_Opacity: 1
+ - _Decal5_Reflections_Alpha_Blend: 0
- _Decal5_Reflections_Enabled: 0
- _Decal5_Replace_Alpha_Mode: 0
- _Decal5_Replace_Multiply_Mode: 0
- _Decal5_SDF_Enabled: 0
- _Decal5_SDF_Invert: 0
- _Decal5_SDF_Px_Range: 2
+ - _Decal5_SDF_SSN_Enabled: 0
+ - _Decal5_SDF_SSN_Only: 0
+ - _Decal5_SDF_SSN_Replace: 0
+ - _Decal5_SDF_SSN_Strength: 1
- _Decal5_SDF_Softness: 0.01
- _Decal5_SDF_Threshold: 0.5
- _Decal5_Smoothness: 0.5
- _Decal5_Tiling_Mode: 0
- _Decal5_UV_Channel: 0
- _Decal6_Angle: 0
+ - _Decal6_Bias: 0
- _Decal6_CMYK_Warping_Planes_Enabled: 0
- _Decal6_CMYK_Warping_Planes_Scale: 0.1
- _Decal6_CMYK_Warping_Planes_Speed: 1
@@ -664,23 +806,30 @@ Material:
- _Decal6_Emissions_Proximity_Max_Distance: 1
- _Decal6_Emissions_Proximity_Min_Distance: 0
- _Decal6_Enabled: 0
+ - _Decal6_Invert_Blend_Order: 0
- _Decal6_Mask_Enabled: 0
- _Decal6_Metallic: 0
- _Decal6_Normal_Enabled: 0
- _Decal6_Normal_Scale: 1
- _Decal6_Opacity: 1
+ - _Decal6_Reflections_Alpha_Blend: 0
- _Decal6_Reflections_Enabled: 0
- _Decal6_Replace_Alpha_Mode: 0
- _Decal6_Replace_Multiply_Mode: 0
- _Decal6_SDF_Enabled: 0
- _Decal6_SDF_Invert: 0
- _Decal6_SDF_Px_Range: 2
+ - _Decal6_SDF_SSN_Enabled: 0
+ - _Decal6_SDF_SSN_Only: 0
+ - _Decal6_SDF_SSN_Replace: 0
+ - _Decal6_SDF_SSN_Strength: 1
- _Decal6_SDF_Softness: 0.01
- _Decal6_SDF_Threshold: 0.5
- _Decal6_Smoothness: 0.5
- _Decal6_Tiling_Mode: 0
- _Decal6_UV_Channel: 0
- _Decal7_Angle: 0
+ - _Decal7_Bias: 0
- _Decal7_CMYK_Warping_Planes_Enabled: 0
- _Decal7_CMYK_Warping_Planes_Scale: 0.1
- _Decal7_CMYK_Warping_Planes_Speed: 1
@@ -697,17 +846,23 @@ Material:
- _Decal7_Emissions_Proximity_Max_Distance: 1
- _Decal7_Emissions_Proximity_Min_Distance: 0
- _Decal7_Enabled: 0
+ - _Decal7_Invert_Blend_Order: 0
- _Decal7_Mask_Enabled: 0
- _Decal7_Metallic: 0
- _Decal7_Normal_Enabled: 0
- _Decal7_Normal_Scale: 1
- _Decal7_Opacity: 1
+ - _Decal7_Reflections_Alpha_Blend: 0
- _Decal7_Reflections_Enabled: 0
- _Decal7_Replace_Alpha_Mode: 0
- _Decal7_Replace_Multiply_Mode: 0
- _Decal7_SDF_Enabled: 0
- _Decal7_SDF_Invert: 0
- _Decal7_SDF_Px_Range: 2
+ - _Decal7_SDF_SSN_Enabled: 0
+ - _Decal7_SDF_SSN_Only: 0
+ - _Decal7_SDF_SSN_Replace: 0
+ - _Decal7_SDF_SSN_Strength: 1
- _Decal7_SDF_Softness: 0.01
- _Decal7_SDF_Threshold: 0.5
- _Decal7_Smoothness: 0.5
@@ -716,6 +871,7 @@ Material:
- _Depth_Prepass_Enabled: 0
- _DetailNormalMapScale: 1
- _Detail_Maps_Enabled: 0
+ - _Detail_Maps_UV_Channel: 0
- _DstBlend: 0
- _DstBlendAlpha: 10
- _Emission_Enabled: 0
@@ -772,9 +928,19 @@ Material:
- _Glitter_Mask_Enabled: 0
- _Glitter_Size: 1
- _Glitter_Size_Randomization_Range: 0.4
+ - _Glitter_UV_Channel: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
+ - _Gradient_Normals_0_Horizontal_Enabled: 0
+ - _Gradient_Normals_0_Vertical_Enabled: 0
+ - _Gradient_Normals_1_Horizontal_Enabled: 0
+ - _Gradient_Normals_1_Vertical_Enabled: 0
+ - _Gradient_Normals_2_Horizontal_Enabled: 0
+ - _Gradient_Normals_2_Vertical_Enabled: 0
+ - _Gradient_Normals_3_Horizontal_Enabled: 0
+ - _Gradient_Normals_3_Vertical_Enabled: 0
+ - _Gradient_Normals_Enabled: 0
- _Grayscale_Lightmaps_Enabled: 0
- _Harnack_Tracing_Enabled: 0
- _Harnack_Tracing_Gyroid_Enabled: 0
@@ -797,6 +963,9 @@ Material:
- _Letter_Grid_Screen_Px_Range: 10
- _Letter_Grid_Tex_Res_X: 16
- _Letter_Grid_Tex_Res_Y: 8
+ - _Light_Volumes_Brightness: 1
+ - _Light_Volumes_Brightness_Enabled: 0
+ - _Light_Volumes_Brightness_Enabled_Dynamic: 1
- _MaskedStencil1BackCompareFunction: 8
- _MaskedStencil1BackFailOp: 0
- _MaskedStencil1BackPassOp: 0
@@ -877,6 +1046,14 @@ Material:
- _Matcap1_Quantization_Steps: 1
- _Matcap1_Strength: 1
- _Matcap1_Target_Mask: 1
+ - _Matcap2_Enabled: 0
+ - _Matcap2_Invert: 0
+ - _Matcap2_Mask_Enabled: 0
+ - _Matcap2_Mode: 0
+ - _Matcap2_Quantization_Enabled: 0
+ - _Matcap2_Quantization_Steps: 1
+ - _Matcap2_Strength: 1
+ - _Matcap2_Target_Mask: 1
- _Material_Type_Cloth_Enabled: 0
- _Material_Type_Cloth_Subsurface: 0
- _Metallic: 0
@@ -928,6 +1105,9 @@ Material:
- _Quantize_NoL_Steps: 1
- _Quantize_Specular_Enabled: 0
- _Quantize_Specular_Steps: 1
+ - _Quasi_Shadows_0_Threshold: 0.5
+ - _Quasi_Shadows_0_Width: 0.1
+ - _Quasi_Shadows_Enabled: 0
- _Raymarched_Fog_Albedo: 1
- _Raymarched_Fog_Density_Exponent: 1
- _Raymarched_Fog_Density_Exponent_Enabled: 0
@@ -1009,6 +1189,17 @@ Material:
- _SSFD_Threshold: 0.5
- _SampleWorld: 0
- _Saturation: 0
+ - _Screen_Space_Normals_Enabled: 0
+ - _Sea_Foam_0_Enabled: 0
+ - _Sea_Foam_1_Enabled: 0
+ - _Sea_Foam_2_Enabled: 0
+ - _Sea_Foam_3_Enabled: 0
+ - _Sea_Foam_Bias: 0
+ - _Sea_Foam_Enabled: 0
+ - _Sea_Foam_Factor: 1
+ - _Sea_Foam_Lambda: 1
+ - _Sea_Foam_Power: 1
+ - _Sea_Foam_Roughness: 0.85
- _ShaderOptimizerEnabled: 0
- _Shadow_Strength: 0.25
- _Shatter_Wave_Audiolink_Enabled: 0
@@ -1047,16 +1238,53 @@ Material:
- _Stencil_Enabled: 0
- _Tessellation_Enabled: 0
- _Tessellation_Factor: 1
+ - _Tessellation_Falloff_Factor: 1
+ - _Tessellation_Frustum_Culling_Bias: 35
+ - _Tessellation_Heightmap_0_Enabled: 0
+ - _Tessellation_Heightmap_0_Offset: 0
+ - _Tessellation_Heightmap_0_Scale: 1
+ - _Tessellation_Heightmap_1_Enabled: 0
+ - _Tessellation_Heightmap_1_Offset: 0
+ - _Tessellation_Heightmap_1_Scale: 1
+ - _Tessellation_Heightmap_2_Enabled: 0
+ - _Tessellation_Heightmap_2_Offset: 0
+ - _Tessellation_Heightmap_2_Scale: 1
+ - _Tessellation_Heightmap_3_Enabled: 0
+ - _Tessellation_Heightmap_3_Offset: 0
+ - _Tessellation_Heightmap_3_Scale: 1
+ - _Tessellation_Heightmap_4_Enabled: 0
+ - _Tessellation_Heightmap_4_Offset: 0
+ - _Tessellation_Heightmap_4_Scale: 1
+ - _Tessellation_Heightmap_5_Enabled: 0
+ - _Tessellation_Heightmap_5_Offset: 0
+ - _Tessellation_Heightmap_5_Scale: 1
+ - _Tessellation_Heightmap_6_Enabled: 0
+ - _Tessellation_Heightmap_6_Offset: 0
+ - _Tessellation_Heightmap_6_Scale: 1
+ - _Tessellation_Heightmap_7_Enabled: 0
+ - _Tessellation_Heightmap_7_Offset: 0
+ - _Tessellation_Heightmap_7_Scale: 1
- _Tessellation_Heightmap_Direction_Control_Enabled: 0
- _Tessellation_Heightmap_Enabled: 0
- _Tessellation_Heightmap_Offset: 0
- _Tessellation_Heightmap_Scale: 1
+ - _Tessellation_Heightmap_World_Space_Enabled: 0
- _Tessellation_Range_Factor_Distance_Far: 1
- _Tessellation_Range_Factor_Distance_Near: 1
- _Tessellation_Range_Factor_Enabled: 0
- _Tessellation_Range_Factor_Factor_Far: 1
- _Tessellation_Range_Factor_Factor_Near: 1
- _Tessellation_Range_Factor_Help: 0
+ - _Trochoid_Enabled: 0
+ - _Trochoid_R: 1
+ - _Trochoid_X_Scale: 1
+ - _Trochoid_Y_Scale: 1
+ - _Trochoid_Z_Scale: 1
+ - _Trochoid_d: 1
+ - _Trochoid_r: 1
+ - _Trochoid_r_Power: 1
+ - _Trochoid_t_k: 1
+ - _Trochoid_theta_k: 1
- _UVSec: 0
- _UV_Domain_Warping_Enabled: 0
- _UV_Domain_Warping_Spatial_Octaves: 1
@@ -1558,6 +1786,7 @@ Material:
- m_end_Decal0_Normal: 0
- m_end_Decal0_Reflections: 0
- m_end_Decal0_SDF: 0
+ - m_end_Decal0_SSN: 0
- m_end_Decal1: 0
- m_end_Decal1_CMYK_Warping_Planes: 0
- m_end_Decal1_Domain_Warping: 0
@@ -1567,6 +1796,7 @@ Material:
- m_end_Decal1_Normal: 0
- m_end_Decal1_Reflections: 0
- m_end_Decal1_SDF: 0
+ - m_end_Decal1_SSN: 0
- m_end_Decal2: 0
- m_end_Decal2_CMYK_Warping_Planes: 0
- m_end_Decal2_Domain_Warping: 0
@@ -1576,6 +1806,7 @@ Material:
- m_end_Decal2_Normal: 0
- m_end_Decal2_Reflections: 0
- m_end_Decal2_SDF: 0
+ - m_end_Decal2_SSN: 0
- m_end_Decal3: 0
- m_end_Decal3_CMYK_Warping_Planes: 0
- m_end_Decal3_Domain_Warping: 0
@@ -1585,6 +1816,7 @@ Material:
- m_end_Decal3_Normal: 0
- m_end_Decal3_Reflections: 0
- m_end_Decal3_SDF: 0
+ - m_end_Decal3_SSN: 0
- m_end_Decal4: 0
- m_end_Decal4_CMYK_Warping_Planes: 0
- m_end_Decal4_Domain_Warping: 0
@@ -1594,6 +1826,7 @@ Material:
- m_end_Decal4_Normal: 0
- m_end_Decal4_Reflections: 0
- m_end_Decal4_SDF: 0
+ - m_end_Decal4_SSN: 0
- m_end_Decal5: 0
- m_end_Decal5_CMYK_Warping_Planes: 0
- m_end_Decal5_Domain_Warping: 0
@@ -1603,6 +1836,7 @@ Material:
- m_end_Decal5_Normal: 0
- m_end_Decal5_Reflections: 0
- m_end_Decal5_SDF: 0
+ - m_end_Decal5_SSN: 0
- m_end_Decal6: 0
- m_end_Decal6_CMYK_Warping_Planes: 0
- m_end_Decal6_Domain_Warping: 0
@@ -1612,6 +1846,7 @@ Material:
- m_end_Decal6_Normal: 0
- m_end_Decal6_Reflections: 0
- m_end_Decal6_SDF: 0
+ - m_end_Decal6_SSN: 0
- m_end_Decal7: 0
- m_end_Decal7_CMYK_Warping_Planes: 0
- m_end_Decal7_Domain_Warping: 0
@@ -1621,6 +1856,7 @@ Material:
- m_end_Decal7_Normal: 0
- m_end_Decal7_Reflections: 0
- m_end_Decal7_SDF: 0
+ - m_end_Decal7_SSN: 0
- m_end_Decals: 0
- m_end_Depth_Prepass: 0
- m_end_Detail_Maps: 0
@@ -1637,11 +1873,21 @@ Material:
- m_end_Glitter: 0
- m_end_Glitter_Angle_Limit: 0
- m_end_Glitter_Mask: 0
+ - m_end_Gradient_Normals: 0
+ - m_end_Gradient_Normals_0: 0
+ - m_end_Gradient_Normals_0_Horizontal: 0
+ - m_end_Gradient_Normals_1: 0
+ - m_end_Gradient_Normals_1_Horizontal: 0
+ - m_end_Gradient_Normals_2: 0
+ - m_end_Gradient_Normals_2_Horizontal: 0
+ - m_end_Gradient_Normals_3: 0
+ - m_end_Gradient_Normals_3_Horizontal: 0
- m_end_Grayscale_Lightmaps: 0
- m_end_Harnack_Tracing: 0
- m_end_Harnack_Tracing_Gyroid: 0
- m_end_LTCGI: 0
- m_end_Letter_Grid: 0
+ - m_end_Light_Volumes_Brightness: 0
- m_end_MaskedStencil1PassBackOptions: 0
- m_end_MaskedStencil1PassFrontOptions: 0
- m_end_MaskedStencil2PassBackOptions: 0
@@ -1660,6 +1906,9 @@ Material:
- m_end_Matcap1: 0
- m_end_Matcap1_Mask: 0
- m_end_Matcap1_Quantization: 0
+ - m_end_Matcap2: 0
+ - m_end_Matcap2_Mask: 0
+ - m_end_Matcap2_Quantization: 0
- m_end_Matcaps: 0
- m_end_Material_Type_Cloth: 0
- m_end_Material_Type_Cloth_Subsurface: 0
@@ -1675,6 +1924,7 @@ Material:
- m_end_OutlinesMask: 0
- m_end_Quantize_NoL: 0
- m_end_Quantize_Specular: 0
+ - m_end_Quasi_Shadows: 0
- m_end_Raymarched_Fog: 0
- m_end_Raymarched_Fog_Density_Exponent: 0
- m_end_Raymarched_Fog_Emitter_Texture: 0
@@ -1698,6 +1948,12 @@ Material:
- m_end_Rim_Lighting3_Quantization: 0
- m_end_SSAO: 0
- m_end_SSFD: 0
+ - m_end_Screen_Space_Normals: 0
+ - m_end_Sea_Foam: 0
+ - m_end_Sea_Foam_0: 0
+ - m_end_Sea_Foam_1: 0
+ - m_end_Sea_Foam_2: 0
+ - m_end_Sea_Foam_3: 0
- m_end_Shadow_Casting: 0
- m_end_Shadow_Receiving: 0
- m_end_Shatter_Wave: 0
@@ -1710,8 +1966,17 @@ Material:
- m_end_StencilPassFrontOptions: 0
- m_end_Tessellation: 0
- m_end_Tessellation_Heightmap: 0
+ - m_end_Tessellation_Heightmap_0: 0
+ - m_end_Tessellation_Heightmap_1: 0
+ - m_end_Tessellation_Heightmap_2: 0
+ - m_end_Tessellation_Heightmap_3: 0
+ - m_end_Tessellation_Heightmap_4: 0
+ - m_end_Tessellation_Heightmap_5: 0
+ - m_end_Tessellation_Heightmap_6: 0
+ - m_end_Tessellation_Heightmap_7: 0
- m_end_Tessellation_Heightmap_Direction_Control: 0
- m_end_Tessellation_Range_Factor: 0
+ - m_end_Trochoid: 0
- m_end_UV_Domain_Warping: 0
- m_end_Unigram_Letter_Grid: 0
- m_end_Unlit: 0
@@ -1749,6 +2014,7 @@ Material:
- m_start_Decal0_Normal: 0
- m_start_Decal0_Reflections: 0
- m_start_Decal0_SDF: 0
+ - m_start_Decal0_SSN: 0
- m_start_Decal1: 0
- m_start_Decal1_CMYK_Warping_Planes: 0
- m_start_Decal1_Domain_Warping: 0
@@ -1758,6 +2024,7 @@ Material:
- m_start_Decal1_Normal: 0
- m_start_Decal1_Reflections: 0
- m_start_Decal1_SDF: 0
+ - m_start_Decal1_SSN: 0
- m_start_Decal2: 0
- m_start_Decal2_CMYK_Warping_Planes: 0
- m_start_Decal2_Domain_Warping: 0
@@ -1767,6 +2034,7 @@ Material:
- m_start_Decal2_Normal: 0
- m_start_Decal2_Reflections: 0
- m_start_Decal2_SDF: 0
+ - m_start_Decal2_SSN: 0
- m_start_Decal3: 0
- m_start_Decal3_CMYK_Warping_Planes: 0
- m_start_Decal3_Domain_Warping: 0
@@ -1776,6 +2044,7 @@ Material:
- m_start_Decal3_Normal: 0
- m_start_Decal3_Reflections: 0
- m_start_Decal3_SDF: 0
+ - m_start_Decal3_SSN: 0
- m_start_Decal4: 0
- m_start_Decal4_CMYK_Warping_Planes: 0
- m_start_Decal4_Domain_Warping: 0
@@ -1785,6 +2054,7 @@ Material:
- m_start_Decal4_Normal: 0
- m_start_Decal4_Reflections: 0
- m_start_Decal4_SDF: 0
+ - m_start_Decal4_SSN: 0
- m_start_Decal5: 0
- m_start_Decal5_CMYK_Warping_Planes: 0
- m_start_Decal5_Domain_Warping: 0
@@ -1794,6 +2064,7 @@ Material:
- m_start_Decal5_Normal: 0
- m_start_Decal5_Reflections: 0
- m_start_Decal5_SDF: 0
+ - m_start_Decal5_SSN: 0
- m_start_Decal6: 0
- m_start_Decal6_CMYK_Warping_Planes: 0
- m_start_Decal6_Domain_Warping: 0
@@ -1803,6 +2074,7 @@ Material:
- m_start_Decal6_Normal: 0
- m_start_Decal6_Reflections: 0
- m_start_Decal6_SDF: 0
+ - m_start_Decal6_SSN: 0
- m_start_Decal7: 0
- m_start_Decal7_CMYK_Warping_Planes: 0
- m_start_Decal7_Domain_Warping: 0
@@ -1812,6 +2084,7 @@ Material:
- m_start_Decal7_Normal: 0
- m_start_Decal7_Reflections: 0
- m_start_Decal7_SDF: 0
+ - m_start_Decal7_SSN: 0
- m_start_Decals: 0
- m_start_Depth_Prepass: 0
- m_start_Detail_Maps: 0
@@ -1828,11 +2101,21 @@ Material:
- m_start_Glitter: 0
- m_start_Glitter_Angle_Limit: 0
- m_start_Glitter_Mask: 0
+ - m_start_Gradient_Normals: 0
+ - m_start_Gradient_Normals_0: 0
+ - m_start_Gradient_Normals_0_Horizontal: 0
+ - m_start_Gradient_Normals_1: 0
+ - m_start_Gradient_Normals_1_Horizontal: 0
+ - m_start_Gradient_Normals_2: 0
+ - m_start_Gradient_Normals_2_Horizontal: 0
+ - m_start_Gradient_Normals_3: 0
+ - m_start_Gradient_Normals_3_Horizontal: 0
- m_start_Grayscale_Lightmaps: 0
- m_start_Harnack_Tracing: 0
- m_start_Harnack_Tracing_Gyroid: 0
- m_start_LTCGI: 0
- m_start_Letter_Grid: 0
+ - m_start_Light_Volumes_Brightness: 0
- m_start_MaskedStencil1PassBackOptions: 0
- m_start_MaskedStencil1PassFrontOptions: 0
- m_start_MaskedStencil2PassBackOptions: 0
@@ -1851,6 +2134,9 @@ Material:
- m_start_Matcap1: 0
- m_start_Matcap1_Mask: 0
- m_start_Matcap1_Quantization: 0
+ - m_start_Matcap2: 0
+ - m_start_Matcap2_Mask: 0
+ - m_start_Matcap2_Quantization: 0
- m_start_Matcaps: 0
- m_start_Material_Type_Cloth: 0
- m_start_Material_Type_Cloth_Subsurface: 0
@@ -1866,6 +2152,7 @@ Material:
- m_start_OutlinesMask: 0
- m_start_Quantize_NoL: 0
- m_start_Quantize_Specular: 0
+ - m_start_Quasi_Shadows: 0
- m_start_Raymarched_Fog: 0
- m_start_Raymarched_Fog_Density_Exponent: 0
- m_start_Raymarched_Fog_Emitter_Texture: 0
@@ -1889,6 +2176,12 @@ Material:
- m_start_Rim_Lighting3_Quantization: 0
- m_start_SSAO: 0
- m_start_SSFD: 0
+ - m_start_Screen_Space_Normals: 0
+ - m_start_Sea_Foam: 0
+ - m_start_Sea_Foam_0: 0
+ - m_start_Sea_Foam_1: 0
+ - m_start_Sea_Foam_2: 0
+ - m_start_Sea_Foam_3: 0
- m_start_Shadow_Casting: 0
- m_start_Shadow_Receiving: 0
- m_start_Shatter_Wave: 0
@@ -1901,8 +2194,17 @@ Material:
- m_start_StencilPassFrontOptions: 0
- m_start_Tessellation: 0
- m_start_Tessellation_Heightmap: 0
+ - m_start_Tessellation_Heightmap_0: 0
+ - m_start_Tessellation_Heightmap_1: 0
+ - m_start_Tessellation_Heightmap_2: 0
+ - m_start_Tessellation_Heightmap_3: 0
+ - m_start_Tessellation_Heightmap_4: 0
+ - m_start_Tessellation_Heightmap_5: 0
+ - m_start_Tessellation_Heightmap_6: 0
+ - m_start_Tessellation_Heightmap_7: 0
- m_start_Tessellation_Heightmap_Direction_Control: 0
- m_start_Tessellation_Range_Factor: 0
+ - m_start_Trochoid: 0
- m_start_UV_Domain_Warping: 0
- m_start_Unigram_Letter_Grid: 0
- m_start_Unlit: 0
@@ -1961,6 +2263,7 @@ Material:
- _Letter_Grid_UV_Scale_Offset: {r: 1, g: 1, b: 0, a: 0}
- _MetalReflectionTint: {r: 1, g: 1, b: 1, a: 1}
- _Outline_Color: {r: 0, g: 0, b: 0, a: 1}
+ - _Quasi_Shadows_0_Color: {r: 1, g: 1, b: 1, a: 1}
- _Raymarched_Fog_Color: {r: 0.29999998, g: 0.29999998, b: 0.29999998, a: 1}
- _Raymarched_Fog_Density_Noise_Scale: {r: 1, g: 1, b: 1, a: 0}
- _Raymarched_Fog_Emitter_Texture_World_Normal: {r: 0, g: 0, b: 0, a: 0}
@@ -1977,6 +2280,7 @@ Material:
- _Rim_Lighting2_Color: {r: 1, g: 1, b: 1, a: 1}
- _Rim_Lighting3_Angle_Limit_Target_Vector: {r: 0, g: -1, b: 0, a: 0}
- _Rim_Lighting3_Color: {r: 1, g: 1, b: 1, a: 1}
+ - _Sea_Foam_Color: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Amplitude: {r: 0.4, g: 0.4, b: 0.4, a: 0.4}
- _Shatter_Wave_Chronotensity_Time_Factor: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Chronotensity_Weights0: {r: 0, g: 0, b: 0, a: 0}
diff --git a/Materials/Filament calibration/Mat10.mat b/Materials/Filament calibration/Mat10.mat
index 3a4d014..5e654f6 100644
--- a/Materials/Filament calibration/Mat10.mat
+++ b/Materials/Filament calibration/Mat10.mat
@@ -13,11 +13,13 @@ Material:
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _CAST_SHADOWS
+ - _CLEARCOAT_GEOMETRIC_NORMALS
- _METALLICS
- _RECEIVE_SHADOWS
- - _SPHERICAL_HARMONICS_L1
m_InvalidKeywords:
- _BUMP_SHADOWS
+ - _LIGHT_VOLUMES_BRIGHTNESS_ENABLED_DYNAMIC_ON
+ - _SPHERICAL_HARMONICS_L1
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
@@ -36,6 +38,10 @@ Material:
m_Texture: {fileID: 2800000, guid: 2dc42dfedb2bc704d984f7990c6b816a, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Clearcoat_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Cloth_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -268,6 +274,38 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Letter_Grid_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -312,6 +350,14 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Matcap2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Matcap2_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -368,6 +414,22 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_0_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_1_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_2_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_3_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _SmoothnessMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -376,6 +438,42 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_0:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_1:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_3:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_4:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_5:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_6:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_7:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Trochoid_Color_Ramp:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _UV_Domain_Warping_Noise:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -426,6 +524,7 @@ Material:
- _Bump_Shadows_Enabled: 1
- _Cast_Shadows_Enabled: 1
- _Clearcoat_Enabled: 0
+ - _Clearcoat_Geometric_Normals_Enabled: 1
- _Clearcoat_Roughness: 0.089
- _Clearcoat_Strength: 1
- _Clip: 0.5
@@ -450,6 +549,7 @@ Material:
- _Custom30_ro_Offset: 0
- _Cutoff: 0.5
- _Decal0_Angle: 0
+ - _Decal0_Bias: 0
- _Decal0_CMYK_Warping_Planes_Enabled: 0
- _Decal0_CMYK_Warping_Planes_Scale: 0.1
- _Decal0_CMYK_Warping_Planes_Speed: 1
@@ -466,23 +566,30 @@ Material:
- _Decal0_Emissions_Proximity_Max_Distance: 1
- _Decal0_Emissions_Proximity_Min_Distance: 0
- _Decal0_Enabled: 0
+ - _Decal0_Invert_Blend_Order: 0
- _Decal0_Mask_Enabled: 0
- _Decal0_Metallic: 0
- _Decal0_Normal_Enabled: 0
- _Decal0_Normal_Scale: 1
- _Decal0_Opacity: 1
+ - _Decal0_Reflections_Alpha_Blend: 0
- _Decal0_Reflections_Enabled: 0
- _Decal0_Replace_Alpha_Mode: 0
- _Decal0_Replace_Multiply_Mode: 0
- _Decal0_SDF_Enabled: 0
- _Decal0_SDF_Invert: 0
- _Decal0_SDF_Px_Range: 2
+ - _Decal0_SDF_SSN_Enabled: 0
+ - _Decal0_SDF_SSN_Only: 0
+ - _Decal0_SDF_SSN_Replace: 0
+ - _Decal0_SDF_SSN_Strength: 1
- _Decal0_SDF_Softness: 0.01
- _Decal0_SDF_Threshold: 0.5
- _Decal0_Smoothness: 0.5
- _Decal0_Tiling_Mode: 0
- _Decal0_UV_Channel: 0
- _Decal1_Angle: 0
+ - _Decal1_Bias: 0
- _Decal1_CMYK_Warping_Planes_Enabled: 0
- _Decal1_CMYK_Warping_Planes_Scale: 0.1
- _Decal1_CMYK_Warping_Planes_Speed: 1
@@ -499,23 +606,30 @@ Material:
- _Decal1_Emissions_Proximity_Max_Distance: 1
- _Decal1_Emissions_Proximity_Min_Distance: 0
- _Decal1_Enabled: 0
+ - _Decal1_Invert_Blend_Order: 0
- _Decal1_Mask_Enabled: 0
- _Decal1_Metallic: 0
- _Decal1_Normal_Enabled: 0
- _Decal1_Normal_Scale: 1
- _Decal1_Opacity: 1
+ - _Decal1_Reflections_Alpha_Blend: 0
- _Decal1_Reflections_Enabled: 0
- _Decal1_Replace_Alpha_Mode: 0
- _Decal1_Replace_Multiply_Mode: 0
- _Decal1_SDF_Enabled: 0
- _Decal1_SDF_Invert: 0
- _Decal1_SDF_Px_Range: 2
+ - _Decal1_SDF_SSN_Enabled: 0
+ - _Decal1_SDF_SSN_Only: 0
+ - _Decal1_SDF_SSN_Replace: 0
+ - _Decal1_SDF_SSN_Strength: 1
- _Decal1_SDF_Softness: 0.01
- _Decal1_SDF_Threshold: 0.5
- _Decal1_Smoothness: 0.5
- _Decal1_Tiling_Mode: 0
- _Decal1_UV_Channel: 0
- _Decal2_Angle: 0
+ - _Decal2_Bias: 0
- _Decal2_CMYK_Warping_Planes_Enabled: 0
- _Decal2_CMYK_Warping_Planes_Scale: 0.1
- _Decal2_CMYK_Warping_Planes_Speed: 1
@@ -532,23 +646,30 @@ Material:
- _Decal2_Emissions_Proximity_Max_Distance: 1
- _Decal2_Emissions_Proximity_Min_Distance: 0
- _Decal2_Enabled: 0
+ - _Decal2_Invert_Blend_Order: 0
- _Decal2_Mask_Enabled: 0
- _Decal2_Metallic: 0
- _Decal2_Normal_Enabled: 0
- _Decal2_Normal_Scale: 1
- _Decal2_Opacity: 1
+ - _Decal2_Reflections_Alpha_Blend: 0
- _Decal2_Reflections_Enabled: 0
- _Decal2_Replace_Alpha_Mode: 0
- _Decal2_Replace_Multiply_Mode: 0
- _Decal2_SDF_Enabled: 0
- _Decal2_SDF_Invert: 0
- _Decal2_SDF_Px_Range: 2
+ - _Decal2_SDF_SSN_Enabled: 0
+ - _Decal2_SDF_SSN_Only: 0
+ - _Decal2_SDF_SSN_Replace: 0
+ - _Decal2_SDF_SSN_Strength: 1
- _Decal2_SDF_Softness: 0.01
- _Decal2_SDF_Threshold: 0.5
- _Decal2_Smoothness: 0.5
- _Decal2_Tiling_Mode: 0
- _Decal2_UV_Channel: 0
- _Decal3_Angle: 0
+ - _Decal3_Bias: 0
- _Decal3_CMYK_Warping_Planes_Enabled: 0
- _Decal3_CMYK_Warping_Planes_Scale: 0.1
- _Decal3_CMYK_Warping_Planes_Speed: 1
@@ -565,23 +686,30 @@ Material:
- _Decal3_Emissions_Proximity_Max_Distance: 1
- _Decal3_Emissions_Proximity_Min_Distance: 0
- _Decal3_Enabled: 0
+ - _Decal3_Invert_Blend_Order: 0
- _Decal3_Mask_Enabled: 0
- _Decal3_Metallic: 0
- _Decal3_Normal_Enabled: 0
- _Decal3_Normal_Scale: 1
- _Decal3_Opacity: 1
+ - _Decal3_Reflections_Alpha_Blend: 0
- _Decal3_Reflections_Enabled: 0
- _Decal3_Replace_Alpha_Mode: 0
- _Decal3_Replace_Multiply_Mode: 0
- _Decal3_SDF_Enabled: 0
- _Decal3_SDF_Invert: 0
- _Decal3_SDF_Px_Range: 2
+ - _Decal3_SDF_SSN_Enabled: 0
+ - _Decal3_SDF_SSN_Only: 0
+ - _Decal3_SDF_SSN_Replace: 0
+ - _Decal3_SDF_SSN_Strength: 1
- _Decal3_SDF_Softness: 0.01
- _Decal3_SDF_Threshold: 0.5
- _Decal3_Smoothness: 0.5
- _Decal3_Tiling_Mode: 0
- _Decal3_UV_Channel: 0
- _Decal4_Angle: 0
+ - _Decal4_Bias: 0
- _Decal4_CMYK_Warping_Planes_Enabled: 0
- _Decal4_CMYK_Warping_Planes_Scale: 0.1
- _Decal4_CMYK_Warping_Planes_Speed: 1
@@ -598,23 +726,30 @@ Material:
- _Decal4_Emissions_Proximity_Max_Distance: 1
- _Decal4_Emissions_Proximity_Min_Distance: 0
- _Decal4_Enabled: 0
+ - _Decal4_Invert_Blend_Order: 0
- _Decal4_Mask_Enabled: 0
- _Decal4_Metallic: 0
- _Decal4_Normal_Enabled: 0
- _Decal4_Normal_Scale: 1
- _Decal4_Opacity: 1
+ - _Decal4_Reflections_Alpha_Blend: 0
- _Decal4_Reflections_Enabled: 0
- _Decal4_Replace_Alpha_Mode: 0
- _Decal4_Replace_Multiply_Mode: 0
- _Decal4_SDF_Enabled: 0
- _Decal4_SDF_Invert: 0
- _Decal4_SDF_Px_Range: 2
+ - _Decal4_SDF_SSN_Enabled: 0
+ - _Decal4_SDF_SSN_Only: 0
+ - _Decal4_SDF_SSN_Replace: 0
+ - _Decal4_SDF_SSN_Strength: 1
- _Decal4_SDF_Softness: 0.01
- _Decal4_SDF_Threshold: 0.5
- _Decal4_Smoothness: 0.5
- _Decal4_Tiling_Mode: 0
- _Decal4_UV_Channel: 0
- _Decal5_Angle: 0
+ - _Decal5_Bias: 0
- _Decal5_CMYK_Warping_Planes_Enabled: 0
- _Decal5_CMYK_Warping_Planes_Scale: 0.1
- _Decal5_CMYK_Warping_Planes_Speed: 1
@@ -631,23 +766,30 @@ Material:
- _Decal5_Emissions_Proximity_Max_Distance: 1
- _Decal5_Emissions_Proximity_Min_Distance: 0
- _Decal5_Enabled: 0
+ - _Decal5_Invert_Blend_Order: 0
- _Decal5_Mask_Enabled: 0
- _Decal5_Metallic: 0
- _Decal5_Normal_Enabled: 0
- _Decal5_Normal_Scale: 1
- _Decal5_Opacity: 1
+ - _Decal5_Reflections_Alpha_Blend: 0
- _Decal5_Reflections_Enabled: 0
- _Decal5_Replace_Alpha_Mode: 0
- _Decal5_Replace_Multiply_Mode: 0
- _Decal5_SDF_Enabled: 0
- _Decal5_SDF_Invert: 0
- _Decal5_SDF_Px_Range: 2
+ - _Decal5_SDF_SSN_Enabled: 0
+ - _Decal5_SDF_SSN_Only: 0
+ - _Decal5_SDF_SSN_Replace: 0
+ - _Decal5_SDF_SSN_Strength: 1
- _Decal5_SDF_Softness: 0.01
- _Decal5_SDF_Threshold: 0.5
- _Decal5_Smoothness: 0.5
- _Decal5_Tiling_Mode: 0
- _Decal5_UV_Channel: 0
- _Decal6_Angle: 0
+ - _Decal6_Bias: 0
- _Decal6_CMYK_Warping_Planes_Enabled: 0
- _Decal6_CMYK_Warping_Planes_Scale: 0.1
- _Decal6_CMYK_Warping_Planes_Speed: 1
@@ -664,23 +806,30 @@ Material:
- _Decal6_Emissions_Proximity_Max_Distance: 1
- _Decal6_Emissions_Proximity_Min_Distance: 0
- _Decal6_Enabled: 0
+ - _Decal6_Invert_Blend_Order: 0
- _Decal6_Mask_Enabled: 0
- _Decal6_Metallic: 0
- _Decal6_Normal_Enabled: 0
- _Decal6_Normal_Scale: 1
- _Decal6_Opacity: 1
+ - _Decal6_Reflections_Alpha_Blend: 0
- _Decal6_Reflections_Enabled: 0
- _Decal6_Replace_Alpha_Mode: 0
- _Decal6_Replace_Multiply_Mode: 0
- _Decal6_SDF_Enabled: 0
- _Decal6_SDF_Invert: 0
- _Decal6_SDF_Px_Range: 2
+ - _Decal6_SDF_SSN_Enabled: 0
+ - _Decal6_SDF_SSN_Only: 0
+ - _Decal6_SDF_SSN_Replace: 0
+ - _Decal6_SDF_SSN_Strength: 1
- _Decal6_SDF_Softness: 0.01
- _Decal6_SDF_Threshold: 0.5
- _Decal6_Smoothness: 0.5
- _Decal6_Tiling_Mode: 0
- _Decal6_UV_Channel: 0
- _Decal7_Angle: 0
+ - _Decal7_Bias: 0
- _Decal7_CMYK_Warping_Planes_Enabled: 0
- _Decal7_CMYK_Warping_Planes_Scale: 0.1
- _Decal7_CMYK_Warping_Planes_Speed: 1
@@ -697,17 +846,23 @@ Material:
- _Decal7_Emissions_Proximity_Max_Distance: 1
- _Decal7_Emissions_Proximity_Min_Distance: 0
- _Decal7_Enabled: 0
+ - _Decal7_Invert_Blend_Order: 0
- _Decal7_Mask_Enabled: 0
- _Decal7_Metallic: 0
- _Decal7_Normal_Enabled: 0
- _Decal7_Normal_Scale: 1
- _Decal7_Opacity: 1
+ - _Decal7_Reflections_Alpha_Blend: 0
- _Decal7_Reflections_Enabled: 0
- _Decal7_Replace_Alpha_Mode: 0
- _Decal7_Replace_Multiply_Mode: 0
- _Decal7_SDF_Enabled: 0
- _Decal7_SDF_Invert: 0
- _Decal7_SDF_Px_Range: 2
+ - _Decal7_SDF_SSN_Enabled: 0
+ - _Decal7_SDF_SSN_Only: 0
+ - _Decal7_SDF_SSN_Replace: 0
+ - _Decal7_SDF_SSN_Strength: 1
- _Decal7_SDF_Softness: 0.01
- _Decal7_SDF_Threshold: 0.5
- _Decal7_Smoothness: 0.5
@@ -716,6 +871,7 @@ Material:
- _Depth_Prepass_Enabled: 0
- _DetailNormalMapScale: 1
- _Detail_Maps_Enabled: 0
+ - _Detail_Maps_UV_Channel: 0
- _DstBlend: 0
- _DstBlendAlpha: 10
- _Emission_Enabled: 0
@@ -772,9 +928,19 @@ Material:
- _Glitter_Mask_Enabled: 0
- _Glitter_Size: 1
- _Glitter_Size_Randomization_Range: 0.4
+ - _Glitter_UV_Channel: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
+ - _Gradient_Normals_0_Horizontal_Enabled: 0
+ - _Gradient_Normals_0_Vertical_Enabled: 0
+ - _Gradient_Normals_1_Horizontal_Enabled: 0
+ - _Gradient_Normals_1_Vertical_Enabled: 0
+ - _Gradient_Normals_2_Horizontal_Enabled: 0
+ - _Gradient_Normals_2_Vertical_Enabled: 0
+ - _Gradient_Normals_3_Horizontal_Enabled: 0
+ - _Gradient_Normals_3_Vertical_Enabled: 0
+ - _Gradient_Normals_Enabled: 0
- _Grayscale_Lightmaps_Enabled: 0
- _Harnack_Tracing_Enabled: 0
- _Harnack_Tracing_Gyroid_Enabled: 0
@@ -797,6 +963,9 @@ Material:
- _Letter_Grid_Screen_Px_Range: 10
- _Letter_Grid_Tex_Res_X: 16
- _Letter_Grid_Tex_Res_Y: 8
+ - _Light_Volumes_Brightness: 1
+ - _Light_Volumes_Brightness_Enabled: 0
+ - _Light_Volumes_Brightness_Enabled_Dynamic: 1
- _MaskedStencil1BackCompareFunction: 8
- _MaskedStencil1BackFailOp: 0
- _MaskedStencil1BackPassOp: 0
@@ -877,6 +1046,14 @@ Material:
- _Matcap1_Quantization_Steps: 1
- _Matcap1_Strength: 1
- _Matcap1_Target_Mask: 1
+ - _Matcap2_Enabled: 0
+ - _Matcap2_Invert: 0
+ - _Matcap2_Mask_Enabled: 0
+ - _Matcap2_Mode: 0
+ - _Matcap2_Quantization_Enabled: 0
+ - _Matcap2_Quantization_Steps: 1
+ - _Matcap2_Strength: 1
+ - _Matcap2_Target_Mask: 1
- _Material_Type_Cloth_Enabled: 0
- _Material_Type_Cloth_Subsurface: 0
- _Metallic: 0
@@ -928,6 +1105,9 @@ Material:
- _Quantize_NoL_Steps: 1
- _Quantize_Specular_Enabled: 0
- _Quantize_Specular_Steps: 1
+ - _Quasi_Shadows_0_Threshold: 0.5
+ - _Quasi_Shadows_0_Width: 0.1
+ - _Quasi_Shadows_Enabled: 0
- _Raymarched_Fog_Albedo: 1
- _Raymarched_Fog_Density_Exponent: 1
- _Raymarched_Fog_Density_Exponent_Enabled: 0
@@ -1009,6 +1189,17 @@ Material:
- _SSFD_Threshold: 0.5
- _SampleWorld: 0
- _Saturation: 0
+ - _Screen_Space_Normals_Enabled: 0
+ - _Sea_Foam_0_Enabled: 0
+ - _Sea_Foam_1_Enabled: 0
+ - _Sea_Foam_2_Enabled: 0
+ - _Sea_Foam_3_Enabled: 0
+ - _Sea_Foam_Bias: 0
+ - _Sea_Foam_Enabled: 0
+ - _Sea_Foam_Factor: 1
+ - _Sea_Foam_Lambda: 1
+ - _Sea_Foam_Power: 1
+ - _Sea_Foam_Roughness: 0.85
- _ShaderOptimizerEnabled: 0
- _Shadow_Strength: 0.25
- _Shatter_Wave_Audiolink_Enabled: 0
@@ -1047,16 +1238,53 @@ Material:
- _Stencil_Enabled: 0
- _Tessellation_Enabled: 0
- _Tessellation_Factor: 1
+ - _Tessellation_Falloff_Factor: 1
+ - _Tessellation_Frustum_Culling_Bias: 35
+ - _Tessellation_Heightmap_0_Enabled: 0
+ - _Tessellation_Heightmap_0_Offset: 0
+ - _Tessellation_Heightmap_0_Scale: 1
+ - _Tessellation_Heightmap_1_Enabled: 0
+ - _Tessellation_Heightmap_1_Offset: 0
+ - _Tessellation_Heightmap_1_Scale: 1
+ - _Tessellation_Heightmap_2_Enabled: 0
+ - _Tessellation_Heightmap_2_Offset: 0
+ - _Tessellation_Heightmap_2_Scale: 1
+ - _Tessellation_Heightmap_3_Enabled: 0
+ - _Tessellation_Heightmap_3_Offset: 0
+ - _Tessellation_Heightmap_3_Scale: 1
+ - _Tessellation_Heightmap_4_Enabled: 0
+ - _Tessellation_Heightmap_4_Offset: 0
+ - _Tessellation_Heightmap_4_Scale: 1
+ - _Tessellation_Heightmap_5_Enabled: 0
+ - _Tessellation_Heightmap_5_Offset: 0
+ - _Tessellation_Heightmap_5_Scale: 1
+ - _Tessellation_Heightmap_6_Enabled: 0
+ - _Tessellation_Heightmap_6_Offset: 0
+ - _Tessellation_Heightmap_6_Scale: 1
+ - _Tessellation_Heightmap_7_Enabled: 0
+ - _Tessellation_Heightmap_7_Offset: 0
+ - _Tessellation_Heightmap_7_Scale: 1
- _Tessellation_Heightmap_Direction_Control_Enabled: 0
- _Tessellation_Heightmap_Enabled: 0
- _Tessellation_Heightmap_Offset: 0
- _Tessellation_Heightmap_Scale: 1
+ - _Tessellation_Heightmap_World_Space_Enabled: 0
- _Tessellation_Range_Factor_Distance_Far: 1
- _Tessellation_Range_Factor_Distance_Near: 1
- _Tessellation_Range_Factor_Enabled: 0
- _Tessellation_Range_Factor_Factor_Far: 1
- _Tessellation_Range_Factor_Factor_Near: 1
- _Tessellation_Range_Factor_Help: 0
+ - _Trochoid_Enabled: 0
+ - _Trochoid_R: 1
+ - _Trochoid_X_Scale: 1
+ - _Trochoid_Y_Scale: 1
+ - _Trochoid_Z_Scale: 1
+ - _Trochoid_d: 1
+ - _Trochoid_r: 1
+ - _Trochoid_r_Power: 1
+ - _Trochoid_t_k: 1
+ - _Trochoid_theta_k: 1
- _UVSec: 0
- _UV_Domain_Warping_Enabled: 0
- _UV_Domain_Warping_Spatial_Octaves: 1
@@ -1558,6 +1786,7 @@ Material:
- m_end_Decal0_Normal: 0
- m_end_Decal0_Reflections: 0
- m_end_Decal0_SDF: 0
+ - m_end_Decal0_SSN: 0
- m_end_Decal1: 0
- m_end_Decal1_CMYK_Warping_Planes: 0
- m_end_Decal1_Domain_Warping: 0
@@ -1567,6 +1796,7 @@ Material:
- m_end_Decal1_Normal: 0
- m_end_Decal1_Reflections: 0
- m_end_Decal1_SDF: 0
+ - m_end_Decal1_SSN: 0
- m_end_Decal2: 0
- m_end_Decal2_CMYK_Warping_Planes: 0
- m_end_Decal2_Domain_Warping: 0
@@ -1576,6 +1806,7 @@ Material:
- m_end_Decal2_Normal: 0
- m_end_Decal2_Reflections: 0
- m_end_Decal2_SDF: 0
+ - m_end_Decal2_SSN: 0
- m_end_Decal3: 0
- m_end_Decal3_CMYK_Warping_Planes: 0
- m_end_Decal3_Domain_Warping: 0
@@ -1585,6 +1816,7 @@ Material:
- m_end_Decal3_Normal: 0
- m_end_Decal3_Reflections: 0
- m_end_Decal3_SDF: 0
+ - m_end_Decal3_SSN: 0
- m_end_Decal4: 0
- m_end_Decal4_CMYK_Warping_Planes: 0
- m_end_Decal4_Domain_Warping: 0
@@ -1594,6 +1826,7 @@ Material:
- m_end_Decal4_Normal: 0
- m_end_Decal4_Reflections: 0
- m_end_Decal4_SDF: 0
+ - m_end_Decal4_SSN: 0
- m_end_Decal5: 0
- m_end_Decal5_CMYK_Warping_Planes: 0
- m_end_Decal5_Domain_Warping: 0
@@ -1603,6 +1836,7 @@ Material:
- m_end_Decal5_Normal: 0
- m_end_Decal5_Reflections: 0
- m_end_Decal5_SDF: 0
+ - m_end_Decal5_SSN: 0
- m_end_Decal6: 0
- m_end_Decal6_CMYK_Warping_Planes: 0
- m_end_Decal6_Domain_Warping: 0
@@ -1612,6 +1846,7 @@ Material:
- m_end_Decal6_Normal: 0
- m_end_Decal6_Reflections: 0
- m_end_Decal6_SDF: 0
+ - m_end_Decal6_SSN: 0
- m_end_Decal7: 0
- m_end_Decal7_CMYK_Warping_Planes: 0
- m_end_Decal7_Domain_Warping: 0
@@ -1621,6 +1856,7 @@ Material:
- m_end_Decal7_Normal: 0
- m_end_Decal7_Reflections: 0
- m_end_Decal7_SDF: 0
+ - m_end_Decal7_SSN: 0
- m_end_Decals: 0
- m_end_Depth_Prepass: 0
- m_end_Detail_Maps: 0
@@ -1637,11 +1873,21 @@ Material:
- m_end_Glitter: 0
- m_end_Glitter_Angle_Limit: 0
- m_end_Glitter_Mask: 0
+ - m_end_Gradient_Normals: 0
+ - m_end_Gradient_Normals_0: 0
+ - m_end_Gradient_Normals_0_Horizontal: 0
+ - m_end_Gradient_Normals_1: 0
+ - m_end_Gradient_Normals_1_Horizontal: 0
+ - m_end_Gradient_Normals_2: 0
+ - m_end_Gradient_Normals_2_Horizontal: 0
+ - m_end_Gradient_Normals_3: 0
+ - m_end_Gradient_Normals_3_Horizontal: 0
- m_end_Grayscale_Lightmaps: 0
- m_end_Harnack_Tracing: 0
- m_end_Harnack_Tracing_Gyroid: 0
- m_end_LTCGI: 0
- m_end_Letter_Grid: 0
+ - m_end_Light_Volumes_Brightness: 0
- m_end_MaskedStencil1PassBackOptions: 0
- m_end_MaskedStencil1PassFrontOptions: 0
- m_end_MaskedStencil2PassBackOptions: 0
@@ -1660,6 +1906,9 @@ Material:
- m_end_Matcap1: 0
- m_end_Matcap1_Mask: 0
- m_end_Matcap1_Quantization: 0
+ - m_end_Matcap2: 0
+ - m_end_Matcap2_Mask: 0
+ - m_end_Matcap2_Quantization: 0
- m_end_Matcaps: 0
- m_end_Material_Type_Cloth: 0
- m_end_Material_Type_Cloth_Subsurface: 0
@@ -1675,6 +1924,7 @@ Material:
- m_end_OutlinesMask: 0
- m_end_Quantize_NoL: 0
- m_end_Quantize_Specular: 0
+ - m_end_Quasi_Shadows: 0
- m_end_Raymarched_Fog: 0
- m_end_Raymarched_Fog_Density_Exponent: 0
- m_end_Raymarched_Fog_Emitter_Texture: 0
@@ -1698,6 +1948,12 @@ Material:
- m_end_Rim_Lighting3_Quantization: 0
- m_end_SSAO: 0
- m_end_SSFD: 0
+ - m_end_Screen_Space_Normals: 0
+ - m_end_Sea_Foam: 0
+ - m_end_Sea_Foam_0: 0
+ - m_end_Sea_Foam_1: 0
+ - m_end_Sea_Foam_2: 0
+ - m_end_Sea_Foam_3: 0
- m_end_Shadow_Casting: 0
- m_end_Shadow_Receiving: 0
- m_end_Shatter_Wave: 0
@@ -1710,8 +1966,17 @@ Material:
- m_end_StencilPassFrontOptions: 0
- m_end_Tessellation: 0
- m_end_Tessellation_Heightmap: 0
+ - m_end_Tessellation_Heightmap_0: 0
+ - m_end_Tessellation_Heightmap_1: 0
+ - m_end_Tessellation_Heightmap_2: 0
+ - m_end_Tessellation_Heightmap_3: 0
+ - m_end_Tessellation_Heightmap_4: 0
+ - m_end_Tessellation_Heightmap_5: 0
+ - m_end_Tessellation_Heightmap_6: 0
+ - m_end_Tessellation_Heightmap_7: 0
- m_end_Tessellation_Heightmap_Direction_Control: 0
- m_end_Tessellation_Range_Factor: 0
+ - m_end_Trochoid: 0
- m_end_UV_Domain_Warping: 0
- m_end_Unigram_Letter_Grid: 0
- m_end_Unlit: 0
@@ -1749,6 +2014,7 @@ Material:
- m_start_Decal0_Normal: 0
- m_start_Decal0_Reflections: 0
- m_start_Decal0_SDF: 0
+ - m_start_Decal0_SSN: 0
- m_start_Decal1: 0
- m_start_Decal1_CMYK_Warping_Planes: 0
- m_start_Decal1_Domain_Warping: 0
@@ -1758,6 +2024,7 @@ Material:
- m_start_Decal1_Normal: 0
- m_start_Decal1_Reflections: 0
- m_start_Decal1_SDF: 0
+ - m_start_Decal1_SSN: 0
- m_start_Decal2: 0
- m_start_Decal2_CMYK_Warping_Planes: 0
- m_start_Decal2_Domain_Warping: 0
@@ -1767,6 +2034,7 @@ Material:
- m_start_Decal2_Normal: 0
- m_start_Decal2_Reflections: 0
- m_start_Decal2_SDF: 0
+ - m_start_Decal2_SSN: 0
- m_start_Decal3: 0
- m_start_Decal3_CMYK_Warping_Planes: 0
- m_start_Decal3_Domain_Warping: 0
@@ -1776,6 +2044,7 @@ Material:
- m_start_Decal3_Normal: 0
- m_start_Decal3_Reflections: 0
- m_start_Decal3_SDF: 0
+ - m_start_Decal3_SSN: 0
- m_start_Decal4: 0
- m_start_Decal4_CMYK_Warping_Planes: 0
- m_start_Decal4_Domain_Warping: 0
@@ -1785,6 +2054,7 @@ Material:
- m_start_Decal4_Normal: 0
- m_start_Decal4_Reflections: 0
- m_start_Decal4_SDF: 0
+ - m_start_Decal4_SSN: 0
- m_start_Decal5: 0
- m_start_Decal5_CMYK_Warping_Planes: 0
- m_start_Decal5_Domain_Warping: 0
@@ -1794,6 +2064,7 @@ Material:
- m_start_Decal5_Normal: 0
- m_start_Decal5_Reflections: 0
- m_start_Decal5_SDF: 0
+ - m_start_Decal5_SSN: 0
- m_start_Decal6: 0
- m_start_Decal6_CMYK_Warping_Planes: 0
- m_start_Decal6_Domain_Warping: 0
@@ -1803,6 +2074,7 @@ Material:
- m_start_Decal6_Normal: 0
- m_start_Decal6_Reflections: 0
- m_start_Decal6_SDF: 0
+ - m_start_Decal6_SSN: 0
- m_start_Decal7: 0
- m_start_Decal7_CMYK_Warping_Planes: 0
- m_start_Decal7_Domain_Warping: 0
@@ -1812,6 +2084,7 @@ Material:
- m_start_Decal7_Normal: 0
- m_start_Decal7_Reflections: 0
- m_start_Decal7_SDF: 0
+ - m_start_Decal7_SSN: 0
- m_start_Decals: 0
- m_start_Depth_Prepass: 0
- m_start_Detail_Maps: 0
@@ -1828,11 +2101,21 @@ Material:
- m_start_Glitter: 0
- m_start_Glitter_Angle_Limit: 0
- m_start_Glitter_Mask: 0
+ - m_start_Gradient_Normals: 0
+ - m_start_Gradient_Normals_0: 0
+ - m_start_Gradient_Normals_0_Horizontal: 0
+ - m_start_Gradient_Normals_1: 0
+ - m_start_Gradient_Normals_1_Horizontal: 0
+ - m_start_Gradient_Normals_2: 0
+ - m_start_Gradient_Normals_2_Horizontal: 0
+ - m_start_Gradient_Normals_3: 0
+ - m_start_Gradient_Normals_3_Horizontal: 0
- m_start_Grayscale_Lightmaps: 0
- m_start_Harnack_Tracing: 0
- m_start_Harnack_Tracing_Gyroid: 0
- m_start_LTCGI: 0
- m_start_Letter_Grid: 0
+ - m_start_Light_Volumes_Brightness: 0
- m_start_MaskedStencil1PassBackOptions: 0
- m_start_MaskedStencil1PassFrontOptions: 0
- m_start_MaskedStencil2PassBackOptions: 0
@@ -1851,6 +2134,9 @@ Material:
- m_start_Matcap1: 0
- m_start_Matcap1_Mask: 0
- m_start_Matcap1_Quantization: 0
+ - m_start_Matcap2: 0
+ - m_start_Matcap2_Mask: 0
+ - m_start_Matcap2_Quantization: 0
- m_start_Matcaps: 0
- m_start_Material_Type_Cloth: 0
- m_start_Material_Type_Cloth_Subsurface: 0
@@ -1866,6 +2152,7 @@ Material:
- m_start_OutlinesMask: 0
- m_start_Quantize_NoL: 0
- m_start_Quantize_Specular: 0
+ - m_start_Quasi_Shadows: 0
- m_start_Raymarched_Fog: 0
- m_start_Raymarched_Fog_Density_Exponent: 0
- m_start_Raymarched_Fog_Emitter_Texture: 0
@@ -1889,6 +2176,12 @@ Material:
- m_start_Rim_Lighting3_Quantization: 0
- m_start_SSAO: 0
- m_start_SSFD: 0
+ - m_start_Screen_Space_Normals: 0
+ - m_start_Sea_Foam: 0
+ - m_start_Sea_Foam_0: 0
+ - m_start_Sea_Foam_1: 0
+ - m_start_Sea_Foam_2: 0
+ - m_start_Sea_Foam_3: 0
- m_start_Shadow_Casting: 0
- m_start_Shadow_Receiving: 0
- m_start_Shatter_Wave: 0
@@ -1901,8 +2194,17 @@ Material:
- m_start_StencilPassFrontOptions: 0
- m_start_Tessellation: 0
- m_start_Tessellation_Heightmap: 0
+ - m_start_Tessellation_Heightmap_0: 0
+ - m_start_Tessellation_Heightmap_1: 0
+ - m_start_Tessellation_Heightmap_2: 0
+ - m_start_Tessellation_Heightmap_3: 0
+ - m_start_Tessellation_Heightmap_4: 0
+ - m_start_Tessellation_Heightmap_5: 0
+ - m_start_Tessellation_Heightmap_6: 0
+ - m_start_Tessellation_Heightmap_7: 0
- m_start_Tessellation_Heightmap_Direction_Control: 0
- m_start_Tessellation_Range_Factor: 0
+ - m_start_Trochoid: 0
- m_start_UV_Domain_Warping: 0
- m_start_Unigram_Letter_Grid: 0
- m_start_Unlit: 0
@@ -1961,6 +2263,7 @@ Material:
- _Letter_Grid_UV_Scale_Offset: {r: 1, g: 1, b: 0, a: 0}
- _MetalReflectionTint: {r: 1, g: 1, b: 1, a: 1}
- _Outline_Color: {r: 0, g: 0, b: 0, a: 1}
+ - _Quasi_Shadows_0_Color: {r: 1, g: 1, b: 1, a: 1}
- _Raymarched_Fog_Color: {r: 0.29999998, g: 0.29999998, b: 0.29999998, a: 1}
- _Raymarched_Fog_Density_Noise_Scale: {r: 1, g: 1, b: 1, a: 0}
- _Raymarched_Fog_Emitter_Texture_World_Normal: {r: 0, g: 0, b: 0, a: 0}
@@ -1977,6 +2280,7 @@ Material:
- _Rim_Lighting2_Color: {r: 1, g: 1, b: 1, a: 1}
- _Rim_Lighting3_Angle_Limit_Target_Vector: {r: 0, g: -1, b: 0, a: 0}
- _Rim_Lighting3_Color: {r: 1, g: 1, b: 1, a: 1}
+ - _Sea_Foam_Color: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Amplitude: {r: 0.4, g: 0.4, b: 0.4, a: 0.4}
- _Shatter_Wave_Chronotensity_Time_Factor: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Chronotensity_Weights0: {r: 0, g: 0, b: 0, a: 0}
diff --git a/Materials/Filament calibration/Mat11.mat b/Materials/Filament calibration/Mat11.mat
index b8ec9c3..652e867 100644
--- a/Materials/Filament calibration/Mat11.mat
+++ b/Materials/Filament calibration/Mat11.mat
@@ -13,11 +13,13 @@ Material:
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _CAST_SHADOWS
+ - _CLEARCOAT_GEOMETRIC_NORMALS
- _METALLICS
- _RECEIVE_SHADOWS
- - _SPHERICAL_HARMONICS_L1
m_InvalidKeywords:
- _BUMP_SHADOWS
+ - _LIGHT_VOLUMES_BRIGHTNESS_ENABLED_DYNAMIC_ON
+ - _SPHERICAL_HARMONICS_L1
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
@@ -36,6 +38,10 @@ Material:
m_Texture: {fileID: 2800000, guid: 2dc42dfedb2bc704d984f7990c6b816a, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Clearcoat_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Cloth_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -268,6 +274,38 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Letter_Grid_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -312,6 +350,14 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Matcap2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Matcap2_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -368,6 +414,22 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_0_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_1_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_2_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_3_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _SmoothnessMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -376,6 +438,42 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_0:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_1:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_3:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_4:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_5:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_6:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_7:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Trochoid_Color_Ramp:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _UV_Domain_Warping_Noise:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -426,6 +524,7 @@ Material:
- _Bump_Shadows_Enabled: 1
- _Cast_Shadows_Enabled: 1
- _Clearcoat_Enabled: 0
+ - _Clearcoat_Geometric_Normals_Enabled: 1
- _Clearcoat_Roughness: 0.089
- _Clearcoat_Strength: 1
- _Clip: 0.5
@@ -450,6 +549,7 @@ Material:
- _Custom30_ro_Offset: 0
- _Cutoff: 0.5
- _Decal0_Angle: 0
+ - _Decal0_Bias: 0
- _Decal0_CMYK_Warping_Planes_Enabled: 0
- _Decal0_CMYK_Warping_Planes_Scale: 0.1
- _Decal0_CMYK_Warping_Planes_Speed: 1
@@ -466,23 +566,30 @@ Material:
- _Decal0_Emissions_Proximity_Max_Distance: 1
- _Decal0_Emissions_Proximity_Min_Distance: 0
- _Decal0_Enabled: 0
+ - _Decal0_Invert_Blend_Order: 0
- _Decal0_Mask_Enabled: 0
- _Decal0_Metallic: 0
- _Decal0_Normal_Enabled: 0
- _Decal0_Normal_Scale: 1
- _Decal0_Opacity: 1
+ - _Decal0_Reflections_Alpha_Blend: 0
- _Decal0_Reflections_Enabled: 0
- _Decal0_Replace_Alpha_Mode: 0
- _Decal0_Replace_Multiply_Mode: 0
- _Decal0_SDF_Enabled: 0
- _Decal0_SDF_Invert: 0
- _Decal0_SDF_Px_Range: 2
+ - _Decal0_SDF_SSN_Enabled: 0
+ - _Decal0_SDF_SSN_Only: 0
+ - _Decal0_SDF_SSN_Replace: 0
+ - _Decal0_SDF_SSN_Strength: 1
- _Decal0_SDF_Softness: 0.01
- _Decal0_SDF_Threshold: 0.5
- _Decal0_Smoothness: 0.5
- _Decal0_Tiling_Mode: 0
- _Decal0_UV_Channel: 0
- _Decal1_Angle: 0
+ - _Decal1_Bias: 0
- _Decal1_CMYK_Warping_Planes_Enabled: 0
- _Decal1_CMYK_Warping_Planes_Scale: 0.1
- _Decal1_CMYK_Warping_Planes_Speed: 1
@@ -499,23 +606,30 @@ Material:
- _Decal1_Emissions_Proximity_Max_Distance: 1
- _Decal1_Emissions_Proximity_Min_Distance: 0
- _Decal1_Enabled: 0
+ - _Decal1_Invert_Blend_Order: 0
- _Decal1_Mask_Enabled: 0
- _Decal1_Metallic: 0
- _Decal1_Normal_Enabled: 0
- _Decal1_Normal_Scale: 1
- _Decal1_Opacity: 1
+ - _Decal1_Reflections_Alpha_Blend: 0
- _Decal1_Reflections_Enabled: 0
- _Decal1_Replace_Alpha_Mode: 0
- _Decal1_Replace_Multiply_Mode: 0
- _Decal1_SDF_Enabled: 0
- _Decal1_SDF_Invert: 0
- _Decal1_SDF_Px_Range: 2
+ - _Decal1_SDF_SSN_Enabled: 0
+ - _Decal1_SDF_SSN_Only: 0
+ - _Decal1_SDF_SSN_Replace: 0
+ - _Decal1_SDF_SSN_Strength: 1
- _Decal1_SDF_Softness: 0.01
- _Decal1_SDF_Threshold: 0.5
- _Decal1_Smoothness: 0.5
- _Decal1_Tiling_Mode: 0
- _Decal1_UV_Channel: 0
- _Decal2_Angle: 0
+ - _Decal2_Bias: 0
- _Decal2_CMYK_Warping_Planes_Enabled: 0
- _Decal2_CMYK_Warping_Planes_Scale: 0.1
- _Decal2_CMYK_Warping_Planes_Speed: 1
@@ -532,23 +646,30 @@ Material:
- _Decal2_Emissions_Proximity_Max_Distance: 1
- _Decal2_Emissions_Proximity_Min_Distance: 0
- _Decal2_Enabled: 0
+ - _Decal2_Invert_Blend_Order: 0
- _Decal2_Mask_Enabled: 0
- _Decal2_Metallic: 0
- _Decal2_Normal_Enabled: 0
- _Decal2_Normal_Scale: 1
- _Decal2_Opacity: 1
+ - _Decal2_Reflections_Alpha_Blend: 0
- _Decal2_Reflections_Enabled: 0
- _Decal2_Replace_Alpha_Mode: 0
- _Decal2_Replace_Multiply_Mode: 0
- _Decal2_SDF_Enabled: 0
- _Decal2_SDF_Invert: 0
- _Decal2_SDF_Px_Range: 2
+ - _Decal2_SDF_SSN_Enabled: 0
+ - _Decal2_SDF_SSN_Only: 0
+ - _Decal2_SDF_SSN_Replace: 0
+ - _Decal2_SDF_SSN_Strength: 1
- _Decal2_SDF_Softness: 0.01
- _Decal2_SDF_Threshold: 0.5
- _Decal2_Smoothness: 0.5
- _Decal2_Tiling_Mode: 0
- _Decal2_UV_Channel: 0
- _Decal3_Angle: 0
+ - _Decal3_Bias: 0
- _Decal3_CMYK_Warping_Planes_Enabled: 0
- _Decal3_CMYK_Warping_Planes_Scale: 0.1
- _Decal3_CMYK_Warping_Planes_Speed: 1
@@ -565,23 +686,30 @@ Material:
- _Decal3_Emissions_Proximity_Max_Distance: 1
- _Decal3_Emissions_Proximity_Min_Distance: 0
- _Decal3_Enabled: 0
+ - _Decal3_Invert_Blend_Order: 0
- _Decal3_Mask_Enabled: 0
- _Decal3_Metallic: 0
- _Decal3_Normal_Enabled: 0
- _Decal3_Normal_Scale: 1
- _Decal3_Opacity: 1
+ - _Decal3_Reflections_Alpha_Blend: 0
- _Decal3_Reflections_Enabled: 0
- _Decal3_Replace_Alpha_Mode: 0
- _Decal3_Replace_Multiply_Mode: 0
- _Decal3_SDF_Enabled: 0
- _Decal3_SDF_Invert: 0
- _Decal3_SDF_Px_Range: 2
+ - _Decal3_SDF_SSN_Enabled: 0
+ - _Decal3_SDF_SSN_Only: 0
+ - _Decal3_SDF_SSN_Replace: 0
+ - _Decal3_SDF_SSN_Strength: 1
- _Decal3_SDF_Softness: 0.01
- _Decal3_SDF_Threshold: 0.5
- _Decal3_Smoothness: 0.5
- _Decal3_Tiling_Mode: 0
- _Decal3_UV_Channel: 0
- _Decal4_Angle: 0
+ - _Decal4_Bias: 0
- _Decal4_CMYK_Warping_Planes_Enabled: 0
- _Decal4_CMYK_Warping_Planes_Scale: 0.1
- _Decal4_CMYK_Warping_Planes_Speed: 1
@@ -598,23 +726,30 @@ Material:
- _Decal4_Emissions_Proximity_Max_Distance: 1
- _Decal4_Emissions_Proximity_Min_Distance: 0
- _Decal4_Enabled: 0
+ - _Decal4_Invert_Blend_Order: 0
- _Decal4_Mask_Enabled: 0
- _Decal4_Metallic: 0
- _Decal4_Normal_Enabled: 0
- _Decal4_Normal_Scale: 1
- _Decal4_Opacity: 1
+ - _Decal4_Reflections_Alpha_Blend: 0
- _Decal4_Reflections_Enabled: 0
- _Decal4_Replace_Alpha_Mode: 0
- _Decal4_Replace_Multiply_Mode: 0
- _Decal4_SDF_Enabled: 0
- _Decal4_SDF_Invert: 0
- _Decal4_SDF_Px_Range: 2
+ - _Decal4_SDF_SSN_Enabled: 0
+ - _Decal4_SDF_SSN_Only: 0
+ - _Decal4_SDF_SSN_Replace: 0
+ - _Decal4_SDF_SSN_Strength: 1
- _Decal4_SDF_Softness: 0.01
- _Decal4_SDF_Threshold: 0.5
- _Decal4_Smoothness: 0.5
- _Decal4_Tiling_Mode: 0
- _Decal4_UV_Channel: 0
- _Decal5_Angle: 0
+ - _Decal5_Bias: 0
- _Decal5_CMYK_Warping_Planes_Enabled: 0
- _Decal5_CMYK_Warping_Planes_Scale: 0.1
- _Decal5_CMYK_Warping_Planes_Speed: 1
@@ -631,23 +766,30 @@ Material:
- _Decal5_Emissions_Proximity_Max_Distance: 1
- _Decal5_Emissions_Proximity_Min_Distance: 0
- _Decal5_Enabled: 0
+ - _Decal5_Invert_Blend_Order: 0
- _Decal5_Mask_Enabled: 0
- _Decal5_Metallic: 0
- _Decal5_Normal_Enabled: 0
- _Decal5_Normal_Scale: 1
- _Decal5_Opacity: 1
+ - _Decal5_Reflections_Alpha_Blend: 0
- _Decal5_Reflections_Enabled: 0
- _Decal5_Replace_Alpha_Mode: 0
- _Decal5_Replace_Multiply_Mode: 0
- _Decal5_SDF_Enabled: 0
- _Decal5_SDF_Invert: 0
- _Decal5_SDF_Px_Range: 2
+ - _Decal5_SDF_SSN_Enabled: 0
+ - _Decal5_SDF_SSN_Only: 0
+ - _Decal5_SDF_SSN_Replace: 0
+ - _Decal5_SDF_SSN_Strength: 1
- _Decal5_SDF_Softness: 0.01
- _Decal5_SDF_Threshold: 0.5
- _Decal5_Smoothness: 0.5
- _Decal5_Tiling_Mode: 0
- _Decal5_UV_Channel: 0
- _Decal6_Angle: 0
+ - _Decal6_Bias: 0
- _Decal6_CMYK_Warping_Planes_Enabled: 0
- _Decal6_CMYK_Warping_Planes_Scale: 0.1
- _Decal6_CMYK_Warping_Planes_Speed: 1
@@ -664,23 +806,30 @@ Material:
- _Decal6_Emissions_Proximity_Max_Distance: 1
- _Decal6_Emissions_Proximity_Min_Distance: 0
- _Decal6_Enabled: 0
+ - _Decal6_Invert_Blend_Order: 0
- _Decal6_Mask_Enabled: 0
- _Decal6_Metallic: 0
- _Decal6_Normal_Enabled: 0
- _Decal6_Normal_Scale: 1
- _Decal6_Opacity: 1
+ - _Decal6_Reflections_Alpha_Blend: 0
- _Decal6_Reflections_Enabled: 0
- _Decal6_Replace_Alpha_Mode: 0
- _Decal6_Replace_Multiply_Mode: 0
- _Decal6_SDF_Enabled: 0
- _Decal6_SDF_Invert: 0
- _Decal6_SDF_Px_Range: 2
+ - _Decal6_SDF_SSN_Enabled: 0
+ - _Decal6_SDF_SSN_Only: 0
+ - _Decal6_SDF_SSN_Replace: 0
+ - _Decal6_SDF_SSN_Strength: 1
- _Decal6_SDF_Softness: 0.01
- _Decal6_SDF_Threshold: 0.5
- _Decal6_Smoothness: 0.5
- _Decal6_Tiling_Mode: 0
- _Decal6_UV_Channel: 0
- _Decal7_Angle: 0
+ - _Decal7_Bias: 0
- _Decal7_CMYK_Warping_Planes_Enabled: 0
- _Decal7_CMYK_Warping_Planes_Scale: 0.1
- _Decal7_CMYK_Warping_Planes_Speed: 1
@@ -697,17 +846,23 @@ Material:
- _Decal7_Emissions_Proximity_Max_Distance: 1
- _Decal7_Emissions_Proximity_Min_Distance: 0
- _Decal7_Enabled: 0
+ - _Decal7_Invert_Blend_Order: 0
- _Decal7_Mask_Enabled: 0
- _Decal7_Metallic: 0
- _Decal7_Normal_Enabled: 0
- _Decal7_Normal_Scale: 1
- _Decal7_Opacity: 1
+ - _Decal7_Reflections_Alpha_Blend: 0
- _Decal7_Reflections_Enabled: 0
- _Decal7_Replace_Alpha_Mode: 0
- _Decal7_Replace_Multiply_Mode: 0
- _Decal7_SDF_Enabled: 0
- _Decal7_SDF_Invert: 0
- _Decal7_SDF_Px_Range: 2
+ - _Decal7_SDF_SSN_Enabled: 0
+ - _Decal7_SDF_SSN_Only: 0
+ - _Decal7_SDF_SSN_Replace: 0
+ - _Decal7_SDF_SSN_Strength: 1
- _Decal7_SDF_Softness: 0.01
- _Decal7_SDF_Threshold: 0.5
- _Decal7_Smoothness: 0.5
@@ -716,6 +871,7 @@ Material:
- _Depth_Prepass_Enabled: 0
- _DetailNormalMapScale: 1
- _Detail_Maps_Enabled: 0
+ - _Detail_Maps_UV_Channel: 0
- _DstBlend: 0
- _DstBlendAlpha: 10
- _Emission_Enabled: 0
@@ -772,9 +928,19 @@ Material:
- _Glitter_Mask_Enabled: 0
- _Glitter_Size: 1
- _Glitter_Size_Randomization_Range: 0.4
+ - _Glitter_UV_Channel: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
+ - _Gradient_Normals_0_Horizontal_Enabled: 0
+ - _Gradient_Normals_0_Vertical_Enabled: 0
+ - _Gradient_Normals_1_Horizontal_Enabled: 0
+ - _Gradient_Normals_1_Vertical_Enabled: 0
+ - _Gradient_Normals_2_Horizontal_Enabled: 0
+ - _Gradient_Normals_2_Vertical_Enabled: 0
+ - _Gradient_Normals_3_Horizontal_Enabled: 0
+ - _Gradient_Normals_3_Vertical_Enabled: 0
+ - _Gradient_Normals_Enabled: 0
- _Grayscale_Lightmaps_Enabled: 0
- _Harnack_Tracing_Enabled: 0
- _Harnack_Tracing_Gyroid_Enabled: 0
@@ -797,6 +963,9 @@ Material:
- _Letter_Grid_Screen_Px_Range: 10
- _Letter_Grid_Tex_Res_X: 16
- _Letter_Grid_Tex_Res_Y: 8
+ - _Light_Volumes_Brightness: 1
+ - _Light_Volumes_Brightness_Enabled: 0
+ - _Light_Volumes_Brightness_Enabled_Dynamic: 1
- _MaskedStencil1BackCompareFunction: 8
- _MaskedStencil1BackFailOp: 0
- _MaskedStencil1BackPassOp: 0
@@ -877,6 +1046,14 @@ Material:
- _Matcap1_Quantization_Steps: 1
- _Matcap1_Strength: 1
- _Matcap1_Target_Mask: 1
+ - _Matcap2_Enabled: 0
+ - _Matcap2_Invert: 0
+ - _Matcap2_Mask_Enabled: 0
+ - _Matcap2_Mode: 0
+ - _Matcap2_Quantization_Enabled: 0
+ - _Matcap2_Quantization_Steps: 1
+ - _Matcap2_Strength: 1
+ - _Matcap2_Target_Mask: 1
- _Material_Type_Cloth_Enabled: 0
- _Material_Type_Cloth_Subsurface: 0
- _Metallic: 0
@@ -928,6 +1105,9 @@ Material:
- _Quantize_NoL_Steps: 1
- _Quantize_Specular_Enabled: 0
- _Quantize_Specular_Steps: 1
+ - _Quasi_Shadows_0_Threshold: 0.5
+ - _Quasi_Shadows_0_Width: 0.1
+ - _Quasi_Shadows_Enabled: 0
- _Raymarched_Fog_Albedo: 1
- _Raymarched_Fog_Density_Exponent: 1
- _Raymarched_Fog_Density_Exponent_Enabled: 0
@@ -1009,6 +1189,17 @@ Material:
- _SSFD_Threshold: 0.5
- _SampleWorld: 0
- _Saturation: 0
+ - _Screen_Space_Normals_Enabled: 0
+ - _Sea_Foam_0_Enabled: 0
+ - _Sea_Foam_1_Enabled: 0
+ - _Sea_Foam_2_Enabled: 0
+ - _Sea_Foam_3_Enabled: 0
+ - _Sea_Foam_Bias: 0
+ - _Sea_Foam_Enabled: 0
+ - _Sea_Foam_Factor: 1
+ - _Sea_Foam_Lambda: 1
+ - _Sea_Foam_Power: 1
+ - _Sea_Foam_Roughness: 0.85
- _ShaderOptimizerEnabled: 0
- _Shadow_Strength: 0.25
- _Shatter_Wave_Audiolink_Enabled: 0
@@ -1047,16 +1238,53 @@ Material:
- _Stencil_Enabled: 0
- _Tessellation_Enabled: 0
- _Tessellation_Factor: 1
+ - _Tessellation_Falloff_Factor: 1
+ - _Tessellation_Frustum_Culling_Bias: 35
+ - _Tessellation_Heightmap_0_Enabled: 0
+ - _Tessellation_Heightmap_0_Offset: 0
+ - _Tessellation_Heightmap_0_Scale: 1
+ - _Tessellation_Heightmap_1_Enabled: 0
+ - _Tessellation_Heightmap_1_Offset: 0
+ - _Tessellation_Heightmap_1_Scale: 1
+ - _Tessellation_Heightmap_2_Enabled: 0
+ - _Tessellation_Heightmap_2_Offset: 0
+ - _Tessellation_Heightmap_2_Scale: 1
+ - _Tessellation_Heightmap_3_Enabled: 0
+ - _Tessellation_Heightmap_3_Offset: 0
+ - _Tessellation_Heightmap_3_Scale: 1
+ - _Tessellation_Heightmap_4_Enabled: 0
+ - _Tessellation_Heightmap_4_Offset: 0
+ - _Tessellation_Heightmap_4_Scale: 1
+ - _Tessellation_Heightmap_5_Enabled: 0
+ - _Tessellation_Heightmap_5_Offset: 0
+ - _Tessellation_Heightmap_5_Scale: 1
+ - _Tessellation_Heightmap_6_Enabled: 0
+ - _Tessellation_Heightmap_6_Offset: 0
+ - _Tessellation_Heightmap_6_Scale: 1
+ - _Tessellation_Heightmap_7_Enabled: 0
+ - _Tessellation_Heightmap_7_Offset: 0
+ - _Tessellation_Heightmap_7_Scale: 1
- _Tessellation_Heightmap_Direction_Control_Enabled: 0
- _Tessellation_Heightmap_Enabled: 0
- _Tessellation_Heightmap_Offset: 0
- _Tessellation_Heightmap_Scale: 1
+ - _Tessellation_Heightmap_World_Space_Enabled: 0
- _Tessellation_Range_Factor_Distance_Far: 1
- _Tessellation_Range_Factor_Distance_Near: 1
- _Tessellation_Range_Factor_Enabled: 0
- _Tessellation_Range_Factor_Factor_Far: 1
- _Tessellation_Range_Factor_Factor_Near: 1
- _Tessellation_Range_Factor_Help: 0
+ - _Trochoid_Enabled: 0
+ - _Trochoid_R: 1
+ - _Trochoid_X_Scale: 1
+ - _Trochoid_Y_Scale: 1
+ - _Trochoid_Z_Scale: 1
+ - _Trochoid_d: 1
+ - _Trochoid_r: 1
+ - _Trochoid_r_Power: 1
+ - _Trochoid_t_k: 1
+ - _Trochoid_theta_k: 1
- _UVSec: 0
- _UV_Domain_Warping_Enabled: 0
- _UV_Domain_Warping_Spatial_Octaves: 1
@@ -1558,6 +1786,7 @@ Material:
- m_end_Decal0_Normal: 0
- m_end_Decal0_Reflections: 0
- m_end_Decal0_SDF: 0
+ - m_end_Decal0_SSN: 0
- m_end_Decal1: 0
- m_end_Decal1_CMYK_Warping_Planes: 0
- m_end_Decal1_Domain_Warping: 0
@@ -1567,6 +1796,7 @@ Material:
- m_end_Decal1_Normal: 0
- m_end_Decal1_Reflections: 0
- m_end_Decal1_SDF: 0
+ - m_end_Decal1_SSN: 0
- m_end_Decal2: 0
- m_end_Decal2_CMYK_Warping_Planes: 0
- m_end_Decal2_Domain_Warping: 0
@@ -1576,6 +1806,7 @@ Material:
- m_end_Decal2_Normal: 0
- m_end_Decal2_Reflections: 0
- m_end_Decal2_SDF: 0
+ - m_end_Decal2_SSN: 0
- m_end_Decal3: 0
- m_end_Decal3_CMYK_Warping_Planes: 0
- m_end_Decal3_Domain_Warping: 0
@@ -1585,6 +1816,7 @@ Material:
- m_end_Decal3_Normal: 0
- m_end_Decal3_Reflections: 0
- m_end_Decal3_SDF: 0
+ - m_end_Decal3_SSN: 0
- m_end_Decal4: 0
- m_end_Decal4_CMYK_Warping_Planes: 0
- m_end_Decal4_Domain_Warping: 0
@@ -1594,6 +1826,7 @@ Material:
- m_end_Decal4_Normal: 0
- m_end_Decal4_Reflections: 0
- m_end_Decal4_SDF: 0
+ - m_end_Decal4_SSN: 0
- m_end_Decal5: 0
- m_end_Decal5_CMYK_Warping_Planes: 0
- m_end_Decal5_Domain_Warping: 0
@@ -1603,6 +1836,7 @@ Material:
- m_end_Decal5_Normal: 0
- m_end_Decal5_Reflections: 0
- m_end_Decal5_SDF: 0
+ - m_end_Decal5_SSN: 0
- m_end_Decal6: 0
- m_end_Decal6_CMYK_Warping_Planes: 0
- m_end_Decal6_Domain_Warping: 0
@@ -1612,6 +1846,7 @@ Material:
- m_end_Decal6_Normal: 0
- m_end_Decal6_Reflections: 0
- m_end_Decal6_SDF: 0
+ - m_end_Decal6_SSN: 0
- m_end_Decal7: 0
- m_end_Decal7_CMYK_Warping_Planes: 0
- m_end_Decal7_Domain_Warping: 0
@@ -1621,6 +1856,7 @@ Material:
- m_end_Decal7_Normal: 0
- m_end_Decal7_Reflections: 0
- m_end_Decal7_SDF: 0
+ - m_end_Decal7_SSN: 0
- m_end_Decals: 0
- m_end_Depth_Prepass: 0
- m_end_Detail_Maps: 0
@@ -1637,11 +1873,21 @@ Material:
- m_end_Glitter: 0
- m_end_Glitter_Angle_Limit: 0
- m_end_Glitter_Mask: 0
+ - m_end_Gradient_Normals: 0
+ - m_end_Gradient_Normals_0: 0
+ - m_end_Gradient_Normals_0_Horizontal: 0
+ - m_end_Gradient_Normals_1: 0
+ - m_end_Gradient_Normals_1_Horizontal: 0
+ - m_end_Gradient_Normals_2: 0
+ - m_end_Gradient_Normals_2_Horizontal: 0
+ - m_end_Gradient_Normals_3: 0
+ - m_end_Gradient_Normals_3_Horizontal: 0
- m_end_Grayscale_Lightmaps: 0
- m_end_Harnack_Tracing: 0
- m_end_Harnack_Tracing_Gyroid: 0
- m_end_LTCGI: 0
- m_end_Letter_Grid: 0
+ - m_end_Light_Volumes_Brightness: 0
- m_end_MaskedStencil1PassBackOptions: 0
- m_end_MaskedStencil1PassFrontOptions: 0
- m_end_MaskedStencil2PassBackOptions: 0
@@ -1660,6 +1906,9 @@ Material:
- m_end_Matcap1: 0
- m_end_Matcap1_Mask: 0
- m_end_Matcap1_Quantization: 0
+ - m_end_Matcap2: 0
+ - m_end_Matcap2_Mask: 0
+ - m_end_Matcap2_Quantization: 0
- m_end_Matcaps: 0
- m_end_Material_Type_Cloth: 0
- m_end_Material_Type_Cloth_Subsurface: 0
@@ -1675,6 +1924,7 @@ Material:
- m_end_OutlinesMask: 0
- m_end_Quantize_NoL: 0
- m_end_Quantize_Specular: 0
+ - m_end_Quasi_Shadows: 0
- m_end_Raymarched_Fog: 0
- m_end_Raymarched_Fog_Density_Exponent: 0
- m_end_Raymarched_Fog_Emitter_Texture: 0
@@ -1698,6 +1948,12 @@ Material:
- m_end_Rim_Lighting3_Quantization: 0
- m_end_SSAO: 0
- m_end_SSFD: 0
+ - m_end_Screen_Space_Normals: 0
+ - m_end_Sea_Foam: 0
+ - m_end_Sea_Foam_0: 0
+ - m_end_Sea_Foam_1: 0
+ - m_end_Sea_Foam_2: 0
+ - m_end_Sea_Foam_3: 0
- m_end_Shadow_Casting: 0
- m_end_Shadow_Receiving: 0
- m_end_Shatter_Wave: 0
@@ -1710,8 +1966,17 @@ Material:
- m_end_StencilPassFrontOptions: 0
- m_end_Tessellation: 0
- m_end_Tessellation_Heightmap: 0
+ - m_end_Tessellation_Heightmap_0: 0
+ - m_end_Tessellation_Heightmap_1: 0
+ - m_end_Tessellation_Heightmap_2: 0
+ - m_end_Tessellation_Heightmap_3: 0
+ - m_end_Tessellation_Heightmap_4: 0
+ - m_end_Tessellation_Heightmap_5: 0
+ - m_end_Tessellation_Heightmap_6: 0
+ - m_end_Tessellation_Heightmap_7: 0
- m_end_Tessellation_Heightmap_Direction_Control: 0
- m_end_Tessellation_Range_Factor: 0
+ - m_end_Trochoid: 0
- m_end_UV_Domain_Warping: 0
- m_end_Unigram_Letter_Grid: 0
- m_end_Unlit: 0
@@ -1749,6 +2014,7 @@ Material:
- m_start_Decal0_Normal: 0
- m_start_Decal0_Reflections: 0
- m_start_Decal0_SDF: 0
+ - m_start_Decal0_SSN: 0
- m_start_Decal1: 0
- m_start_Decal1_CMYK_Warping_Planes: 0
- m_start_Decal1_Domain_Warping: 0
@@ -1758,6 +2024,7 @@ Material:
- m_start_Decal1_Normal: 0
- m_start_Decal1_Reflections: 0
- m_start_Decal1_SDF: 0
+ - m_start_Decal1_SSN: 0
- m_start_Decal2: 0
- m_start_Decal2_CMYK_Warping_Planes: 0
- m_start_Decal2_Domain_Warping: 0
@@ -1767,6 +2034,7 @@ Material:
- m_start_Decal2_Normal: 0
- m_start_Decal2_Reflections: 0
- m_start_Decal2_SDF: 0
+ - m_start_Decal2_SSN: 0
- m_start_Decal3: 0
- m_start_Decal3_CMYK_Warping_Planes: 0
- m_start_Decal3_Domain_Warping: 0
@@ -1776,6 +2044,7 @@ Material:
- m_start_Decal3_Normal: 0
- m_start_Decal3_Reflections: 0
- m_start_Decal3_SDF: 0
+ - m_start_Decal3_SSN: 0
- m_start_Decal4: 0
- m_start_Decal4_CMYK_Warping_Planes: 0
- m_start_Decal4_Domain_Warping: 0
@@ -1785,6 +2054,7 @@ Material:
- m_start_Decal4_Normal: 0
- m_start_Decal4_Reflections: 0
- m_start_Decal4_SDF: 0
+ - m_start_Decal4_SSN: 0
- m_start_Decal5: 0
- m_start_Decal5_CMYK_Warping_Planes: 0
- m_start_Decal5_Domain_Warping: 0
@@ -1794,6 +2064,7 @@ Material:
- m_start_Decal5_Normal: 0
- m_start_Decal5_Reflections: 0
- m_start_Decal5_SDF: 0
+ - m_start_Decal5_SSN: 0
- m_start_Decal6: 0
- m_start_Decal6_CMYK_Warping_Planes: 0
- m_start_Decal6_Domain_Warping: 0
@@ -1803,6 +2074,7 @@ Material:
- m_start_Decal6_Normal: 0
- m_start_Decal6_Reflections: 0
- m_start_Decal6_SDF: 0
+ - m_start_Decal6_SSN: 0
- m_start_Decal7: 0
- m_start_Decal7_CMYK_Warping_Planes: 0
- m_start_Decal7_Domain_Warping: 0
@@ -1812,6 +2084,7 @@ Material:
- m_start_Decal7_Normal: 0
- m_start_Decal7_Reflections: 0
- m_start_Decal7_SDF: 0
+ - m_start_Decal7_SSN: 0
- m_start_Decals: 0
- m_start_Depth_Prepass: 0
- m_start_Detail_Maps: 0
@@ -1828,11 +2101,21 @@ Material:
- m_start_Glitter: 0
- m_start_Glitter_Angle_Limit: 0
- m_start_Glitter_Mask: 0
+ - m_start_Gradient_Normals: 0
+ - m_start_Gradient_Normals_0: 0
+ - m_start_Gradient_Normals_0_Horizontal: 0
+ - m_start_Gradient_Normals_1: 0
+ - m_start_Gradient_Normals_1_Horizontal: 0
+ - m_start_Gradient_Normals_2: 0
+ - m_start_Gradient_Normals_2_Horizontal: 0
+ - m_start_Gradient_Normals_3: 0
+ - m_start_Gradient_Normals_3_Horizontal: 0
- m_start_Grayscale_Lightmaps: 0
- m_start_Harnack_Tracing: 0
- m_start_Harnack_Tracing_Gyroid: 0
- m_start_LTCGI: 0
- m_start_Letter_Grid: 0
+ - m_start_Light_Volumes_Brightness: 0
- m_start_MaskedStencil1PassBackOptions: 0
- m_start_MaskedStencil1PassFrontOptions: 0
- m_start_MaskedStencil2PassBackOptions: 0
@@ -1851,6 +2134,9 @@ Material:
- m_start_Matcap1: 0
- m_start_Matcap1_Mask: 0
- m_start_Matcap1_Quantization: 0
+ - m_start_Matcap2: 0
+ - m_start_Matcap2_Mask: 0
+ - m_start_Matcap2_Quantization: 0
- m_start_Matcaps: 0
- m_start_Material_Type_Cloth: 0
- m_start_Material_Type_Cloth_Subsurface: 0
@@ -1866,6 +2152,7 @@ Material:
- m_start_OutlinesMask: 0
- m_start_Quantize_NoL: 0
- m_start_Quantize_Specular: 0
+ - m_start_Quasi_Shadows: 0
- m_start_Raymarched_Fog: 0
- m_start_Raymarched_Fog_Density_Exponent: 0
- m_start_Raymarched_Fog_Emitter_Texture: 0
@@ -1889,6 +2176,12 @@ Material:
- m_start_Rim_Lighting3_Quantization: 0
- m_start_SSAO: 0
- m_start_SSFD: 0
+ - m_start_Screen_Space_Normals: 0
+ - m_start_Sea_Foam: 0
+ - m_start_Sea_Foam_0: 0
+ - m_start_Sea_Foam_1: 0
+ - m_start_Sea_Foam_2: 0
+ - m_start_Sea_Foam_3: 0
- m_start_Shadow_Casting: 0
- m_start_Shadow_Receiving: 0
- m_start_Shatter_Wave: 0
@@ -1901,8 +2194,17 @@ Material:
- m_start_StencilPassFrontOptions: 0
- m_start_Tessellation: 0
- m_start_Tessellation_Heightmap: 0
+ - m_start_Tessellation_Heightmap_0: 0
+ - m_start_Tessellation_Heightmap_1: 0
+ - m_start_Tessellation_Heightmap_2: 0
+ - m_start_Tessellation_Heightmap_3: 0
+ - m_start_Tessellation_Heightmap_4: 0
+ - m_start_Tessellation_Heightmap_5: 0
+ - m_start_Tessellation_Heightmap_6: 0
+ - m_start_Tessellation_Heightmap_7: 0
- m_start_Tessellation_Heightmap_Direction_Control: 0
- m_start_Tessellation_Range_Factor: 0
+ - m_start_Trochoid: 0
- m_start_UV_Domain_Warping: 0
- m_start_Unigram_Letter_Grid: 0
- m_start_Unlit: 0
@@ -1961,6 +2263,7 @@ Material:
- _Letter_Grid_UV_Scale_Offset: {r: 1, g: 1, b: 0, a: 0}
- _MetalReflectionTint: {r: 1, g: 1, b: 1, a: 1}
- _Outline_Color: {r: 0, g: 0, b: 0, a: 1}
+ - _Quasi_Shadows_0_Color: {r: 1, g: 1, b: 1, a: 1}
- _Raymarched_Fog_Color: {r: 0.29999998, g: 0.29999998, b: 0.29999998, a: 1}
- _Raymarched_Fog_Density_Noise_Scale: {r: 1, g: 1, b: 1, a: 0}
- _Raymarched_Fog_Emitter_Texture_World_Normal: {r: 0, g: 0, b: 0, a: 0}
@@ -1977,6 +2280,7 @@ Material:
- _Rim_Lighting2_Color: {r: 1, g: 1, b: 1, a: 1}
- _Rim_Lighting3_Angle_Limit_Target_Vector: {r: 0, g: -1, b: 0, a: 0}
- _Rim_Lighting3_Color: {r: 1, g: 1, b: 1, a: 1}
+ - _Sea_Foam_Color: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Amplitude: {r: 0.4, g: 0.4, b: 0.4, a: 0.4}
- _Shatter_Wave_Chronotensity_Time_Factor: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Chronotensity_Weights0: {r: 0, g: 0, b: 0, a: 0}
diff --git a/Materials/Filament calibration/Mat12.mat b/Materials/Filament calibration/Mat12.mat
index 74d4099..bb69152 100644
--- a/Materials/Filament calibration/Mat12.mat
+++ b/Materials/Filament calibration/Mat12.mat
@@ -14,10 +14,12 @@ Material:
m_ValidKeywords:
- _CAST_SHADOWS
- _CLEARCOAT
+ - _CLEARCOAT_GEOMETRIC_NORMALS
- _METALLICS
- _RECEIVE_SHADOWS
+ m_InvalidKeywords:
+ - _LIGHT_VOLUMES_BRIGHTNESS_ENABLED_DYNAMIC_ON
- _SPHERICAL_HARMONICS_L1
- m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
@@ -36,6 +38,10 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Clearcoat_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Cloth_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -268,6 +274,38 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Letter_Grid_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -312,6 +350,14 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Matcap2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Matcap2_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -368,6 +414,22 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_0_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_1_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_2_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_3_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _SmoothnessMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -376,6 +438,42 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_0:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_1:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_3:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_4:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_5:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_6:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_7:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Trochoid_Color_Ramp:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _UV_Domain_Warping_Noise:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -422,6 +520,7 @@ Material:
- _BumpScale: 1
- _Cast_Shadows_Enabled: 1
- _Clearcoat_Enabled: 1
+ - _Clearcoat_Geometric_Normals_Enabled: 1
- _Clearcoat_Roughness: 0.089
- _Clearcoat_Strength: 1
- _Clip: 0.5
@@ -446,6 +545,7 @@ Material:
- _Custom30_ro_Offset: 0
- _Cutoff: 0.5
- _Decal0_Angle: 0
+ - _Decal0_Bias: 0
- _Decal0_CMYK_Warping_Planes_Enabled: 0
- _Decal0_CMYK_Warping_Planes_Scale: 0.1
- _Decal0_CMYK_Warping_Planes_Speed: 1
@@ -462,23 +562,30 @@ Material:
- _Decal0_Emissions_Proximity_Max_Distance: 1
- _Decal0_Emissions_Proximity_Min_Distance: 0
- _Decal0_Enabled: 0
+ - _Decal0_Invert_Blend_Order: 0
- _Decal0_Mask_Enabled: 0
- _Decal0_Metallic: 0
- _Decal0_Normal_Enabled: 0
- _Decal0_Normal_Scale: 1
- _Decal0_Opacity: 1
+ - _Decal0_Reflections_Alpha_Blend: 0
- _Decal0_Reflections_Enabled: 0
- _Decal0_Replace_Alpha_Mode: 0
- _Decal0_Replace_Multiply_Mode: 0
- _Decal0_SDF_Enabled: 0
- _Decal0_SDF_Invert: 0
- _Decal0_SDF_Px_Range: 2
+ - _Decal0_SDF_SSN_Enabled: 0
+ - _Decal0_SDF_SSN_Only: 0
+ - _Decal0_SDF_SSN_Replace: 0
+ - _Decal0_SDF_SSN_Strength: 1
- _Decal0_SDF_Softness: 0.01
- _Decal0_SDF_Threshold: 0.5
- _Decal0_Smoothness: 0.5
- _Decal0_Tiling_Mode: 0
- _Decal0_UV_Channel: 0
- _Decal1_Angle: 0
+ - _Decal1_Bias: 0
- _Decal1_CMYK_Warping_Planes_Enabled: 0
- _Decal1_CMYK_Warping_Planes_Scale: 0.1
- _Decal1_CMYK_Warping_Planes_Speed: 1
@@ -495,23 +602,30 @@ Material:
- _Decal1_Emissions_Proximity_Max_Distance: 1
- _Decal1_Emissions_Proximity_Min_Distance: 0
- _Decal1_Enabled: 0
+ - _Decal1_Invert_Blend_Order: 0
- _Decal1_Mask_Enabled: 0
- _Decal1_Metallic: 0
- _Decal1_Normal_Enabled: 0
- _Decal1_Normal_Scale: 1
- _Decal1_Opacity: 1
+ - _Decal1_Reflections_Alpha_Blend: 0
- _Decal1_Reflections_Enabled: 0
- _Decal1_Replace_Alpha_Mode: 0
- _Decal1_Replace_Multiply_Mode: 0
- _Decal1_SDF_Enabled: 0
- _Decal1_SDF_Invert: 0
- _Decal1_SDF_Px_Range: 2
+ - _Decal1_SDF_SSN_Enabled: 0
+ - _Decal1_SDF_SSN_Only: 0
+ - _Decal1_SDF_SSN_Replace: 0
+ - _Decal1_SDF_SSN_Strength: 1
- _Decal1_SDF_Softness: 0.01
- _Decal1_SDF_Threshold: 0.5
- _Decal1_Smoothness: 0.5
- _Decal1_Tiling_Mode: 0
- _Decal1_UV_Channel: 0
- _Decal2_Angle: 0
+ - _Decal2_Bias: 0
- _Decal2_CMYK_Warping_Planes_Enabled: 0
- _Decal2_CMYK_Warping_Planes_Scale: 0.1
- _Decal2_CMYK_Warping_Planes_Speed: 1
@@ -528,23 +642,30 @@ Material:
- _Decal2_Emissions_Proximity_Max_Distance: 1
- _Decal2_Emissions_Proximity_Min_Distance: 0
- _Decal2_Enabled: 0
+ - _Decal2_Invert_Blend_Order: 0
- _Decal2_Mask_Enabled: 0
- _Decal2_Metallic: 0
- _Decal2_Normal_Enabled: 0
- _Decal2_Normal_Scale: 1
- _Decal2_Opacity: 1
+ - _Decal2_Reflections_Alpha_Blend: 0
- _Decal2_Reflections_Enabled: 0
- _Decal2_Replace_Alpha_Mode: 0
- _Decal2_Replace_Multiply_Mode: 0
- _Decal2_SDF_Enabled: 0
- _Decal2_SDF_Invert: 0
- _Decal2_SDF_Px_Range: 2
+ - _Decal2_SDF_SSN_Enabled: 0
+ - _Decal2_SDF_SSN_Only: 0
+ - _Decal2_SDF_SSN_Replace: 0
+ - _Decal2_SDF_SSN_Strength: 1
- _Decal2_SDF_Softness: 0.01
- _Decal2_SDF_Threshold: 0.5
- _Decal2_Smoothness: 0.5
- _Decal2_Tiling_Mode: 0
- _Decal2_UV_Channel: 0
- _Decal3_Angle: 0
+ - _Decal3_Bias: 0
- _Decal3_CMYK_Warping_Planes_Enabled: 0
- _Decal3_CMYK_Warping_Planes_Scale: 0.1
- _Decal3_CMYK_Warping_Planes_Speed: 1
@@ -561,23 +682,30 @@ Material:
- _Decal3_Emissions_Proximity_Max_Distance: 1
- _Decal3_Emissions_Proximity_Min_Distance: 0
- _Decal3_Enabled: 0
+ - _Decal3_Invert_Blend_Order: 0
- _Decal3_Mask_Enabled: 0
- _Decal3_Metallic: 0
- _Decal3_Normal_Enabled: 0
- _Decal3_Normal_Scale: 1
- _Decal3_Opacity: 1
+ - _Decal3_Reflections_Alpha_Blend: 0
- _Decal3_Reflections_Enabled: 0
- _Decal3_Replace_Alpha_Mode: 0
- _Decal3_Replace_Multiply_Mode: 0
- _Decal3_SDF_Enabled: 0
- _Decal3_SDF_Invert: 0
- _Decal3_SDF_Px_Range: 2
+ - _Decal3_SDF_SSN_Enabled: 0
+ - _Decal3_SDF_SSN_Only: 0
+ - _Decal3_SDF_SSN_Replace: 0
+ - _Decal3_SDF_SSN_Strength: 1
- _Decal3_SDF_Softness: 0.01
- _Decal3_SDF_Threshold: 0.5
- _Decal3_Smoothness: 0.5
- _Decal3_Tiling_Mode: 0
- _Decal3_UV_Channel: 0
- _Decal4_Angle: 0
+ - _Decal4_Bias: 0
- _Decal4_CMYK_Warping_Planes_Enabled: 0
- _Decal4_CMYK_Warping_Planes_Scale: 0.1
- _Decal4_CMYK_Warping_Planes_Speed: 1
@@ -594,23 +722,30 @@ Material:
- _Decal4_Emissions_Proximity_Max_Distance: 1
- _Decal4_Emissions_Proximity_Min_Distance: 0
- _Decal4_Enabled: 0
+ - _Decal4_Invert_Blend_Order: 0
- _Decal4_Mask_Enabled: 0
- _Decal4_Metallic: 0
- _Decal4_Normal_Enabled: 0
- _Decal4_Normal_Scale: 1
- _Decal4_Opacity: 1
+ - _Decal4_Reflections_Alpha_Blend: 0
- _Decal4_Reflections_Enabled: 0
- _Decal4_Replace_Alpha_Mode: 0
- _Decal4_Replace_Multiply_Mode: 0
- _Decal4_SDF_Enabled: 0
- _Decal4_SDF_Invert: 0
- _Decal4_SDF_Px_Range: 2
+ - _Decal4_SDF_SSN_Enabled: 0
+ - _Decal4_SDF_SSN_Only: 0
+ - _Decal4_SDF_SSN_Replace: 0
+ - _Decal4_SDF_SSN_Strength: 1
- _Decal4_SDF_Softness: 0.01
- _Decal4_SDF_Threshold: 0.5
- _Decal4_Smoothness: 0.5
- _Decal4_Tiling_Mode: 0
- _Decal4_UV_Channel: 0
- _Decal5_Angle: 0
+ - _Decal5_Bias: 0
- _Decal5_CMYK_Warping_Planes_Enabled: 0
- _Decal5_CMYK_Warping_Planes_Scale: 0.1
- _Decal5_CMYK_Warping_Planes_Speed: 1
@@ -627,23 +762,30 @@ Material:
- _Decal5_Emissions_Proximity_Max_Distance: 1
- _Decal5_Emissions_Proximity_Min_Distance: 0
- _Decal5_Enabled: 0
+ - _Decal5_Invert_Blend_Order: 0
- _Decal5_Mask_Enabled: 0
- _Decal5_Metallic: 0
- _Decal5_Normal_Enabled: 0
- _Decal5_Normal_Scale: 1
- _Decal5_Opacity: 1
+ - _Decal5_Reflections_Alpha_Blend: 0
- _Decal5_Reflections_Enabled: 0
- _Decal5_Replace_Alpha_Mode: 0
- _Decal5_Replace_Multiply_Mode: 0
- _Decal5_SDF_Enabled: 0
- _Decal5_SDF_Invert: 0
- _Decal5_SDF_Px_Range: 2
+ - _Decal5_SDF_SSN_Enabled: 0
+ - _Decal5_SDF_SSN_Only: 0
+ - _Decal5_SDF_SSN_Replace: 0
+ - _Decal5_SDF_SSN_Strength: 1
- _Decal5_SDF_Softness: 0.01
- _Decal5_SDF_Threshold: 0.5
- _Decal5_Smoothness: 0.5
- _Decal5_Tiling_Mode: 0
- _Decal5_UV_Channel: 0
- _Decal6_Angle: 0
+ - _Decal6_Bias: 0
- _Decal6_CMYK_Warping_Planes_Enabled: 0
- _Decal6_CMYK_Warping_Planes_Scale: 0.1
- _Decal6_CMYK_Warping_Planes_Speed: 1
@@ -660,23 +802,30 @@ Material:
- _Decal6_Emissions_Proximity_Max_Distance: 1
- _Decal6_Emissions_Proximity_Min_Distance: 0
- _Decal6_Enabled: 0
+ - _Decal6_Invert_Blend_Order: 0
- _Decal6_Mask_Enabled: 0
- _Decal6_Metallic: 0
- _Decal6_Normal_Enabled: 0
- _Decal6_Normal_Scale: 1
- _Decal6_Opacity: 1
+ - _Decal6_Reflections_Alpha_Blend: 0
- _Decal6_Reflections_Enabled: 0
- _Decal6_Replace_Alpha_Mode: 0
- _Decal6_Replace_Multiply_Mode: 0
- _Decal6_SDF_Enabled: 0
- _Decal6_SDF_Invert: 0
- _Decal6_SDF_Px_Range: 2
+ - _Decal6_SDF_SSN_Enabled: 0
+ - _Decal6_SDF_SSN_Only: 0
+ - _Decal6_SDF_SSN_Replace: 0
+ - _Decal6_SDF_SSN_Strength: 1
- _Decal6_SDF_Softness: 0.01
- _Decal6_SDF_Threshold: 0.5
- _Decal6_Smoothness: 0.5
- _Decal6_Tiling_Mode: 0
- _Decal6_UV_Channel: 0
- _Decal7_Angle: 0
+ - _Decal7_Bias: 0
- _Decal7_CMYK_Warping_Planes_Enabled: 0
- _Decal7_CMYK_Warping_Planes_Scale: 0.1
- _Decal7_CMYK_Warping_Planes_Speed: 1
@@ -693,17 +842,23 @@ Material:
- _Decal7_Emissions_Proximity_Max_Distance: 1
- _Decal7_Emissions_Proximity_Min_Distance: 0
- _Decal7_Enabled: 0
+ - _Decal7_Invert_Blend_Order: 0
- _Decal7_Mask_Enabled: 0
- _Decal7_Metallic: 0
- _Decal7_Normal_Enabled: 0
- _Decal7_Normal_Scale: 1
- _Decal7_Opacity: 1
+ - _Decal7_Reflections_Alpha_Blend: 0
- _Decal7_Reflections_Enabled: 0
- _Decal7_Replace_Alpha_Mode: 0
- _Decal7_Replace_Multiply_Mode: 0
- _Decal7_SDF_Enabled: 0
- _Decal7_SDF_Invert: 0
- _Decal7_SDF_Px_Range: 2
+ - _Decal7_SDF_SSN_Enabled: 0
+ - _Decal7_SDF_SSN_Only: 0
+ - _Decal7_SDF_SSN_Replace: 0
+ - _Decal7_SDF_SSN_Strength: 1
- _Decal7_SDF_Softness: 0.01
- _Decal7_SDF_Threshold: 0.5
- _Decal7_Smoothness: 0.5
@@ -712,6 +867,7 @@ Material:
- _Depth_Prepass_Enabled: 0
- _DetailNormalMapScale: 1
- _Detail_Maps_Enabled: 0
+ - _Detail_Maps_UV_Channel: 0
- _DstBlend: 0
- _DstBlendAlpha: 10
- _Emission_Enabled: 0
@@ -768,9 +924,19 @@ Material:
- _Glitter_Mask_Enabled: 0
- _Glitter_Size: 1
- _Glitter_Size_Randomization_Range: 0.4
+ - _Glitter_UV_Channel: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
+ - _Gradient_Normals_0_Horizontal_Enabled: 0
+ - _Gradient_Normals_0_Vertical_Enabled: 0
+ - _Gradient_Normals_1_Horizontal_Enabled: 0
+ - _Gradient_Normals_1_Vertical_Enabled: 0
+ - _Gradient_Normals_2_Horizontal_Enabled: 0
+ - _Gradient_Normals_2_Vertical_Enabled: 0
+ - _Gradient_Normals_3_Horizontal_Enabled: 0
+ - _Gradient_Normals_3_Vertical_Enabled: 0
+ - _Gradient_Normals_Enabled: 0
- _Grayscale_Lightmaps_Enabled: 0
- _Harnack_Tracing_Enabled: 0
- _Harnack_Tracing_Gyroid_Enabled: 0
@@ -793,6 +959,9 @@ Material:
- _Letter_Grid_Screen_Px_Range: 10
- _Letter_Grid_Tex_Res_X: 16
- _Letter_Grid_Tex_Res_Y: 8
+ - _Light_Volumes_Brightness: 1
+ - _Light_Volumes_Brightness_Enabled: 0
+ - _Light_Volumes_Brightness_Enabled_Dynamic: 1
- _MaskedStencil1BackCompareFunction: 8
- _MaskedStencil1BackFailOp: 0
- _MaskedStencil1BackPassOp: 0
@@ -873,6 +1042,14 @@ Material:
- _Matcap1_Quantization_Steps: 1
- _Matcap1_Strength: 1
- _Matcap1_Target_Mask: 1
+ - _Matcap2_Enabled: 0
+ - _Matcap2_Invert: 0
+ - _Matcap2_Mask_Enabled: 0
+ - _Matcap2_Mode: 0
+ - _Matcap2_Quantization_Enabled: 0
+ - _Matcap2_Quantization_Steps: 1
+ - _Matcap2_Strength: 1
+ - _Matcap2_Target_Mask: 1
- _Material_Type_Cloth_Enabled: 0
- _Material_Type_Cloth_Subsurface: 0
- _Metallic: 1
@@ -924,6 +1101,9 @@ Material:
- _Quantize_NoL_Steps: 1
- _Quantize_Specular_Enabled: 0
- _Quantize_Specular_Steps: 1
+ - _Quasi_Shadows_0_Threshold: 0.5
+ - _Quasi_Shadows_0_Width: 0.1
+ - _Quasi_Shadows_Enabled: 0
- _Raymarched_Fog_Albedo: 1
- _Raymarched_Fog_Density_Exponent: 1
- _Raymarched_Fog_Density_Exponent_Enabled: 0
@@ -1005,6 +1185,17 @@ Material:
- _SSFD_Threshold: 0.5
- _SampleWorld: 0
- _Saturation: 0
+ - _Screen_Space_Normals_Enabled: 0
+ - _Sea_Foam_0_Enabled: 0
+ - _Sea_Foam_1_Enabled: 0
+ - _Sea_Foam_2_Enabled: 0
+ - _Sea_Foam_3_Enabled: 0
+ - _Sea_Foam_Bias: 0
+ - _Sea_Foam_Enabled: 0
+ - _Sea_Foam_Factor: 1
+ - _Sea_Foam_Lambda: 1
+ - _Sea_Foam_Power: 1
+ - _Sea_Foam_Roughness: 0.85
- _ShaderOptimizerEnabled: 0
- _Shadow_Strength: 0.25
- _Shatter_Wave_Audiolink_Enabled: 0
@@ -1043,16 +1234,53 @@ Material:
- _Stencil_Enabled: 0
- _Tessellation_Enabled: 0
- _Tessellation_Factor: 1
+ - _Tessellation_Falloff_Factor: 1
+ - _Tessellation_Frustum_Culling_Bias: 35
+ - _Tessellation_Heightmap_0_Enabled: 0
+ - _Tessellation_Heightmap_0_Offset: 0
+ - _Tessellation_Heightmap_0_Scale: 1
+ - _Tessellation_Heightmap_1_Enabled: 0
+ - _Tessellation_Heightmap_1_Offset: 0
+ - _Tessellation_Heightmap_1_Scale: 1
+ - _Tessellation_Heightmap_2_Enabled: 0
+ - _Tessellation_Heightmap_2_Offset: 0
+ - _Tessellation_Heightmap_2_Scale: 1
+ - _Tessellation_Heightmap_3_Enabled: 0
+ - _Tessellation_Heightmap_3_Offset: 0
+ - _Tessellation_Heightmap_3_Scale: 1
+ - _Tessellation_Heightmap_4_Enabled: 0
+ - _Tessellation_Heightmap_4_Offset: 0
+ - _Tessellation_Heightmap_4_Scale: 1
+ - _Tessellation_Heightmap_5_Enabled: 0
+ - _Tessellation_Heightmap_5_Offset: 0
+ - _Tessellation_Heightmap_5_Scale: 1
+ - _Tessellation_Heightmap_6_Enabled: 0
+ - _Tessellation_Heightmap_6_Offset: 0
+ - _Tessellation_Heightmap_6_Scale: 1
+ - _Tessellation_Heightmap_7_Enabled: 0
+ - _Tessellation_Heightmap_7_Offset: 0
+ - _Tessellation_Heightmap_7_Scale: 1
- _Tessellation_Heightmap_Direction_Control_Enabled: 0
- _Tessellation_Heightmap_Enabled: 0
- _Tessellation_Heightmap_Offset: 0
- _Tessellation_Heightmap_Scale: 1
+ - _Tessellation_Heightmap_World_Space_Enabled: 0
- _Tessellation_Range_Factor_Distance_Far: 1
- _Tessellation_Range_Factor_Distance_Near: 1
- _Tessellation_Range_Factor_Enabled: 0
- _Tessellation_Range_Factor_Factor_Far: 1
- _Tessellation_Range_Factor_Factor_Near: 1
- _Tessellation_Range_Factor_Help: 0
+ - _Trochoid_Enabled: 0
+ - _Trochoid_R: 1
+ - _Trochoid_X_Scale: 1
+ - _Trochoid_Y_Scale: 1
+ - _Trochoid_Z_Scale: 1
+ - _Trochoid_d: 1
+ - _Trochoid_r: 1
+ - _Trochoid_r_Power: 1
+ - _Trochoid_t_k: 1
+ - _Trochoid_theta_k: 1
- _UVSec: 0
- _UV_Domain_Warping_Enabled: 0
- _UV_Domain_Warping_Spatial_Octaves: 1
@@ -1555,6 +1783,7 @@ Material:
- m_end_Decal0_Normal: 0
- m_end_Decal0_Reflections: 0
- m_end_Decal0_SDF: 0
+ - m_end_Decal0_SSN: 0
- m_end_Decal1: 0
- m_end_Decal1_CMYK_Warping_Planes: 0
- m_end_Decal1_Domain_Warping: 0
@@ -1564,6 +1793,7 @@ Material:
- m_end_Decal1_Normal: 0
- m_end_Decal1_Reflections: 0
- m_end_Decal1_SDF: 0
+ - m_end_Decal1_SSN: 0
- m_end_Decal2: 0
- m_end_Decal2_CMYK_Warping_Planes: 0
- m_end_Decal2_Domain_Warping: 0
@@ -1573,6 +1803,7 @@ Material:
- m_end_Decal2_Normal: 0
- m_end_Decal2_Reflections: 0
- m_end_Decal2_SDF: 0
+ - m_end_Decal2_SSN: 0
- m_end_Decal3: 0
- m_end_Decal3_CMYK_Warping_Planes: 0
- m_end_Decal3_Domain_Warping: 0
@@ -1582,6 +1813,7 @@ Material:
- m_end_Decal3_Normal: 0
- m_end_Decal3_Reflections: 0
- m_end_Decal3_SDF: 0
+ - m_end_Decal3_SSN: 0
- m_end_Decal4: 0
- m_end_Decal4_CMYK_Warping_Planes: 0
- m_end_Decal4_Domain_Warping: 0
@@ -1591,6 +1823,7 @@ Material:
- m_end_Decal4_Normal: 0
- m_end_Decal4_Reflections: 0
- m_end_Decal4_SDF: 0
+ - m_end_Decal4_SSN: 0
- m_end_Decal5: 0
- m_end_Decal5_CMYK_Warping_Planes: 0
- m_end_Decal5_Domain_Warping: 0
@@ -1600,6 +1833,7 @@ Material:
- m_end_Decal5_Normal: 0
- m_end_Decal5_Reflections: 0
- m_end_Decal5_SDF: 0
+ - m_end_Decal5_SSN: 0
- m_end_Decal6: 0
- m_end_Decal6_CMYK_Warping_Planes: 0
- m_end_Decal6_Domain_Warping: 0
@@ -1609,6 +1843,7 @@ Material:
- m_end_Decal6_Normal: 0
- m_end_Decal6_Reflections: 0
- m_end_Decal6_SDF: 0
+ - m_end_Decal6_SSN: 0
- m_end_Decal7: 0
- m_end_Decal7_CMYK_Warping_Planes: 0
- m_end_Decal7_Domain_Warping: 0
@@ -1618,6 +1853,7 @@ Material:
- m_end_Decal7_Normal: 0
- m_end_Decal7_Reflections: 0
- m_end_Decal7_SDF: 0
+ - m_end_Decal7_SSN: 0
- m_end_Decals: 0
- m_end_Depth_Prepass: 0
- m_end_Detail_Maps: 0
@@ -1634,11 +1870,21 @@ Material:
- m_end_Glitter: 0
- m_end_Glitter_Angle_Limit: 0
- m_end_Glitter_Mask: 0
+ - m_end_Gradient_Normals: 0
+ - m_end_Gradient_Normals_0: 0
+ - m_end_Gradient_Normals_0_Horizontal: 0
+ - m_end_Gradient_Normals_1: 0
+ - m_end_Gradient_Normals_1_Horizontal: 0
+ - m_end_Gradient_Normals_2: 0
+ - m_end_Gradient_Normals_2_Horizontal: 0
+ - m_end_Gradient_Normals_3: 0
+ - m_end_Gradient_Normals_3_Horizontal: 0
- m_end_Grayscale_Lightmaps: 0
- m_end_Harnack_Tracing: 0
- m_end_Harnack_Tracing_Gyroid: 0
- m_end_LTCGI: 0
- m_end_Letter_Grid: 0
+ - m_end_Light_Volumes_Brightness: 0
- m_end_MaskedStencil1PassBackOptions: 0
- m_end_MaskedStencil1PassFrontOptions: 0
- m_end_MaskedStencil2PassBackOptions: 0
@@ -1657,6 +1903,9 @@ Material:
- m_end_Matcap1: 0
- m_end_Matcap1_Mask: 0
- m_end_Matcap1_Quantization: 0
+ - m_end_Matcap2: 0
+ - m_end_Matcap2_Mask: 0
+ - m_end_Matcap2_Quantization: 0
- m_end_Matcaps: 0
- m_end_Material_Type_Cloth: 0
- m_end_Material_Type_Cloth_Subsurface: 0
@@ -1672,6 +1921,7 @@ Material:
- m_end_OutlinesMask: 0
- m_end_Quantize_NoL: 0
- m_end_Quantize_Specular: 0
+ - m_end_Quasi_Shadows: 0
- m_end_Raymarched_Fog: 0
- m_end_Raymarched_Fog_Density_Exponent: 0
- m_end_Raymarched_Fog_Emitter_Texture: 0
@@ -1695,6 +1945,12 @@ Material:
- m_end_Rim_Lighting3_Quantization: 0
- m_end_SSAO: 0
- m_end_SSFD: 0
+ - m_end_Screen_Space_Normals: 0
+ - m_end_Sea_Foam: 0
+ - m_end_Sea_Foam_0: 0
+ - m_end_Sea_Foam_1: 0
+ - m_end_Sea_Foam_2: 0
+ - m_end_Sea_Foam_3: 0
- m_end_Shadow_Casting: 0
- m_end_Shadow_Receiving: 0
- m_end_Shatter_Wave: 0
@@ -1707,8 +1963,17 @@ Material:
- m_end_StencilPassFrontOptions: 0
- m_end_Tessellation: 0
- m_end_Tessellation_Heightmap: 0
+ - m_end_Tessellation_Heightmap_0: 0
+ - m_end_Tessellation_Heightmap_1: 0
+ - m_end_Tessellation_Heightmap_2: 0
+ - m_end_Tessellation_Heightmap_3: 0
+ - m_end_Tessellation_Heightmap_4: 0
+ - m_end_Tessellation_Heightmap_5: 0
+ - m_end_Tessellation_Heightmap_6: 0
+ - m_end_Tessellation_Heightmap_7: 0
- m_end_Tessellation_Heightmap_Direction_Control: 0
- m_end_Tessellation_Range_Factor: 0
+ - m_end_Trochoid: 0
- m_end_UV_Domain_Warping: 0
- m_end_Unigram_Letter_Grid: 0
- m_end_Unlit: 0
@@ -1745,6 +2010,7 @@ Material:
- m_start_Decal0_Normal: 0
- m_start_Decal0_Reflections: 0
- m_start_Decal0_SDF: 0
+ - m_start_Decal0_SSN: 0
- m_start_Decal1: 0
- m_start_Decal1_CMYK_Warping_Planes: 0
- m_start_Decal1_Domain_Warping: 0
@@ -1754,6 +2020,7 @@ Material:
- m_start_Decal1_Normal: 0
- m_start_Decal1_Reflections: 0
- m_start_Decal1_SDF: 0
+ - m_start_Decal1_SSN: 0
- m_start_Decal2: 0
- m_start_Decal2_CMYK_Warping_Planes: 0
- m_start_Decal2_Domain_Warping: 0
@@ -1763,6 +2030,7 @@ Material:
- m_start_Decal2_Normal: 0
- m_start_Decal2_Reflections: 0
- m_start_Decal2_SDF: 0
+ - m_start_Decal2_SSN: 0
- m_start_Decal3: 0
- m_start_Decal3_CMYK_Warping_Planes: 0
- m_start_Decal3_Domain_Warping: 0
@@ -1772,6 +2040,7 @@ Material:
- m_start_Decal3_Normal: 0
- m_start_Decal3_Reflections: 0
- m_start_Decal3_SDF: 0
+ - m_start_Decal3_SSN: 0
- m_start_Decal4: 0
- m_start_Decal4_CMYK_Warping_Planes: 0
- m_start_Decal4_Domain_Warping: 0
@@ -1781,6 +2050,7 @@ Material:
- m_start_Decal4_Normal: 0
- m_start_Decal4_Reflections: 0
- m_start_Decal4_SDF: 0
+ - m_start_Decal4_SSN: 0
- m_start_Decal5: 0
- m_start_Decal5_CMYK_Warping_Planes: 0
- m_start_Decal5_Domain_Warping: 0
@@ -1790,6 +2060,7 @@ Material:
- m_start_Decal5_Normal: 0
- m_start_Decal5_Reflections: 0
- m_start_Decal5_SDF: 0
+ - m_start_Decal5_SSN: 0
- m_start_Decal6: 0
- m_start_Decal6_CMYK_Warping_Planes: 0
- m_start_Decal6_Domain_Warping: 0
@@ -1799,6 +2070,7 @@ Material:
- m_start_Decal6_Normal: 0
- m_start_Decal6_Reflections: 0
- m_start_Decal6_SDF: 0
+ - m_start_Decal6_SSN: 0
- m_start_Decal7: 0
- m_start_Decal7_CMYK_Warping_Planes: 0
- m_start_Decal7_Domain_Warping: 0
@@ -1808,6 +2080,7 @@ Material:
- m_start_Decal7_Normal: 0
- m_start_Decal7_Reflections: 0
- m_start_Decal7_SDF: 0
+ - m_start_Decal7_SSN: 0
- m_start_Decals: 0
- m_start_Depth_Prepass: 0
- m_start_Detail_Maps: 0
@@ -1824,11 +2097,21 @@ Material:
- m_start_Glitter: 0
- m_start_Glitter_Angle_Limit: 0
- m_start_Glitter_Mask: 0
+ - m_start_Gradient_Normals: 0
+ - m_start_Gradient_Normals_0: 0
+ - m_start_Gradient_Normals_0_Horizontal: 0
+ - m_start_Gradient_Normals_1: 0
+ - m_start_Gradient_Normals_1_Horizontal: 0
+ - m_start_Gradient_Normals_2: 0
+ - m_start_Gradient_Normals_2_Horizontal: 0
+ - m_start_Gradient_Normals_3: 0
+ - m_start_Gradient_Normals_3_Horizontal: 0
- m_start_Grayscale_Lightmaps: 0
- m_start_Harnack_Tracing: 0
- m_start_Harnack_Tracing_Gyroid: 0
- m_start_LTCGI: 0
- m_start_Letter_Grid: 0
+ - m_start_Light_Volumes_Brightness: 0
- m_start_MaskedStencil1PassBackOptions: 0
- m_start_MaskedStencil1PassFrontOptions: 0
- m_start_MaskedStencil2PassBackOptions: 0
@@ -1847,6 +2130,9 @@ Material:
- m_start_Matcap1: 0
- m_start_Matcap1_Mask: 0
- m_start_Matcap1_Quantization: 0
+ - m_start_Matcap2: 0
+ - m_start_Matcap2_Mask: 0
+ - m_start_Matcap2_Quantization: 0
- m_start_Matcaps: 0
- m_start_Material_Type_Cloth: 0
- m_start_Material_Type_Cloth_Subsurface: 0
@@ -1862,6 +2148,7 @@ Material:
- m_start_OutlinesMask: 0
- m_start_Quantize_NoL: 0
- m_start_Quantize_Specular: 0
+ - m_start_Quasi_Shadows: 0
- m_start_Raymarched_Fog: 0
- m_start_Raymarched_Fog_Density_Exponent: 0
- m_start_Raymarched_Fog_Emitter_Texture: 0
@@ -1885,6 +2172,12 @@ Material:
- m_start_Rim_Lighting3_Quantization: 0
- m_start_SSAO: 0
- m_start_SSFD: 0
+ - m_start_Screen_Space_Normals: 0
+ - m_start_Sea_Foam: 0
+ - m_start_Sea_Foam_0: 0
+ - m_start_Sea_Foam_1: 0
+ - m_start_Sea_Foam_2: 0
+ - m_start_Sea_Foam_3: 0
- m_start_Shadow_Casting: 0
- m_start_Shadow_Receiving: 0
- m_start_Shatter_Wave: 0
@@ -1897,8 +2190,17 @@ Material:
- m_start_StencilPassFrontOptions: 0
- m_start_Tessellation: 0
- m_start_Tessellation_Heightmap: 0
+ - m_start_Tessellation_Heightmap_0: 0
+ - m_start_Tessellation_Heightmap_1: 0
+ - m_start_Tessellation_Heightmap_2: 0
+ - m_start_Tessellation_Heightmap_3: 0
+ - m_start_Tessellation_Heightmap_4: 0
+ - m_start_Tessellation_Heightmap_5: 0
+ - m_start_Tessellation_Heightmap_6: 0
+ - m_start_Tessellation_Heightmap_7: 0
- m_start_Tessellation_Heightmap_Direction_Control: 0
- m_start_Tessellation_Range_Factor: 0
+ - m_start_Trochoid: 0
- m_start_UV_Domain_Warping: 0
- m_start_Unigram_Letter_Grid: 0
- m_start_Unlit: 0
@@ -1957,6 +2259,7 @@ Material:
- _Letter_Grid_UV_Scale_Offset: {r: 1, g: 1, b: 0, a: 0}
- _MetalReflectionTint: {r: 1, g: 1, b: 1, a: 1}
- _Outline_Color: {r: 0, g: 0, b: 0, a: 1}
+ - _Quasi_Shadows_0_Color: {r: 1, g: 1, b: 1, a: 1}
- _Raymarched_Fog_Color: {r: 0.29999998, g: 0.29999998, b: 0.29999998, a: 1}
- _Raymarched_Fog_Density_Noise_Scale: {r: 1, g: 1, b: 1, a: 0}
- _Raymarched_Fog_Emitter_Texture_World_Normal: {r: 0, g: 0, b: 0, a: 0}
@@ -1973,6 +2276,7 @@ Material:
- _Rim_Lighting2_Color: {r: 1, g: 1, b: 1, a: 1}
- _Rim_Lighting3_Angle_Limit_Target_Vector: {r: 0, g: -1, b: 0, a: 0}
- _Rim_Lighting3_Color: {r: 1, g: 1, b: 1, a: 1}
+ - _Sea_Foam_Color: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Amplitude: {r: 0.4, g: 0.4, b: 0.4, a: 0.4}
- _Shatter_Wave_Chronotensity_Time_Factor: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Chronotensity_Weights0: {r: 0, g: 0, b: 0, a: 0}
diff --git a/Materials/Filament calibration/Mat13.mat b/Materials/Filament calibration/Mat13.mat
index 955e46b..c8b4fdb 100644
--- a/Materials/Filament calibration/Mat13.mat
+++ b/Materials/Filament calibration/Mat13.mat
@@ -14,10 +14,12 @@ Material:
m_ValidKeywords:
- _CAST_SHADOWS
- _CLEARCOAT
+ - _CLEARCOAT_GEOMETRIC_NORMALS
- _METALLICS
- _RECEIVE_SHADOWS
+ m_InvalidKeywords:
+ - _LIGHT_VOLUMES_BRIGHTNESS_ENABLED_DYNAMIC_ON
- _SPHERICAL_HARMONICS_L1
- m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
@@ -36,6 +38,10 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Clearcoat_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Cloth_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -268,6 +274,38 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Letter_Grid_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -312,6 +350,14 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Matcap2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Matcap2_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -368,6 +414,22 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_0_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_1_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_2_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_3_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _SmoothnessMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -376,6 +438,42 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_0:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_1:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_3:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_4:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_5:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_6:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_7:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Trochoid_Color_Ramp:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _UV_Domain_Warping_Noise:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -422,6 +520,7 @@ Material:
- _BumpScale: 1
- _Cast_Shadows_Enabled: 1
- _Clearcoat_Enabled: 1
+ - _Clearcoat_Geometric_Normals_Enabled: 1
- _Clearcoat_Roughness: 0.089
- _Clearcoat_Strength: 1
- _Clip: 0.5
@@ -446,6 +545,7 @@ Material:
- _Custom30_ro_Offset: 0
- _Cutoff: 0.5
- _Decal0_Angle: 0
+ - _Decal0_Bias: 0
- _Decal0_CMYK_Warping_Planes_Enabled: 0
- _Decal0_CMYK_Warping_Planes_Scale: 0.1
- _Decal0_CMYK_Warping_Planes_Speed: 1
@@ -462,23 +562,30 @@ Material:
- _Decal0_Emissions_Proximity_Max_Distance: 1
- _Decal0_Emissions_Proximity_Min_Distance: 0
- _Decal0_Enabled: 0
+ - _Decal0_Invert_Blend_Order: 0
- _Decal0_Mask_Enabled: 0
- _Decal0_Metallic: 0
- _Decal0_Normal_Enabled: 0
- _Decal0_Normal_Scale: 1
- _Decal0_Opacity: 1
+ - _Decal0_Reflections_Alpha_Blend: 0
- _Decal0_Reflections_Enabled: 0
- _Decal0_Replace_Alpha_Mode: 0
- _Decal0_Replace_Multiply_Mode: 0
- _Decal0_SDF_Enabled: 0
- _Decal0_SDF_Invert: 0
- _Decal0_SDF_Px_Range: 2
+ - _Decal0_SDF_SSN_Enabled: 0
+ - _Decal0_SDF_SSN_Only: 0
+ - _Decal0_SDF_SSN_Replace: 0
+ - _Decal0_SDF_SSN_Strength: 1
- _Decal0_SDF_Softness: 0.01
- _Decal0_SDF_Threshold: 0.5
- _Decal0_Smoothness: 0.5
- _Decal0_Tiling_Mode: 0
- _Decal0_UV_Channel: 0
- _Decal1_Angle: 0
+ - _Decal1_Bias: 0
- _Decal1_CMYK_Warping_Planes_Enabled: 0
- _Decal1_CMYK_Warping_Planes_Scale: 0.1
- _Decal1_CMYK_Warping_Planes_Speed: 1
@@ -495,23 +602,30 @@ Material:
- _Decal1_Emissions_Proximity_Max_Distance: 1
- _Decal1_Emissions_Proximity_Min_Distance: 0
- _Decal1_Enabled: 0
+ - _Decal1_Invert_Blend_Order: 0
- _Decal1_Mask_Enabled: 0
- _Decal1_Metallic: 0
- _Decal1_Normal_Enabled: 0
- _Decal1_Normal_Scale: 1
- _Decal1_Opacity: 1
+ - _Decal1_Reflections_Alpha_Blend: 0
- _Decal1_Reflections_Enabled: 0
- _Decal1_Replace_Alpha_Mode: 0
- _Decal1_Replace_Multiply_Mode: 0
- _Decal1_SDF_Enabled: 0
- _Decal1_SDF_Invert: 0
- _Decal1_SDF_Px_Range: 2
+ - _Decal1_SDF_SSN_Enabled: 0
+ - _Decal1_SDF_SSN_Only: 0
+ - _Decal1_SDF_SSN_Replace: 0
+ - _Decal1_SDF_SSN_Strength: 1
- _Decal1_SDF_Softness: 0.01
- _Decal1_SDF_Threshold: 0.5
- _Decal1_Smoothness: 0.5
- _Decal1_Tiling_Mode: 0
- _Decal1_UV_Channel: 0
- _Decal2_Angle: 0
+ - _Decal2_Bias: 0
- _Decal2_CMYK_Warping_Planes_Enabled: 0
- _Decal2_CMYK_Warping_Planes_Scale: 0.1
- _Decal2_CMYK_Warping_Planes_Speed: 1
@@ -528,23 +642,30 @@ Material:
- _Decal2_Emissions_Proximity_Max_Distance: 1
- _Decal2_Emissions_Proximity_Min_Distance: 0
- _Decal2_Enabled: 0
+ - _Decal2_Invert_Blend_Order: 0
- _Decal2_Mask_Enabled: 0
- _Decal2_Metallic: 0
- _Decal2_Normal_Enabled: 0
- _Decal2_Normal_Scale: 1
- _Decal2_Opacity: 1
+ - _Decal2_Reflections_Alpha_Blend: 0
- _Decal2_Reflections_Enabled: 0
- _Decal2_Replace_Alpha_Mode: 0
- _Decal2_Replace_Multiply_Mode: 0
- _Decal2_SDF_Enabled: 0
- _Decal2_SDF_Invert: 0
- _Decal2_SDF_Px_Range: 2
+ - _Decal2_SDF_SSN_Enabled: 0
+ - _Decal2_SDF_SSN_Only: 0
+ - _Decal2_SDF_SSN_Replace: 0
+ - _Decal2_SDF_SSN_Strength: 1
- _Decal2_SDF_Softness: 0.01
- _Decal2_SDF_Threshold: 0.5
- _Decal2_Smoothness: 0.5
- _Decal2_Tiling_Mode: 0
- _Decal2_UV_Channel: 0
- _Decal3_Angle: 0
+ - _Decal3_Bias: 0
- _Decal3_CMYK_Warping_Planes_Enabled: 0
- _Decal3_CMYK_Warping_Planes_Scale: 0.1
- _Decal3_CMYK_Warping_Planes_Speed: 1
@@ -561,23 +682,30 @@ Material:
- _Decal3_Emissions_Proximity_Max_Distance: 1
- _Decal3_Emissions_Proximity_Min_Distance: 0
- _Decal3_Enabled: 0
+ - _Decal3_Invert_Blend_Order: 0
- _Decal3_Mask_Enabled: 0
- _Decal3_Metallic: 0
- _Decal3_Normal_Enabled: 0
- _Decal3_Normal_Scale: 1
- _Decal3_Opacity: 1
+ - _Decal3_Reflections_Alpha_Blend: 0
- _Decal3_Reflections_Enabled: 0
- _Decal3_Replace_Alpha_Mode: 0
- _Decal3_Replace_Multiply_Mode: 0
- _Decal3_SDF_Enabled: 0
- _Decal3_SDF_Invert: 0
- _Decal3_SDF_Px_Range: 2
+ - _Decal3_SDF_SSN_Enabled: 0
+ - _Decal3_SDF_SSN_Only: 0
+ - _Decal3_SDF_SSN_Replace: 0
+ - _Decal3_SDF_SSN_Strength: 1
- _Decal3_SDF_Softness: 0.01
- _Decal3_SDF_Threshold: 0.5
- _Decal3_Smoothness: 0.5
- _Decal3_Tiling_Mode: 0
- _Decal3_UV_Channel: 0
- _Decal4_Angle: 0
+ - _Decal4_Bias: 0
- _Decal4_CMYK_Warping_Planes_Enabled: 0
- _Decal4_CMYK_Warping_Planes_Scale: 0.1
- _Decal4_CMYK_Warping_Planes_Speed: 1
@@ -594,23 +722,30 @@ Material:
- _Decal4_Emissions_Proximity_Max_Distance: 1
- _Decal4_Emissions_Proximity_Min_Distance: 0
- _Decal4_Enabled: 0
+ - _Decal4_Invert_Blend_Order: 0
- _Decal4_Mask_Enabled: 0
- _Decal4_Metallic: 0
- _Decal4_Normal_Enabled: 0
- _Decal4_Normal_Scale: 1
- _Decal4_Opacity: 1
+ - _Decal4_Reflections_Alpha_Blend: 0
- _Decal4_Reflections_Enabled: 0
- _Decal4_Replace_Alpha_Mode: 0
- _Decal4_Replace_Multiply_Mode: 0
- _Decal4_SDF_Enabled: 0
- _Decal4_SDF_Invert: 0
- _Decal4_SDF_Px_Range: 2
+ - _Decal4_SDF_SSN_Enabled: 0
+ - _Decal4_SDF_SSN_Only: 0
+ - _Decal4_SDF_SSN_Replace: 0
+ - _Decal4_SDF_SSN_Strength: 1
- _Decal4_SDF_Softness: 0.01
- _Decal4_SDF_Threshold: 0.5
- _Decal4_Smoothness: 0.5
- _Decal4_Tiling_Mode: 0
- _Decal4_UV_Channel: 0
- _Decal5_Angle: 0
+ - _Decal5_Bias: 0
- _Decal5_CMYK_Warping_Planes_Enabled: 0
- _Decal5_CMYK_Warping_Planes_Scale: 0.1
- _Decal5_CMYK_Warping_Planes_Speed: 1
@@ -627,23 +762,30 @@ Material:
- _Decal5_Emissions_Proximity_Max_Distance: 1
- _Decal5_Emissions_Proximity_Min_Distance: 0
- _Decal5_Enabled: 0
+ - _Decal5_Invert_Blend_Order: 0
- _Decal5_Mask_Enabled: 0
- _Decal5_Metallic: 0
- _Decal5_Normal_Enabled: 0
- _Decal5_Normal_Scale: 1
- _Decal5_Opacity: 1
+ - _Decal5_Reflections_Alpha_Blend: 0
- _Decal5_Reflections_Enabled: 0
- _Decal5_Replace_Alpha_Mode: 0
- _Decal5_Replace_Multiply_Mode: 0
- _Decal5_SDF_Enabled: 0
- _Decal5_SDF_Invert: 0
- _Decal5_SDF_Px_Range: 2
+ - _Decal5_SDF_SSN_Enabled: 0
+ - _Decal5_SDF_SSN_Only: 0
+ - _Decal5_SDF_SSN_Replace: 0
+ - _Decal5_SDF_SSN_Strength: 1
- _Decal5_SDF_Softness: 0.01
- _Decal5_SDF_Threshold: 0.5
- _Decal5_Smoothness: 0.5
- _Decal5_Tiling_Mode: 0
- _Decal5_UV_Channel: 0
- _Decal6_Angle: 0
+ - _Decal6_Bias: 0
- _Decal6_CMYK_Warping_Planes_Enabled: 0
- _Decal6_CMYK_Warping_Planes_Scale: 0.1
- _Decal6_CMYK_Warping_Planes_Speed: 1
@@ -660,23 +802,30 @@ Material:
- _Decal6_Emissions_Proximity_Max_Distance: 1
- _Decal6_Emissions_Proximity_Min_Distance: 0
- _Decal6_Enabled: 0
+ - _Decal6_Invert_Blend_Order: 0
- _Decal6_Mask_Enabled: 0
- _Decal6_Metallic: 0
- _Decal6_Normal_Enabled: 0
- _Decal6_Normal_Scale: 1
- _Decal6_Opacity: 1
+ - _Decal6_Reflections_Alpha_Blend: 0
- _Decal6_Reflections_Enabled: 0
- _Decal6_Replace_Alpha_Mode: 0
- _Decal6_Replace_Multiply_Mode: 0
- _Decal6_SDF_Enabled: 0
- _Decal6_SDF_Invert: 0
- _Decal6_SDF_Px_Range: 2
+ - _Decal6_SDF_SSN_Enabled: 0
+ - _Decal6_SDF_SSN_Only: 0
+ - _Decal6_SDF_SSN_Replace: 0
+ - _Decal6_SDF_SSN_Strength: 1
- _Decal6_SDF_Softness: 0.01
- _Decal6_SDF_Threshold: 0.5
- _Decal6_Smoothness: 0.5
- _Decal6_Tiling_Mode: 0
- _Decal6_UV_Channel: 0
- _Decal7_Angle: 0
+ - _Decal7_Bias: 0
- _Decal7_CMYK_Warping_Planes_Enabled: 0
- _Decal7_CMYK_Warping_Planes_Scale: 0.1
- _Decal7_CMYK_Warping_Planes_Speed: 1
@@ -693,17 +842,23 @@ Material:
- _Decal7_Emissions_Proximity_Max_Distance: 1
- _Decal7_Emissions_Proximity_Min_Distance: 0
- _Decal7_Enabled: 0
+ - _Decal7_Invert_Blend_Order: 0
- _Decal7_Mask_Enabled: 0
- _Decal7_Metallic: 0
- _Decal7_Normal_Enabled: 0
- _Decal7_Normal_Scale: 1
- _Decal7_Opacity: 1
+ - _Decal7_Reflections_Alpha_Blend: 0
- _Decal7_Reflections_Enabled: 0
- _Decal7_Replace_Alpha_Mode: 0
- _Decal7_Replace_Multiply_Mode: 0
- _Decal7_SDF_Enabled: 0
- _Decal7_SDF_Invert: 0
- _Decal7_SDF_Px_Range: 2
+ - _Decal7_SDF_SSN_Enabled: 0
+ - _Decal7_SDF_SSN_Only: 0
+ - _Decal7_SDF_SSN_Replace: 0
+ - _Decal7_SDF_SSN_Strength: 1
- _Decal7_SDF_Softness: 0.01
- _Decal7_SDF_Threshold: 0.5
- _Decal7_Smoothness: 0.5
@@ -712,6 +867,7 @@ Material:
- _Depth_Prepass_Enabled: 0
- _DetailNormalMapScale: 1
- _Detail_Maps_Enabled: 0
+ - _Detail_Maps_UV_Channel: 0
- _DstBlend: 0
- _DstBlendAlpha: 10
- _Emission_Enabled: 0
@@ -768,9 +924,19 @@ Material:
- _Glitter_Mask_Enabled: 0
- _Glitter_Size: 1
- _Glitter_Size_Randomization_Range: 0.4
+ - _Glitter_UV_Channel: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
+ - _Gradient_Normals_0_Horizontal_Enabled: 0
+ - _Gradient_Normals_0_Vertical_Enabled: 0
+ - _Gradient_Normals_1_Horizontal_Enabled: 0
+ - _Gradient_Normals_1_Vertical_Enabled: 0
+ - _Gradient_Normals_2_Horizontal_Enabled: 0
+ - _Gradient_Normals_2_Vertical_Enabled: 0
+ - _Gradient_Normals_3_Horizontal_Enabled: 0
+ - _Gradient_Normals_3_Vertical_Enabled: 0
+ - _Gradient_Normals_Enabled: 0
- _Grayscale_Lightmaps_Enabled: 0
- _Harnack_Tracing_Enabled: 0
- _Harnack_Tracing_Gyroid_Enabled: 0
@@ -793,6 +959,9 @@ Material:
- _Letter_Grid_Screen_Px_Range: 10
- _Letter_Grid_Tex_Res_X: 16
- _Letter_Grid_Tex_Res_Y: 8
+ - _Light_Volumes_Brightness: 1
+ - _Light_Volumes_Brightness_Enabled: 0
+ - _Light_Volumes_Brightness_Enabled_Dynamic: 1
- _MaskedStencil1BackCompareFunction: 8
- _MaskedStencil1BackFailOp: 0
- _MaskedStencil1BackPassOp: 0
@@ -873,6 +1042,14 @@ Material:
- _Matcap1_Quantization_Steps: 1
- _Matcap1_Strength: 1
- _Matcap1_Target_Mask: 1
+ - _Matcap2_Enabled: 0
+ - _Matcap2_Invert: 0
+ - _Matcap2_Mask_Enabled: 0
+ - _Matcap2_Mode: 0
+ - _Matcap2_Quantization_Enabled: 0
+ - _Matcap2_Quantization_Steps: 1
+ - _Matcap2_Strength: 1
+ - _Matcap2_Target_Mask: 1
- _Material_Type_Cloth_Enabled: 0
- _Material_Type_Cloth_Subsurface: 0
- _Metallic: 1
@@ -924,6 +1101,9 @@ Material:
- _Quantize_NoL_Steps: 1
- _Quantize_Specular_Enabled: 0
- _Quantize_Specular_Steps: 1
+ - _Quasi_Shadows_0_Threshold: 0.5
+ - _Quasi_Shadows_0_Width: 0.1
+ - _Quasi_Shadows_Enabled: 0
- _Raymarched_Fog_Albedo: 1
- _Raymarched_Fog_Density_Exponent: 1
- _Raymarched_Fog_Density_Exponent_Enabled: 0
@@ -1005,6 +1185,17 @@ Material:
- _SSFD_Threshold: 0.5
- _SampleWorld: 0
- _Saturation: 0
+ - _Screen_Space_Normals_Enabled: 0
+ - _Sea_Foam_0_Enabled: 0
+ - _Sea_Foam_1_Enabled: 0
+ - _Sea_Foam_2_Enabled: 0
+ - _Sea_Foam_3_Enabled: 0
+ - _Sea_Foam_Bias: 0
+ - _Sea_Foam_Enabled: 0
+ - _Sea_Foam_Factor: 1
+ - _Sea_Foam_Lambda: 1
+ - _Sea_Foam_Power: 1
+ - _Sea_Foam_Roughness: 0.85
- _ShaderOptimizerEnabled: 0
- _Shadow_Strength: 0.25
- _Shatter_Wave_Audiolink_Enabled: 0
@@ -1043,16 +1234,53 @@ Material:
- _Stencil_Enabled: 0
- _Tessellation_Enabled: 0
- _Tessellation_Factor: 1
+ - _Tessellation_Falloff_Factor: 1
+ - _Tessellation_Frustum_Culling_Bias: 35
+ - _Tessellation_Heightmap_0_Enabled: 0
+ - _Tessellation_Heightmap_0_Offset: 0
+ - _Tessellation_Heightmap_0_Scale: 1
+ - _Tessellation_Heightmap_1_Enabled: 0
+ - _Tessellation_Heightmap_1_Offset: 0
+ - _Tessellation_Heightmap_1_Scale: 1
+ - _Tessellation_Heightmap_2_Enabled: 0
+ - _Tessellation_Heightmap_2_Offset: 0
+ - _Tessellation_Heightmap_2_Scale: 1
+ - _Tessellation_Heightmap_3_Enabled: 0
+ - _Tessellation_Heightmap_3_Offset: 0
+ - _Tessellation_Heightmap_3_Scale: 1
+ - _Tessellation_Heightmap_4_Enabled: 0
+ - _Tessellation_Heightmap_4_Offset: 0
+ - _Tessellation_Heightmap_4_Scale: 1
+ - _Tessellation_Heightmap_5_Enabled: 0
+ - _Tessellation_Heightmap_5_Offset: 0
+ - _Tessellation_Heightmap_5_Scale: 1
+ - _Tessellation_Heightmap_6_Enabled: 0
+ - _Tessellation_Heightmap_6_Offset: 0
+ - _Tessellation_Heightmap_6_Scale: 1
+ - _Tessellation_Heightmap_7_Enabled: 0
+ - _Tessellation_Heightmap_7_Offset: 0
+ - _Tessellation_Heightmap_7_Scale: 1
- _Tessellation_Heightmap_Direction_Control_Enabled: 0
- _Tessellation_Heightmap_Enabled: 0
- _Tessellation_Heightmap_Offset: 0
- _Tessellation_Heightmap_Scale: 1
+ - _Tessellation_Heightmap_World_Space_Enabled: 0
- _Tessellation_Range_Factor_Distance_Far: 1
- _Tessellation_Range_Factor_Distance_Near: 1
- _Tessellation_Range_Factor_Enabled: 0
- _Tessellation_Range_Factor_Factor_Far: 1
- _Tessellation_Range_Factor_Factor_Near: 1
- _Tessellation_Range_Factor_Help: 0
+ - _Trochoid_Enabled: 0
+ - _Trochoid_R: 1
+ - _Trochoid_X_Scale: 1
+ - _Trochoid_Y_Scale: 1
+ - _Trochoid_Z_Scale: 1
+ - _Trochoid_d: 1
+ - _Trochoid_r: 1
+ - _Trochoid_r_Power: 1
+ - _Trochoid_t_k: 1
+ - _Trochoid_theta_k: 1
- _UVSec: 0
- _UV_Domain_Warping_Enabled: 0
- _UV_Domain_Warping_Spatial_Octaves: 1
@@ -1555,6 +1783,7 @@ Material:
- m_end_Decal0_Normal: 0
- m_end_Decal0_Reflections: 0
- m_end_Decal0_SDF: 0
+ - m_end_Decal0_SSN: 0
- m_end_Decal1: 0
- m_end_Decal1_CMYK_Warping_Planes: 0
- m_end_Decal1_Domain_Warping: 0
@@ -1564,6 +1793,7 @@ Material:
- m_end_Decal1_Normal: 0
- m_end_Decal1_Reflections: 0
- m_end_Decal1_SDF: 0
+ - m_end_Decal1_SSN: 0
- m_end_Decal2: 0
- m_end_Decal2_CMYK_Warping_Planes: 0
- m_end_Decal2_Domain_Warping: 0
@@ -1573,6 +1803,7 @@ Material:
- m_end_Decal2_Normal: 0
- m_end_Decal2_Reflections: 0
- m_end_Decal2_SDF: 0
+ - m_end_Decal2_SSN: 0
- m_end_Decal3: 0
- m_end_Decal3_CMYK_Warping_Planes: 0
- m_end_Decal3_Domain_Warping: 0
@@ -1582,6 +1813,7 @@ Material:
- m_end_Decal3_Normal: 0
- m_end_Decal3_Reflections: 0
- m_end_Decal3_SDF: 0
+ - m_end_Decal3_SSN: 0
- m_end_Decal4: 0
- m_end_Decal4_CMYK_Warping_Planes: 0
- m_end_Decal4_Domain_Warping: 0
@@ -1591,6 +1823,7 @@ Material:
- m_end_Decal4_Normal: 0
- m_end_Decal4_Reflections: 0
- m_end_Decal4_SDF: 0
+ - m_end_Decal4_SSN: 0
- m_end_Decal5: 0
- m_end_Decal5_CMYK_Warping_Planes: 0
- m_end_Decal5_Domain_Warping: 0
@@ -1600,6 +1833,7 @@ Material:
- m_end_Decal5_Normal: 0
- m_end_Decal5_Reflections: 0
- m_end_Decal5_SDF: 0
+ - m_end_Decal5_SSN: 0
- m_end_Decal6: 0
- m_end_Decal6_CMYK_Warping_Planes: 0
- m_end_Decal6_Domain_Warping: 0
@@ -1609,6 +1843,7 @@ Material:
- m_end_Decal6_Normal: 0
- m_end_Decal6_Reflections: 0
- m_end_Decal6_SDF: 0
+ - m_end_Decal6_SSN: 0
- m_end_Decal7: 0
- m_end_Decal7_CMYK_Warping_Planes: 0
- m_end_Decal7_Domain_Warping: 0
@@ -1618,6 +1853,7 @@ Material:
- m_end_Decal7_Normal: 0
- m_end_Decal7_Reflections: 0
- m_end_Decal7_SDF: 0
+ - m_end_Decal7_SSN: 0
- m_end_Decals: 0
- m_end_Depth_Prepass: 0
- m_end_Detail_Maps: 0
@@ -1634,11 +1870,21 @@ Material:
- m_end_Glitter: 0
- m_end_Glitter_Angle_Limit: 0
- m_end_Glitter_Mask: 0
+ - m_end_Gradient_Normals: 0
+ - m_end_Gradient_Normals_0: 0
+ - m_end_Gradient_Normals_0_Horizontal: 0
+ - m_end_Gradient_Normals_1: 0
+ - m_end_Gradient_Normals_1_Horizontal: 0
+ - m_end_Gradient_Normals_2: 0
+ - m_end_Gradient_Normals_2_Horizontal: 0
+ - m_end_Gradient_Normals_3: 0
+ - m_end_Gradient_Normals_3_Horizontal: 0
- m_end_Grayscale_Lightmaps: 0
- m_end_Harnack_Tracing: 0
- m_end_Harnack_Tracing_Gyroid: 0
- m_end_LTCGI: 0
- m_end_Letter_Grid: 0
+ - m_end_Light_Volumes_Brightness: 0
- m_end_MaskedStencil1PassBackOptions: 0
- m_end_MaskedStencil1PassFrontOptions: 0
- m_end_MaskedStencil2PassBackOptions: 0
@@ -1657,6 +1903,9 @@ Material:
- m_end_Matcap1: 0
- m_end_Matcap1_Mask: 0
- m_end_Matcap1_Quantization: 0
+ - m_end_Matcap2: 0
+ - m_end_Matcap2_Mask: 0
+ - m_end_Matcap2_Quantization: 0
- m_end_Matcaps: 0
- m_end_Material_Type_Cloth: 0
- m_end_Material_Type_Cloth_Subsurface: 0
@@ -1672,6 +1921,7 @@ Material:
- m_end_OutlinesMask: 0
- m_end_Quantize_NoL: 0
- m_end_Quantize_Specular: 0
+ - m_end_Quasi_Shadows: 0
- m_end_Raymarched_Fog: 0
- m_end_Raymarched_Fog_Density_Exponent: 0
- m_end_Raymarched_Fog_Emitter_Texture: 0
@@ -1695,6 +1945,12 @@ Material:
- m_end_Rim_Lighting3_Quantization: 0
- m_end_SSAO: 0
- m_end_SSFD: 0
+ - m_end_Screen_Space_Normals: 0
+ - m_end_Sea_Foam: 0
+ - m_end_Sea_Foam_0: 0
+ - m_end_Sea_Foam_1: 0
+ - m_end_Sea_Foam_2: 0
+ - m_end_Sea_Foam_3: 0
- m_end_Shadow_Casting: 0
- m_end_Shadow_Receiving: 0
- m_end_Shatter_Wave: 0
@@ -1707,8 +1963,17 @@ Material:
- m_end_StencilPassFrontOptions: 0
- m_end_Tessellation: 0
- m_end_Tessellation_Heightmap: 0
+ - m_end_Tessellation_Heightmap_0: 0
+ - m_end_Tessellation_Heightmap_1: 0
+ - m_end_Tessellation_Heightmap_2: 0
+ - m_end_Tessellation_Heightmap_3: 0
+ - m_end_Tessellation_Heightmap_4: 0
+ - m_end_Tessellation_Heightmap_5: 0
+ - m_end_Tessellation_Heightmap_6: 0
+ - m_end_Tessellation_Heightmap_7: 0
- m_end_Tessellation_Heightmap_Direction_Control: 0
- m_end_Tessellation_Range_Factor: 0
+ - m_end_Trochoid: 0
- m_end_UV_Domain_Warping: 0
- m_end_Unigram_Letter_Grid: 0
- m_end_Unlit: 0
@@ -1745,6 +2010,7 @@ Material:
- m_start_Decal0_Normal: 0
- m_start_Decal0_Reflections: 0
- m_start_Decal0_SDF: 0
+ - m_start_Decal0_SSN: 0
- m_start_Decal1: 0
- m_start_Decal1_CMYK_Warping_Planes: 0
- m_start_Decal1_Domain_Warping: 0
@@ -1754,6 +2020,7 @@ Material:
- m_start_Decal1_Normal: 0
- m_start_Decal1_Reflections: 0
- m_start_Decal1_SDF: 0
+ - m_start_Decal1_SSN: 0
- m_start_Decal2: 0
- m_start_Decal2_CMYK_Warping_Planes: 0
- m_start_Decal2_Domain_Warping: 0
@@ -1763,6 +2030,7 @@ Material:
- m_start_Decal2_Normal: 0
- m_start_Decal2_Reflections: 0
- m_start_Decal2_SDF: 0
+ - m_start_Decal2_SSN: 0
- m_start_Decal3: 0
- m_start_Decal3_CMYK_Warping_Planes: 0
- m_start_Decal3_Domain_Warping: 0
@@ -1772,6 +2040,7 @@ Material:
- m_start_Decal3_Normal: 0
- m_start_Decal3_Reflections: 0
- m_start_Decal3_SDF: 0
+ - m_start_Decal3_SSN: 0
- m_start_Decal4: 0
- m_start_Decal4_CMYK_Warping_Planes: 0
- m_start_Decal4_Domain_Warping: 0
@@ -1781,6 +2050,7 @@ Material:
- m_start_Decal4_Normal: 0
- m_start_Decal4_Reflections: 0
- m_start_Decal4_SDF: 0
+ - m_start_Decal4_SSN: 0
- m_start_Decal5: 0
- m_start_Decal5_CMYK_Warping_Planes: 0
- m_start_Decal5_Domain_Warping: 0
@@ -1790,6 +2060,7 @@ Material:
- m_start_Decal5_Normal: 0
- m_start_Decal5_Reflections: 0
- m_start_Decal5_SDF: 0
+ - m_start_Decal5_SSN: 0
- m_start_Decal6: 0
- m_start_Decal6_CMYK_Warping_Planes: 0
- m_start_Decal6_Domain_Warping: 0
@@ -1799,6 +2070,7 @@ Material:
- m_start_Decal6_Normal: 0
- m_start_Decal6_Reflections: 0
- m_start_Decal6_SDF: 0
+ - m_start_Decal6_SSN: 0
- m_start_Decal7: 0
- m_start_Decal7_CMYK_Warping_Planes: 0
- m_start_Decal7_Domain_Warping: 0
@@ -1808,6 +2080,7 @@ Material:
- m_start_Decal7_Normal: 0
- m_start_Decal7_Reflections: 0
- m_start_Decal7_SDF: 0
+ - m_start_Decal7_SSN: 0
- m_start_Decals: 0
- m_start_Depth_Prepass: 0
- m_start_Detail_Maps: 0
@@ -1824,11 +2097,21 @@ Material:
- m_start_Glitter: 0
- m_start_Glitter_Angle_Limit: 0
- m_start_Glitter_Mask: 0
+ - m_start_Gradient_Normals: 0
+ - m_start_Gradient_Normals_0: 0
+ - m_start_Gradient_Normals_0_Horizontal: 0
+ - m_start_Gradient_Normals_1: 0
+ - m_start_Gradient_Normals_1_Horizontal: 0
+ - m_start_Gradient_Normals_2: 0
+ - m_start_Gradient_Normals_2_Horizontal: 0
+ - m_start_Gradient_Normals_3: 0
+ - m_start_Gradient_Normals_3_Horizontal: 0
- m_start_Grayscale_Lightmaps: 0
- m_start_Harnack_Tracing: 0
- m_start_Harnack_Tracing_Gyroid: 0
- m_start_LTCGI: 0
- m_start_Letter_Grid: 0
+ - m_start_Light_Volumes_Brightness: 0
- m_start_MaskedStencil1PassBackOptions: 0
- m_start_MaskedStencil1PassFrontOptions: 0
- m_start_MaskedStencil2PassBackOptions: 0
@@ -1847,6 +2130,9 @@ Material:
- m_start_Matcap1: 0
- m_start_Matcap1_Mask: 0
- m_start_Matcap1_Quantization: 0
+ - m_start_Matcap2: 0
+ - m_start_Matcap2_Mask: 0
+ - m_start_Matcap2_Quantization: 0
- m_start_Matcaps: 0
- m_start_Material_Type_Cloth: 0
- m_start_Material_Type_Cloth_Subsurface: 0
@@ -1862,6 +2148,7 @@ Material:
- m_start_OutlinesMask: 0
- m_start_Quantize_NoL: 0
- m_start_Quantize_Specular: 0
+ - m_start_Quasi_Shadows: 0
- m_start_Raymarched_Fog: 0
- m_start_Raymarched_Fog_Density_Exponent: 0
- m_start_Raymarched_Fog_Emitter_Texture: 0
@@ -1885,6 +2172,12 @@ Material:
- m_start_Rim_Lighting3_Quantization: 0
- m_start_SSAO: 0
- m_start_SSFD: 0
+ - m_start_Screen_Space_Normals: 0
+ - m_start_Sea_Foam: 0
+ - m_start_Sea_Foam_0: 0
+ - m_start_Sea_Foam_1: 0
+ - m_start_Sea_Foam_2: 0
+ - m_start_Sea_Foam_3: 0
- m_start_Shadow_Casting: 0
- m_start_Shadow_Receiving: 0
- m_start_Shatter_Wave: 0
@@ -1897,8 +2190,17 @@ Material:
- m_start_StencilPassFrontOptions: 0
- m_start_Tessellation: 0
- m_start_Tessellation_Heightmap: 0
+ - m_start_Tessellation_Heightmap_0: 0
+ - m_start_Tessellation_Heightmap_1: 0
+ - m_start_Tessellation_Heightmap_2: 0
+ - m_start_Tessellation_Heightmap_3: 0
+ - m_start_Tessellation_Heightmap_4: 0
+ - m_start_Tessellation_Heightmap_5: 0
+ - m_start_Tessellation_Heightmap_6: 0
+ - m_start_Tessellation_Heightmap_7: 0
- m_start_Tessellation_Heightmap_Direction_Control: 0
- m_start_Tessellation_Range_Factor: 0
+ - m_start_Trochoid: 0
- m_start_UV_Domain_Warping: 0
- m_start_Unigram_Letter_Grid: 0
- m_start_Unlit: 0
@@ -1957,6 +2259,7 @@ Material:
- _Letter_Grid_UV_Scale_Offset: {r: 1, g: 1, b: 0, a: 0}
- _MetalReflectionTint: {r: 1, g: 1, b: 1, a: 1}
- _Outline_Color: {r: 0, g: 0, b: 0, a: 1}
+ - _Quasi_Shadows_0_Color: {r: 1, g: 1, b: 1, a: 1}
- _Raymarched_Fog_Color: {r: 0.29999998, g: 0.29999998, b: 0.29999998, a: 1}
- _Raymarched_Fog_Density_Noise_Scale: {r: 1, g: 1, b: 1, a: 0}
- _Raymarched_Fog_Emitter_Texture_World_Normal: {r: 0, g: 0, b: 0, a: 0}
@@ -1973,6 +2276,7 @@ Material:
- _Rim_Lighting2_Color: {r: 1, g: 1, b: 1, a: 1}
- _Rim_Lighting3_Angle_Limit_Target_Vector: {r: 0, g: -1, b: 0, a: 0}
- _Rim_Lighting3_Color: {r: 1, g: 1, b: 1, a: 1}
+ - _Sea_Foam_Color: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Amplitude: {r: 0.4, g: 0.4, b: 0.4, a: 0.4}
- _Shatter_Wave_Chronotensity_Time_Factor: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Chronotensity_Weights0: {r: 0, g: 0, b: 0, a: 0}
diff --git a/Materials/Filament calibration/Mat14.mat b/Materials/Filament calibration/Mat14.mat
index 80c2137..455fb92 100644
--- a/Materials/Filament calibration/Mat14.mat
+++ b/Materials/Filament calibration/Mat14.mat
@@ -14,10 +14,12 @@ Material:
m_ValidKeywords:
- _CAST_SHADOWS
- _CLEARCOAT
+ - _CLEARCOAT_GEOMETRIC_NORMALS
- _METALLICS
- _RECEIVE_SHADOWS
+ m_InvalidKeywords:
+ - _LIGHT_VOLUMES_BRIGHTNESS_ENABLED_DYNAMIC_ON
- _SPHERICAL_HARMONICS_L1
- m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
@@ -36,6 +38,10 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Clearcoat_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Cloth_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -268,6 +274,38 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Letter_Grid_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -312,6 +350,14 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Matcap2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Matcap2_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -368,6 +414,22 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_0_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_1_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_2_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_3_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _SmoothnessMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -376,6 +438,42 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_0:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_1:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_3:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_4:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_5:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_6:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_7:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Trochoid_Color_Ramp:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _UV_Domain_Warping_Noise:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -422,6 +520,7 @@ Material:
- _BumpScale: 1
- _Cast_Shadows_Enabled: 1
- _Clearcoat_Enabled: 1
+ - _Clearcoat_Geometric_Normals_Enabled: 1
- _Clearcoat_Roughness: 0.089
- _Clearcoat_Strength: 1
- _Clip: 0.5
@@ -446,6 +545,7 @@ Material:
- _Custom30_ro_Offset: 0
- _Cutoff: 0.5
- _Decal0_Angle: 0
+ - _Decal0_Bias: 0
- _Decal0_CMYK_Warping_Planes_Enabled: 0
- _Decal0_CMYK_Warping_Planes_Scale: 0.1
- _Decal0_CMYK_Warping_Planes_Speed: 1
@@ -462,23 +562,30 @@ Material:
- _Decal0_Emissions_Proximity_Max_Distance: 1
- _Decal0_Emissions_Proximity_Min_Distance: 0
- _Decal0_Enabled: 0
+ - _Decal0_Invert_Blend_Order: 0
- _Decal0_Mask_Enabled: 0
- _Decal0_Metallic: 0
- _Decal0_Normal_Enabled: 0
- _Decal0_Normal_Scale: 1
- _Decal0_Opacity: 1
+ - _Decal0_Reflections_Alpha_Blend: 0
- _Decal0_Reflections_Enabled: 0
- _Decal0_Replace_Alpha_Mode: 0
- _Decal0_Replace_Multiply_Mode: 0
- _Decal0_SDF_Enabled: 0
- _Decal0_SDF_Invert: 0
- _Decal0_SDF_Px_Range: 2
+ - _Decal0_SDF_SSN_Enabled: 0
+ - _Decal0_SDF_SSN_Only: 0
+ - _Decal0_SDF_SSN_Replace: 0
+ - _Decal0_SDF_SSN_Strength: 1
- _Decal0_SDF_Softness: 0.01
- _Decal0_SDF_Threshold: 0.5
- _Decal0_Smoothness: 0.5
- _Decal0_Tiling_Mode: 0
- _Decal0_UV_Channel: 0
- _Decal1_Angle: 0
+ - _Decal1_Bias: 0
- _Decal1_CMYK_Warping_Planes_Enabled: 0
- _Decal1_CMYK_Warping_Planes_Scale: 0.1
- _Decal1_CMYK_Warping_Planes_Speed: 1
@@ -495,23 +602,30 @@ Material:
- _Decal1_Emissions_Proximity_Max_Distance: 1
- _Decal1_Emissions_Proximity_Min_Distance: 0
- _Decal1_Enabled: 0
+ - _Decal1_Invert_Blend_Order: 0
- _Decal1_Mask_Enabled: 0
- _Decal1_Metallic: 0
- _Decal1_Normal_Enabled: 0
- _Decal1_Normal_Scale: 1
- _Decal1_Opacity: 1
+ - _Decal1_Reflections_Alpha_Blend: 0
- _Decal1_Reflections_Enabled: 0
- _Decal1_Replace_Alpha_Mode: 0
- _Decal1_Replace_Multiply_Mode: 0
- _Decal1_SDF_Enabled: 0
- _Decal1_SDF_Invert: 0
- _Decal1_SDF_Px_Range: 2
+ - _Decal1_SDF_SSN_Enabled: 0
+ - _Decal1_SDF_SSN_Only: 0
+ - _Decal1_SDF_SSN_Replace: 0
+ - _Decal1_SDF_SSN_Strength: 1
- _Decal1_SDF_Softness: 0.01
- _Decal1_SDF_Threshold: 0.5
- _Decal1_Smoothness: 0.5
- _Decal1_Tiling_Mode: 0
- _Decal1_UV_Channel: 0
- _Decal2_Angle: 0
+ - _Decal2_Bias: 0
- _Decal2_CMYK_Warping_Planes_Enabled: 0
- _Decal2_CMYK_Warping_Planes_Scale: 0.1
- _Decal2_CMYK_Warping_Planes_Speed: 1
@@ -528,23 +642,30 @@ Material:
- _Decal2_Emissions_Proximity_Max_Distance: 1
- _Decal2_Emissions_Proximity_Min_Distance: 0
- _Decal2_Enabled: 0
+ - _Decal2_Invert_Blend_Order: 0
- _Decal2_Mask_Enabled: 0
- _Decal2_Metallic: 0
- _Decal2_Normal_Enabled: 0
- _Decal2_Normal_Scale: 1
- _Decal2_Opacity: 1
+ - _Decal2_Reflections_Alpha_Blend: 0
- _Decal2_Reflections_Enabled: 0
- _Decal2_Replace_Alpha_Mode: 0
- _Decal2_Replace_Multiply_Mode: 0
- _Decal2_SDF_Enabled: 0
- _Decal2_SDF_Invert: 0
- _Decal2_SDF_Px_Range: 2
+ - _Decal2_SDF_SSN_Enabled: 0
+ - _Decal2_SDF_SSN_Only: 0
+ - _Decal2_SDF_SSN_Replace: 0
+ - _Decal2_SDF_SSN_Strength: 1
- _Decal2_SDF_Softness: 0.01
- _Decal2_SDF_Threshold: 0.5
- _Decal2_Smoothness: 0.5
- _Decal2_Tiling_Mode: 0
- _Decal2_UV_Channel: 0
- _Decal3_Angle: 0
+ - _Decal3_Bias: 0
- _Decal3_CMYK_Warping_Planes_Enabled: 0
- _Decal3_CMYK_Warping_Planes_Scale: 0.1
- _Decal3_CMYK_Warping_Planes_Speed: 1
@@ -561,23 +682,30 @@ Material:
- _Decal3_Emissions_Proximity_Max_Distance: 1
- _Decal3_Emissions_Proximity_Min_Distance: 0
- _Decal3_Enabled: 0
+ - _Decal3_Invert_Blend_Order: 0
- _Decal3_Mask_Enabled: 0
- _Decal3_Metallic: 0
- _Decal3_Normal_Enabled: 0
- _Decal3_Normal_Scale: 1
- _Decal3_Opacity: 1
+ - _Decal3_Reflections_Alpha_Blend: 0
- _Decal3_Reflections_Enabled: 0
- _Decal3_Replace_Alpha_Mode: 0
- _Decal3_Replace_Multiply_Mode: 0
- _Decal3_SDF_Enabled: 0
- _Decal3_SDF_Invert: 0
- _Decal3_SDF_Px_Range: 2
+ - _Decal3_SDF_SSN_Enabled: 0
+ - _Decal3_SDF_SSN_Only: 0
+ - _Decal3_SDF_SSN_Replace: 0
+ - _Decal3_SDF_SSN_Strength: 1
- _Decal3_SDF_Softness: 0.01
- _Decal3_SDF_Threshold: 0.5
- _Decal3_Smoothness: 0.5
- _Decal3_Tiling_Mode: 0
- _Decal3_UV_Channel: 0
- _Decal4_Angle: 0
+ - _Decal4_Bias: 0
- _Decal4_CMYK_Warping_Planes_Enabled: 0
- _Decal4_CMYK_Warping_Planes_Scale: 0.1
- _Decal4_CMYK_Warping_Planes_Speed: 1
@@ -594,23 +722,30 @@ Material:
- _Decal4_Emissions_Proximity_Max_Distance: 1
- _Decal4_Emissions_Proximity_Min_Distance: 0
- _Decal4_Enabled: 0
+ - _Decal4_Invert_Blend_Order: 0
- _Decal4_Mask_Enabled: 0
- _Decal4_Metallic: 0
- _Decal4_Normal_Enabled: 0
- _Decal4_Normal_Scale: 1
- _Decal4_Opacity: 1
+ - _Decal4_Reflections_Alpha_Blend: 0
- _Decal4_Reflections_Enabled: 0
- _Decal4_Replace_Alpha_Mode: 0
- _Decal4_Replace_Multiply_Mode: 0
- _Decal4_SDF_Enabled: 0
- _Decal4_SDF_Invert: 0
- _Decal4_SDF_Px_Range: 2
+ - _Decal4_SDF_SSN_Enabled: 0
+ - _Decal4_SDF_SSN_Only: 0
+ - _Decal4_SDF_SSN_Replace: 0
+ - _Decal4_SDF_SSN_Strength: 1
- _Decal4_SDF_Softness: 0.01
- _Decal4_SDF_Threshold: 0.5
- _Decal4_Smoothness: 0.5
- _Decal4_Tiling_Mode: 0
- _Decal4_UV_Channel: 0
- _Decal5_Angle: 0
+ - _Decal5_Bias: 0
- _Decal5_CMYK_Warping_Planes_Enabled: 0
- _Decal5_CMYK_Warping_Planes_Scale: 0.1
- _Decal5_CMYK_Warping_Planes_Speed: 1
@@ -627,23 +762,30 @@ Material:
- _Decal5_Emissions_Proximity_Max_Distance: 1
- _Decal5_Emissions_Proximity_Min_Distance: 0
- _Decal5_Enabled: 0
+ - _Decal5_Invert_Blend_Order: 0
- _Decal5_Mask_Enabled: 0
- _Decal5_Metallic: 0
- _Decal5_Normal_Enabled: 0
- _Decal5_Normal_Scale: 1
- _Decal5_Opacity: 1
+ - _Decal5_Reflections_Alpha_Blend: 0
- _Decal5_Reflections_Enabled: 0
- _Decal5_Replace_Alpha_Mode: 0
- _Decal5_Replace_Multiply_Mode: 0
- _Decal5_SDF_Enabled: 0
- _Decal5_SDF_Invert: 0
- _Decal5_SDF_Px_Range: 2
+ - _Decal5_SDF_SSN_Enabled: 0
+ - _Decal5_SDF_SSN_Only: 0
+ - _Decal5_SDF_SSN_Replace: 0
+ - _Decal5_SDF_SSN_Strength: 1
- _Decal5_SDF_Softness: 0.01
- _Decal5_SDF_Threshold: 0.5
- _Decal5_Smoothness: 0.5
- _Decal5_Tiling_Mode: 0
- _Decal5_UV_Channel: 0
- _Decal6_Angle: 0
+ - _Decal6_Bias: 0
- _Decal6_CMYK_Warping_Planes_Enabled: 0
- _Decal6_CMYK_Warping_Planes_Scale: 0.1
- _Decal6_CMYK_Warping_Planes_Speed: 1
@@ -660,23 +802,30 @@ Material:
- _Decal6_Emissions_Proximity_Max_Distance: 1
- _Decal6_Emissions_Proximity_Min_Distance: 0
- _Decal6_Enabled: 0
+ - _Decal6_Invert_Blend_Order: 0
- _Decal6_Mask_Enabled: 0
- _Decal6_Metallic: 0
- _Decal6_Normal_Enabled: 0
- _Decal6_Normal_Scale: 1
- _Decal6_Opacity: 1
+ - _Decal6_Reflections_Alpha_Blend: 0
- _Decal6_Reflections_Enabled: 0
- _Decal6_Replace_Alpha_Mode: 0
- _Decal6_Replace_Multiply_Mode: 0
- _Decal6_SDF_Enabled: 0
- _Decal6_SDF_Invert: 0
- _Decal6_SDF_Px_Range: 2
+ - _Decal6_SDF_SSN_Enabled: 0
+ - _Decal6_SDF_SSN_Only: 0
+ - _Decal6_SDF_SSN_Replace: 0
+ - _Decal6_SDF_SSN_Strength: 1
- _Decal6_SDF_Softness: 0.01
- _Decal6_SDF_Threshold: 0.5
- _Decal6_Smoothness: 0.5
- _Decal6_Tiling_Mode: 0
- _Decal6_UV_Channel: 0
- _Decal7_Angle: 0
+ - _Decal7_Bias: 0
- _Decal7_CMYK_Warping_Planes_Enabled: 0
- _Decal7_CMYK_Warping_Planes_Scale: 0.1
- _Decal7_CMYK_Warping_Planes_Speed: 1
@@ -693,17 +842,23 @@ Material:
- _Decal7_Emissions_Proximity_Max_Distance: 1
- _Decal7_Emissions_Proximity_Min_Distance: 0
- _Decal7_Enabled: 0
+ - _Decal7_Invert_Blend_Order: 0
- _Decal7_Mask_Enabled: 0
- _Decal7_Metallic: 0
- _Decal7_Normal_Enabled: 0
- _Decal7_Normal_Scale: 1
- _Decal7_Opacity: 1
+ - _Decal7_Reflections_Alpha_Blend: 0
- _Decal7_Reflections_Enabled: 0
- _Decal7_Replace_Alpha_Mode: 0
- _Decal7_Replace_Multiply_Mode: 0
- _Decal7_SDF_Enabled: 0
- _Decal7_SDF_Invert: 0
- _Decal7_SDF_Px_Range: 2
+ - _Decal7_SDF_SSN_Enabled: 0
+ - _Decal7_SDF_SSN_Only: 0
+ - _Decal7_SDF_SSN_Replace: 0
+ - _Decal7_SDF_SSN_Strength: 1
- _Decal7_SDF_Softness: 0.01
- _Decal7_SDF_Threshold: 0.5
- _Decal7_Smoothness: 0.5
@@ -712,6 +867,7 @@ Material:
- _Depth_Prepass_Enabled: 0
- _DetailNormalMapScale: 1
- _Detail_Maps_Enabled: 0
+ - _Detail_Maps_UV_Channel: 0
- _DstBlend: 0
- _DstBlendAlpha: 10
- _Emission_Enabled: 0
@@ -768,9 +924,19 @@ Material:
- _Glitter_Mask_Enabled: 0
- _Glitter_Size: 1
- _Glitter_Size_Randomization_Range: 0.4
+ - _Glitter_UV_Channel: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
+ - _Gradient_Normals_0_Horizontal_Enabled: 0
+ - _Gradient_Normals_0_Vertical_Enabled: 0
+ - _Gradient_Normals_1_Horizontal_Enabled: 0
+ - _Gradient_Normals_1_Vertical_Enabled: 0
+ - _Gradient_Normals_2_Horizontal_Enabled: 0
+ - _Gradient_Normals_2_Vertical_Enabled: 0
+ - _Gradient_Normals_3_Horizontal_Enabled: 0
+ - _Gradient_Normals_3_Vertical_Enabled: 0
+ - _Gradient_Normals_Enabled: 0
- _Grayscale_Lightmaps_Enabled: 0
- _Harnack_Tracing_Enabled: 0
- _Harnack_Tracing_Gyroid_Enabled: 0
@@ -793,6 +959,9 @@ Material:
- _Letter_Grid_Screen_Px_Range: 10
- _Letter_Grid_Tex_Res_X: 16
- _Letter_Grid_Tex_Res_Y: 8
+ - _Light_Volumes_Brightness: 1
+ - _Light_Volumes_Brightness_Enabled: 0
+ - _Light_Volumes_Brightness_Enabled_Dynamic: 1
- _MaskedStencil1BackCompareFunction: 8
- _MaskedStencil1BackFailOp: 0
- _MaskedStencil1BackPassOp: 0
@@ -873,6 +1042,14 @@ Material:
- _Matcap1_Quantization_Steps: 1
- _Matcap1_Strength: 1
- _Matcap1_Target_Mask: 1
+ - _Matcap2_Enabled: 0
+ - _Matcap2_Invert: 0
+ - _Matcap2_Mask_Enabled: 0
+ - _Matcap2_Mode: 0
+ - _Matcap2_Quantization_Enabled: 0
+ - _Matcap2_Quantization_Steps: 1
+ - _Matcap2_Strength: 1
+ - _Matcap2_Target_Mask: 1
- _Material_Type_Cloth_Enabled: 0
- _Material_Type_Cloth_Subsurface: 0
- _Metallic: 1
@@ -924,6 +1101,9 @@ Material:
- _Quantize_NoL_Steps: 1
- _Quantize_Specular_Enabled: 0
- _Quantize_Specular_Steps: 1
+ - _Quasi_Shadows_0_Threshold: 0.5
+ - _Quasi_Shadows_0_Width: 0.1
+ - _Quasi_Shadows_Enabled: 0
- _Raymarched_Fog_Albedo: 1
- _Raymarched_Fog_Density_Exponent: 1
- _Raymarched_Fog_Density_Exponent_Enabled: 0
@@ -1005,6 +1185,17 @@ Material:
- _SSFD_Threshold: 0.5
- _SampleWorld: 0
- _Saturation: 0
+ - _Screen_Space_Normals_Enabled: 0
+ - _Sea_Foam_0_Enabled: 0
+ - _Sea_Foam_1_Enabled: 0
+ - _Sea_Foam_2_Enabled: 0
+ - _Sea_Foam_3_Enabled: 0
+ - _Sea_Foam_Bias: 0
+ - _Sea_Foam_Enabled: 0
+ - _Sea_Foam_Factor: 1
+ - _Sea_Foam_Lambda: 1
+ - _Sea_Foam_Power: 1
+ - _Sea_Foam_Roughness: 0.85
- _ShaderOptimizerEnabled: 0
- _Shadow_Strength: 0.25
- _Shatter_Wave_Audiolink_Enabled: 0
@@ -1043,16 +1234,53 @@ Material:
- _Stencil_Enabled: 0
- _Tessellation_Enabled: 0
- _Tessellation_Factor: 1
+ - _Tessellation_Falloff_Factor: 1
+ - _Tessellation_Frustum_Culling_Bias: 35
+ - _Tessellation_Heightmap_0_Enabled: 0
+ - _Tessellation_Heightmap_0_Offset: 0
+ - _Tessellation_Heightmap_0_Scale: 1
+ - _Tessellation_Heightmap_1_Enabled: 0
+ - _Tessellation_Heightmap_1_Offset: 0
+ - _Tessellation_Heightmap_1_Scale: 1
+ - _Tessellation_Heightmap_2_Enabled: 0
+ - _Tessellation_Heightmap_2_Offset: 0
+ - _Tessellation_Heightmap_2_Scale: 1
+ - _Tessellation_Heightmap_3_Enabled: 0
+ - _Tessellation_Heightmap_3_Offset: 0
+ - _Tessellation_Heightmap_3_Scale: 1
+ - _Tessellation_Heightmap_4_Enabled: 0
+ - _Tessellation_Heightmap_4_Offset: 0
+ - _Tessellation_Heightmap_4_Scale: 1
+ - _Tessellation_Heightmap_5_Enabled: 0
+ - _Tessellation_Heightmap_5_Offset: 0
+ - _Tessellation_Heightmap_5_Scale: 1
+ - _Tessellation_Heightmap_6_Enabled: 0
+ - _Tessellation_Heightmap_6_Offset: 0
+ - _Tessellation_Heightmap_6_Scale: 1
+ - _Tessellation_Heightmap_7_Enabled: 0
+ - _Tessellation_Heightmap_7_Offset: 0
+ - _Tessellation_Heightmap_7_Scale: 1
- _Tessellation_Heightmap_Direction_Control_Enabled: 0
- _Tessellation_Heightmap_Enabled: 0
- _Tessellation_Heightmap_Offset: 0
- _Tessellation_Heightmap_Scale: 1
+ - _Tessellation_Heightmap_World_Space_Enabled: 0
- _Tessellation_Range_Factor_Distance_Far: 1
- _Tessellation_Range_Factor_Distance_Near: 1
- _Tessellation_Range_Factor_Enabled: 0
- _Tessellation_Range_Factor_Factor_Far: 1
- _Tessellation_Range_Factor_Factor_Near: 1
- _Tessellation_Range_Factor_Help: 0
+ - _Trochoid_Enabled: 0
+ - _Trochoid_R: 1
+ - _Trochoid_X_Scale: 1
+ - _Trochoid_Y_Scale: 1
+ - _Trochoid_Z_Scale: 1
+ - _Trochoid_d: 1
+ - _Trochoid_r: 1
+ - _Trochoid_r_Power: 1
+ - _Trochoid_t_k: 1
+ - _Trochoid_theta_k: 1
- _UVSec: 0
- _UV_Domain_Warping_Enabled: 0
- _UV_Domain_Warping_Spatial_Octaves: 1
@@ -1555,6 +1783,7 @@ Material:
- m_end_Decal0_Normal: 0
- m_end_Decal0_Reflections: 0
- m_end_Decal0_SDF: 0
+ - m_end_Decal0_SSN: 0
- m_end_Decal1: 0
- m_end_Decal1_CMYK_Warping_Planes: 0
- m_end_Decal1_Domain_Warping: 0
@@ -1564,6 +1793,7 @@ Material:
- m_end_Decal1_Normal: 0
- m_end_Decal1_Reflections: 0
- m_end_Decal1_SDF: 0
+ - m_end_Decal1_SSN: 0
- m_end_Decal2: 0
- m_end_Decal2_CMYK_Warping_Planes: 0
- m_end_Decal2_Domain_Warping: 0
@@ -1573,6 +1803,7 @@ Material:
- m_end_Decal2_Normal: 0
- m_end_Decal2_Reflections: 0
- m_end_Decal2_SDF: 0
+ - m_end_Decal2_SSN: 0
- m_end_Decal3: 0
- m_end_Decal3_CMYK_Warping_Planes: 0
- m_end_Decal3_Domain_Warping: 0
@@ -1582,6 +1813,7 @@ Material:
- m_end_Decal3_Normal: 0
- m_end_Decal3_Reflections: 0
- m_end_Decal3_SDF: 0
+ - m_end_Decal3_SSN: 0
- m_end_Decal4: 0
- m_end_Decal4_CMYK_Warping_Planes: 0
- m_end_Decal4_Domain_Warping: 0
@@ -1591,6 +1823,7 @@ Material:
- m_end_Decal4_Normal: 0
- m_end_Decal4_Reflections: 0
- m_end_Decal4_SDF: 0
+ - m_end_Decal4_SSN: 0
- m_end_Decal5: 0
- m_end_Decal5_CMYK_Warping_Planes: 0
- m_end_Decal5_Domain_Warping: 0
@@ -1600,6 +1833,7 @@ Material:
- m_end_Decal5_Normal: 0
- m_end_Decal5_Reflections: 0
- m_end_Decal5_SDF: 0
+ - m_end_Decal5_SSN: 0
- m_end_Decal6: 0
- m_end_Decal6_CMYK_Warping_Planes: 0
- m_end_Decal6_Domain_Warping: 0
@@ -1609,6 +1843,7 @@ Material:
- m_end_Decal6_Normal: 0
- m_end_Decal6_Reflections: 0
- m_end_Decal6_SDF: 0
+ - m_end_Decal6_SSN: 0
- m_end_Decal7: 0
- m_end_Decal7_CMYK_Warping_Planes: 0
- m_end_Decal7_Domain_Warping: 0
@@ -1618,6 +1853,7 @@ Material:
- m_end_Decal7_Normal: 0
- m_end_Decal7_Reflections: 0
- m_end_Decal7_SDF: 0
+ - m_end_Decal7_SSN: 0
- m_end_Decals: 0
- m_end_Depth_Prepass: 0
- m_end_Detail_Maps: 0
@@ -1634,11 +1870,21 @@ Material:
- m_end_Glitter: 0
- m_end_Glitter_Angle_Limit: 0
- m_end_Glitter_Mask: 0
+ - m_end_Gradient_Normals: 0
+ - m_end_Gradient_Normals_0: 0
+ - m_end_Gradient_Normals_0_Horizontal: 0
+ - m_end_Gradient_Normals_1: 0
+ - m_end_Gradient_Normals_1_Horizontal: 0
+ - m_end_Gradient_Normals_2: 0
+ - m_end_Gradient_Normals_2_Horizontal: 0
+ - m_end_Gradient_Normals_3: 0
+ - m_end_Gradient_Normals_3_Horizontal: 0
- m_end_Grayscale_Lightmaps: 0
- m_end_Harnack_Tracing: 0
- m_end_Harnack_Tracing_Gyroid: 0
- m_end_LTCGI: 0
- m_end_Letter_Grid: 0
+ - m_end_Light_Volumes_Brightness: 0
- m_end_MaskedStencil1PassBackOptions: 0
- m_end_MaskedStencil1PassFrontOptions: 0
- m_end_MaskedStencil2PassBackOptions: 0
@@ -1657,6 +1903,9 @@ Material:
- m_end_Matcap1: 0
- m_end_Matcap1_Mask: 0
- m_end_Matcap1_Quantization: 0
+ - m_end_Matcap2: 0
+ - m_end_Matcap2_Mask: 0
+ - m_end_Matcap2_Quantization: 0
- m_end_Matcaps: 0
- m_end_Material_Type_Cloth: 0
- m_end_Material_Type_Cloth_Subsurface: 0
@@ -1672,6 +1921,7 @@ Material:
- m_end_OutlinesMask: 0
- m_end_Quantize_NoL: 0
- m_end_Quantize_Specular: 0
+ - m_end_Quasi_Shadows: 0
- m_end_Raymarched_Fog: 0
- m_end_Raymarched_Fog_Density_Exponent: 0
- m_end_Raymarched_Fog_Emitter_Texture: 0
@@ -1695,6 +1945,12 @@ Material:
- m_end_Rim_Lighting3_Quantization: 0
- m_end_SSAO: 0
- m_end_SSFD: 0
+ - m_end_Screen_Space_Normals: 0
+ - m_end_Sea_Foam: 0
+ - m_end_Sea_Foam_0: 0
+ - m_end_Sea_Foam_1: 0
+ - m_end_Sea_Foam_2: 0
+ - m_end_Sea_Foam_3: 0
- m_end_Shadow_Casting: 0
- m_end_Shadow_Receiving: 0
- m_end_Shatter_Wave: 0
@@ -1707,8 +1963,17 @@ Material:
- m_end_StencilPassFrontOptions: 0
- m_end_Tessellation: 0
- m_end_Tessellation_Heightmap: 0
+ - m_end_Tessellation_Heightmap_0: 0
+ - m_end_Tessellation_Heightmap_1: 0
+ - m_end_Tessellation_Heightmap_2: 0
+ - m_end_Tessellation_Heightmap_3: 0
+ - m_end_Tessellation_Heightmap_4: 0
+ - m_end_Tessellation_Heightmap_5: 0
+ - m_end_Tessellation_Heightmap_6: 0
+ - m_end_Tessellation_Heightmap_7: 0
- m_end_Tessellation_Heightmap_Direction_Control: 0
- m_end_Tessellation_Range_Factor: 0
+ - m_end_Trochoid: 0
- m_end_UV_Domain_Warping: 0
- m_end_Unigram_Letter_Grid: 0
- m_end_Unlit: 0
@@ -1745,6 +2010,7 @@ Material:
- m_start_Decal0_Normal: 0
- m_start_Decal0_Reflections: 0
- m_start_Decal0_SDF: 0
+ - m_start_Decal0_SSN: 0
- m_start_Decal1: 0
- m_start_Decal1_CMYK_Warping_Planes: 0
- m_start_Decal1_Domain_Warping: 0
@@ -1754,6 +2020,7 @@ Material:
- m_start_Decal1_Normal: 0
- m_start_Decal1_Reflections: 0
- m_start_Decal1_SDF: 0
+ - m_start_Decal1_SSN: 0
- m_start_Decal2: 0
- m_start_Decal2_CMYK_Warping_Planes: 0
- m_start_Decal2_Domain_Warping: 0
@@ -1763,6 +2030,7 @@ Material:
- m_start_Decal2_Normal: 0
- m_start_Decal2_Reflections: 0
- m_start_Decal2_SDF: 0
+ - m_start_Decal2_SSN: 0
- m_start_Decal3: 0
- m_start_Decal3_CMYK_Warping_Planes: 0
- m_start_Decal3_Domain_Warping: 0
@@ -1772,6 +2040,7 @@ Material:
- m_start_Decal3_Normal: 0
- m_start_Decal3_Reflections: 0
- m_start_Decal3_SDF: 0
+ - m_start_Decal3_SSN: 0
- m_start_Decal4: 0
- m_start_Decal4_CMYK_Warping_Planes: 0
- m_start_Decal4_Domain_Warping: 0
@@ -1781,6 +2050,7 @@ Material:
- m_start_Decal4_Normal: 0
- m_start_Decal4_Reflections: 0
- m_start_Decal4_SDF: 0
+ - m_start_Decal4_SSN: 0
- m_start_Decal5: 0
- m_start_Decal5_CMYK_Warping_Planes: 0
- m_start_Decal5_Domain_Warping: 0
@@ -1790,6 +2060,7 @@ Material:
- m_start_Decal5_Normal: 0
- m_start_Decal5_Reflections: 0
- m_start_Decal5_SDF: 0
+ - m_start_Decal5_SSN: 0
- m_start_Decal6: 0
- m_start_Decal6_CMYK_Warping_Planes: 0
- m_start_Decal6_Domain_Warping: 0
@@ -1799,6 +2070,7 @@ Material:
- m_start_Decal6_Normal: 0
- m_start_Decal6_Reflections: 0
- m_start_Decal6_SDF: 0
+ - m_start_Decal6_SSN: 0
- m_start_Decal7: 0
- m_start_Decal7_CMYK_Warping_Planes: 0
- m_start_Decal7_Domain_Warping: 0
@@ -1808,6 +2080,7 @@ Material:
- m_start_Decal7_Normal: 0
- m_start_Decal7_Reflections: 0
- m_start_Decal7_SDF: 0
+ - m_start_Decal7_SSN: 0
- m_start_Decals: 0
- m_start_Depth_Prepass: 0
- m_start_Detail_Maps: 0
@@ -1824,11 +2097,21 @@ Material:
- m_start_Glitter: 0
- m_start_Glitter_Angle_Limit: 0
- m_start_Glitter_Mask: 0
+ - m_start_Gradient_Normals: 0
+ - m_start_Gradient_Normals_0: 0
+ - m_start_Gradient_Normals_0_Horizontal: 0
+ - m_start_Gradient_Normals_1: 0
+ - m_start_Gradient_Normals_1_Horizontal: 0
+ - m_start_Gradient_Normals_2: 0
+ - m_start_Gradient_Normals_2_Horizontal: 0
+ - m_start_Gradient_Normals_3: 0
+ - m_start_Gradient_Normals_3_Horizontal: 0
- m_start_Grayscale_Lightmaps: 0
- m_start_Harnack_Tracing: 0
- m_start_Harnack_Tracing_Gyroid: 0
- m_start_LTCGI: 0
- m_start_Letter_Grid: 0
+ - m_start_Light_Volumes_Brightness: 0
- m_start_MaskedStencil1PassBackOptions: 0
- m_start_MaskedStencil1PassFrontOptions: 0
- m_start_MaskedStencil2PassBackOptions: 0
@@ -1847,6 +2130,9 @@ Material:
- m_start_Matcap1: 0
- m_start_Matcap1_Mask: 0
- m_start_Matcap1_Quantization: 0
+ - m_start_Matcap2: 0
+ - m_start_Matcap2_Mask: 0
+ - m_start_Matcap2_Quantization: 0
- m_start_Matcaps: 0
- m_start_Material_Type_Cloth: 0
- m_start_Material_Type_Cloth_Subsurface: 0
@@ -1862,6 +2148,7 @@ Material:
- m_start_OutlinesMask: 0
- m_start_Quantize_NoL: 0
- m_start_Quantize_Specular: 0
+ - m_start_Quasi_Shadows: 0
- m_start_Raymarched_Fog: 0
- m_start_Raymarched_Fog_Density_Exponent: 0
- m_start_Raymarched_Fog_Emitter_Texture: 0
@@ -1885,6 +2172,12 @@ Material:
- m_start_Rim_Lighting3_Quantization: 0
- m_start_SSAO: 0
- m_start_SSFD: 0
+ - m_start_Screen_Space_Normals: 0
+ - m_start_Sea_Foam: 0
+ - m_start_Sea_Foam_0: 0
+ - m_start_Sea_Foam_1: 0
+ - m_start_Sea_Foam_2: 0
+ - m_start_Sea_Foam_3: 0
- m_start_Shadow_Casting: 0
- m_start_Shadow_Receiving: 0
- m_start_Shatter_Wave: 0
@@ -1897,8 +2190,17 @@ Material:
- m_start_StencilPassFrontOptions: 0
- m_start_Tessellation: 0
- m_start_Tessellation_Heightmap: 0
+ - m_start_Tessellation_Heightmap_0: 0
+ - m_start_Tessellation_Heightmap_1: 0
+ - m_start_Tessellation_Heightmap_2: 0
+ - m_start_Tessellation_Heightmap_3: 0
+ - m_start_Tessellation_Heightmap_4: 0
+ - m_start_Tessellation_Heightmap_5: 0
+ - m_start_Tessellation_Heightmap_6: 0
+ - m_start_Tessellation_Heightmap_7: 0
- m_start_Tessellation_Heightmap_Direction_Control: 0
- m_start_Tessellation_Range_Factor: 0
+ - m_start_Trochoid: 0
- m_start_UV_Domain_Warping: 0
- m_start_Unigram_Letter_Grid: 0
- m_start_Unlit: 0
@@ -1957,6 +2259,7 @@ Material:
- _Letter_Grid_UV_Scale_Offset: {r: 1, g: 1, b: 0, a: 0}
- _MetalReflectionTint: {r: 1, g: 1, b: 1, a: 1}
- _Outline_Color: {r: 0, g: 0, b: 0, a: 1}
+ - _Quasi_Shadows_0_Color: {r: 1, g: 1, b: 1, a: 1}
- _Raymarched_Fog_Color: {r: 0.29999998, g: 0.29999998, b: 0.29999998, a: 1}
- _Raymarched_Fog_Density_Noise_Scale: {r: 1, g: 1, b: 1, a: 0}
- _Raymarched_Fog_Emitter_Texture_World_Normal: {r: 0, g: 0, b: 0, a: 0}
@@ -1973,6 +2276,7 @@ Material:
- _Rim_Lighting2_Color: {r: 1, g: 1, b: 1, a: 1}
- _Rim_Lighting3_Angle_Limit_Target_Vector: {r: 0, g: -1, b: 0, a: 0}
- _Rim_Lighting3_Color: {r: 1, g: 1, b: 1, a: 1}
+ - _Sea_Foam_Color: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Amplitude: {r: 0.4, g: 0.4, b: 0.4, a: 0.4}
- _Shatter_Wave_Chronotensity_Time_Factor: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Chronotensity_Weights0: {r: 0, g: 0, b: 0, a: 0}
diff --git a/Materials/Filament calibration/Mat15.mat b/Materials/Filament calibration/Mat15.mat
index 49b5354..c06ca1e 100644
--- a/Materials/Filament calibration/Mat15.mat
+++ b/Materials/Filament calibration/Mat15.mat
@@ -14,10 +14,12 @@ Material:
m_ValidKeywords:
- _CAST_SHADOWS
- _CLEARCOAT
+ - _CLEARCOAT_GEOMETRIC_NORMALS
- _METALLICS
- _RECEIVE_SHADOWS
+ m_InvalidKeywords:
+ - _LIGHT_VOLUMES_BRIGHTNESS_ENABLED_DYNAMIC_ON
- _SPHERICAL_HARMONICS_L1
- m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
@@ -36,6 +38,10 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Clearcoat_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Cloth_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -268,6 +274,38 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_0_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_1_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_2_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Horizontal:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Gradient_Normals_3_Vertical:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _Letter_Grid_Mask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -312,6 +350,14 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Matcap2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Matcap2_Mask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -368,6 +414,22 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_0_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_1_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_2_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Sea_Foam_3_Slope:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _SmoothnessMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -376,6 +438,42 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_0:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_1:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_2:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_3:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_4:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_5:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_6:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Tessellation_Heightmap_7:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _Trochoid_Color_Ramp:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
- _UV_Domain_Warping_Noise:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
@@ -422,6 +520,7 @@ Material:
- _BumpScale: 1
- _Cast_Shadows_Enabled: 1
- _Clearcoat_Enabled: 1
+ - _Clearcoat_Geometric_Normals_Enabled: 1
- _Clearcoat_Roughness: 0.089
- _Clearcoat_Strength: 1
- _Clip: 0.5
@@ -446,6 +545,7 @@ Material:
- _Custom30_ro_Offset: 0
- _Cutoff: 0.5
- _Decal0_Angle: 0
+ - _Decal0_Bias: 0
- _Decal0_CMYK_Warping_Planes_Enabled: 0
- _Decal0_CMYK_Warping_Planes_Scale: 0.1
- _Decal0_CMYK_Warping_Planes_Speed: 1
@@ -462,23 +562,30 @@ Material:
- _Decal0_Emissions_Proximity_Max_Distance: 1
- _Decal0_Emissions_Proximity_Min_Distance: 0
- _Decal0_Enabled: 0
+ - _Decal0_Invert_Blend_Order: 0
- _Decal0_Mask_Enabled: 0
- _Decal0_Metallic: 0
- _Decal0_Normal_Enabled: 0
- _Decal0_Normal_Scale: 1
- _Decal0_Opacity: 1
+ - _Decal0_Reflections_Alpha_Blend: 0
- _Decal0_Reflections_Enabled: 0
- _Decal0_Replace_Alpha_Mode: 0
- _Decal0_Replace_Multiply_Mode: 0
- _Decal0_SDF_Enabled: 0
- _Decal0_SDF_Invert: 0
- _Decal0_SDF_Px_Range: 2
+ - _Decal0_SDF_SSN_Enabled: 0
+ - _Decal0_SDF_SSN_Only: 0
+ - _Decal0_SDF_SSN_Replace: 0
+ - _Decal0_SDF_SSN_Strength: 1
- _Decal0_SDF_Softness: 0.01
- _Decal0_SDF_Threshold: 0.5
- _Decal0_Smoothness: 0.5
- _Decal0_Tiling_Mode: 0
- _Decal0_UV_Channel: 0
- _Decal1_Angle: 0
+ - _Decal1_Bias: 0
- _Decal1_CMYK_Warping_Planes_Enabled: 0
- _Decal1_CMYK_Warping_Planes_Scale: 0.1
- _Decal1_CMYK_Warping_Planes_Speed: 1
@@ -495,23 +602,30 @@ Material:
- _Decal1_Emissions_Proximity_Max_Distance: 1
- _Decal1_Emissions_Proximity_Min_Distance: 0
- _Decal1_Enabled: 0
+ - _Decal1_Invert_Blend_Order: 0
- _Decal1_Mask_Enabled: 0
- _Decal1_Metallic: 0
- _Decal1_Normal_Enabled: 0
- _Decal1_Normal_Scale: 1
- _Decal1_Opacity: 1
+ - _Decal1_Reflections_Alpha_Blend: 0
- _Decal1_Reflections_Enabled: 0
- _Decal1_Replace_Alpha_Mode: 0
- _Decal1_Replace_Multiply_Mode: 0
- _Decal1_SDF_Enabled: 0
- _Decal1_SDF_Invert: 0
- _Decal1_SDF_Px_Range: 2
+ - _Decal1_SDF_SSN_Enabled: 0
+ - _Decal1_SDF_SSN_Only: 0
+ - _Decal1_SDF_SSN_Replace: 0
+ - _Decal1_SDF_SSN_Strength: 1
- _Decal1_SDF_Softness: 0.01
- _Decal1_SDF_Threshold: 0.5
- _Decal1_Smoothness: 0.5
- _Decal1_Tiling_Mode: 0
- _Decal1_UV_Channel: 0
- _Decal2_Angle: 0
+ - _Decal2_Bias: 0
- _Decal2_CMYK_Warping_Planes_Enabled: 0
- _Decal2_CMYK_Warping_Planes_Scale: 0.1
- _Decal2_CMYK_Warping_Planes_Speed: 1
@@ -528,23 +642,30 @@ Material:
- _Decal2_Emissions_Proximity_Max_Distance: 1
- _Decal2_Emissions_Proximity_Min_Distance: 0
- _Decal2_Enabled: 0
+ - _Decal2_Invert_Blend_Order: 0
- _Decal2_Mask_Enabled: 0
- _Decal2_Metallic: 0
- _Decal2_Normal_Enabled: 0
- _Decal2_Normal_Scale: 1
- _Decal2_Opacity: 1
+ - _Decal2_Reflections_Alpha_Blend: 0
- _Decal2_Reflections_Enabled: 0
- _Decal2_Replace_Alpha_Mode: 0
- _Decal2_Replace_Multiply_Mode: 0
- _Decal2_SDF_Enabled: 0
- _Decal2_SDF_Invert: 0
- _Decal2_SDF_Px_Range: 2
+ - _Decal2_SDF_SSN_Enabled: 0
+ - _Decal2_SDF_SSN_Only: 0
+ - _Decal2_SDF_SSN_Replace: 0
+ - _Decal2_SDF_SSN_Strength: 1
- _Decal2_SDF_Softness: 0.01
- _Decal2_SDF_Threshold: 0.5
- _Decal2_Smoothness: 0.5
- _Decal2_Tiling_Mode: 0
- _Decal2_UV_Channel: 0
- _Decal3_Angle: 0
+ - _Decal3_Bias: 0
- _Decal3_CMYK_Warping_Planes_Enabled: 0
- _Decal3_CMYK_Warping_Planes_Scale: 0.1
- _Decal3_CMYK_Warping_Planes_Speed: 1
@@ -561,23 +682,30 @@ Material:
- _Decal3_Emissions_Proximity_Max_Distance: 1
- _Decal3_Emissions_Proximity_Min_Distance: 0
- _Decal3_Enabled: 0
+ - _Decal3_Invert_Blend_Order: 0
- _Decal3_Mask_Enabled: 0
- _Decal3_Metallic: 0
- _Decal3_Normal_Enabled: 0
- _Decal3_Normal_Scale: 1
- _Decal3_Opacity: 1
+ - _Decal3_Reflections_Alpha_Blend: 0
- _Decal3_Reflections_Enabled: 0
- _Decal3_Replace_Alpha_Mode: 0
- _Decal3_Replace_Multiply_Mode: 0
- _Decal3_SDF_Enabled: 0
- _Decal3_SDF_Invert: 0
- _Decal3_SDF_Px_Range: 2
+ - _Decal3_SDF_SSN_Enabled: 0
+ - _Decal3_SDF_SSN_Only: 0
+ - _Decal3_SDF_SSN_Replace: 0
+ - _Decal3_SDF_SSN_Strength: 1
- _Decal3_SDF_Softness: 0.01
- _Decal3_SDF_Threshold: 0.5
- _Decal3_Smoothness: 0.5
- _Decal3_Tiling_Mode: 0
- _Decal3_UV_Channel: 0
- _Decal4_Angle: 0
+ - _Decal4_Bias: 0
- _Decal4_CMYK_Warping_Planes_Enabled: 0
- _Decal4_CMYK_Warping_Planes_Scale: 0.1
- _Decal4_CMYK_Warping_Planes_Speed: 1
@@ -594,23 +722,30 @@ Material:
- _Decal4_Emissions_Proximity_Max_Distance: 1
- _Decal4_Emissions_Proximity_Min_Distance: 0
- _Decal4_Enabled: 0
+ - _Decal4_Invert_Blend_Order: 0
- _Decal4_Mask_Enabled: 0
- _Decal4_Metallic: 0
- _Decal4_Normal_Enabled: 0
- _Decal4_Normal_Scale: 1
- _Decal4_Opacity: 1
+ - _Decal4_Reflections_Alpha_Blend: 0
- _Decal4_Reflections_Enabled: 0
- _Decal4_Replace_Alpha_Mode: 0
- _Decal4_Replace_Multiply_Mode: 0
- _Decal4_SDF_Enabled: 0
- _Decal4_SDF_Invert: 0
- _Decal4_SDF_Px_Range: 2
+ - _Decal4_SDF_SSN_Enabled: 0
+ - _Decal4_SDF_SSN_Only: 0
+ - _Decal4_SDF_SSN_Replace: 0
+ - _Decal4_SDF_SSN_Strength: 1
- _Decal4_SDF_Softness: 0.01
- _Decal4_SDF_Threshold: 0.5
- _Decal4_Smoothness: 0.5
- _Decal4_Tiling_Mode: 0
- _Decal4_UV_Channel: 0
- _Decal5_Angle: 0
+ - _Decal5_Bias: 0
- _Decal5_CMYK_Warping_Planes_Enabled: 0
- _Decal5_CMYK_Warping_Planes_Scale: 0.1
- _Decal5_CMYK_Warping_Planes_Speed: 1
@@ -627,23 +762,30 @@ Material:
- _Decal5_Emissions_Proximity_Max_Distance: 1
- _Decal5_Emissions_Proximity_Min_Distance: 0
- _Decal5_Enabled: 0
+ - _Decal5_Invert_Blend_Order: 0
- _Decal5_Mask_Enabled: 0
- _Decal5_Metallic: 0
- _Decal5_Normal_Enabled: 0
- _Decal5_Normal_Scale: 1
- _Decal5_Opacity: 1
+ - _Decal5_Reflections_Alpha_Blend: 0
- _Decal5_Reflections_Enabled: 0
- _Decal5_Replace_Alpha_Mode: 0
- _Decal5_Replace_Multiply_Mode: 0
- _Decal5_SDF_Enabled: 0
- _Decal5_SDF_Invert: 0
- _Decal5_SDF_Px_Range: 2
+ - _Decal5_SDF_SSN_Enabled: 0
+ - _Decal5_SDF_SSN_Only: 0
+ - _Decal5_SDF_SSN_Replace: 0
+ - _Decal5_SDF_SSN_Strength: 1
- _Decal5_SDF_Softness: 0.01
- _Decal5_SDF_Threshold: 0.5
- _Decal5_Smoothness: 0.5
- _Decal5_Tiling_Mode: 0
- _Decal5_UV_Channel: 0
- _Decal6_Angle: 0
+ - _Decal6_Bias: 0
- _Decal6_CMYK_Warping_Planes_Enabled: 0
- _Decal6_CMYK_Warping_Planes_Scale: 0.1
- _Decal6_CMYK_Warping_Planes_Speed: 1
@@ -660,23 +802,30 @@ Material:
- _Decal6_Emissions_Proximity_Max_Distance: 1
- _Decal6_Emissions_Proximity_Min_Distance: 0
- _Decal6_Enabled: 0
+ - _Decal6_Invert_Blend_Order: 0
- _Decal6_Mask_Enabled: 0
- _Decal6_Metallic: 0
- _Decal6_Normal_Enabled: 0
- _Decal6_Normal_Scale: 1
- _Decal6_Opacity: 1
+ - _Decal6_Reflections_Alpha_Blend: 0
- _Decal6_Reflections_Enabled: 0
- _Decal6_Replace_Alpha_Mode: 0
- _Decal6_Replace_Multiply_Mode: 0
- _Decal6_SDF_Enabled: 0
- _Decal6_SDF_Invert: 0
- _Decal6_SDF_Px_Range: 2
+ - _Decal6_SDF_SSN_Enabled: 0
+ - _Decal6_SDF_SSN_Only: 0
+ - _Decal6_SDF_SSN_Replace: 0
+ - _Decal6_SDF_SSN_Strength: 1
- _Decal6_SDF_Softness: 0.01
- _Decal6_SDF_Threshold: 0.5
- _Decal6_Smoothness: 0.5
- _Decal6_Tiling_Mode: 0
- _Decal6_UV_Channel: 0
- _Decal7_Angle: 0
+ - _Decal7_Bias: 0
- _Decal7_CMYK_Warping_Planes_Enabled: 0
- _Decal7_CMYK_Warping_Planes_Scale: 0.1
- _Decal7_CMYK_Warping_Planes_Speed: 1
@@ -693,17 +842,23 @@ Material:
- _Decal7_Emissions_Proximity_Max_Distance: 1
- _Decal7_Emissions_Proximity_Min_Distance: 0
- _Decal7_Enabled: 0
+ - _Decal7_Invert_Blend_Order: 0
- _Decal7_Mask_Enabled: 0
- _Decal7_Metallic: 0
- _Decal7_Normal_Enabled: 0
- _Decal7_Normal_Scale: 1
- _Decal7_Opacity: 1
+ - _Decal7_Reflections_Alpha_Blend: 0
- _Decal7_Reflections_Enabled: 0
- _Decal7_Replace_Alpha_Mode: 0
- _Decal7_Replace_Multiply_Mode: 0
- _Decal7_SDF_Enabled: 0
- _Decal7_SDF_Invert: 0
- _Decal7_SDF_Px_Range: 2
+ - _Decal7_SDF_SSN_Enabled: 0
+ - _Decal7_SDF_SSN_Only: 0
+ - _Decal7_SDF_SSN_Replace: 0
+ - _Decal7_SDF_SSN_Strength: 1
- _Decal7_SDF_Softness: 0.01
- _Decal7_SDF_Threshold: 0.5
- _Decal7_Smoothness: 0.5
@@ -712,6 +867,7 @@ Material:
- _Depth_Prepass_Enabled: 0
- _DetailNormalMapScale: 1
- _Detail_Maps_Enabled: 0
+ - _Detail_Maps_UV_Channel: 0
- _DstBlend: 0
- _DstBlendAlpha: 10
- _Emission_Enabled: 0
@@ -768,9 +924,19 @@ Material:
- _Glitter_Mask_Enabled: 0
- _Glitter_Size: 1
- _Glitter_Size_Randomization_Range: 0.4
+ - _Glitter_UV_Channel: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
+ - _Gradient_Normals_0_Horizontal_Enabled: 0
+ - _Gradient_Normals_0_Vertical_Enabled: 0
+ - _Gradient_Normals_1_Horizontal_Enabled: 0
+ - _Gradient_Normals_1_Vertical_Enabled: 0
+ - _Gradient_Normals_2_Horizontal_Enabled: 0
+ - _Gradient_Normals_2_Vertical_Enabled: 0
+ - _Gradient_Normals_3_Horizontal_Enabled: 0
+ - _Gradient_Normals_3_Vertical_Enabled: 0
+ - _Gradient_Normals_Enabled: 0
- _Grayscale_Lightmaps_Enabled: 0
- _Harnack_Tracing_Enabled: 0
- _Harnack_Tracing_Gyroid_Enabled: 0
@@ -793,6 +959,9 @@ Material:
- _Letter_Grid_Screen_Px_Range: 10
- _Letter_Grid_Tex_Res_X: 16
- _Letter_Grid_Tex_Res_Y: 8
+ - _Light_Volumes_Brightness: 1
+ - _Light_Volumes_Brightness_Enabled: 0
+ - _Light_Volumes_Brightness_Enabled_Dynamic: 1
- _MaskedStencil1BackCompareFunction: 8
- _MaskedStencil1BackFailOp: 0
- _MaskedStencil1BackPassOp: 0
@@ -873,6 +1042,14 @@ Material:
- _Matcap1_Quantization_Steps: 1
- _Matcap1_Strength: 1
- _Matcap1_Target_Mask: 1
+ - _Matcap2_Enabled: 0
+ - _Matcap2_Invert: 0
+ - _Matcap2_Mask_Enabled: 0
+ - _Matcap2_Mode: 0
+ - _Matcap2_Quantization_Enabled: 0
+ - _Matcap2_Quantization_Steps: 1
+ - _Matcap2_Strength: 1
+ - _Matcap2_Target_Mask: 1
- _Material_Type_Cloth_Enabled: 0
- _Material_Type_Cloth_Subsurface: 0
- _Metallic: 1
@@ -924,6 +1101,9 @@ Material:
- _Quantize_NoL_Steps: 1
- _Quantize_Specular_Enabled: 0
- _Quantize_Specular_Steps: 1
+ - _Quasi_Shadows_0_Threshold: 0.5
+ - _Quasi_Shadows_0_Width: 0.1
+ - _Quasi_Shadows_Enabled: 0
- _Raymarched_Fog_Albedo: 1
- _Raymarched_Fog_Density_Exponent: 1
- _Raymarched_Fog_Density_Exponent_Enabled: 0
@@ -1005,6 +1185,17 @@ Material:
- _SSFD_Threshold: 0.5
- _SampleWorld: 0
- _Saturation: 0
+ - _Screen_Space_Normals_Enabled: 0
+ - _Sea_Foam_0_Enabled: 0
+ - _Sea_Foam_1_Enabled: 0
+ - _Sea_Foam_2_Enabled: 0
+ - _Sea_Foam_3_Enabled: 0
+ - _Sea_Foam_Bias: 0
+ - _Sea_Foam_Enabled: 0
+ - _Sea_Foam_Factor: 1
+ - _Sea_Foam_Lambda: 1
+ - _Sea_Foam_Power: 1
+ - _Sea_Foam_Roughness: 0.85
- _ShaderOptimizerEnabled: 0
- _Shadow_Strength: 0.25
- _Shatter_Wave_Audiolink_Enabled: 0
@@ -1043,16 +1234,53 @@ Material:
- _Stencil_Enabled: 0
- _Tessellation_Enabled: 0
- _Tessellation_Factor: 1
+ - _Tessellation_Falloff_Factor: 1
+ - _Tessellation_Frustum_Culling_Bias: 35
+ - _Tessellation_Heightmap_0_Enabled: 0
+ - _Tessellation_Heightmap_0_Offset: 0
+ - _Tessellation_Heightmap_0_Scale: 1
+ - _Tessellation_Heightmap_1_Enabled: 0
+ - _Tessellation_Heightmap_1_Offset: 0
+ - _Tessellation_Heightmap_1_Scale: 1
+ - _Tessellation_Heightmap_2_Enabled: 0
+ - _Tessellation_Heightmap_2_Offset: 0
+ - _Tessellation_Heightmap_2_Scale: 1
+ - _Tessellation_Heightmap_3_Enabled: 0
+ - _Tessellation_Heightmap_3_Offset: 0
+ - _Tessellation_Heightmap_3_Scale: 1
+ - _Tessellation_Heightmap_4_Enabled: 0
+ - _Tessellation_Heightmap_4_Offset: 0
+ - _Tessellation_Heightmap_4_Scale: 1
+ - _Tessellation_Heightmap_5_Enabled: 0
+ - _Tessellation_Heightmap_5_Offset: 0
+ - _Tessellation_Heightmap_5_Scale: 1
+ - _Tessellation_Heightmap_6_Enabled: 0
+ - _Tessellation_Heightmap_6_Offset: 0
+ - _Tessellation_Heightmap_6_Scale: 1
+ - _Tessellation_Heightmap_7_Enabled: 0
+ - _Tessellation_Heightmap_7_Offset: 0
+ - _Tessellation_Heightmap_7_Scale: 1
- _Tessellation_Heightmap_Direction_Control_Enabled: 0
- _Tessellation_Heightmap_Enabled: 0
- _Tessellation_Heightmap_Offset: 0
- _Tessellation_Heightmap_Scale: 1
+ - _Tessellation_Heightmap_World_Space_Enabled: 0
- _Tessellation_Range_Factor_Distance_Far: 1
- _Tessellation_Range_Factor_Distance_Near: 1
- _Tessellation_Range_Factor_Enabled: 0
- _Tessellation_Range_Factor_Factor_Far: 1
- _Tessellation_Range_Factor_Factor_Near: 1
- _Tessellation_Range_Factor_Help: 0
+ - _Trochoid_Enabled: 0
+ - _Trochoid_R: 1
+ - _Trochoid_X_Scale: 1
+ - _Trochoid_Y_Scale: 1
+ - _Trochoid_Z_Scale: 1
+ - _Trochoid_d: 1
+ - _Trochoid_r: 1
+ - _Trochoid_r_Power: 1
+ - _Trochoid_t_k: 1
+ - _Trochoid_theta_k: 1
- _UVSec: 0
- _UV_Domain_Warping_Enabled: 0
- _UV_Domain_Warping_Spatial_Octaves: 1
@@ -1555,6 +1783,7 @@ Material:
- m_end_Decal0_Normal: 0
- m_end_Decal0_Reflections: 0
- m_end_Decal0_SDF: 0
+ - m_end_Decal0_SSN: 0
- m_end_Decal1: 0
- m_end_Decal1_CMYK_Warping_Planes: 0
- m_end_Decal1_Domain_Warping: 0
@@ -1564,6 +1793,7 @@ Material:
- m_end_Decal1_Normal: 0
- m_end_Decal1_Reflections: 0
- m_end_Decal1_SDF: 0
+ - m_end_Decal1_SSN: 0
- m_end_Decal2: 0
- m_end_Decal2_CMYK_Warping_Planes: 0
- m_end_Decal2_Domain_Warping: 0
@@ -1573,6 +1803,7 @@ Material:
- m_end_Decal2_Normal: 0
- m_end_Decal2_Reflections: 0
- m_end_Decal2_SDF: 0
+ - m_end_Decal2_SSN: 0
- m_end_Decal3: 0
- m_end_Decal3_CMYK_Warping_Planes: 0
- m_end_Decal3_Domain_Warping: 0
@@ -1582,6 +1813,7 @@ Material:
- m_end_Decal3_Normal: 0
- m_end_Decal3_Reflections: 0
- m_end_Decal3_SDF: 0
+ - m_end_Decal3_SSN: 0
- m_end_Decal4: 0
- m_end_Decal4_CMYK_Warping_Planes: 0
- m_end_Decal4_Domain_Warping: 0
@@ -1591,6 +1823,7 @@ Material:
- m_end_Decal4_Normal: 0
- m_end_Decal4_Reflections: 0
- m_end_Decal4_SDF: 0
+ - m_end_Decal4_SSN: 0
- m_end_Decal5: 0
- m_end_Decal5_CMYK_Warping_Planes: 0
- m_end_Decal5_Domain_Warping: 0
@@ -1600,6 +1833,7 @@ Material:
- m_end_Decal5_Normal: 0
- m_end_Decal5_Reflections: 0
- m_end_Decal5_SDF: 0
+ - m_end_Decal5_SSN: 0
- m_end_Decal6: 0
- m_end_Decal6_CMYK_Warping_Planes: 0
- m_end_Decal6_Domain_Warping: 0
@@ -1609,6 +1843,7 @@ Material:
- m_end_Decal6_Normal: 0
- m_end_Decal6_Reflections: 0
- m_end_Decal6_SDF: 0
+ - m_end_Decal6_SSN: 0
- m_end_Decal7: 0
- m_end_Decal7_CMYK_Warping_Planes: 0
- m_end_Decal7_Domain_Warping: 0
@@ -1618,6 +1853,7 @@ Material:
- m_end_Decal7_Normal: 0
- m_end_Decal7_Reflections: 0
- m_end_Decal7_SDF: 0
+ - m_end_Decal7_SSN: 0
- m_end_Decals: 0
- m_end_Depth_Prepass: 0
- m_end_Detail_Maps: 0
@@ -1634,11 +1870,21 @@ Material:
- m_end_Glitter: 0
- m_end_Glitter_Angle_Limit: 0
- m_end_Glitter_Mask: 0
+ - m_end_Gradient_Normals: 0
+ - m_end_Gradient_Normals_0: 0
+ - m_end_Gradient_Normals_0_Horizontal: 0
+ - m_end_Gradient_Normals_1: 0
+ - m_end_Gradient_Normals_1_Horizontal: 0
+ - m_end_Gradient_Normals_2: 0
+ - m_end_Gradient_Normals_2_Horizontal: 0
+ - m_end_Gradient_Normals_3: 0
+ - m_end_Gradient_Normals_3_Horizontal: 0
- m_end_Grayscale_Lightmaps: 0
- m_end_Harnack_Tracing: 0
- m_end_Harnack_Tracing_Gyroid: 0
- m_end_LTCGI: 0
- m_end_Letter_Grid: 0
+ - m_end_Light_Volumes_Brightness: 0
- m_end_MaskedStencil1PassBackOptions: 0
- m_end_MaskedStencil1PassFrontOptions: 0
- m_end_MaskedStencil2PassBackOptions: 0
@@ -1657,6 +1903,9 @@ Material:
- m_end_Matcap1: 0
- m_end_Matcap1_Mask: 0
- m_end_Matcap1_Quantization: 0
+ - m_end_Matcap2: 0
+ - m_end_Matcap2_Mask: 0
+ - m_end_Matcap2_Quantization: 0
- m_end_Matcaps: 0
- m_end_Material_Type_Cloth: 0
- m_end_Material_Type_Cloth_Subsurface: 0
@@ -1672,6 +1921,7 @@ Material:
- m_end_OutlinesMask: 0
- m_end_Quantize_NoL: 0
- m_end_Quantize_Specular: 0
+ - m_end_Quasi_Shadows: 0
- m_end_Raymarched_Fog: 0
- m_end_Raymarched_Fog_Density_Exponent: 0
- m_end_Raymarched_Fog_Emitter_Texture: 0
@@ -1695,6 +1945,12 @@ Material:
- m_end_Rim_Lighting3_Quantization: 0
- m_end_SSAO: 0
- m_end_SSFD: 0
+ - m_end_Screen_Space_Normals: 0
+ - m_end_Sea_Foam: 0
+ - m_end_Sea_Foam_0: 0
+ - m_end_Sea_Foam_1: 0
+ - m_end_Sea_Foam_2: 0
+ - m_end_Sea_Foam_3: 0
- m_end_Shadow_Casting: 0
- m_end_Shadow_Receiving: 0
- m_end_Shatter_Wave: 0
@@ -1707,8 +1963,17 @@ Material:
- m_end_StencilPassFrontOptions: 0
- m_end_Tessellation: 0
- m_end_Tessellation_Heightmap: 0
+ - m_end_Tessellation_Heightmap_0: 0
+ - m_end_Tessellation_Heightmap_1: 0
+ - m_end_Tessellation_Heightmap_2: 0
+ - m_end_Tessellation_Heightmap_3: 0
+ - m_end_Tessellation_Heightmap_4: 0
+ - m_end_Tessellation_Heightmap_5: 0
+ - m_end_Tessellation_Heightmap_6: 0
+ - m_end_Tessellation_Heightmap_7: 0
- m_end_Tessellation_Heightmap_Direction_Control: 0
- m_end_Tessellation_Range_Factor: 0
+ - m_end_Trochoid: 0
- m_end_UV_Domain_Warping: 0
- m_end_Unigram_Letter_Grid: 0
- m_end_Unlit: 0
@@ -1745,6 +2010,7 @@ Material:
- m_start_Decal0_Normal: 0
- m_start_Decal0_Reflections: 0
- m_start_Decal0_SDF: 0
+ - m_start_Decal0_SSN: 0
- m_start_Decal1: 0
- m_start_Decal1_CMYK_Warping_Planes: 0
- m_start_Decal1_Domain_Warping: 0
@@ -1754,6 +2020,7 @@ Material:
- m_start_Decal1_Normal: 0
- m_start_Decal1_Reflections: 0
- m_start_Decal1_SDF: 0
+ - m_start_Decal1_SSN: 0
- m_start_Decal2: 0
- m_start_Decal2_CMYK_Warping_Planes: 0
- m_start_Decal2_Domain_Warping: 0
@@ -1763,6 +2030,7 @@ Material:
- m_start_Decal2_Normal: 0
- m_start_Decal2_Reflections: 0
- m_start_Decal2_SDF: 0
+ - m_start_Decal2_SSN: 0
- m_start_Decal3: 0
- m_start_Decal3_CMYK_Warping_Planes: 0
- m_start_Decal3_Domain_Warping: 0
@@ -1772,6 +2040,7 @@ Material:
- m_start_Decal3_Normal: 0
- m_start_Decal3_Reflections: 0
- m_start_Decal3_SDF: 0
+ - m_start_Decal3_SSN: 0
- m_start_Decal4: 0
- m_start_Decal4_CMYK_Warping_Planes: 0
- m_start_Decal4_Domain_Warping: 0
@@ -1781,6 +2050,7 @@ Material:
- m_start_Decal4_Normal: 0
- m_start_Decal4_Reflections: 0
- m_start_Decal4_SDF: 0
+ - m_start_Decal4_SSN: 0
- m_start_Decal5: 0
- m_start_Decal5_CMYK_Warping_Planes: 0
- m_start_Decal5_Domain_Warping: 0
@@ -1790,6 +2060,7 @@ Material:
- m_start_Decal5_Normal: 0
- m_start_Decal5_Reflections: 0
- m_start_Decal5_SDF: 0
+ - m_start_Decal5_SSN: 0
- m_start_Decal6: 0
- m_start_Decal6_CMYK_Warping_Planes: 0
- m_start_Decal6_Domain_Warping: 0
@@ -1799,6 +2070,7 @@ Material:
- m_start_Decal6_Normal: 0
- m_start_Decal6_Reflections: 0
- m_start_Decal6_SDF: 0
+ - m_start_Decal6_SSN: 0
- m_start_Decal7: 0
- m_start_Decal7_CMYK_Warping_Planes: 0
- m_start_Decal7_Domain_Warping: 0
@@ -1808,6 +2080,7 @@ Material:
- m_start_Decal7_Normal: 0
- m_start_Decal7_Reflections: 0
- m_start_Decal7_SDF: 0
+ - m_start_Decal7_SSN: 0
- m_start_Decals: 0
- m_start_Depth_Prepass: 0
- m_start_Detail_Maps: 0
@@ -1824,11 +2097,21 @@ Material:
- m_start_Glitter: 0
- m_start_Glitter_Angle_Limit: 0
- m_start_Glitter_Mask: 0
+ - m_start_Gradient_Normals: 0
+ - m_start_Gradient_Normals_0: 0
+ - m_start_Gradient_Normals_0_Horizontal: 0
+ - m_start_Gradient_Normals_1: 0
+ - m_start_Gradient_Normals_1_Horizontal: 0
+ - m_start_Gradient_Normals_2: 0
+ - m_start_Gradient_Normals_2_Horizontal: 0
+ - m_start_Gradient_Normals_3: 0
+ - m_start_Gradient_Normals_3_Horizontal: 0
- m_start_Grayscale_Lightmaps: 0
- m_start_Harnack_Tracing: 0
- m_start_Harnack_Tracing_Gyroid: 0
- m_start_LTCGI: 0
- m_start_Letter_Grid: 0
+ - m_start_Light_Volumes_Brightness: 0
- m_start_MaskedStencil1PassBackOptions: 0
- m_start_MaskedStencil1PassFrontOptions: 0
- m_start_MaskedStencil2PassBackOptions: 0
@@ -1847,6 +2130,9 @@ Material:
- m_start_Matcap1: 0
- m_start_Matcap1_Mask: 0
- m_start_Matcap1_Quantization: 0
+ - m_start_Matcap2: 0
+ - m_start_Matcap2_Mask: 0
+ - m_start_Matcap2_Quantization: 0
- m_start_Matcaps: 0
- m_start_Material_Type_Cloth: 0
- m_start_Material_Type_Cloth_Subsurface: 0
@@ -1862,6 +2148,7 @@ Material:
- m_start_OutlinesMask: 0
- m_start_Quantize_NoL: 0
- m_start_Quantize_Specular: 0
+ - m_start_Quasi_Shadows: 0
- m_start_Raymarched_Fog: 0
- m_start_Raymarched_Fog_Density_Exponent: 0
- m_start_Raymarched_Fog_Emitter_Texture: 0
@@ -1885,6 +2172,12 @@ Material:
- m_start_Rim_Lighting3_Quantization: 0
- m_start_SSAO: 0
- m_start_SSFD: 0
+ - m_start_Screen_Space_Normals: 0
+ - m_start_Sea_Foam: 0
+ - m_start_Sea_Foam_0: 0
+ - m_start_Sea_Foam_1: 0
+ - m_start_Sea_Foam_2: 0
+ - m_start_Sea_Foam_3: 0
- m_start_Shadow_Casting: 0
- m_start_Shadow_Receiving: 0
- m_start_Shatter_Wave: 0
@@ -1897,8 +2190,17 @@ Material:
- m_start_StencilPassFrontOptions: 0
- m_start_Tessellation: 0
- m_start_Tessellation_Heightmap: 0
+ - m_start_Tessellation_Heightmap_0: 0
+ - m_start_Tessellation_Heightmap_1: 0
+ - m_start_Tessellation_Heightmap_2: 0
+ - m_start_Tessellation_Heightmap_3: 0
+ - m_start_Tessellation_Heightmap_4: 0
+ - m_start_Tessellation_Heightmap_5: 0
+ - m_start_Tessellation_Heightmap_6: 0
+ - m_start_Tessellation_Heightmap_7: 0
- m_start_Tessellation_Heightmap_Direction_Control: 0
- m_start_Tessellation_Range_Factor: 0
+ - m_start_Trochoid: 0
- m_start_UV_Domain_Warping: 0
- m_start_Unigram_Letter_Grid: 0
- m_start_Unlit: 0
@@ -1957,6 +2259,7 @@ Material:
- _Letter_Grid_UV_Scale_Offset: {r: 1, g: 1, b: 0, a: 0}
- _MetalReflectionTint: {r: 1, g: 1, b: 1, a: 1}
- _Outline_Color: {r: 0, g: 0, b: 0, a: 1}
+ - _Quasi_Shadows_0_Color: {r: 1, g: 1, b: 1, a: 1}
- _Raymarched_Fog_Color: {r: 0.29999998, g: 0.29999998, b: 0.29999998, a: 1}
- _Raymarched_Fog_Density_Noise_Scale: {r: 1, g: 1, b: 1, a: 0}
- _Raymarched_Fog_Emitter_Texture_World_Normal: {r: 0, g: 0, b: 0, a: 0}
@@ -1973,6 +2276,7 @@ Material:
- _Rim_Lighting2_Color: {r: 1, g: 1, b: 1, a: 1}
- _Rim_Lighting3_Angle_Limit_Target_Vector: {r: 0, g: -1, b: 0, a: 0}
- _Rim_Lighting3_Color: {r: 1, g: 1, b: 1, a: 1}
+ - _Sea_Foam_Color: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Amplitude: {r: 0.4, g: 0.4, b: 0.4, a: 0.4}
- _Shatter_Wave_Chronotensity_Time_Factor: {r: 1, g: 1, b: 1, a: 1}
- _Shatter_Wave_Chronotensity_Weights0: {r: 0, g: 0, b: 0, a: 0}
diff --git a/globals.cginc b/globals.cginc
index ff5d42e..39160bc 100644
--- a/globals.cginc
+++ b/globals.cginc
@@ -587,6 +587,7 @@ float4 _Shatter_Wave_Rotation_Strength;
#if defined(_TESSELLATION)
float _Tessellation_Factor;
+float _Tessellation_Falloff_Factor;
float _Tessellation_Frustum_Culling_Bias;
#endif // _TESSELLATION
diff --git a/tessellation.cginc b/tessellation.cginc
index fdfc3b2..c964598 100644
--- a/tessellation.cginc
+++ b/tessellation.cginc
@@ -118,9 +118,14 @@ tess_factors patch_constant(InputPatch<v2f, 3> patch) {
float edgeLength = _Tessellation_Factor;
- f.edge[2] = l01 * edgeLength;
- f.edge[0] = l12 * edgeLength;
- f.edge[1] = l20 * edgeLength;
+ float edge01 = l01 * edgeLength;
+ float edge12 = l12 * edgeLength;
+ float edge20 = l20 * edgeLength;
+
+ float k = _Tessellation_Falloff_Factor;
+ f.edge[0] = min(_Tessellation_Factor, k * edge12);
+ f.edge[1] = min(_Tessellation_Factor, k * edge20);
+ f.edge[2] = min(_Tessellation_Factor, k * edge01);
f.inside = (f.edge[0] + f.edge[1] + f.edge[2]) * 0.333333f;
#else
diff --git a/yum_lighting.cginc b/yum_lighting.cginc
index f3ccb46..a0a4a2e 100644
--- a/yum_lighting.cginc
+++ b/yum_lighting.cginc
@@ -309,11 +309,13 @@ float3 yumSH9(float4 n, float3 worldPos, inout YumLighting light) {
#endif
}
-float4 getIndirectDiffuse(v2f i, float4 vertexLightColor,
+float4 getIndirectDiffuse(v2f i,
+ float3 normal,
+ float4 vertexLightColor,
inout YumLighting light) {
float4 diffuse = vertexLightColor;
#if defined(FORWARD_BASE_PASS)
- diffuse.xyz += max(0, yumSH9(float4(i.normal, 0), i.worldPos, light));
+ diffuse.xyz += max(0, yumSH9(float4(normal, 0), i.worldPos, light));
#endif
return diffuse;
}
@@ -365,7 +367,7 @@ YumLighting GetYumLighting(v2f i, YumPbr pbr) {
light.diffuse.gb = light.diffuse.r;
#endif
#else
- light.diffuse = getIndirectDiffuse(i, float4(i.vertexLight, 0), light);
+ light.diffuse = getIndirectDiffuse(i, pbr.normal, float4(i.vertexLight, 0), light);
light.occlusion = 1;
#endif