fun stuff

This commit is contained in:
GameJammer
2023-09-14 14:17:27 -07:00
parent 568eb9e6e0
commit 54b044142d
22 changed files with 532 additions and 257 deletions

View File

@@ -1,11 +1,11 @@
shader_type spatial;
render_mode blend_mul;
uniform vec2 direction_and_speed = vec2(0.25, 0.00);
uniform vec2 direction_and_speed = vec2(0.25, 0.25);
uniform vec2 scale = vec2(1.0);
uniform bool flip = false;
uniform bool flip = true;
uniform sampler2D albedo: hint_default_transparent;
uniform float alphaSet = 1.0;
uniform float alphaSet = 0.0;
void fragment() {
vec2 uv = UV * scale - direction_and_speed * TIME;