镜像自地址
https://github.com/t-affeldt/climate_api.git
已同步 2025-10-16 10:25:26 +02:00
Add pollen effect
这个提交包含在:
1
init.lua
1
init.lua
@@ -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
普通文件
二进制
textures/weather_pollen.png
普通文件
二进制文件未显示。
之后 宽度: | 高度: | 大小: 47 KiB |
26
weathers/pollen.lua
普通文件
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)
|
在新工单中引用
屏蔽一个用户