mirror of
https://github.com/t-affeldt/climate_api.git
synced 2024-12-22 08:50:37 +01:00
Add API function to retrieve wind
This commit is contained in:
parent
18045b1943
commit
241a0a82c1
@ -34,6 +34,12 @@ function environment.get_humidity(pos)
|
|||||||
return (base + biome * 0.7 + random_base * 0.3) * random
|
return (base + biome * 0.7 + random_base * 0.3) * random
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function environment.get_wind()
|
||||||
|
local wind_x = climate_mod.state:get_float("wind_x")
|
||||||
|
local wind_z = climate_mod.state:get_float("wind_z")
|
||||||
|
return vector.new({ x = wind_x, y = 0, z = wind_z })
|
||||||
|
end
|
||||||
|
|
||||||
function environment.get_weather_presets(player)
|
function environment.get_weather_presets(player)
|
||||||
local pname = player:get_player_name()
|
local pname = player:get_player_name()
|
||||||
local weathers = climate_mod.current_weather[pname]
|
local weathers = climate_mod.current_weather[pname]
|
||||||
|
Loading…
Reference in New Issue
Block a user