diff --git a/core/environment_config.gd b/core/environment_config.gd index 9bf167a..ac0793b 100644 --- a/core/environment_config.gd +++ b/core/environment_config.gd @@ -139,9 +139,9 @@ extends Resource @export var snow_transaction_time: float = 10.0 #Seconds for snow shader to fully transition in/out @export var snow_fade_time: float = 5.0 #Seconds for snow particles to fade in/out @export var snow_threshold: float = 0.4 #Normal Y threshold for snow accumulation on surfaces -@export var snow_accumulation_speed: float = 0.018 #Accumulation speed: 0.1 -> 10s, 0.05 -> 20s, 0.02 -> 50s, 0.012 -> ~83s +@export var snow_accumulation_speed: float = 0.014 #Accumulation speed: 0.1 -> 10s, 0.05 -> 20s, 0.02 -> 50s, 0.012 -> ~83s @export var snow_melt_speed: float = 0.05 #Speed at which accumulated snow melts away -@export var snow_max_accumulation: float = 0.3 #Maximum accumulated snow factor applied to coverage and thickness +@export var snow_max_accumulation: float = 0.25 #Maximum accumulated snow factor applied to coverage and thickness @export var snow_color: Color = Color(0.9, 0.95, 1.0) #Albedo color of snow on surfaces @export var snow_cap_height: float = 0.03 #Maximum snow thickness extruded on flat surfaces @export var snow_cap_flatness_start: float = 0.85 #Surface normal Y where cap buildup starts