FM/Assets/TouchScript/Shaders/DebugNoDepthTest.shader

14 lines
248 B
Plaintext
Raw Normal View History

2025-06-04 22:49:37 +08:00
Shader "Hidden/DebugNoDepthTest" {
SubShader {
Pass {
Blend SrcAlpha OneMinusSrcAlpha
ZWrite Off
ZTest Always
Cull Off
BindChannels {
Bind "vertex", vertex
Bind "color", color
}
}
}
}