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.

19 lines
243 B

  1. Shader "Hidden/LODFadeNode"
  2. {
  3. SubShader
  4. {
  5. Pass
  6. {
  7. CGPROGRAM
  8. #pragma vertex vert_img
  9. #pragma fragment frag
  10. #include "UnityCG.cginc"
  11. float4 frag( v2f_img i ) : SV_Target
  12. {
  13. return unity_LODFade;
  14. }
  15. ENDCG
  16. }
  17. }
  18. }