You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

131 lines
6.2 KiB

  1. // Made with Amplify Shader Editor
  2. // Available at the Unity Asset Store - http://u3d.as/y3X
  3. Shader "ASESampleShaders/XRay"
  4. {
  5. Properties
  6. {
  7. _ASEOutlineWidth( "Outline Width", Float ) = 0
  8. _TextureSample0("Texture Sample 0", 2D) = "white" {}
  9. _XRayPower("XRayPower", Float) = 0
  10. _XRayColor("XRayColor", Color) = (0,0,0,0)
  11. _XRayScale("XRayScale", Float) = 0
  12. _XRayBias("XRayBias", Float) = 0
  13. _XRayIntensity("XRayIntensity", Float) = 0
  14. [HideInInspector] _texcoord( "", 2D ) = "white" {}
  15. [HideInInspector] __dirty( "", Int ) = 1
  16. }
  17. SubShader
  18. {
  19. Pass
  20. {
  21. ColorMask 0
  22. ZWrite On
  23. }
  24. Tags{ "RenderType" = "Transparent" "Queue" = "Transparent+0"}
  25. ZWrite Off
  26. ZTest Always
  27. Cull Back
  28. CGPROGRAM
  29. #pragma target 3.0
  30. #pragma surface outlineSurf Outline nofog alpha:fade keepalpha noshadow noambient novertexlights nolightmap nodynlightmap nodirlightmap nometa noforwardadd vertex:outlineVertexDataFunc
  31. struct Input
  32. {
  33. float3 worldPos;
  34. float3 worldNormal;
  35. INTERNAL_DATA
  36. };
  37. uniform float _XRayBias;
  38. uniform float _XRayScale;
  39. uniform float _XRayPower;
  40. uniform float4 _XRayColor;
  41. uniform float _XRayIntensity;
  42. uniform fixed _ASEOutlineWidth;
  43. void outlineVertexDataFunc( inout appdata_full v, out Input o )
  44. {
  45. UNITY_INITIALIZE_OUTPUT( Input, o );
  46. v.vertex.xyz += ( v.normal * _ASEOutlineWidth );
  47. }
  48. inline fixed4 LightingOutline( SurfaceOutput s, half3 lightDir, half atten ) { return fixed4 ( 0,0,0, s.Alpha); }
  49. void outlineSurf( Input i, inout SurfaceOutput o )
  50. {
  51. float3 ase_worldPos = i.worldPos;
  52. float3 ase_worldViewDir = normalize( UnityWorldSpaceViewDir( ase_worldPos ) );
  53. float3 ase_worldNormal = WorldNormalVector( i, float3( 0, 0, 1 ) );
  54. float fresnelNDotV4 = dot( normalize( ase_worldNormal ), ase_worldViewDir );
  55. float fresnelNode4 = ( _XRayBias + _XRayScale * pow( 1.0 - fresnelNDotV4, _XRayPower ) );
  56. o.Emission = ( fresnelNode4 * _XRayColor ).rgb;
  57. o.Alpha = ( fresnelNode4 * (_XRayColor).a * _XRayIntensity );
  58. o.Normal = float3(0,0,-1);
  59. }
  60. ENDCG
  61. Tags{ "RenderType" = "Opaque" "Queue" = "Geometry+1" }
  62. Cull Back
  63. ZWrite On
  64. ZTest LEqual
  65. CGPROGRAM
  66. #pragma target 3.0
  67. #pragma surface surf Standard keepalpha addshadow fullforwardshadows vertex:vertexDataFunc
  68. struct Input
  69. {
  70. float2 uv_texcoord;
  71. };
  72. uniform sampler2D _TextureSample0;
  73. uniform float4 _TextureSample0_ST;
  74. void vertexDataFunc( inout appdata_full v, out Input o )
  75. {
  76. UNITY_INITIALIZE_OUTPUT( Input, o );
  77. v.vertex.xyz += 0;
  78. }
  79. void surf( Input i , inout SurfaceOutputStandard o )
  80. {
  81. float2 uv_TextureSample0 = i.uv_texcoord * _TextureSample0_ST.xy + _TextureSample0_ST.zw;
  82. o.Albedo = tex2D( _TextureSample0, uv_TextureSample0 ).rgb;
  83. o.Alpha = 1;
  84. }
  85. ENDCG
  86. }
  87. Fallback "Diffuse"
  88. CustomEditor "ASEMaterialInspector"
  89. }
  90. /*ASEBEGIN
  91. Version=15305
  92. 579;92;844;805;1604.61;353.2161;2.502781;True;False
  93. Node;AmplifyShaderEditor.RangedFloatNode;7;-900.287,517.881;Float;False;Property;_XRayPower;XRayPower;1;0;Create;True;0;0;False;0;0;1.24;0;0;0;1;FLOAT;0
  94. Node;AmplifyShaderEditor.RangedFloatNode;11;-951.7518,442.8604;Float;False;Property;_XRayScale;XRayScale;3;0;Create;True;0;0;False;0;0;1.5;0;0;0;1;FLOAT;0
  95. Node;AmplifyShaderEditor.RangedFloatNode;12;-938.6353,337.6537;Float;False;Property;_XRayBias;XRayBias;4;0;Create;True;0;0;False;0;0;0.07;0;0;0;1;FLOAT;0
  96. Node;AmplifyShaderEditor.ColorNode;9;-820.4163,651.0913;Float;False;Property;_XRayColor;XRayColor;2;0;Create;True;0;0;False;0;0,0,0,0;0,0.297,1,1;0;5;COLOR;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  97. Node;AmplifyShaderEditor.FresnelNode;4;-714.0091,387.929;Float;True;Tangent;4;0;FLOAT3;0,0,1;False;1;FLOAT;0;False;2;FLOAT;1;False;3;FLOAT;5;False;1;FLOAT;0
  98. Node;AmplifyShaderEditor.RangedFloatNode;16;-532.6353,870.6537;Float;False;Property;_XRayIntensity;XRayIntensity;5;0;Create;True;0;0;False;0;0;1.5;0;0;0;1;FLOAT;0
  99. Node;AmplifyShaderEditor.SwizzleNode;14;-492.6353,739.6537;Float;False;FLOAT;3;1;2;3;1;0;COLOR;0,0,0,0;False;1;FLOAT;0
  100. Node;AmplifyShaderEditor.SimpleMultiplyOpNode;15;-342.6353,585.6537;Float;False;3;3;0;FLOAT;0;False;1;FLOAT;0;False;2;FLOAT;0;False;1;FLOAT;0
  101. Node;AmplifyShaderEditor.SimpleMultiplyOpNode;10;-390.3535,478.4465;Float;False;2;2;0;FLOAT;0;False;1;COLOR;0,0,0,0;False;1;COLOR;0
  102. Node;AmplifyShaderEditor.SamplerNode;1;-421.5808,-222.0275;Float;True;Property;_TextureSample0;Texture Sample 0;0;0;Create;True;0;0;False;0;None;e70a4cc9a27a530468623a76c6c025fe;True;0;False;white;Auto;False;Object;-1;Auto;Texture2D;6;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;5;COLOR;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  103. Node;AmplifyShaderEditor.OutlineNode;3;-143.3773,491.4906;Float;False;0;True;Transparent;2;7;Back;3;0;FLOAT3;0,0,0;False;2;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT3;0
  104. Node;AmplifyShaderEditor.StandardSurfaceOutputNode;0;9,-45;Float;False;True;2;Float;ASEMaterialInspector;0;0;Standard;ASESampleShaders/XRay;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;False;Back;1;False;-1;3;False;-1;False;1;False;-1;1;False;-1;True;0;Opaque;0.5;True;True;1;False;Opaque;;Geometry;All;True;True;True;True;True;True;True;True;True;True;True;True;True;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;-1;False;-1;-1;False;-1;0;False;0;0,0,0,0;VertexOffset;True;False;Cylindrical;False;Relative;0;;-1;-1;-1;-1;0;0;0;False;0;0;0;False;-1;-1;0;False;-1;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
  105. WireConnection;4;1;12;0
  106. WireConnection;4;2;11;0
  107. WireConnection;4;3;7;0
  108. WireConnection;14;0;9;0
  109. WireConnection;15;0;4;0
  110. WireConnection;15;1;14;0
  111. WireConnection;15;2;16;0
  112. WireConnection;10;0;4;0
  113. WireConnection;10;1;9;0
  114. WireConnection;3;0;10;0
  115. WireConnection;3;2;15;0
  116. WireConnection;0;0;1;0
  117. WireConnection;0;11;3;0
  118. ASEEND*/
  119. //CHKSM=3009DBC60633C94AFDCB3E17B29986206D237EF6