6 lines
105 B
Text
6 lines
105 B
Text
shader_type canvas_item;
|
|
render_mode blend_disabled;
|
|
|
|
void fragment() {
|
|
COLOR = texture(TEXTURE, UV);
|
|
}
|