shader fixes

This commit is contained in:
Arneth
2022-02-01 10:12:54 -05:00
parent fe17ead9c5
commit f98eb96584
68 changed files with 2533 additions and 1629 deletions
@@ -0,0 +1,15 @@
Shader "QO/Unlit/Color" {
Properties {
_Color ("Color & Transparency", Color) = (0,0,0,0.5)
}
SubShader {
Tags { "QUEUE"="Transparent" }
Pass {
Tags { "QUEUE"="Transparent" }
Color [_Color]
ZWrite Off
Blend SrcAlpha OneMinusSrcAlpha
}
}
Fallback "Unlit/Transparent"
}