initial work

This commit is contained in:
FaceDeer
2022-08-01 11:51:14 -06:00
parent 47a63a1f09
commit 1d8cb46272
7 changed files with 63 additions and 34 deletions

View File

@ -1,7 +1,10 @@
local modname = minetest.get_current_modname()
local S = minetest.get_translator(modname)
local default_path = minetest.get_modpath("default")
local sound
if minetest.get_modpath("default") then
sound = default.node_sound_leaves_defaults()
end
local get_node_box = function(connector_thickness)
return {
@ -72,12 +75,6 @@ local get_web_nodes = function(pos, webs, anchors)
end
end
local sound
if default_path then
sound = default.node_sound_leaves_defaults()
end
local web_line = function(pos, dir, distance)
local anchored
local web_spine = {}