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