1
0
mirror of https://github.com/t-affeldt/regional_weather.git synced 2025-07-20 09:20:29 +02:00

Change weather to be outside only, add underground skybox, add hud overlays

This commit is contained in:
Till Affeldt
2020-04-16 08:04:06 +02:00
parent 1e1126abcd
commit bac1618a3c
15 changed files with 71 additions and 19 deletions

20
ca_weathers/deep_cave.lua Normal file
View File

@ -0,0 +1,20 @@
local name = "regional_weather:deep_cave"
local conditions = {
max_light = 14,
--max_height = -100
}
local effects = {}
effects["climate_api:skybox"] = {
sky_data = {
type = "plain",
base_color = { r = 0, g = 0, b = 0 },
clouds = false
},
sun_data = { visible = false },
moon_data = { visible = false },
stars_data = { visible = false }
}
climate_api.register_weather(name, conditions, effects)