Bär wartet nach aufwachen etc

This commit is contained in:
2026-01-25 17:22:11 +01:00
parent 6504147456
commit e38a2b05e7
384 changed files with 132389 additions and 54 deletions
@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 8f6ce1ea55d91aa4c9b5678ee083554c
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -0,0 +1,21 @@
void DistortUV_float(float2 UV, float Amount, out float2 Out)
{
float time = _Time.y;
UV.y += Amount * 0.01 * (sin(UV.x * 3.5 + time * 0.35) + sin(UV.x * 4.8 + time * 1.05) + sin(UV.x * 7.3 + time * 0.45)) / 3.0;
UV.x += Amount * 0.12 * (sin(UV.y * 4.0 + time * 0.50) + sin(UV.y * 6.8 + time * 0.75) + sin(UV.y * 11.3 + time * 0.2)) / 3.0;
UV.y += Amount * 0.12 * (sin(UV.x * 4.2 + time * 0.64) + sin(UV.x * 6.3 + time * 1.65) + sin(UV.x * 8.2 + time * 0.45)) / 3.0;
Out = UV;
}
void DistortUV_half(half2 UV, half Amount, out half2 Out)
{
half time = _Time.y;
UV.y += Amount * 0.01 * (sin(UV.x * 3.5 + time * 0.35) + sin(UV.x * 4.8 + time * 1.05) + sin(UV.x * 7.3 + time * 0.45)) / 3.0;
UV.x += Amount * 0.12 * (sin(UV.y * 4.0 + time * 0.50) + sin(UV.y * 6.8 + time * 0.75) + sin(UV.y * 11.3 + time * 0.2)) / 3.0;
UV.y += Amount * 0.12 * (sin(UV.x * 4.2 + time * 0.64) + sin(UV.x * 6.3 + time * 1.65) + sin(UV.x * 8.2 + time * 0.45)) / 3.0;
Out = UV;
}
@@ -0,0 +1,14 @@
fileFormatVersion: 2
guid: 84eeacf7409dd9e4a8cbfab15c1cb3c7
ShaderIncludeImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/HLSL/DistortUV.hlsl
uploadId: 700359
@@ -0,0 +1,63 @@
float3 GerstnerWave(float3 position, float steepness, float wavelength, float speed, float direction, inout float3 tangent, inout float3 binormal, float globalOffset)
{
// Normalizar la dirección para la propagación de la ola
direction = direction * 2 - 1;
float2 d = normalize(float2(cos(3.14159 * direction), sin(3.14159 * direction)));
// Número de onda
float k = 2 * 3.14159 / wavelength;
// Calcular la fase de la ola, incluyendo el desplazamiento global
float f = k * (dot(d, position.xz) - speed * _Time.y + globalOffset);
// Amplitud de la ola
float a = steepness / k;
// Ajustar el tangente y el binormal para las normales
tangent += float3(
-d.x * d.x * (steepness * sin(f)),
d.x * (steepness * cos(f)),
-d.x * d.y * (steepness * sin(f))
);
binormal += float3(
-d.x * d.y * (steepness * sin(f)),
d.y * (steepness * cos(f)),
-d.y * d.y * (steepness * sin(f))
);
// Retornar el desplazamiento de la ola en el plano XZ y la altura vertical
return float3(
d.x * (a * cos(f)), // Desplazamiento en X
a * sin(f), // Desplazamiento en Y (altura)
d.y * (a * cos(f)) // Desplazamiento en Z
);
}
void GerstnerWaves_float(float3 position, float steepness, float wavelength, float speed, float4 directions, float tileSize, out float3 Offset, out float3 normal)
{
// Calcular el desplazamiento global para las olas en base a la posición absoluta
float globalOffsetX = floor(position.x / tileSize) * tileSize;
float globalOffsetZ = floor(position.z / tileSize) * tileSize;
// Envolver la posición X y Z usando fmod para asegurar el tileado, manteniendo el Y sin cambios
float3 tiledPosition = float3(
fmod(position.x, tileSize), // Envolver eje X
position.y, // Y sin cambios
fmod(position.z, tileSize) // Envolver eje Z
);
// Inicializar el desplazamiento y los vectores de tangente/binormal
Offset = float3(0, 0, 0);
float3 tangent = float3(1, 0, 0);
float3 binormal = float3(0, 0, 1);
// Aplicar las olas Gerstner a las direcciones, con el desplazamiento global en X y Z
Offset += GerstnerWave(tiledPosition, steepness, wavelength, speed, directions.x, tangent, binormal, globalOffsetX + globalOffsetZ);
Offset += GerstnerWave(tiledPosition, steepness, wavelength, speed, directions.y, tangent, binormal, globalOffsetX + globalOffsetZ);
Offset += GerstnerWave(tiledPosition, steepness, wavelength, speed, directions.z, tangent, binormal, globalOffsetX + globalOffsetZ);
Offset += GerstnerWave(tiledPosition, steepness, wavelength, speed, directions.w, tangent, binormal, globalOffsetX + globalOffsetZ);
// Normalizar el producto cruzado de binormal y tangente para obtener la normal
normal = normalize(cross(binormal, tangent));
}
@@ -0,0 +1,14 @@
fileFormatVersion: 2
guid: 0feec35a2e5b9e24cbf36fc074d44390
ShaderIncludeImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/HLSL/GrestnerWaves.hlsl
uploadId: 700359
@@ -0,0 +1,53 @@
half3 RGBToHSV(half3 In)
{
half4 K = half4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0);
half4 P = lerp(half4(In.bg, K.wz), half4(In.gb, K.xy), step(In.b, In.g));
half4 Q = lerp(half4(P.xyw, In.r), half4(In.r, P.yzx), step(P.x, In.r));
half D = Q.x - min(Q.w, Q.y);
half E = 1e-10;
return half3(abs(Q.z + (Q.w - Q.y)/(6.0 * D + E)), D / (Q.x + E), Q.x);
}
half3 HSVToRGB(half3 In)
{
half4 K = half4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0);
half3 P = abs(frac(In.xxx + K.xyz) * 6.0 - K.www);
return In.z * lerp(K.xxx, saturate(P - K.xxx), In.y);
}
void HSVLerp_half(half4 A, half4 B, half T, out half4 Out)
{
A.xyz = RGBToHSV(A.xyz);
B.xyz = RGBToHSV(B.xyz);
half t = T; // used to lerp alpha, needs to remain unchanged
half hue;
half d = B.x - A.x; // hue difference
if(A.x > B.x)
{
half temp = B.x;
B.x = A.x;
A.x = temp;
d = -d;
T = 1-T;
}
if(d > 0.5)
{
A.x = A.x + 1;
hue = (A.x + T * (B.x - A.x)) % 1;
}
if(d <= 0.5) hue = A.x + T * d;
half sat = A.y + T * (B.y - A.y);
half val = A.z + T * (B.z - A.z);
half alpha = A.w + t * (B.w - A.w);
half3 rgb = HSVToRGB(half3(hue,sat,val));
Out = half4(rgb, alpha);
}
@@ -0,0 +1,14 @@
fileFormatVersion: 2
guid: 51c4f325e435fdd4187eaa3ec9fc9e94
ShaderIncludeImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/HLSL/InterpolateHSV.hlsl
uploadId: 700359
@@ -0,0 +1,47 @@
float LightingSpecular(float3 L, float3 N, float3 V, float smoothness)
{
float3 H = SafeNormalize(float3(L) + float3(V));
float NdotH = saturate(dot(N, H));
return pow(NdotH, smoothness);
}
void MainLighting_float(float3 normalWS, float3 positionWS, float3 viewWS, float smoothness, out float specular)
{
specular = 0.0;
#ifndef SHADERGRAPH_PREVIEW
smoothness = exp2(10 * smoothness + 1);
normalWS = normalize(normalWS);
viewWS = SafeNormalize(viewWS);
Light mainLight = GetMainLight(TransformWorldToShadowCoord(positionWS));
specular = LightingSpecular(mainLight.direction, normalWS, viewWS, smoothness);
#endif
}
void AdditionalLighting_float(float3 normalWS, float3 positionWS, float3 viewWS, float smoothness, float hardness, out float3 specular)
{
specular = 0;
#ifndef SHADERGRAPH_PREVIEW
smoothness = exp2(10 * smoothness + 1);
normalWS = normalize(normalWS);
viewWS = SafeNormalize(viewWS);
// additional lights
int pixelLightCount = GetAdditionalLightsCount();
for (int i = 0; i < pixelLightCount; ++i)
{
Light light = GetAdditionalLight(i, positionWS);
float3 attenuatedLight = light.color * light.distanceAttenuation * light.shadowAttenuation;
float specular_soft = LightingSpecular(light.direction, normalWS, viewWS, smoothness);
float specular_hard = smoothstep(0.005,0.01,specular_soft);
float specular_term = lerp(specular_soft, specular_hard, hardness);
specular += specular_term * attenuatedLight;
}
#endif
}
@@ -0,0 +1,14 @@
fileFormatVersion: 2
guid: 9ec46a2fd8a98924e9af6e1cf4be7007
ShaderIncludeImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/HLSL/MainLighting.hlsl
uploadId: 700359
@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 34f64370644eec34cbf490a9aaf8baee
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -0,0 +1,904 @@
{
"m_SGVersion": 3,
"m_Type": "UnityEditor.ShaderGraph.GraphData",
"m_ObjectId": "0f2971e42195421fa17d8a66bc6ecd17",
"m_Properties": [
{
"m_Id": "89885d87d1ae44a68faa3c474ca13d41"
},
{
"m_Id": "62d870ab72154c19bd105f48d279b072"
}
],
"m_Keywords": [],
"m_Dropdowns": [],
"m_CategoryData": [
{
"m_Id": "1003f862073d4e48811588c4f4e93bee"
}
],
"m_Nodes": [
{
"m_Id": "2e24f7453c2b41349cc13dfa06c9af56"
},
{
"m_Id": "e4aad686056f4ef79a23e5ee7e845512"
},
{
"m_Id": "dd70c5f5558d4199a84216d1b5da52c2"
},
{
"m_Id": "b32346b7705c4334a0ac120dcde6901b"
},
{
"m_Id": "b7686a561f2542a8b83587eee957226c"
},
{
"m_Id": "4f56835f385c4497ad58269d3e3ce6ed"
},
{
"m_Id": "8790a77a1a4f4a63b11b3c4719708e2d"
}
],
"m_GroupDatas": [],
"m_StickyNoteDatas": [],
"m_Edges": [
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "4f56835f385c4497ad58269d3e3ce6ed"
},
"m_SlotId": 0
},
"m_InputSlot": {
"m_Node": {
"m_Id": "b32346b7705c4334a0ac120dcde6901b"
},
"m_SlotId": 0
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "8790a77a1a4f4a63b11b3c4719708e2d"
},
"m_SlotId": 0
},
"m_InputSlot": {
"m_Node": {
"m_Id": "e4aad686056f4ef79a23e5ee7e845512"
},
"m_SlotId": 0
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "b32346b7705c4334a0ac120dcde6901b"
},
"m_SlotId": 1
},
"m_InputSlot": {
"m_Node": {
"m_Id": "b7686a561f2542a8b83587eee957226c"
},
"m_SlotId": 0
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "b7686a561f2542a8b83587eee957226c"
},
"m_SlotId": 2
},
"m_InputSlot": {
"m_Node": {
"m_Id": "2e24f7453c2b41349cc13dfa06c9af56"
},
"m_SlotId": 1
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "dd70c5f5558d4199a84216d1b5da52c2"
},
"m_SlotId": 1
},
"m_InputSlot": {
"m_Node": {
"m_Id": "b7686a561f2542a8b83587eee957226c"
},
"m_SlotId": 1
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "e4aad686056f4ef79a23e5ee7e845512"
},
"m_SlotId": 4
},
"m_InputSlot": {
"m_Node": {
"m_Id": "dd70c5f5558d4199a84216d1b5da52c2"
},
"m_SlotId": 0
}
}
],
"m_VertexContext": {
"m_Position": {
"x": 0.0,
"y": 0.0
},
"m_Blocks": []
},
"m_FragmentContext": {
"m_Position": {
"x": 0.0,
"y": 0.0
},
"m_Blocks": []
},
"m_PreviewData": {
"serializedMesh": {
"m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}",
"m_Guid": ""
},
"preventRotation": false
},
"m_Path": "Sub Graphs",
"m_GraphPrecision": 1,
"m_PreviewMode": 2,
"m_OutputNode": {
"m_Id": "2e24f7453c2b41349cc13dfa06c9af56"
},
"m_SubDatas": [],
"m_ActiveTargets": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "09cec720793940eeafe7f2b78e3aa2b4",
"m_Id": 1,
"m_DisplayName": "R",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "R",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.CategoryData",
"m_ObjectId": "1003f862073d4e48811588c4f4e93bee",
"m_Name": "",
"m_ChildObjectList": [
{
"m_Id": "89885d87d1ae44a68faa3c474ca13d41"
},
{
"m_Id": "62d870ab72154c19bd105f48d279b072"
}
]
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
"m_ObjectId": "12491491e42d4ac1bfab7a9f4d520d11",
"m_Id": 0,
"m_DisplayName": "RefractedUVs",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot",
"m_ObjectId": "2d4cc81ba99841579556c5fa69b7e68c",
"m_Id": 1,
"m_DisplayName": "B",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "B",
"m_StageCapability": 3,
"m_Value": {
"e00": 2.0,
"e01": 2.0,
"e02": 2.0,
"e03": 2.0,
"e10": 2.0,
"e11": 2.0,
"e12": 2.0,
"e13": 2.0,
"e20": 2.0,
"e21": 2.0,
"e22": 2.0,
"e23": 2.0,
"e30": 2.0,
"e31": 2.0,
"e32": 2.0,
"e33": 2.0
},
"m_DefaultValue": {
"e00": 1.0,
"e01": 0.0,
"e02": 0.0,
"e03": 0.0,
"e10": 0.0,
"e11": 1.0,
"e12": 0.0,
"e13": 0.0,
"e20": 0.0,
"e21": 0.0,
"e22": 1.0,
"e23": 0.0,
"e30": 0.0,
"e31": 0.0,
"e32": 0.0,
"e33": 1.0
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.SubGraphOutputNode",
"m_ObjectId": "2e24f7453c2b41349cc13dfa06c9af56",
"m_Group": {
"m_Id": ""
},
"m_Name": "Output",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -81.60001373291016,
"y": -40.80000305175781,
"width": 120.80001831054688,
"height": 76.8000259399414
}
},
"m_Slots": [
{
"m_Id": "77004ea5c26047bd871eb98d5a1d0ad8"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"IsFirstSlotValid": true
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "44ddd6a9b515426e8f60444a02578e84",
"m_Id": 3,
"m_DisplayName": "B",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "B",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "4bc99661bc774b81bf311f3debbb40ef",
"m_Id": 2,
"m_DisplayName": "G",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "G",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.PropertyNode",
"m_ObjectId": "4f56835f385c4497ad58269d3e3ce6ed",
"m_Group": {
"m_Id": ""
},
"m_Name": "Property",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -860.800048828125,
"y": -0.000012664793757721782,
"width": 149.60003662109376,
"height": 33.59998321533203
}
},
"m_Slots": [
{
"m_Id": "12491491e42d4ac1bfab7a9f4d520d11"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_Property": {
"m_Id": "89885d87d1ae44a68faa3c474ca13d41"
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot",
"m_ObjectId": "60a68edea5df486c936d373897181b69",
"m_Id": 0,
"m_DisplayName": "A",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "A",
"m_StageCapability": 3,
"m_Value": {
"e00": 0.0,
"e01": 0.0,
"e02": 0.0,
"e03": 0.0,
"e10": 0.0,
"e11": 0.0,
"e12": 0.0,
"e13": 0.0,
"e20": 0.0,
"e21": 0.0,
"e22": 0.0,
"e23": 0.0,
"e30": 0.0,
"e31": 0.0,
"e32": 0.0,
"e33": 0.0
},
"m_DefaultValue": {
"e00": 1.0,
"e01": 0.0,
"e02": 0.0,
"e03": 0.0,
"e10": 0.0,
"e11": 1.0,
"e12": 0.0,
"e13": 0.0,
"e20": 0.0,
"e21": 0.0,
"e22": 1.0,
"e23": 0.0,
"e30": 0.0,
"e31": 0.0,
"e32": 0.0,
"e33": 1.0
}
}
{
"m_SGVersion": 1,
"m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty",
"m_ObjectId": "62d870ab72154c19bd105f48d279b072",
"m_Guid": {
"m_GuidSerialized": "7b0e1a53-22b5-427e-b7f5-e9d889a996bf"
},
"m_Name": "BaseBlend",
"m_DefaultRefNameVersion": 1,
"m_RefNameGeneratedByDisplayName": "BaseBlend",
"m_DefaultReferenceName": "_BaseBlend",
"m_OverrideReferenceName": "",
"m_GeneratePropertyBlock": true,
"m_UseCustomSlotLabel": false,
"m_CustomSlotLabel": "",
"m_DismissedVersion": 0,
"m_Precision": 0,
"overrideHLSLDeclaration": false,
"hlslDeclarationOverride": 0,
"m_Hidden": false,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
"m_ObjectId": "64320cffd7eb42b8b8df271149854550",
"m_Id": 0,
"m_DisplayName": "In",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "In",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.ScreenPositionMaterialSlot",
"m_ObjectId": "6975c23ac3e2430184d8d4426bee236c",
"m_Id": 0,
"m_DisplayName": "UV",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "UV",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_Labels": [],
"m_ScreenSpaceType": 0
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
"m_ObjectId": "77004ea5c26047bd871eb98d5a1d0ad8",
"m_Id": 1,
"m_DisplayName": "ObjectBlend",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "ObjectBlend",
"m_StageCapability": 2,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
"m_ObjectId": "7d8bb2ffe51b4312b903b7d2c483dc53",
"m_Id": 1,
"m_DisplayName": "Out",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 2,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.PropertyNode",
"m_ObjectId": "8790a77a1a4f4a63b11b3c4719708e2d",
"m_Group": {
"m_Id": ""
},
"m_Name": "Property",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -843.2000732421875,
"y": 171.99996948242188,
"width": 132.800048828125,
"height": 33.60002136230469
}
},
"m_Slots": [
{
"m_Id": "a3ba2df20ad84b66bd9cac378311b8b1"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_Property": {
"m_Id": "62d870ab72154c19bd105f48d279b072"
}
}
{
"m_SGVersion": 1,
"m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty",
"m_ObjectId": "89885d87d1ae44a68faa3c474ca13d41",
"m_Guid": {
"m_GuidSerialized": "5c4b53ea-f7f3-4c3d-8370-98ed7cba15ed"
},
"m_Name": "RefractedUVs",
"m_DefaultRefNameVersion": 1,
"m_RefNameGeneratedByDisplayName": "RefractedUVs",
"m_DefaultReferenceName": "_RefractedUVs",
"m_OverrideReferenceName": "",
"m_GeneratePropertyBlock": true,
"m_UseCustomSlotLabel": false,
"m_CustomSlotLabel": "",
"m_DismissedVersion": 0,
"m_Precision": 0,
"overrideHLSLDeclaration": false,
"hlslDeclarationOverride": 0,
"m_Hidden": false,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
"m_ObjectId": "a3ba2df20ad84b66bd9cac378311b8b1",
"m_Id": 0,
"m_DisplayName": "BaseBlend",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.SceneColorNode",
"m_ObjectId": "b32346b7705c4334a0ac120dcde6901b",
"m_Group": {
"m_Id": ""
},
"m_Name": "Scene Color",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -639.2000122070313,
"y": -24.799985885620118,
"width": 138.4000244140625,
"height": 76.80001068115235
}
},
"m_Slots": [
{
"m_Id": "6975c23ac3e2430184d8d4426bee236c"
},
{
"m_Id": "7d8bb2ffe51b4312b903b7d2c483dc53"
}
],
"synonyms": [
"screen buffer"
],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.MultiplyNode",
"m_ObjectId": "b7686a561f2542a8b83587eee957226c",
"m_Group": {
"m_Id": ""
},
"m_Name": "Multiply",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -326.4000244140625,
"y": -40.799991607666019,
"width": 130.40003967285157,
"height": 117.60000610351563
}
},
"m_Slots": [
{
"m_Id": "60a68edea5df486c936d373897181b69"
},
{
"m_Id": "2d4cc81ba99841579556c5fa69b7e68c"
},
{
"m_Id": "fcc7e12060274c9882d50873100b43f5"
}
],
"synonyms": [
"multiplication",
"times",
"x"
],
"m_Precision": 0,
"m_PreviewExpanded": false,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.OneMinusNode",
"m_ObjectId": "dd70c5f5558d4199a84216d1b5da52c2",
"m_Group": {
"m_Id": ""
},
"m_Name": "One Minus",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -361.5999755859375,
"y": 205.60003662109376,
"width": 127.99996948242188,
"height": 93.60000610351563
}
},
"m_Slots": [
{
"m_Id": "de1c7e7bd3924b879e34acf9d9cd3944"
},
{
"m_Id": "f2268ab302f243e989d5534e380513a8"
}
],
"synonyms": [
"complement",
"invert",
"opposite"
],
"m_Precision": 0,
"m_PreviewExpanded": false,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
"m_ObjectId": "de1c7e7bd3924b879e34acf9d9cd3944",
"m_Id": 0,
"m_DisplayName": "In",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "In",
"m_StageCapability": 3,
"m_Value": {
"x": 1.0,
"y": 1.0,
"z": 1.0,
"w": 1.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "e1b8dab3aa864a5abfef12e2c962db27",
"m_Id": 4,
"m_DisplayName": "A",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "A",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.SplitNode",
"m_ObjectId": "e4aad686056f4ef79a23e5ee7e845512",
"m_Group": {
"m_Id": ""
},
"m_Name": "Split",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -639.2000122070313,
"y": 131.19998168945313,
"width": 117.60003662109375,
"height": 148.80001831054688
}
},
"m_Slots": [
{
"m_Id": "64320cffd7eb42b8b8df271149854550"
},
{
"m_Id": "09cec720793940eeafe7f2b78e3aa2b4"
},
{
"m_Id": "4bc99661bc774b81bf311f3debbb40ef"
},
{
"m_Id": "44ddd6a9b515426e8f60444a02578e84"
},
{
"m_Id": "e1b8dab3aa864a5abfef12e2c962db27"
}
],
"synonyms": [
"separate"
],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
"m_ObjectId": "f2268ab302f243e989d5534e380513a8",
"m_Id": 1,
"m_DisplayName": "Out",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot",
"m_ObjectId": "fcc7e12060274c9882d50873100b43f5",
"m_Id": 2,
"m_DisplayName": "Out",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": {
"e00": 0.0,
"e01": 0.0,
"e02": 0.0,
"e03": 0.0,
"e10": 0.0,
"e11": 0.0,
"e12": 0.0,
"e13": 0.0,
"e20": 0.0,
"e21": 0.0,
"e22": 0.0,
"e23": 0.0,
"e30": 0.0,
"e31": 0.0,
"e32": 0.0,
"e33": 0.0
},
"m_DefaultValue": {
"e00": 1.0,
"e01": 0.0,
"e02": 0.0,
"e03": 0.0,
"e10": 0.0,
"e11": 1.0,
"e12": 0.0,
"e13": 0.0,
"e20": 0.0,
"e21": 0.0,
"e22": 1.0,
"e23": 0.0,
"e30": 0.0,
"e31": 0.0,
"e32": 0.0,
"e33": 1.0
}
}
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: a02636e967a650d4db669ee613538c46
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/BlendObjectColor.shadersubgraph
uploadId: 700359
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: 01824997d3b28f944887693b0e1d6405
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/BlendedNormals.shadersubgraph
uploadId: 700359
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: 60d47073ac03df54f9a15991680de154
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/CalculateUVs.shadersubgraph
uploadId: 700359
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: 3e5c142028ba07d48bba33c5843ba17e
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/Caves.shadersubgraph
uploadId: 700359
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: 1d0eb39db86b53245b582a69cdb87443
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/DepthFade.shadersubgraph
uploadId: 700359
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: 3069152b34697f24bb49447c02013d98
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/DepthFadePerspective.shadersubgraph
uploadId: 700359
@@ -0,0 +1,480 @@
{
"m_SGVersion": 3,
"m_Type": "UnityEditor.ShaderGraph.GraphData",
"m_ObjectId": "00d61ddd21f749c4b536f1fb552a6ab7",
"m_Properties": [],
"m_Keywords": [],
"m_Dropdowns": [],
"m_CategoryData": [
{
"m_Id": "71073557709548dbad88daae70b62d45"
}
],
"m_Nodes": [
{
"m_Id": "ddb8d53da0b44d5abb5fb073a1d42efa"
},
{
"m_Id": "58a31c30c807423b9d9065753a0cbe96"
},
{
"m_Id": "57b873032001499d95a8956b1c4c9ff9"
},
{
"m_Id": "d79620e98a204435bdf933c422a158e0"
}
],
"m_GroupDatas": [],
"m_StickyNoteDatas": [],
"m_Edges": [
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "57b873032001499d95a8956b1c4c9ff9"
},
"m_SlotId": 1
},
"m_InputSlot": {
"m_Node": {
"m_Id": "ddb8d53da0b44d5abb5fb073a1d42efa"
},
"m_SlotId": 1
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "58a31c30c807423b9d9065753a0cbe96"
},
"m_SlotId": 1
},
"m_InputSlot": {
"m_Node": {
"m_Id": "57b873032001499d95a8956b1c4c9ff9"
},
"m_SlotId": 0
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "d79620e98a204435bdf933c422a158e0"
},
"m_SlotId": 0
},
"m_InputSlot": {
"m_Node": {
"m_Id": "ddb8d53da0b44d5abb5fb073a1d42efa"
},
"m_SlotId": 2
}
}
],
"m_VertexContext": {
"m_Position": {
"x": 0.0,
"y": 0.0
},
"m_Blocks": []
},
"m_FragmentContext": {
"m_Position": {
"x": 0.0,
"y": 0.0
},
"m_Blocks": []
},
"m_PreviewData": {
"serializedMesh": {
"m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}",
"m_Guid": ""
},
"preventRotation": false
},
"m_Path": "Sub Graphs",
"m_GraphPrecision": 1,
"m_PreviewMode": 2,
"m_OutputNode": {
"m_Id": "ddb8d53da0b44d5abb5fb073a1d42efa"
},
"m_SubDatas": [],
"m_ActiveTargets": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "3587219133164159b7b1a138a93db42c",
"m_Id": 1,
"m_DisplayName": "Density",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Density",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
"m_ObjectId": "39568045e17144a9a8573e325c2e6c46",
"m_Id": 0,
"m_DisplayName": "Color",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Color",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
"m_ObjectId": "433831df62904e34bd7d132bde8cc980",
"m_Id": 2,
"m_DisplayName": "FogColor",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "FogColor",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot",
"m_ObjectId": "4da6cf0356d9438eb30f1ae583c75b4f",
"m_Id": 2,
"m_DisplayName": "Position",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "Position",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_Labels": [],
"m_Space": 0
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "53290ebe3d0b435a95480d8815339ca2",
"m_Id": 1,
"m_DisplayName": "Density",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Density",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.SaturateNode",
"m_ObjectId": "57b873032001499d95a8956b1c4c9ff9",
"m_Group": {
"m_Id": ""
},
"m_Name": "Saturate",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": 158.39999389648438,
"y": -108.00000762939453,
"width": 128.0,
"height": 93.59998321533203
}
},
"m_Slots": [
{
"m_Id": "915222e55dd24dd6a4e7dda4d7c69312"
},
{
"m_Id": "59a01162c379451b89a1a4621cd11af3"
}
],
"synonyms": [
"clamp"
],
"m_Precision": 0,
"m_PreviewExpanded": false,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.FogNode",
"m_ObjectId": "58a31c30c807423b9d9065753a0cbe96",
"m_Group": {
"m_Id": ""
},
"m_Name": "Fog",
"m_DrawState": {
"m_Expanded": false,
"m_Position": {
"serializedVersion": "2",
"x": 4.799993991851807,
"y": -214.39999389648438,
"width": 93.59999084472656,
"height": 76.0
}
},
"m_Slots": [
{
"m_Id": "f9d868e2e5b846ed9054e35051a6234f"
},
{
"m_Id": "c9863ddf9a964c4181676ae4033c7028"
},
{
"m_Id": "53290ebe3d0b435a95480d8815339ca2"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
"m_ObjectId": "59a01162c379451b89a1a4621cd11af3",
"m_Id": 1,
"m_DisplayName": "Out",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.CategoryData",
"m_ObjectId": "71073557709548dbad88daae70b62d45",
"m_Name": "",
"m_ChildObjectList": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
"m_ObjectId": "915222e55dd24dd6a4e7dda4d7c69312",
"m_Id": 0,
"m_DisplayName": "In",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "In",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
"m_ObjectId": "c9863ddf9a964c4181676ae4033c7028",
"m_Id": 0,
"m_DisplayName": "Color",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Color",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.FogNode",
"m_ObjectId": "d79620e98a204435bdf933c422a158e0",
"m_Group": {
"m_Id": ""
},
"m_Name": "Fog",
"m_DrawState": {
"m_Expanded": false,
"m_Position": {
"serializedVersion": "2",
"x": -33.400390625,
"y": -108.0001220703125,
"width": 84.0,
"height": 76.0
}
},
"m_Slots": [
{
"m_Id": "4da6cf0356d9438eb30f1ae583c75b4f"
},
{
"m_Id": "39568045e17144a9a8573e325c2e6c46"
},
{
"m_Id": "3587219133164159b7b1a138a93db42c"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.SubGraphOutputNode",
"m_ObjectId": "ddb8d53da0b44d5abb5fb073a1d42efa",
"m_Group": {
"m_Id": ""
},
"m_Name": "Output",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": 341.800048828125,
"y": 0.0,
"width": 0.0,
"height": 0.0
}
},
"m_Slots": [
{
"m_Id": "ee2d87f695db4933a9616f2c15ba13b8"
},
{
"m_Id": "433831df62904e34bd7d132bde8cc980"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"IsFirstSlotValid": true
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "ee2d87f695db4933a9616f2c15ba13b8",
"m_Id": 1,
"m_DisplayName": "FogAmount",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "FogAmount",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot",
"m_ObjectId": "f9d868e2e5b846ed9054e35051a6234f",
"m_Id": 2,
"m_DisplayName": "Position",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "Position",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_Labels": [],
"m_Space": 0
}
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: 4d8d465b4ba9a34499f11570d2bfbcf0
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/Fog.shadersubgraph
uploadId: 700359
@@ -0,0 +1,935 @@
{
"m_SGVersion": 3,
"m_Type": "UnityEditor.ShaderGraph.GraphData",
"m_ObjectId": "c83f01cfc47e4d42b580233a422c7906",
"m_Properties": [
{
"m_Id": "2d754b4252a04d41b586475348c8458a"
}
],
"m_Keywords": [
{
"m_Id": "a412590dcaf94723b4db70f0f54fa85c"
}
],
"m_Dropdowns": [],
"m_CategoryData": [
{
"m_Id": "3abb739c33e04b55a13448ef7c86344e"
}
],
"m_Nodes": [
{
"m_Id": "585becfac88644459503ab8c41ad17fb"
},
{
"m_Id": "3df06ab61c94407b9b2bb68b2bd8c970"
},
{
"m_Id": "e2d93f83b3444bdc9b039aff2c3f109d"
},
{
"m_Id": "5cb1ab2db50c4d85aa1315d66acc019b"
},
{
"m_Id": "d5defa2cb078451f8600e86b230e0a30"
},
{
"m_Id": "6bb9a62d2b624143910cab33a1fc7f06"
},
{
"m_Id": "bb1b567c8cd54712be0aa1ab56158c06"
},
{
"m_Id": "3a9a52a5e7f84053bce12874f9ecb16e"
}
],
"m_GroupDatas": [],
"m_StickyNoteDatas": [],
"m_Edges": [
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "3a9a52a5e7f84053bce12874f9ecb16e"
},
"m_SlotId": 0
},
"m_InputSlot": {
"m_Node": {
"m_Id": "d5defa2cb078451f8600e86b230e0a30"
},
"m_SlotId": 2
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "3df06ab61c94407b9b2bb68b2bd8c970"
},
"m_SlotId": 0
},
"m_InputSlot": {
"m_Node": {
"m_Id": "d5defa2cb078451f8600e86b230e0a30"
},
"m_SlotId": 1
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "5cb1ab2db50c4d85aa1315d66acc019b"
},
"m_SlotId": 3
},
"m_InputSlot": {
"m_Node": {
"m_Id": "e2d93f83b3444bdc9b039aff2c3f109d"
},
"m_SlotId": 1
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "6bb9a62d2b624143910cab33a1fc7f06"
},
"m_SlotId": 0
},
"m_InputSlot": {
"m_Node": {
"m_Id": "d5defa2cb078451f8600e86b230e0a30"
},
"m_SlotId": 0
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "bb1b567c8cd54712be0aa1ab56158c06"
},
"m_SlotId": 0
},
"m_InputSlot": {
"m_Node": {
"m_Id": "5cb1ab2db50c4d85aa1315d66acc019b"
},
"m_SlotId": 2
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "d5defa2cb078451f8600e86b230e0a30"
},
"m_SlotId": 3
},
"m_InputSlot": {
"m_Node": {
"m_Id": "e2d93f83b3444bdc9b039aff2c3f109d"
},
"m_SlotId": 2
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "e2d93f83b3444bdc9b039aff2c3f109d"
},
"m_SlotId": 0
},
"m_InputSlot": {
"m_Node": {
"m_Id": "585becfac88644459503ab8c41ad17fb"
},
"m_SlotId": 1
}
}
],
"m_VertexContext": {
"m_Position": {
"x": 0.0,
"y": 0.0
},
"m_Blocks": []
},
"m_FragmentContext": {
"m_Position": {
"x": 0.0,
"y": 0.0
},
"m_Blocks": []
},
"m_PreviewData": {
"serializedMesh": {
"m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}",
"m_Guid": ""
},
"preventRotation": false
},
"m_Path": "Sub Graphs",
"m_GraphPrecision": 1,
"m_PreviewMode": 2,
"m_OutputNode": {
"m_Id": "585becfac88644459503ab8c41ad17fb"
},
"m_SubDatas": [],
"m_ActiveTargets": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
"m_ObjectId": "0cbf6b66a73948dca158d9f2d69ad7aa",
"m_Id": 2,
"m_DisplayName": "Off",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "Off",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
}
}
{
"m_SGVersion": 1,
"m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty",
"m_ObjectId": "2d754b4252a04d41b586475348c8458a",
"m_Guid": {
"m_GuidSerialized": "8dfb261b-ce16-42fb-84e5-4ef49c05ad3d"
},
"m_Name": "HorizonDistance",
"m_DefaultRefNameVersion": 1,
"m_RefNameGeneratedByDisplayName": "HorizonDistance",
"m_DefaultReferenceName": "_HorizonDistance",
"m_OverrideReferenceName": "",
"m_GeneratePropertyBlock": true,
"m_UseCustomSlotLabel": false,
"m_CustomSlotLabel": "",
"m_DismissedVersion": 0,
"m_Precision": 0,
"overrideHLSLDeclaration": false,
"hlslDeclarationOverride": 0,
"m_Hidden": false,
"m_Value": 0.0,
"m_FloatType": 0,
"m_RangeValues": {
"x": 0.0,
"y": 1.0
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.ViewDirectionMaterialSlot",
"m_ObjectId": "39cb300e9d2f405c93c4ee31952432fd",
"m_Id": 1,
"m_DisplayName": "View Dir",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "ViewDir",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_Labels": [],
"m_Space": 2
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.PropertyNode",
"m_ObjectId": "3a9a52a5e7f84053bce12874f9ecb16e",
"m_Group": {
"m_Id": ""
},
"m_Name": "Property",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -321.5999755859375,
"y": 247.79998779296876,
"width": 0.0,
"height": 0.0
}
},
"m_Slots": [
{
"m_Id": "44c65fa185fc4163b21a6f9e25d7b620"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_Property": {
"m_Id": "2d754b4252a04d41b586475348c8458a"
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.CategoryData",
"m_ObjectId": "3abb739c33e04b55a13448ef7c86344e",
"m_Name": "",
"m_ChildObjectList": [
{
"m_Id": "2d754b4252a04d41b586475348c8458a"
},
{
"m_Id": "a412590dcaf94723b4db70f0f54fa85c"
}
]
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
"m_ObjectId": "3c7411e72b85415fbddf36c411142df6",
"m_Id": 0,
"m_DisplayName": "Out",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 1.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector3Node",
"m_ObjectId": "3df06ab61c94407b9b2bb68b2bd8c970",
"m_Group": {
"m_Id": ""
},
"m_Name": "Vector 3",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -439.5999755859375,
"y": 214.60009765625,
"width": 128.0,
"height": 124.7998046875
}
},
"m_Slots": [
{
"m_Id": "7f21de4079e04443a4b5a0e16877ee1b"
},
{
"m_Id": "e3fe0ed4c42347cdab2a8a0dccc08e1f"
},
{
"m_Id": "be2b8f1af2b64ba8a8267f24d366ba48"
},
{
"m_Id": "9fc42d61d08a431e8e1a0f15499fc294"
}
],
"synonyms": [
"3",
"v3",
"vec3",
"float3"
],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "44c65fa185fc4163b21a6f9e25d7b620",
"m_Id": 0,
"m_DisplayName": "HorizonDistance",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.SubGraphOutputNode",
"m_ObjectId": "585becfac88644459503ab8c41ad17fb",
"m_Group": {
"m_Id": ""
},
"m_Name": "Output",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": 596.4000244140625,
"y": 0.0,
"width": 0.0,
"height": 0.0
}
},
"m_Slots": [
{
"m_Id": "83685b6de2f6484994dd3196b8d9b062"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"IsFirstSlotValid": true
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
"m_ObjectId": "587de35c92504b76aa861bd4a6001639",
"m_Id": 1,
"m_DisplayName": "On",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "On",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.FresnelNode",
"m_ObjectId": "5cb1ab2db50c4d85aa1315d66acc019b",
"m_Group": {
"m_Id": ""
},
"m_Name": "Fresnel Effect",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -171.5999755859375,
"y": -439.8000793457031,
"width": 208.0,
"height": 325.6000061035156
}
},
"m_Slots": [
{
"m_Id": "83920671b5b947b8a6d62cc8c1171637"
},
{
"m_Id": "39cb300e9d2f405c93c4ee31952432fd"
},
{
"m_Id": "c0bd398476794d0fb193332dc90f4d30"
},
{
"m_Id": "5e0161080c5c4912b990c9fdf6374024"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 2,
"m_CustomColors": {
"m_SerializableColors": []
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "5e0161080c5c4912b990c9fdf6374024",
"m_Id": 3,
"m_DisplayName": "Out",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "66196a568a184ea58d6e191a6e950786",
"m_Id": 2,
"m_DisplayName": "Power",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "Power",
"m_StageCapability": 3,
"m_Value": 1.0,
"m_DefaultValue": 1.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.NormalVectorNode",
"m_ObjectId": "6bb9a62d2b624143910cab33a1fc7f06",
"m_Group": {
"m_Id": ""
},
"m_Name": "Normal Vector",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -500.4000244140625,
"y": -131.7999267578125,
"width": 207.9998779296875,
"height": 312.800048828125
}
},
"m_Slots": [
{
"m_Id": "3c7411e72b85415fbddf36c411142df6"
}
],
"synonyms": [
"surface direction"
],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 2,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_Space": 1
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "7f21de4079e04443a4b5a0e16877ee1b",
"m_Id": 1,
"m_DisplayName": "X",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "X",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "83685b6de2f6484994dd3196b8d9b062",
"m_Id": 1,
"m_DisplayName": "FresnelResult",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "FresnelResult",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",
"m_ObjectId": "83920671b5b947b8a6d62cc8c1171637",
"m_Id": 0,
"m_DisplayName": "Normal",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "Normal",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_Labels": [],
"m_Space": 2
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",
"m_ObjectId": "8f0df9be7f234529997028052adebe8f",
"m_Id": 0,
"m_DisplayName": "Normal",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "Normal",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_Labels": [],
"m_Space": 2
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
"m_ObjectId": "9fc42d61d08a431e8e1a0f15499fc294",
"m_Id": 0,
"m_DisplayName": "Out",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_Labels": []
}
{
"m_SGVersion": 1,
"m_Type": "UnityEditor.ShaderGraph.ShaderKeyword",
"m_ObjectId": "a412590dcaf94723b4db70f0f54fa85c",
"m_Guid": {
"m_GuidSerialized": "63052f39-3500-4bb8-8791-b6e7fd1f3468"
},
"m_Name": "Perspective?",
"m_DefaultRefNameVersion": 1,
"m_RefNameGeneratedByDisplayName": "Perspective?",
"m_DefaultReferenceName": "_PERSPECTIVE",
"m_OverrideReferenceName": "",
"m_GeneratePropertyBlock": true,
"m_UseCustomSlotLabel": false,
"m_CustomSlotLabel": "",
"m_DismissedVersion": 0,
"m_KeywordType": 0,
"m_KeywordDefinition": 0,
"m_KeywordScope": 0,
"m_KeywordStages": 63,
"m_Entries": [],
"m_Value": 0,
"m_IsEditable": true
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "b1d294e9cb014a6f806beac67cf227f0",
"m_Id": 0,
"m_DisplayName": "HorizonDistance",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.PropertyNode",
"m_ObjectId": "bb1b567c8cd54712be0aa1ab56158c06",
"m_Group": {
"m_Id": ""
},
"m_Name": "Property",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -321.5999755859375,
"y": -217.00006103515626,
"width": 0.0,
"height": 0.0
}
},
"m_Slots": [
{
"m_Id": "b1d294e9cb014a6f806beac67cf227f0"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_Property": {
"m_Id": "2d754b4252a04d41b586475348c8458a"
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "be2b8f1af2b64ba8a8267f24d366ba48",
"m_Id": 3,
"m_DisplayName": "Z",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "Z",
"m_StageCapability": 3,
"m_Value": 1.0,
"m_DefaultValue": 0.0,
"m_Labels": [
"Z"
]
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "c0bd398476794d0fb193332dc90f4d30",
"m_Id": 2,
"m_DisplayName": "Power",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "Power",
"m_StageCapability": 3,
"m_Value": 1.0,
"m_DefaultValue": 1.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.ViewDirectionMaterialSlot",
"m_ObjectId": "d5bce40cf0774b1fa9fe8bb58c2586ec",
"m_Id": 1,
"m_DisplayName": "View Dir",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "ViewDir",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"m_Labels": [],
"m_Space": 2
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.FresnelNode",
"m_ObjectId": "d5defa2cb078451f8600e86b230e0a30",
"m_Group": {
"m_Id": ""
},
"m_Name": "Fresnel Effect",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -171.5999755859375,
"y": 25.0,
"width": 208.0,
"height": 325.5999755859375
}
},
"m_Slots": [
{
"m_Id": "8f0df9be7f234529997028052adebe8f"
},
{
"m_Id": "d5bce40cf0774b1fa9fe8bb58c2586ec"
},
{
"m_Id": "66196a568a184ea58d6e191a6e950786"
},
{
"m_Id": "f26851cd879f4389890cad34a7ee02c8"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 2,
"m_CustomColors": {
"m_SerializableColors": []
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
"m_ObjectId": "da6e59d8047746bc8950e8f797c3f318",
"m_Id": 0,
"m_DisplayName": "Out",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.KeywordNode",
"m_ObjectId": "e2d93f83b3444bdc9b039aff2c3f109d",
"m_Group": {
"m_Id": ""
},
"m_Name": "Perspective?",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": 292.4000244140625,
"y": -276.59991455078127,
"width": 208.00003051757813,
"height": 301.59991455078127
}
},
"m_Slots": [
{
"m_Id": "da6e59d8047746bc8950e8f797c3f318"
},
{
"m_Id": "587de35c92504b76aa861bd4a6001639"
},
{
"m_Id": "0cbf6b66a73948dca158d9f2d69ad7aa"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_Keyword": {
"m_Id": "a412590dcaf94723b4db70f0f54fa85c"
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "e3fe0ed4c42347cdab2a8a0dccc08e1f",
"m_Id": 2,
"m_DisplayName": "Y",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "Y",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": [
"Y"
]
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "f26851cd879f4389890cad34a7ee02c8",
"m_Id": 3,
"m_DisplayName": "Out",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: f346593723353f4488f8a099aef520eb
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/FresnelCalculation.shadersubgraph
uploadId: 700359
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: 370b72acb6baa764089512ed583870c4
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/GetDepth.shadersubgraph
uploadId: 700359
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: e12de5bce35668a4e8839cbe5732d905
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/IntersectionFoam.shadersubgraph
uploadId: 700359
@@ -0,0 +1,339 @@
{
"m_SGVersion": 3,
"m_Type": "UnityEditor.ShaderGraph.GraphData",
"m_ObjectId": "169682d71fc843029d00fbb14dad413b",
"m_Properties": [
{
"m_Id": "99f3c975dfea48a181fa84ac19016122"
}
],
"m_Keywords": [],
"m_Dropdowns": [],
"m_CategoryData": [
{
"m_Id": "56cdf3021b3e4c07a043bc01ac069aa7"
}
],
"m_Nodes": [
{
"m_Id": "7ffa6f5fb2d64f92ba2c5adadf677b33"
},
{
"m_Id": "3ba350a2ed3c45a6b7b551a667768c4f"
},
{
"m_Id": "04f15eda597141b2a2df5fd6f33e184d"
}
],
"m_GroupDatas": [],
"m_StickyNoteDatas": [],
"m_Edges": [
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "04f15eda597141b2a2df5fd6f33e184d"
},
"m_SlotId": 1
},
"m_InputSlot": {
"m_Node": {
"m_Id": "7ffa6f5fb2d64f92ba2c5adadf677b33"
},
"m_SlotId": 1
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "3ba350a2ed3c45a6b7b551a667768c4f"
},
"m_SlotId": 0
},
"m_InputSlot": {
"m_Node": {
"m_Id": "04f15eda597141b2a2df5fd6f33e184d"
},
"m_SlotId": 0
}
}
],
"m_VertexContext": {
"m_Position": {
"x": 0.0,
"y": 0.0
},
"m_Blocks": []
},
"m_FragmentContext": {
"m_Position": {
"x": 0.0,
"y": 0.0
},
"m_Blocks": []
},
"m_PreviewData": {
"serializedMesh": {
"m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}",
"m_Guid": ""
},
"preventRotation": false
},
"m_Path": "Sub Graphs",
"m_GraphPrecision": 1,
"m_PreviewMode": 2,
"m_OutputNode": {
"m_Id": "7ffa6f5fb2d64f92ba2c5adadf677b33"
},
"m_SubDatas": [],
"m_ActiveTargets": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.InvertColorsNode",
"m_ObjectId": "04f15eda597141b2a2df5fd6f33e184d",
"m_Group": {
"m_Id": ""
},
"m_Name": "Invert Colors",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -232.0,
"y": 48.79998779296875,
"width": 208.0,
"height": 390.4000244140625
}
},
"m_Slots": [
{
"m_Id": "f0450d601c4c45be827c757076ca7daa"
},
{
"m_Id": "8f164feb461c48739b5f1f7388f6473e"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_RedChannel": true,
"m_GreenChannel": true,
"m_BlueChannel": true
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.PropertyNode",
"m_ObjectId": "3ba350a2ed3c45a6b7b551a667768c4f",
"m_Group": {
"m_Id": ""
},
"m_Name": "Property",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -394.3999938964844,
"y": 87.20001220703125,
"width": 132.0,
"height": 33.5999755859375
}
},
"m_Slots": [
{
"m_Id": "d5533b0add7544bca408fce1ab9b3840"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_Property": {
"m_Id": "99f3c975dfea48a181fa84ac19016122"
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.CategoryData",
"m_ObjectId": "56cdf3021b3e4c07a043bc01ac069aa7",
"m_Name": "",
"m_ChildObjectList": [
{
"m_Id": "99f3c975dfea48a181fa84ac19016122"
}
]
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
"m_ObjectId": "65fff7df8a234a35b131c8fb584de977",
"m_Id": 1,
"m_DisplayName": "Output",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "Output",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.SubGraphOutputNode",
"m_ObjectId": "7ffa6f5fb2d64f92ba2c5adadf677b33",
"m_Group": {
"m_Id": ""
},
"m_Name": "Output",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": 101.5999755859375,
"y": 48.79998779296875,
"width": 91.20001220703125,
"height": 76.80001831054688
}
},
"m_Slots": [
{
"m_Id": "65fff7df8a234a35b131c8fb584de977"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"IsFirstSlotValid": true
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
"m_ObjectId": "8f164feb461c48739b5f1f7388f6473e",
"m_Id": 1,
"m_DisplayName": "Out",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
}
}
{
"m_SGVersion": 3,
"m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty",
"m_ObjectId": "99f3c975dfea48a181fa84ac19016122",
"m_Guid": {
"m_GuidSerialized": "2cf8fcc9-42b0-4d4c-92ac-6b0b43e2f20f"
},
"m_Name": "InputColor",
"m_DefaultRefNameVersion": 1,
"m_RefNameGeneratedByDisplayName": "InputColor",
"m_DefaultReferenceName": "_InputColor",
"m_OverrideReferenceName": "",
"m_GeneratePropertyBlock": true,
"m_UseCustomSlotLabel": false,
"m_CustomSlotLabel": "",
"m_DismissedVersion": 0,
"m_Precision": 0,
"overrideHLSLDeclaration": false,
"hlslDeclarationOverride": 0,
"m_Hidden": false,
"m_Value": {
"r": 0.0,
"g": 0.0,
"b": 0.0,
"a": 0.0
},
"isMainColor": false,
"m_ColorMode": 0
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
"m_ObjectId": "d5533b0add7544bca408fce1ab9b3840",
"m_Id": 0,
"m_DisplayName": "InputColor",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
"m_ObjectId": "f0450d601c4c45be827c757076ca7daa",
"m_Id": 0,
"m_DisplayName": "In",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "In",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
}
}
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: a5c43e269304bff4a91c002de46388cb
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/InvertColors.shadersubgraph
uploadId: 700359
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: e171f84b26d60334ab1b617558319f0d
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/Overlay.shadersubgraph
uploadId: 700359
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: ef286e626cee63841803a024235a644f
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/PanningUVs.shadersubgraph
uploadId: 700359
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: f41bb18b12540894cadcf85fcc438801
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/PrimaryFoam.shadersubgraph
uploadId: 700359
@@ -0,0 +1,856 @@
{
"m_SGVersion": 3,
"m_Type": "UnityEditor.ShaderGraph.GraphData",
"m_ObjectId": "84c9273dcded4d07b5f00d53518cc4e9",
"m_Properties": [
{
"m_Id": "06080a65a3b64fb7b80436267bc5cc3e"
},
{
"m_Id": "6cd127770c0248149573d1447bea387b"
},
{
"m_Id": "080c50c0611c4a8ba72d7a7bb6f4d6b8"
}
],
"m_Keywords": [],
"m_Dropdowns": [],
"m_CategoryData": [
{
"m_Id": "6820da6d41b54518830bd3182c1510bd"
}
],
"m_Nodes": [
{
"m_Id": "e844ff247d044588a485de6cd4d4f9e3"
},
{
"m_Id": "143e4398349948279eee045e0f9170eb"
},
{
"m_Id": "da0e6619fc3f4e22984f43026a0b5c6f"
},
{
"m_Id": "3f714cd044804cf598e93af0be6d96e0"
},
{
"m_Id": "01b9233f96594a05b2c16963f58eb91b"
},
{
"m_Id": "4aeb41f2c0de45b8959feed6af6998ee"
},
{
"m_Id": "7a32419bb4c146e68196c2d5904b5441"
}
],
"m_GroupDatas": [],
"m_StickyNoteDatas": [],
"m_Edges": [
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "01b9233f96594a05b2c16963f58eb91b"
},
"m_SlotId": 0
},
"m_InputSlot": {
"m_Node": {
"m_Id": "143e4398349948279eee045e0f9170eb"
},
"m_SlotId": 1
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "143e4398349948279eee045e0f9170eb"
},
"m_SlotId": 0
},
"m_InputSlot": {
"m_Node": {
"m_Id": "e844ff247d044588a485de6cd4d4f9e3"
},
"m_SlotId": 1
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "3f714cd044804cf598e93af0be6d96e0"
},
"m_SlotId": 2
},
"m_InputSlot": {
"m_Node": {
"m_Id": "143e4398349948279eee045e0f9170eb"
},
"m_SlotId": 2
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "4aeb41f2c0de45b8959feed6af6998ee"
},
"m_SlotId": 0
},
"m_InputSlot": {
"m_Node": {
"m_Id": "3f714cd044804cf598e93af0be6d96e0"
},
"m_SlotId": 1
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "7a32419bb4c146e68196c2d5904b5441"
},
"m_SlotId": 0
},
"m_InputSlot": {
"m_Node": {
"m_Id": "e844ff247d044588a485de6cd4d4f9e3"
},
"m_SlotId": 2
}
},
{
"m_OutputSlot": {
"m_Node": {
"m_Id": "da0e6619fc3f4e22984f43026a0b5c6f"
},
"m_SlotId": 0
},
"m_InputSlot": {
"m_Node": {
"m_Id": "3f714cd044804cf598e93af0be6d96e0"
},
"m_SlotId": 0
}
}
],
"m_VertexContext": {
"m_Position": {
"x": 0.0,
"y": 0.0
},
"m_Blocks": []
},
"m_FragmentContext": {
"m_Position": {
"x": 0.0,
"y": 0.0
},
"m_Blocks": []
},
"m_PreviewData": {
"serializedMesh": {
"m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}",
"m_Guid": ""
},
"preventRotation": false
},
"m_Path": "Sub Graphs",
"m_GraphPrecision": 1,
"m_PreviewMode": 2,
"m_OutputNode": {
"m_Id": "e844ff247d044588a485de6cd4d4f9e3"
},
"m_SubDatas": [],
"m_ActiveTargets": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.PropertyNode",
"m_ObjectId": "01b9233f96594a05b2c16963f58eb91b",
"m_Group": {
"m_Id": ""
},
"m_Name": "Property",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -9.4000244140625,
"y": 98.1999740600586,
"width": 0.0,
"height": 0.0
}
},
"m_Slots": [
{
"m_Id": "8f705ae8bd7e4d2e9e72156a9c16bf14"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_Property": {
"m_Id": "06080a65a3b64fb7b80436267bc5cc3e"
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty",
"m_ObjectId": "06080a65a3b64fb7b80436267bc5cc3e",
"m_Guid": {
"m_GuidSerialized": "aa4a2561-faab-477a-8d97-310ec9d611e3"
},
"m_Name": "ReflectionMap",
"m_DefaultRefNameVersion": 1,
"m_RefNameGeneratedByDisplayName": "ReflectionMap",
"m_DefaultReferenceName": "_ReflectionMap",
"m_OverrideReferenceName": "",
"m_GeneratePropertyBlock": true,
"m_UseCustomSlotLabel": false,
"m_CustomSlotLabel": "",
"m_DismissedVersion": 0,
"m_Precision": 0,
"overrideHLSLDeclaration": false,
"hlslDeclarationOverride": 0,
"m_Hidden": false,
"m_Value": {
"m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
"m_Guid": ""
},
"isMainTexture": false,
"useTilingAndOffset": false,
"m_Modifiable": true,
"m_DefaultType": 0
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "06a2408e5ec94f829727aae0a105116a",
"m_Id": 0,
"m_DisplayName": "ReflectionDistortion",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 1,
"m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty",
"m_ObjectId": "080c50c0611c4a8ba72d7a7bb6f4d6b8",
"m_Guid": {
"m_GuidSerialized": "5a766af2-b411-4ca8-b6b6-5f12e42498fc"
},
"m_Name": "ReflectionBlend",
"m_DefaultRefNameVersion": 1,
"m_RefNameGeneratedByDisplayName": "ReflectionBlend",
"m_DefaultReferenceName": "_ReflectionBlend",
"m_OverrideReferenceName": "",
"m_GeneratePropertyBlock": true,
"m_UseCustomSlotLabel": false,
"m_CustomSlotLabel": "",
"m_DismissedVersion": 0,
"m_Precision": 0,
"overrideHLSLDeclaration": false,
"hlslDeclarationOverride": 0,
"m_Hidden": false,
"m_Value": 0.0,
"m_FloatType": 0,
"m_RangeValues": {
"x": 0.0,
"y": 1.0
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode",
"m_ObjectId": "143e4398349948279eee045e0f9170eb",
"m_Group": {
"m_Id": ""
},
"m_Name": "Sample Texture 2D",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": 140.5999755859375,
"y": -25.800003051757814,
"width": 183.199951171875,
"height": 247.9999542236328
}
},
"m_Slots": [
{
"m_Id": "2071acfbe6d84e60816f1b5d85c0bb76"
},
{
"m_Id": "afa293a9ff164c258b39da9fc68e23cd"
},
{
"m_Id": "2753149178cf4d37806391f211d54e34"
},
{
"m_Id": "9750b2e66f1444248bc97ea1a44ce9c6"
},
{
"m_Id": "d9b3ae3d220b4a1ab90638dad598994f"
},
{
"m_Id": "c7dc9bb699b840fe88699f63d61f8066"
},
{
"m_Id": "db4a215f3af5412491f865295d870f93"
},
{
"m_Id": "a90cc8497849489b867dfddbf748ad44"
}
],
"synonyms": [
"tex2d"
],
"m_Precision": 0,
"m_PreviewExpanded": false,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_TextureType": 0,
"m_NormalMapSpace": 0,
"m_EnableGlobalMipBias": true,
"m_MipSamplingMode": 0
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
"m_ObjectId": "14421fba8a844629a8964b9a53927126",
"m_Id": 0,
"m_DisplayName": "UV",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "UV",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0
},
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
"m_ObjectId": "2071acfbe6d84e60816f1b5d85c0bb76",
"m_Id": 0,
"m_DisplayName": "RGBA",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "RGBA",
"m_StageCapability": 2,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "2753149178cf4d37806391f211d54e34",
"m_Id": 5,
"m_DisplayName": "G",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "G",
"m_StageCapability": 2,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 1,
"m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode",
"m_ObjectId": "3f714cd044804cf598e93af0be6d96e0",
"m_Group": {
"m_Id": ""
},
"m_Name": "DistortUV (Custom Function)",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -109.800048828125,
"y": -249.00003051757813,
"width": 211.199951171875,
"height": 301.60003662109377
}
},
"m_Slots": [
{
"m_Id": "14421fba8a844629a8964b9a53927126"
},
{
"m_Id": "8c07ac5d0c884f20a97e2505a1807ec9"
},
{
"m_Id": "9dd854db4a4b4f13afe53a3d18d5c790"
}
],
"synonyms": [
"code",
"HLSL"
],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_SourceType": 0,
"m_FunctionName": "DistortUV",
"m_FunctionSource": "84eeacf7409dd9e4a8cbfab15c1cb3c7",
"m_FunctionBody": "Enter function body here..."
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.PropertyNode",
"m_ObjectId": "4aeb41f2c0de45b8959feed6af6998ee",
"m_Group": {
"m_Id": ""
},
"m_Name": "Property",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -259.800048828125,
"y": -68.20001220703125,
"width": 0.0,
"height": 0.0
}
},
"m_Slots": [
{
"m_Id": "06a2408e5ec94f829727aae0a105116a"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_Property": {
"m_Id": "6cd127770c0248149573d1447bea387b"
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "5b76f3886c4b4fdda58fb9b97384a791",
"m_Id": 0,
"m_DisplayName": "ReflectionBlend",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.CategoryData",
"m_ObjectId": "6820da6d41b54518830bd3182c1510bd",
"m_Name": "",
"m_ChildObjectList": [
{
"m_Id": "06080a65a3b64fb7b80436267bc5cc3e"
},
{
"m_Id": "6cd127770c0248149573d1447bea387b"
},
{
"m_Id": "080c50c0611c4a8ba72d7a7bb6f4d6b8"
}
]
}
{
"m_SGVersion": 1,
"m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty",
"m_ObjectId": "6cd127770c0248149573d1447bea387b",
"m_Guid": {
"m_GuidSerialized": "416ba232-8438-4bcf-b03e-48a87b3e04a3"
},
"m_Name": "ReflectionDistortion",
"m_DefaultRefNameVersion": 1,
"m_RefNameGeneratedByDisplayName": "ReflectionDistortion",
"m_DefaultReferenceName": "_ReflectionDistortion",
"m_OverrideReferenceName": "",
"m_GeneratePropertyBlock": true,
"m_UseCustomSlotLabel": false,
"m_CustomSlotLabel": "",
"m_DismissedVersion": 0,
"m_Precision": 0,
"overrideHLSLDeclaration": false,
"hlslDeclarationOverride": 0,
"m_Hidden": false,
"m_Value": 0.0,
"m_FloatType": 0,
"m_RangeValues": {
"x": 0.0,
"y": 1.0
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.PropertyNode",
"m_ObjectId": "7a32419bb4c146e68196c2d5904b5441",
"m_Group": {
"m_Id": ""
},
"m_Name": "Property",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -150.0,
"y": 0.0,
"width": 0.0,
"height": 0.0
}
},
"m_Slots": [
{
"m_Id": "5b76f3886c4b4fdda58fb9b97384a791"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_Property": {
"m_Id": "080c50c0611c4a8ba72d7a7bb6f4d6b8"
}
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "8c07ac5d0c884f20a97e2505a1807ec9",
"m_Id": 1,
"m_DisplayName": "Amount",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "Amount",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",
"m_ObjectId": "8f705ae8bd7e4d2e9e72156a9c16bf14",
"m_Id": 0,
"m_DisplayName": "ReflectionMap",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_BareResource": false
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "9750b2e66f1444248bc97ea1a44ce9c6",
"m_Id": 6,
"m_DisplayName": "B",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "B",
"m_StageCapability": 2,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
"m_ObjectId": "9dd854db4a4b4f13afe53a3d18d5c790",
"m_Id": 2,
"m_DisplayName": "Out",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0
},
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
"m_ObjectId": "a6d01dda399d4bb2860be5c3d9d93f8b",
"m_Id": 1,
"m_DisplayName": "ReflexColor",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "ReflexColor",
"m_StageCapability": 2,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
"m_ObjectId": "a90cc8497849489b867dfddbf748ad44",
"m_Id": 3,
"m_DisplayName": "Sampler",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "Sampler",
"m_StageCapability": 3,
"m_BareResource": false
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "afa293a9ff164c258b39da9fc68e23cd",
"m_Id": 4,
"m_DisplayName": "R",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "R",
"m_StageCapability": 2,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
"m_ObjectId": "c7dc9bb699b840fe88699f63d61f8066",
"m_Id": 1,
"m_DisplayName": "Texture",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "Texture",
"m_StageCapability": 3,
"m_BareResource": false,
"m_Texture": {
"m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
"m_Guid": ""
},
"m_DefaultType": 0
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "d9b3ae3d220b4a1ab90638dad598994f",
"m_Id": 7,
"m_DisplayName": "A",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "A",
"m_StageCapability": 2,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.ScreenPositionNode",
"m_ObjectId": "da0e6619fc3f4e22984f43026a0b5c6f",
"m_Group": {
"m_Id": ""
},
"m_Name": "Screen Position",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": -305.0,
"y": -153.00003051757813,
"width": 145.5999755859375,
"height": 127.20002746582031
}
},
"m_Slots": [
{
"m_Id": "f07f3a02b0164a11b64a55d4c4f7cb38"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": false,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"m_ScreenSpaceType": 0
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
"m_ObjectId": "db4a215f3af5412491f865295d870f93",
"m_Id": 2,
"m_DisplayName": "UV",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "UV",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0
},
"m_Labels": [],
"m_Channel": 0
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.SubGraphOutputNode",
"m_ObjectId": "e844ff247d044588a485de6cd4d4f9e3",
"m_Group": {
"m_Id": ""
},
"m_Name": "Output",
"m_DrawState": {
"m_Expanded": true,
"m_Position": {
"serializedVersion": "2",
"x": 432.1999816894531,
"y": 0.0,
"width": 0.0,
"height": 0.0
}
},
"m_Slots": [
{
"m_Id": "a6d01dda399d4bb2860be5c3d9d93f8b"
},
{
"m_Id": "ec4c3e991b8c40a3be53e6ebd5ec352d"
}
],
"synonyms": [],
"m_Precision": 0,
"m_PreviewExpanded": true,
"m_DismissedVersion": 0,
"m_PreviewMode": 0,
"m_CustomColors": {
"m_SerializableColors": []
},
"IsFirstSlotValid": true
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
"m_ObjectId": "ec4c3e991b8c40a3be53e6ebd5ec352d",
"m_Id": 2,
"m_DisplayName": "ReflexResult",
"m_SlotType": 0,
"m_Hidden": false,
"m_ShaderOutputName": "ReflexResult",
"m_StageCapability": 3,
"m_Value": 0.0,
"m_DefaultValue": 0.0,
"m_Labels": []
}
{
"m_SGVersion": 0,
"m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
"m_ObjectId": "f07f3a02b0164a11b64a55d4c4f7cb38",
"m_Id": 0,
"m_DisplayName": "Out",
"m_SlotType": 1,
"m_Hidden": false,
"m_ShaderOutputName": "Out",
"m_StageCapability": 3,
"m_Value": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_DefaultValue": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 0.0
},
"m_Labels": []
}
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: 2a83053698b0a9d46a141dd7d36ac2ac
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/Reflections.shadersubgraph
uploadId: 700359
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: dfdc6038fe7bdd5479fef69a0fcdb7ab
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/RefractedUV.shadersubgraph
uploadId: 700359
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: a707540033b78f44bbef5139f65097d0
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/SecondaryFoam.shadersubgraph
uploadId: 700359
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: ca077344d37a82d46ba9cd29d65fb670
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/Specular.shadersubgraph
uploadId: 700359
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: f15de5aaad0a8bf41b7c4272a40435b7
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/Subgraphs/WavesCalculation.shadersubgraph
uploadId: 700359
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: d17a14960bf347545ad50aa79b9012e6
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/WaterLit.shadergraph
uploadId: 700359
@@ -0,0 +1,17 @@
fileFormatVersion: 2
guid: 8eef88ae773ef5f4dbe4da56da89303b
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3}
AssetOrigin:
serializedVersion: 1
productId: 297566
packageName: Water Stylized Shader Orto & Perspective Camera
packageVersion: 1.0
assetPath: Assets/AureDevGames/Water Stylized Shader Orto & Perspective Camera/Shader/WaterUnlit.shadergraph
uploadId: 700359