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.

253 lines
17 KiB

  1. // Made with Amplify Shader Editor
  2. // Available at the Unity Asset Store - http://u3d.as/y3X
  3. Shader "ASESampleShaders/Community/Skybox Cubemap Extended"
  4. {
  5. Properties
  6. {
  7. [Gamma][Header(Cubemap)]_TintColor("Tint Color", Color) = (0.5,0.5,0.5,1)
  8. _Exposure("Exposure", Range( 0 , 8)) = 1
  9. [NoScaleOffset]_Tex("Cubemap (HDR)", CUBE) = "black" {}
  10. [Header(Rotation)][Toggle(_ENABLEROTATION_ON)] _EnableRotation("Enable Rotation", Float) = 0
  11. [IntRange]_Rotation("Rotation", Range( 0 , 360)) = 0
  12. _RotationSpeed("Rotation Speed", Float) = 1
  13. [Header(Fog)][Toggle(_ENABLEFOG_ON)] _EnableFog("Enable Fog", Float) = 0
  14. _FogHeight("Fog Height", Range( 0 , 1)) = 1
  15. _FogSmoothness("Fog Smoothness", Range( 0.01 , 1)) = 0.01
  16. _FogFill("Fog Fill", Range( 0 , 1)) = 0.5
  17. [HideInInspector]_Tex_HDR("DecodeInstructions", Vector) = (0,0,0,0)
  18. [HideInInspector] __dirty( "", Int ) = 1
  19. }
  20. SubShader
  21. {
  22. Tags{ "RenderType" = "Background" "Queue" = "Background+0" "IgnoreProjector" = "True" "ForceNoShadowCasting" = "True" "IsEmissive" = "true" "PreviewType"="Skybox" }
  23. Cull Off
  24. ZWrite Off
  25. CGPROGRAM
  26. #include "UnityShaderVariables.cginc"
  27. #pragma target 2.0
  28. #pragma shader_feature _ENABLEFOG_ON
  29. #pragma shader_feature _ENABLEROTATION_ON
  30. #pragma surface surf Unlit keepalpha noshadow noambient novertexlights nolightmap nodynlightmap nodirlightmap nofog nometa noforwardadd vertex:vertexDataFunc
  31. struct Input
  32. {
  33. float3 vertexToFrag774;
  34. float3 worldPos;
  35. };
  36. uniform half4 _Tex_HDR;
  37. uniform samplerCUBE _Tex;
  38. uniform half _Rotation;
  39. uniform fixed _RotationSpeed;
  40. uniform fixed4 _TintColor;
  41. uniform half _Exposure;
  42. uniform fixed _FogHeight;
  43. uniform fixed _FogSmoothness;
  44. uniform fixed _FogFill;
  45. inline half3 DecodeHDR1189( half4 Data )
  46. {
  47. return DecodeHDR(Data, _Tex_HDR);
  48. }
  49. void vertexDataFunc( inout appdata_full v, out Input o )
  50. {
  51. UNITY_INITIALIZE_OUTPUT( Input, o );
  52. float3 ase_worldPos = mul( unity_ObjectToWorld, v.vertex );
  53. float lerpResult268 = lerp( 1.0 , ( unity_OrthoParams.y / unity_OrthoParams.x ) , unity_OrthoParams.w);
  54. fixed CAMERA_MODE300 = lerpResult268;
  55. float3 appendResult1129 = (float3(ase_worldPos.x , ( ase_worldPos.y * CAMERA_MODE300 ) , ase_worldPos.z));
  56. float3 normalizeResult1130 = normalize( appendResult1129 );
  57. float mulTime701 = _Time.y * 1;
  58. float3 appendResult56 = (float3(cos( radians( ( _Rotation + ( mulTime701 * _RotationSpeed ) ) ) ) , 0.0 , ( sin( radians( ( _Rotation + ( mulTime701 * _RotationSpeed ) ) ) ) * -1.0 )));
  59. float3 appendResult266 = (float3(0.0 , CAMERA_MODE300 , 0.0));
  60. float3 appendResult58 = (float3(sin( radians( ( _Rotation + ( mulTime701 * _RotationSpeed ) ) ) ) , 0.0 , cos( radians( ( _Rotation + ( mulTime701 * _RotationSpeed ) ) ) )));
  61. float3 normalizeResult247 = normalize( ase_worldPos );
  62. #ifdef _ENABLEROTATION_ON
  63. float3 staticSwitch1164 = mul( float3x3(appendResult56, appendResult266, appendResult58), normalizeResult247 );
  64. #else
  65. float3 staticSwitch1164 = normalizeResult1130;
  66. #endif
  67. o.vertexToFrag774 = staticSwitch1164;
  68. }
  69. inline fixed4 LightingUnlit( SurfaceOutput s, half3 lightDir, half atten )
  70. {
  71. return fixed4 ( 0, 0, 0, s.Alpha );
  72. }
  73. void surf( Input i , inout SurfaceOutput o )
  74. {
  75. half4 Data1189 = texCUBE( _Tex, i.vertexToFrag774 );
  76. half3 localDecodeHDR1189 = DecodeHDR1189( Data1189 );
  77. fixed4 CUBEMAP222 = ( float4( localDecodeHDR1189 , 0.0 ) * unity_ColorSpaceDouble * _TintColor * _Exposure );
  78. float3 ase_worldPos = i.worldPos;
  79. float3 normalizeResult319 = normalize( ase_worldPos );
  80. float lerpResult678 = lerp( saturate( pow( (0.0 + (abs( normalizeResult319.y ) - 0.0) * (1.0 - 0.0) / (_FogHeight - 0.0)) , ( 1.0 - _FogSmoothness ) ) ) , 0.0 , _FogFill);
  81. fixed FOG_MASK359 = lerpResult678;
  82. float4 lerpResult317 = lerp( unity_FogColor , CUBEMAP222 , FOG_MASK359);
  83. #ifdef _ENABLEFOG_ON
  84. float4 staticSwitch1179 = lerpResult317;
  85. #else
  86. float4 staticSwitch1179 = CUBEMAP222;
  87. #endif
  88. o.Emission = staticSwitch1179.rgb;
  89. o.Alpha = 1;
  90. }
  91. ENDCG
  92. }
  93. CustomEditor "ASEMaterialInspector"
  94. }
  95. /*ASEBEGIN
  96. Version=15204
  97. 310;92;1331;778;2238.01;-529.4861;3.610788;True;False
  98. Node;AmplifyShaderEditor.CommentaryNode;1180;-946,1486;Float;False;2411;608;Cubemap Coordinates;26;260;701;255;48;276;47;62;1080;59;1081;365;55;310;61;60;58;56;266;1127;238;1128;1129;54;247;49;1130;CUBEMAP;0,0.4980392,0,1;0;0
  99. Node;AmplifyShaderEditor.RangedFloatNode;260;-896,1792;Fixed;False;Property;_RotationSpeed;Rotation Speed;5;0;Create;True;0;0;False;0;1;1;0;0;0;1;FLOAT;0
  100. Node;AmplifyShaderEditor.SimpleTimeNode;701;-896,1664;Float;False;1;0;FLOAT;1;False;1;FLOAT;0
  101. Node;AmplifyShaderEditor.RangedFloatNode;48;-896,1536;Half;False;Property;_Rotation;Rotation;4;1;[IntRange];Create;True;0;0;False;0;0;0;0;360;0;1;FLOAT;0
  102. Node;AmplifyShaderEditor.SimpleMultiplyOpNode;255;-640,1664;Float;False;2;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  103. Node;AmplifyShaderEditor.SimpleAddOpNode;276;-512,1536;Float;False;2;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  104. Node;AmplifyShaderEditor.CommentaryNode;431;-940.4822,846.6917;Float;False;860;219;Switch between Perspective / Orthographic camera;4;268;309;267;1007;CAMERA MODE;1,0,1,1;0;0
  105. Node;AmplifyShaderEditor.RadiansOpNode;47;-384,1536;Float;False;1;0;FLOAT;0;False;1;FLOAT;0
  106. Node;AmplifyShaderEditor.OrthoParams;267;-892.4822,894.6918;Float;False;0;5;FLOAT4;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  107. Node;AmplifyShaderEditor.RangedFloatNode;1007;-444.4821,894.6918;Fixed;False;Constant;_Float7;Float 7;47;0;Create;True;0;0;False;0;1;0;0;0;0;1;FLOAT;0
  108. Node;AmplifyShaderEditor.SimpleDivideOpNode;309;-588.4823,894.6918;Float;False;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  109. Node;AmplifyShaderEditor.RelayNode;62;-224,1792;Float;False;1;0;FLOAT;0;False;1;FLOAT;0
  110. Node;AmplifyShaderEditor.RangedFloatNode;1080;128,1664;Fixed;False;Constant;_Float26;Float 26;50;0;Create;True;0;0;False;0;-1;0;0;0;0;1;FLOAT;0
  111. Node;AmplifyShaderEditor.CommentaryNode;432;-44.48222,846.6917;Float;False;305;165;CAMERA MODE OUTPUT;1;300;;0.4980392,1,0,1;0;0
  112. Node;AmplifyShaderEditor.LerpOp;268;-252.4821,894.6918;Float;False;3;0;FLOAT;1;False;1;FLOAT;0.5;False;2;FLOAT;0;False;1;FLOAT;0
  113. Node;AmplifyShaderEditor.SinOpNode;59;128,1600;Float;False;1;0;FLOAT;0;False;1;FLOAT;0
  114. Node;AmplifyShaderEditor.SimpleMultiplyOpNode;60;320,1600;Float;False;2;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  115. Node;AmplifyShaderEditor.GetLocalVarNode;310;128,1760;Float;False;300;0;1;FLOAT;0
  116. Node;AmplifyShaderEditor.RangedFloatNode;1081;128,1840;Fixed;False;Constant;_Float27;Float 27;50;0;Create;True;0;0;False;0;0;0;0;0;0;1;FLOAT;0
  117. Node;AmplifyShaderEditor.CosOpNode;365;128,1984;Float;False;1;0;FLOAT;0;False;1;FLOAT;0
  118. Node;AmplifyShaderEditor.RegisterLocalVarNode;300;3.51777,894.6918;Fixed;False;CAMERA_MODE;-1;True;1;0;FLOAT;0;False;1;FLOAT;0
  119. Node;AmplifyShaderEditor.SinOpNode;61;128,1920;Float;False;1;0;FLOAT;0;False;1;FLOAT;0
  120. Node;AmplifyShaderEditor.GetLocalVarNode;1127;768,1936;Float;False;300;0;1;FLOAT;0
  121. Node;AmplifyShaderEditor.CommentaryNode;700;-944,2512;Float;False;1898;485;Fog Coords on Screen;15;318;319;320;313;325;314;315;329;677;316;678;679;1108;1109;1110;BUILT-IN FOG;0,0.4980392,0,1;0;0
  122. Node;AmplifyShaderEditor.CosOpNode;55;128,1536;Float;False;1;0;FLOAT;0;False;1;FLOAT;0
  123. Node;AmplifyShaderEditor.WorldPosInputsNode;238;768,1760;Float;False;0;4;FLOAT3;0;FLOAT;1;FLOAT;2;FLOAT;3
  124. Node;AmplifyShaderEditor.DynamicAppendNode;56;512,1536;Float;False;FLOAT3;4;0;FLOAT;0;False;1;FLOAT;0;False;2;FLOAT;0;False;3;FLOAT;0;False;1;FLOAT3;0
  125. Node;AmplifyShaderEditor.SimpleMultiplyOpNode;1128;1024,1920;Float;False;2;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  126. Node;AmplifyShaderEditor.DynamicAppendNode;266;512,1728;Float;False;FLOAT3;4;0;FLOAT;0;False;1;FLOAT;1;False;2;FLOAT;0;False;3;FLOAT;0;False;1;FLOAT3;0
  127. Node;AmplifyShaderEditor.DynamicAppendNode;58;512,1920;Float;False;FLOAT3;4;0;FLOAT;0;False;1;FLOAT;0;False;2;FLOAT;0;False;3;FLOAT;0;False;1;FLOAT3;0
  128. Node;AmplifyShaderEditor.WorldPosInputsNode;318;-896,2560;Float;False;0;4;FLOAT3;0;FLOAT;1;FLOAT;2;FLOAT;3
  129. Node;AmplifyShaderEditor.MatrixFromVectors;54;768,1536;Float;False;FLOAT3x3;4;0;FLOAT3;0,0,0;False;1;FLOAT3;0,0,0;False;2;FLOAT3;0,0,0;False;3;FLOAT3;0,0,0;False;1;FLOAT3x3;0
  130. Node;AmplifyShaderEditor.NormalizeNode;247;1024,1664;Float;False;1;0;FLOAT3;0,0,0;False;1;FLOAT3;0
  131. Node;AmplifyShaderEditor.DynamicAppendNode;1129;1152,1792;Float;False;FLOAT3;4;0;FLOAT;0;False;1;FLOAT;0;False;2;FLOAT;0;False;3;FLOAT;0;False;1;FLOAT3;0
  132. Node;AmplifyShaderEditor.NormalizeNode;319;-640,2560;Float;False;1;0;FLOAT3;0,0,0;False;1;FLOAT3;0
  133. Node;AmplifyShaderEditor.BreakToComponentsNode;320;-448,2560;Float;False;FLOAT3;1;0;FLOAT3;0,0,0;False;16;FLOAT;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4;FLOAT;5;FLOAT;6;FLOAT;7;FLOAT;8;FLOAT;9;FLOAT;10;FLOAT;11;FLOAT;12;FLOAT;13;FLOAT;14;FLOAT;15
  134. Node;AmplifyShaderEditor.SimpleMultiplyOpNode;49;1280,1616;Float;False;2;2;0;FLOAT3x3;0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1;False;1;FLOAT3;0,0,0;False;1;FLOAT3;0
  135. Node;AmplifyShaderEditor.CommentaryNode;1087;1552,1664;Float;False;394;188;Enable Clouds Rotation;1;1164;;0,1,0.4980392,1;0;0
  136. Node;AmplifyShaderEditor.NormalizeNode;1130;1280,1792;Float;False;1;0;FLOAT3;0,0,0;False;1;FLOAT3;0
  137. Node;AmplifyShaderEditor.RangedFloatNode;313;-896,2752;Fixed;False;Property;_FogHeight;Fog Height;7;0;Create;True;0;0;False;0;1;1;0;1;0;1;FLOAT;0
  138. Node;AmplifyShaderEditor.RangedFloatNode;325;-896,2880;Fixed;False;Property;_FogSmoothness;Fog Smoothness;8;0;Create;True;0;0;False;0;0.01;0.01;0.01;1;0;1;FLOAT;0
  139. Node;AmplifyShaderEditor.RangedFloatNode;1109;-128,2784;Fixed;False;Constant;_Float40;Float 40;55;0;Create;True;0;0;False;0;1;0;0;0;0;1;FLOAT;0
  140. Node;AmplifyShaderEditor.CommentaryNode;1183;1998,1678;Float;False;265;160;Per Vertex;1;774;;1,0,1,1;0;0
  141. Node;AmplifyShaderEditor.AbsOpNode;314;-128,2560;Float;False;1;0;FLOAT;0;False;1;FLOAT;0
  142. Node;AmplifyShaderEditor.RangedFloatNode;1108;-128,2688;Fixed;False;Constant;_Float39;Float 39;55;0;Create;True;0;0;False;0;0;0;0;0;0;1;FLOAT;0
  143. Node;AmplifyShaderEditor.StaticSwitch;1164;1600,1728;Float;False;Property;_EnableRotation;Enable Rotation;3;0;Create;True;0;0;False;1;Header(Rotation);0;0;0;True;;Toggle;2;Key0;Key1;9;1;FLOAT3;0,0,0;False;0;FLOAT3;0,0,0;False;2;FLOAT3;0,0,0;False;3;FLOAT3;0,0,0;False;4;FLOAT3;0,0,0;False;5;FLOAT3;0,0,0;False;6;FLOAT3;0,0,0;False;7;FLOAT3;0,0,0;False;8;FLOAT3;0,0,0;False;1;FLOAT3;0
  144. Node;AmplifyShaderEditor.OneMinusNode;329;128,2880;Float;False;1;0;FLOAT;0;False;1;FLOAT;0
  145. Node;AmplifyShaderEditor.CommentaryNode;1191;2382,1486;Float;False;1115;565;Base;7;41;1173;1175;1174;1177;1190;1189;;0,0.4980392,1,1;0;0
  146. Node;AmplifyShaderEditor.TFHCRemapNode;315;64,2560;Float;False;5;0;FLOAT;0;False;1;FLOAT;0;False;2;FLOAT;1;False;3;FLOAT;0;False;4;FLOAT;1;False;1;FLOAT;0
  147. Node;AmplifyShaderEditor.VertexToFragmentNode;774;2048,1728;Float;False;1;0;FLOAT3;0,0,0;False;1;FLOAT3;0
  148. Node;AmplifyShaderEditor.SamplerNode;41;2432,1536;Float;True;Property;_Tex;Cubemap (HDR);2;1;[NoScaleOffset];Create;False;0;0;False;0;None;None;True;0;False;black;LockedToCube;False;Object;-1;Auto;Cube;6;0;SAMPLER2D;;False;1;FLOAT3;0,0,0;False;2;FLOAT;0;False;3;FLOAT3;0,0,0;False;4;FLOAT3;0,0,0;False;5;FLOAT;1;False;5;COLOR;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  149. Node;AmplifyShaderEditor.PowerNode;677;320,2560;Float;False;2;0;FLOAT;0;False;1;FLOAT;0;False;1;FLOAT;0
  150. Node;AmplifyShaderEditor.RangedFloatNode;679;512,2880;Fixed;False;Property;_FogFill;Fog Fill;9;0;Create;True;0;0;False;0;0.5;0.5;0;1;0;1;FLOAT;0
  151. Node;AmplifyShaderEditor.SaturateNode;316;512,2560;Float;False;1;0;FLOAT;0;False;1;FLOAT;0
  152. Node;AmplifyShaderEditor.ColorSpaceDouble;1175;2816,1616;Float;False;0;5;COLOR;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  153. Node;AmplifyShaderEditor.RangedFloatNode;1110;512,2752;Fixed;False;Constant;_Float41;Float 41;55;0;Create;True;0;0;False;0;0;0;0;0;0;1;FLOAT;0
  154. Node;AmplifyShaderEditor.CustomExpressionNode;1189;2816,1536;Half;False;DecodeHDR(Data, _Tex_HDR);3;False;1;True;Data;FLOAT4;0,0,0,0;In;DecodeHDR;True;False;1;0;FLOAT4;0,0,0,0;False;1;FLOAT3;0
  155. Node;AmplifyShaderEditor.RangedFloatNode;1177;2816,1968;Half;False;Property;_Exposure;Exposure;1;0;Create;True;0;0;False;0;1;1;0;8;0;1;FLOAT;0
  156. Node;AmplifyShaderEditor.ColorNode;1173;2816,1792;Fixed;False;Property;_TintColor;Tint Color;0;1;[Gamma];Create;True;0;0;False;1;Header(Cubemap);0.5,0.5,0.5,1;0.5,0.5,0.5,1;0;5;COLOR;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  157. Node;AmplifyShaderEditor.CommentaryNode;699;1104,2512;Float;False;293;165;FOG_MASK OUTPUT;1;359;;0.4980392,1,0,1;0;0
  158. Node;AmplifyShaderEditor.CommentaryNode;915;3664,1488;Float;False;293;165;CUBEMAP OUTPUT;1;222;;0.4980392,1,0,1;0;0
  159. Node;AmplifyShaderEditor.LerpOp;678;768,2560;Float;False;3;0;FLOAT;0;False;1;FLOAT;0;False;2;FLOAT;0;False;1;FLOAT;0
  160. Node;AmplifyShaderEditor.CommentaryNode;1167;-946,78;Float;False;618;357;;4;436;228;312;317;FINAL COLOR;0.4980392,1,0,1;0;0
  161. Node;AmplifyShaderEditor.SimpleMultiplyOpNode;1174;3328,1536;Float;False;4;4;0;FLOAT3;0,0,0;False;1;COLOR;0,0,0,0;False;2;COLOR;0,0,0,0;False;3;FLOAT;0;False;1;COLOR;0
  162. Node;AmplifyShaderEditor.GetLocalVarNode;436;-896,320;Float;False;359;0;1;FLOAT;0
  163. Node;AmplifyShaderEditor.FogAndAmbientColorsNode;312;-896,128;Float;False;unity_FogColor;0;1;COLOR;0
  164. Node;AmplifyShaderEditor.RegisterLocalVarNode;222;3712,1536;Fixed;False;CUBEMAP;-1;True;1;0;COLOR;0,0,0,0;False;1;COLOR;0
  165. Node;AmplifyShaderEditor.RegisterLocalVarNode;359;1152,2560;Fixed;False;FOG_MASK;-1;True;1;0;FLOAT;0;False;1;FLOAT;0
  166. Node;AmplifyShaderEditor.GetLocalVarNode;228;-896,240;Float;False;222;0;1;COLOR;0
  167. Node;AmplifyShaderEditor.LerpOp;317;-512,128;Float;False;3;0;COLOR;0,0,0,0;False;1;COLOR;0,0,0,0;False;2;FLOAT;0;False;1;COLOR;0
  168. Node;AmplifyShaderEditor.CommentaryNode;1185;-274,174;Float;False;306;188;Enable Fog;1;1179;;0,1,0.4980392,1;0;0
  169. Node;AmplifyShaderEditor.StaticSwitch;1179;-224,224;Float;False;Property;_EnableFog;Enable Fog;6;0;Create;True;0;0;False;1;Header(Fog);0;0;0;True;;Toggle;2;Key0;Key1;9;1;COLOR;0,0,0,0;False;0;COLOR;0,0,0,0;False;2;COLOR;0,0,0,0;False;3;COLOR;0,0,0,0;False;4;COLOR;0,0,0,0;False;5;COLOR;0,0,0,0;False;6;COLOR;0,0,0,0;False;7;COLOR;0,0,0,0;False;8;COLOR;0,0,0,0;False;1;COLOR;0
  170. Node;AmplifyShaderEditor.Vector4Node;1190;2432,1792;Half;False;Property;_Tex_HDR;DecodeInstructions;11;1;[HideInInspector];Create;False;0;0;True;0;0,0,0,0;1,1,0,0;0;5;FLOAT4;0;FLOAT;1;FLOAT;2;FLOAT;3;FLOAT;4
  171. Node;AmplifyShaderEditor.StandardSurfaceOutputNode;26;128,64;Float;False;True;0;Float;ASEMaterialInspector;0;0;Unlit;ASESampleShaders/Community/Skybox Cubemap Extended;False;False;False;False;True;True;True;True;True;True;True;True;False;False;True;True;False;False;False;Off;2;False;-1;0;False;-1;False;0;0;False;0;Custom;0;True;False;0;True;Background;;Background;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;0;4;10;25;False;0.5;False;0;5;False;-1;10;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;Relative;0;;10;-1;-1;-1;0;1;PreviewType=Skybox;0;False;0;0;0;False;-1;-1;15;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;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
  172. WireConnection;255;0;701;0
  173. WireConnection;255;1;260;0
  174. WireConnection;276;0;48;0
  175. WireConnection;276;1;255;0
  176. WireConnection;47;0;276;0
  177. WireConnection;309;0;267;2
  178. WireConnection;309;1;267;1
  179. WireConnection;62;0;47;0
  180. WireConnection;268;0;1007;0
  181. WireConnection;268;1;309;0
  182. WireConnection;268;2;267;4
  183. WireConnection;59;0;62;0
  184. WireConnection;60;0;59;0
  185. WireConnection;60;1;1080;0
  186. WireConnection;365;0;62;0
  187. WireConnection;300;0;268;0
  188. WireConnection;61;0;62;0
  189. WireConnection;55;0;62;0
  190. WireConnection;56;0;55;0
  191. WireConnection;56;1;1081;0
  192. WireConnection;56;2;60;0
  193. WireConnection;1128;0;238;2
  194. WireConnection;1128;1;1127;0
  195. WireConnection;266;0;1081;0
  196. WireConnection;266;1;310;0
  197. WireConnection;266;2;1081;0
  198. WireConnection;58;0;61;0
  199. WireConnection;58;1;1081;0
  200. WireConnection;58;2;365;0
  201. WireConnection;54;0;56;0
  202. WireConnection;54;1;266;0
  203. WireConnection;54;2;58;0
  204. WireConnection;247;0;238;0
  205. WireConnection;1129;0;238;1
  206. WireConnection;1129;1;1128;0
  207. WireConnection;1129;2;238;3
  208. WireConnection;319;0;318;0
  209. WireConnection;320;0;319;0
  210. WireConnection;49;0;54;0
  211. WireConnection;49;1;247;0
  212. WireConnection;1130;0;1129;0
  213. WireConnection;314;0;320;1
  214. WireConnection;1164;1;1130;0
  215. WireConnection;1164;0;49;0
  216. WireConnection;329;0;325;0
  217. WireConnection;315;0;314;0
  218. WireConnection;315;1;1108;0
  219. WireConnection;315;2;313;0
  220. WireConnection;315;3;1108;0
  221. WireConnection;315;4;1109;0
  222. WireConnection;774;0;1164;0
  223. WireConnection;41;1;774;0
  224. WireConnection;677;0;315;0
  225. WireConnection;677;1;329;0
  226. WireConnection;316;0;677;0
  227. WireConnection;1189;0;41;0
  228. WireConnection;678;0;316;0
  229. WireConnection;678;1;1110;0
  230. WireConnection;678;2;679;0
  231. WireConnection;1174;0;1189;0
  232. WireConnection;1174;1;1175;0
  233. WireConnection;1174;2;1173;0
  234. WireConnection;1174;3;1177;0
  235. WireConnection;222;0;1174;0
  236. WireConnection;359;0;678;0
  237. WireConnection;317;0;312;0
  238. WireConnection;317;1;228;0
  239. WireConnection;317;2;436;0
  240. WireConnection;1179;1;228;0
  241. WireConnection;1179;0;317;0
  242. WireConnection;26;2;1179;0
  243. ASEEND*/
  244. //CHKSM=500989192F2DD0F9A633F5B857C9610F599C3D81