Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/Unity/Minecraft/Assets/Scripts/CloudShader.shader
2022-11-12 13:10:03 +01:00

27 lines
567 B
Plaintext

Shader "Minecraft/Cloud Shader" {
Properties {
_Color("Color", Color) = (1, 1, 1, 1)
}
SubShader {
Tags {"Queue" = "Transparent" "IgnoreProjector" = "True" "RenderType" = "Transparent"}
ZWrite Off
Lighting Off
Fog { Mode Off }
Blend SrcAlpha OneMinusSrcAlpha
Pass {
Stencil {
Ref 1
Comp Greater
Pass IncrSat
}
Color[_Color]
}
}
}