100 lines
6.7 KiB
GLSL
100 lines
6.7 KiB
GLSL
// Made with Amplify Shader Editor
|
|
// Available at the Unity Asset Store - http://u3d.as/y3X
|
|
Shader "PBR/BaseMaterial_DoubleSide"
|
|
{
|
|
Properties
|
|
{
|
|
_Tex_D("Tex_D", 2D) = "white" {}
|
|
_BlendCol("BlendCol", Color) = (1,1,1,0)
|
|
_ColInt("Col Int", Range( 0 , 1)) = 0
|
|
_Tex_R("Tex_R", 2D) = "white" {}
|
|
_SmoothInt("Smooth Int", Range( 0 , 1)) = 0
|
|
_Tex_N("Tex_N", 2D) = "bump" {}
|
|
_NormalInt("Normal Int", Range( 0 , 5)) = 1
|
|
[HideInInspector] _texcoord( "", 2D ) = "white" {}
|
|
[HideInInspector] __dirty( "", Int ) = 1
|
|
}
|
|
|
|
SubShader
|
|
{
|
|
Tags{ "RenderType" = "Opaque" "Queue" = "AlphaTest+0" }
|
|
Cull Off
|
|
CGPROGRAM
|
|
#pragma target 3.0
|
|
#pragma surface surf Standard keepalpha addshadow fullforwardshadows
|
|
struct Input
|
|
{
|
|
float2 uv_texcoord;
|
|
};
|
|
|
|
uniform sampler2D _Tex_N;
|
|
uniform float4 _Tex_N_ST;
|
|
uniform float _NormalInt;
|
|
uniform sampler2D _Tex_D;
|
|
uniform float4 _Tex_D_ST;
|
|
uniform float4 _BlendCol;
|
|
uniform float _ColInt;
|
|
uniform sampler2D _Tex_R;
|
|
uniform float4 _Tex_R_ST;
|
|
uniform float _SmoothInt;
|
|
|
|
void surf( Input i , inout SurfaceOutputStandard o )
|
|
{
|
|
float2 uv_Tex_N = i.uv_texcoord * _Tex_N_ST.xy + _Tex_N_ST.zw;
|
|
float3 tex2DNode2 = UnpackNormal( tex2D( _Tex_N, uv_Tex_N ) );
|
|
float3 appendResult42 = (float3(( tex2DNode2.r * _NormalInt ) , ( tex2DNode2.g * _NormalInt ) , tex2DNode2.b));
|
|
o.Normal = appendResult42;
|
|
float2 uv_Tex_D = i.uv_texcoord * _Tex_D_ST.xy + _Tex_D_ST.zw;
|
|
float4 temp_cast_0 = ((1.0 + (_ColInt - 0.0) * (0.0 - 1.0) / (1.0 - 0.0))).xxxx;
|
|
o.Albedo = pow( ( tex2D( _Tex_D, uv_Tex_D ) * _BlendCol ) , temp_cast_0 ).rgb;
|
|
float2 uv_Tex_R = i.uv_texcoord * _Tex_R_ST.xy + _Tex_R_ST.zw;
|
|
o.Smoothness = pow( ( 1.0 - tex2D( _Tex_R, uv_Tex_R ).r ) , (1.0 + (_SmoothInt - 0.0) * (0.0 - 1.0) / (1.0 - 0.0)) );
|
|
o.Alpha = 1;
|
|
}
|
|
|
|
ENDCG
|
|
}
|
|
Fallback "Diffuse"
|
|
CustomEditor "ASEMaterialInspector"
|
|
}
|
|
/*ASEBEGIN
|
|
Version=18935
|
|
2020;159;1446;828;1949.158;345.3471;1.828945;True;True
|
|
Node;AmplifyShaderEditor.SamplerNode;2;-1171.735,213.203;Inherit;True;Property;_Tex_N;Tex_N;6;0;Create;True;0;0;0;False;0;False;-1;None;d84f8c02c4f560f4098106db4101ce6c;True;0;True;bump;Auto;True;Object;-1;Auto;Texture2D;8;0;SAMPLER2D;;False;1;FLOAT2;0,0;False;2;FLOAT;0;False;3;FLOAT2;0,0;False;4;FLOAT2;0,0;False;5;FLOAT;1;False;6;FLOAT;0;False;7;SAMPLERSTATE;;False;5;FLOAT3;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
|
|
Node;AmplifyShaderEditor.RangedFloatNode;33;-1143.478,760.1311;Inherit;False;Property;_SmoothInt;Smooth Int;5;0;Create;True;0;0;0;False;0;False;0;0;0;1;0;1;FLOAT;0
|
|
Node;AmplifyShaderEditor.SamplerNode;3;-1166.108,514.7971;Inherit;True;Property;_Tex_R;Tex_R;4;0;Create;True;0;0;0;False;0;False;-1;None;35bc482a730e47948b184750e6d794d5;True;0;False;white;Auto;False;Object;-1;Auto;Texture2D;8;0;SAMPLER2D;;False;1;FLOAT2;0,0;False;2;FLOAT;0;False;3;FLOAT2;0,0;False;4;FLOAT2;0,0;False;5;FLOAT;1;False;6;FLOAT;0;False;7;SAMPLERSTATE;;False;5;COLOR;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
|
|
Node;AmplifyShaderEditor.RangedFloatNode;40;-1141.627,408.6538;Inherit;False;Property;_NormalInt;Normal Int;7;0;Create;True;0;0;0;False;0;False;1;1;0;5;0;1;FLOAT;0
|
|
Node;AmplifyShaderEditor.SamplerNode;31;-1135.148,-385.1291;Inherit;True;Property;_Tex_D;Tex_D;1;0;Create;True;0;0;0;False;0;False;-1;None;3d174c1238f0e8347822862e1e1bb2b8;True;0;False;white;Auto;False;Object;-1;Auto;Texture2D;8;0;SAMPLER2D;;False;1;FLOAT2;0,0;False;2;FLOAT;0;False;3;FLOAT2;0,0;False;4;FLOAT2;0,0;False;5;FLOAT;1;False;6;FLOAT;0;False;7;SAMPLERSTATE;;False;5;COLOR;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
|
|
Node;AmplifyShaderEditor.RangedFloatNode;47;-1153.331,51.21783;Inherit;False;Property;_ColInt;Col Int;3;0;Create;True;0;0;0;False;0;False;0;0;0;1;0;1;FLOAT;0
|
|
Node;AmplifyShaderEditor.ColorNode;44;-1033.854,-152.5242;Inherit;False;Property;_BlendCol;BlendCol;2;0;Create;True;0;0;0;False;0;False;1,1,1,0;1,1,1,0;True;0;5;COLOR;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
|
|
Node;AmplifyShaderEditor.OneMinusNode;4;-837.4171,541.7704;Inherit;True;1;0;FLOAT;0;False;1;FLOAT;0
|
|
Node;AmplifyShaderEditor.TFHCRemapNode;38;-841.3459,767.5595;Inherit;False;5;0;FLOAT;0;False;1;FLOAT;0;False;2;FLOAT;1;False;3;FLOAT;1;False;4;FLOAT;0;False;1;FLOAT;0
|
|
Node;AmplifyShaderEditor.SimpleMultiplyOpNode;39;-831.3293,264.1251;Inherit;False;2;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
|
|
Node;AmplifyShaderEditor.TFHCRemapNode;48;-843.1151,31.01904;Inherit;False;5;0;FLOAT;0;False;1;FLOAT;0;False;2;FLOAT;1;False;3;FLOAT;1;False;4;FLOAT;0;False;1;FLOAT;0
|
|
Node;AmplifyShaderEditor.SimpleMultiplyOpNode;41;-837.267,362.4137;Inherit;False;2;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
|
|
Node;AmplifyShaderEditor.SimpleMultiplyOpNode;45;-788.8302,-247.3325;Inherit;False;2;2;0;COLOR;0,0,0,0;False;1;COLOR;0,0,0,0;False;1;COLOR;0
|
|
Node;AmplifyShaderEditor.PowerNode;46;-591.631,-93.22586;Inherit;False;False;2;0;COLOR;0,0,0,0;False;1;FLOAT;1;False;1;COLOR;0
|
|
Node;AmplifyShaderEditor.DynamicAppendNode;42;-688.2805,300.8573;Inherit;False;FLOAT3;4;0;FLOAT;0;False;1;FLOAT;0;False;2;FLOAT;0;False;3;FLOAT;0;False;1;FLOAT3;0
|
|
Node;AmplifyShaderEditor.PowerNode;37;-636.9785,610.6874;Inherit;True;False;2;0;FLOAT;0;False;1;FLOAT;1;False;1;FLOAT;0
|
|
Node;AmplifyShaderEditor.StandardSurfaceOutputNode;0;-229.2357,251.1523;Float;False;True;-1;2;ASEMaterialInspector;0;0;Standard;PBR/BaseMaterial_DoubleSide;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;Off;0;False;-1;0;False;-1;False;0;False;-1;0;False;-1;False;0;Custom;0.5;True;True;0;True;Opaque;;AlphaTest;All;18;all;True;True;True;True;0;False;-1;False;0;False;-1;255;False;-1;255;False;-1;0;False;-1;0;False;-1;0;False;-1;0;False;-1;0;False;-1;0;False;-1;0;False;-1;0;False;-1;False;2;15;10;25;False;0.5;True;0;0;False;-1;0;False;-1;0;0;False;-1;0;False;-1;0;False;-1;0;False;-1;0;False;0;0,0,0,0;VertexOffset;True;False;Cylindrical;False;True;Relative;0;;0;-1;-1;-1;0;False;0;0;False;-1;-1;0;False;-1;0;0;0;False;0.1;False;-1;0;False;-1;False;16;0;FLOAT3;0,0,0;False;1;FLOAT3;0,0,0;False;2;FLOAT3;0,0,0;False;3;FLOAT;0;False;4;FLOAT;0;False;5;FLOAT;0;False;6;FLOAT3;0,0,0;False;7;FLOAT3;0,0,0;False;8;FLOAT;0;False;9;FLOAT;0;False;10;FLOAT;0;False;13;FLOAT3;0,0,0;False;11;FLOAT3;0,0,0;False;12;FLOAT3;0,0,0;False;14;FLOAT4;0,0,0,0;False;15;FLOAT3;0,0,0;False;0
|
|
WireConnection;4;0;3;1
|
|
WireConnection;38;0;33;0
|
|
WireConnection;39;0;2;1
|
|
WireConnection;39;1;40;0
|
|
WireConnection;48;0;47;0
|
|
WireConnection;41;0;2;2
|
|
WireConnection;41;1;40;0
|
|
WireConnection;45;0;31;0
|
|
WireConnection;45;1;44;0
|
|
WireConnection;46;0;45;0
|
|
WireConnection;46;1;48;0
|
|
WireConnection;42;0;39;0
|
|
WireConnection;42;1;41;0
|
|
WireConnection;42;2;2;3
|
|
WireConnection;37;0;4;0
|
|
WireConnection;37;1;38;0
|
|
WireConnection;0;0;46;0
|
|
WireConnection;0;1;42;0
|
|
WireConnection;0;4;37;0
|
|
ASEEND*/
|
|
//CHKSM=241282C8F4BBB6AA84D5F4F3787483182AA558C7 |