skinsdb/init.lua

40 lines
967 B
Lua
Raw Normal View History

2014-03-17 06:26:58 +01:00
-- Unified Skins for Minetest - based modified Bags from unfied_inventory and skins from inventory_plus
-- Copyright (c) 2012 cornernote, Dean Montgomery
-- License: GPLv3
-- Boilerplate to support localized strings if intllib mod is installed.
skins = {}
skins.modpath = minetest.get_modpath("skins")
skins.default = "character_1"
2014-03-17 06:26:58 +01:00
skins.type = { SPRITE=0, MODEL=1, ERROR=99 }
skins.get_type = function(texture)
if not skins.is_skin(texture) then
return skins.type.ERROR
2014-07-23 19:06:46 +02:00
end
return skins.type.MODEL
2014-07-23 19:06:46 +02:00
end
skins.is_skin = function(texture)
2014-07-23 13:46:42 +02:00
if not texture then
return false
2014-03-17 06:26:58 +01:00
end
if not skins.meta[texture] then
2014-07-23 13:46:42 +02:00
return false
2014-03-17 06:26:58 +01:00
end
2014-07-23 13:46:42 +02:00
return true
2014-03-17 06:26:58 +01:00
end
dofile(skins.modpath.."/skinlist.lua")
dofile(skins.modpath.."/players.lua")
2014-03-17 06:26:58 +01:00
-- Unified inventory page/integration
if minetest.get_modpath("unified_inventory") then
dofile(skins.modpath.."/unified_inventory_page.lua")
2014-03-17 06:26:58 +01:00
end
2017-06-15 17:18:51 +02:00
if minetest.get_modpath("sfinv") then
dofile(skins.modpath.."/sfinv_page.lua")
end