1
0
mirror of https://github.com/t-affeldt/regional_weather.git synced 2025-07-18 00:10:39 +02:00

Enable dynamic cloud size

This commit is contained in:
Till Affeldt
2020-04-13 16:52:45 +02:00
parent c43e972e83
commit 79fb0a234d
5 changed files with 36 additions and 29 deletions

View File

@ -19,14 +19,15 @@ regional_weather.settings.max_height = get_setting_number("max_height", 120)
regional_weather.settings.min_height = get_setting_number("min_height", -50)
-- import individual weather types
dofile(modpath.."/ca_weathers/ambient.lua")
dofile(modpath.."/ca_weathers/hail.lua")
dofile(modpath.."/ca_weathers/pollen.lua")
dofile(modpath.."/ca_weathers/rain.lua")
dofile(modpath.."/ca_weathers/rain_heavy.lua")
dofile(modpath.."/ca_weathers/sandstorm.lua")
dofile(modpath.."/ca_weathers/snow.lua")
dofile(modpath.."/ca_weathers/snow_heavy.lua")
dofile(modpath.."/ca_weathers/storm.lua")
dofile(modpath.."/ca_weathers/sandstorm.lua")
dofile(modpath.."/ca_weathers/hail.lua")
dofile(modpath.."/ca_weathers/pollen.lua")
-- register environment effects
dofile(modpath.."/ca_effects/lightning.lua")