6 lines
117 B
Text
6 lines
117 B
Text
shader_type canvas_item;
|
|
|
|
void fragment() {
|
|
// Called for every pixel the material is visible on.
|
|
COLOR.br = UV;
|
|
}
|