0.8.16Fantastic Global Update

This commit is contained in:
MrZ_26
2020-04-19 11:50:17 +08:00
parent e88553bc00
commit 7d63386410
103 changed files with 2237 additions and 1702 deletions

5
shader/alpha.cs Normal file
View File

@@ -0,0 +1,5 @@
extern float a;
vec4 effect(vec4 color, Image text,vec2 pos,vec2 scr_pos){
if(Texel(text,pos)[3]==0.)discard;
return vec4(1.,1.,1.,a);
}