mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-22 09:40:25 +01:00
8 lines
160 B
Text
8 lines
160 B
Text
|
shader_type canvas_item;
|
||
|
|
||
|
void fragment() {
|
||
|
COLOR = texture(TEXTURE, UV);
|
||
|
// TODO: Check blink attribute and hide/show using the below.
|
||
|
//COLOR = vec4(0);
|
||
|
}
|