1
0
镜像自地址 https://github.com/t-affeldt/climate_api.git 已同步 2025-10-16 10:25:26 +02:00

Add pollen effect

这个提交包含在:
Till Affeldt
2020-04-10 05:28:06 +02:00
父节点 6481cf409a
当前提交 e188015be1
共有 3 个文件被更改,包括 27 次插入0 次删除

查看文件

@@ -53,3 +53,4 @@ dofile(weather_mod.modpath.."/weathers/snow_heavy.lua")
dofile(weather_mod.modpath.."/weathers/storm.lua")
dofile(weather_mod.modpath.."/weathers/sandstorm.lua")
dofile(weather_mod.modpath.."/weathers/hail.lua")
dofile(weather_mod.modpath.."/weathers/pollen.lua")

二进制
textures/weather_pollen.png 普通文件

二进制文件未显示。

之后

宽度:  |  高度:  |  大小: 47 KiB

26
weathers/pollen.lua 普通文件
查看文件

@@ -0,0 +1,26 @@
local name = weather_mod.modname .. ":pollen"
local config = {}
config.environment = {}
config.particles = {
min_pos = {x=-12, y=-4, z=-12},
max_pos = {x= 12, y= 1, z= 12},
falling_speed=-0.1,
amount=2,
exptime=5,
size=1,
texture="weather_pollen.png"
}
config.conditions = {
min_height = weather_mod.settings.min_height,
max_height = weather_mod.settings.max_height,
min_heat = 40,
min_humidity = 30,
max_humidity = 40,
max_windspeed = 2
}
weather_mod.register_effect(name, config)