forked from joey/godottest
7 lines
105 B
Plaintext
7 lines
105 B
Plaintext
shader_type canvas_item;
|
|
render_mode blend_disabled;
|
|
|
|
void fragment() {
|
|
COLOR = texture(TEXTURE, UV);
|
|
}
|