generated from krampus/template-godot4
7 lines
136 B
Plaintext
7 lines
136 B
Plaintext
|
shader_type canvas_item;
|
||
|
|
||
|
uniform float lod: hint_range(0.0, 5.0) = 0.0;
|
||
|
|
||
|
void fragment() {
|
||
|
COLOR = texture(TEXTURE, SCREEN_UV, lod);
|
||
|
}
|