hero-mark-2/shaders/fire.gdshader
2024-07-12 23:37:59 -04:00

5 lines
No EOL
123 B
Text

shader_type canvas_item;
void fragment() {
COLOR = texture(TEXTURE, vec2(UV.x + sin(TIME / 2.5 + UV.y*6.0)/30.0,UV.y));
}