SupercyanShader.shader 776 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. Shader "Supercyan/SupercyanShader"
  2. {
  3. Properties
  4. {
  5. _Color("Color", Color) = (1,1,1,1)
  6. _MainTex("Albedo (RGB)", 2D) = "white" {}
  7. }
  8. SubShader
  9. {
  10. Tags { "RenderType" = "Opaque" }
  11. LOD 200
  12. CGPROGRAM
  13. #pragma surface surf SupercyanShadingForward fullforwardshadows
  14. #pragma target 3.0
  15. #include "SupercyanShaderLighting.cginc"
  16. sampler2D _MainTex;
  17. struct Input
  18. {
  19. float2 uv_MainTex;
  20. };
  21. UNITY_INSTANCING_BUFFER_START(Props)
  22. UNITY_DEFINE_INSTANCED_PROP(fixed4, _Color)
  23. UNITY_INSTANCING_BUFFER_END(Props)
  24. void surf(Input IN, inout SurfaceOutput o)
  25. {
  26. fixed4 c = tex2D(_MainTex, IN.uv_MainTex) * UNITY_ACCESS_INSTANCED_PROP(Props, _Color);
  27. o.Albedo = c.rgb;
  28. o.Alpha = c.a;
  29. }
  30. ENDCG
  31. }
  32. FallBack "Diffuse"
  33. }