You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
174 B
Plaintext

1 year ago
shader_type spatial;
render_mode unshaded,wireframe;
8 months ago
uniform bool is_hide = false;
1 year ago
void fragment() {
8 months ago
if(is_hide){
discard;
}
1 year ago
ALBEDO = COLOR.rgb;
ALPHA = COLOR.a;
}