minor runtime edit

This commit is contained in:
2025-10-22 12:21:55 -06:00
parent 39dbc43cbd
commit 70c17e8bce

View File

@@ -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;