27 lines
567 B
Plaintext
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]
|
|
|
|
}
|
|
}
|
|
} |