STG-2600 redraw

This commit is contained in:
Haze Weathers 2023-09-08 22:10:26 -04:00
parent d215a8728a
commit d87ff6531c
34 changed files with 584 additions and 203 deletions

View file

@ -0,0 +1,10 @@
shader_type canvas_item;
render_mode blend_add;
uniform float cycle_speed = 1.0;
uniform sampler2D gradient;
void fragment() {
COLOR = texture(TEXTURE, UV);
COLOR *= texture(gradient, vec2(TIME * cycle_speed, 0.0));
}