mirror of
https://github.com/rubenwardy/sfinv.git
synced 2024-11-22 15:23:45 +01:00
Remove default dependency
This commit is contained in:
parent
71c41abe72
commit
d6d2aebf83
12
api.lua
12
api.lua
@ -5,6 +5,12 @@ sfinv = {
|
|||||||
enabled = true
|
enabled = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if not minetest.features.formspec_prepends then
|
||||||
|
sfinv.gui_bg = "bgcolor[#080808BB;true]"
|
||||||
|
sfinv.gui_bg_img = "background[5,5;1,1;gui_formbg.png;true]"
|
||||||
|
sfinv.gui_slots = "listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]"
|
||||||
|
end
|
||||||
|
|
||||||
function sfinv.register_page(name, def)
|
function sfinv.register_page(name, def)
|
||||||
assert(name, "Invalid sfinv page. Requires a name")
|
assert(name, "Invalid sfinv page. Requires a name")
|
||||||
assert(def, "Invalid sfinv page. Requires a def[inition] table")
|
assert(def, "Invalid sfinv page. Requires a def[inition] table")
|
||||||
@ -36,10 +42,10 @@ function sfinv.get_nav_fs(player, context, nav, current_idx)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local theme_main = "bgcolor[#080808BB;true]" .. default.gui_bg ..
|
local theme_main = "bgcolor[#080808BB;true]" .. sfinv.gui_bg ..
|
||||||
default.gui_bg_img
|
sfinv.gui_bg_img
|
||||||
|
|
||||||
local theme_inv = default.gui_slots .. [[
|
local theme_inv = sfinv.gui_slots .. [[
|
||||||
list[current_player;main;0,4.7;8,1;]
|
list[current_player;main;0,4.7;8,1;]
|
||||||
list[current_player;main;0,5.85;8,3;8]
|
list[current_player;main;0,5.85;8,3;8]
|
||||||
]]
|
]]
|
||||||
|
@ -1 +0,0 @@
|
|||||||
default
|
|
Loading…
Reference in New Issue
Block a user