From 70c17e8bce71647503a8381dc42b240e4a08e73b Mon Sep 17 00:00:00 2001 From: Gabriella Date: Wed, 22 Oct 2025 12:21:55 -0600 Subject: [PATCH] minor runtime edit --- src/multi-color-starfield/multi_color_starfield.gdshader | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/multi-color-starfield/multi_color_starfield.gdshader b/src/multi-color-starfield/multi_color_starfield.gdshader index 171415b..b069635 100644 --- a/src/multi-color-starfield/multi_color_starfield.gdshader +++ b/src/multi-color-starfield/multi_color_starfield.gdshader @@ -3,7 +3,7 @@ shader_type canvas_item; uniform vec2 resolution = vec2(1270, 720); uniform sampler2D noise_texture: filter_nearest, repeat_enable; uniform float density: hint_range(1.0, 100.0, 0.1) = 20.0; -uniform float speed_x: hint_range(-0.01, 0.01, 0.005) = 0.005; +uniform float speed_x: hint_range(-0.05, 0.05, 0.005) = 0.005; uniform float speed_y: hint_range(-0.01, 0.01, 0.005) = 0.0; uniform float layers: hint_range(1, 10, 1) = 5; uniform float upper_tolerance_for_star_color: hint_range(0.0, 1.0, 0.1) = 0.75;