Merge branch 'master' of https://github.com/theFox6/minetest_mod_weather
This commit is contained in:
commit
6985fdd198
|
@ -0,0 +1,8 @@
|
|||
# Fast computer ABM
|
||||
#
|
||||
# The “fast computer ABM” controls if snow covers will be placed
|
||||
# on the ground when `weather:snow` is set. This needs a better
|
||||
# computer and should not be used if the performance drops too
|
||||
# much. It is advised not to enable this on servers and it is
|
||||
# disbaled by default
|
||||
weather_fast_pc (Snow covers for fast PCs) bool false
|
|
@ -26,23 +26,25 @@ minetest.register_node("weather:snow_cover", {
|
|||
drop = {}
|
||||
})
|
||||
|
||||
--[[ Enable this section if you have a very fast PC
|
||||
minetest.register_abm({
|
||||
nodenames = {"group:crumbly", "group:snappy", "group:cracky", "group:choppy"},
|
||||
neighbors = {"default:air"},
|
||||
interval = 10.0,
|
||||
chance = 80,
|
||||
action = function (pos, node, active_object_count, active_object_count_wider)
|
||||
if weather == "snow" then
|
||||
if minetest.registered_nodes[node.name].drawtype == "normal"
|
||||
or minetest.registered_nodes[node.name].drawtype == "allfaces_optional" then
|
||||
local np = vector.add(pos, {x=0, y=1, z=0})
|
||||
if minetest.env:get_node_light(np, 0.5) == 15
|
||||
and minetest.env:get_node(np).name == "air" then
|
||||
minetest.env:add_node(np, {name="weather:snow_cover"})
|
||||
-- Snow cover ABM when weather_fast_pc setting is set to `true`
|
||||
if minetest.is_yes(minetest.settings:get_bool('weather_fast_pc')) then
|
||||
minetest.log('action', '[weather] Loaded fast computer ABM (snow covers when weather:snow is set)')
|
||||
minetest.register_abm({
|
||||
nodenames = {"group:crumbly", "group:snappy", "group:cracky", "group:choppy"},
|
||||
neighbors = {"default:air"},
|
||||
interval = 10.0,
|
||||
chance = 80,
|
||||
action = function (pos, node)
|
||||
if weather.type == "weather:snow" then
|
||||
if minetest.registered_nodes[node.name].drawtype == "normal"
|
||||
or minetest.registered_nodes[node.name].drawtype == "allfaces_optional" then
|
||||
local np = vector.add(pos, {x=0, y=1, z=0})
|
||||
if minetest.env:get_node_light(np, 0.5) == 15
|
||||
and minetest.env:get_node(np).name == "air" then
|
||||
minetest.env:add_node(np, {name="weather:snow_cover"})
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
})
|
||||
]]
|
||||
})
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue