mirror of
https://github.com/minetest-mods/skinsdb.git
synced 2024-12-23 07:50:18 +01:00
remove MT-0.4 support
This commit is contained in:
parent
e5714f272c
commit
555d682f04
56
init.lua
56
init.lua
@ -68,42 +68,20 @@ minetest.register_on_leaveplayer(function(player)
|
|||||||
skins.ui_context[player:get_player_name()] = nil
|
skins.ui_context[player:get_player_name()] = nil
|
||||||
end)
|
end)
|
||||||
|
|
||||||
if minetest.global_exists("player_api") then
|
player_api.register_model("skinsdb_3d_armor_character_5.b3d", {
|
||||||
-- Minetest-5 and above compatible
|
animation_speed = 30,
|
||||||
player_api.register_model("skinsdb_3d_armor_character_5.b3d", {
|
textures = {
|
||||||
animation_speed = 30,
|
"blank.png",
|
||||||
textures = {
|
"blank.png",
|
||||||
"blank.png",
|
"blank.png",
|
||||||
"blank.png",
|
"blank.png"
|
||||||
"blank.png",
|
},
|
||||||
"blank.png"
|
animations = {
|
||||||
},
|
stand = {x=0, y=79},
|
||||||
animations = {
|
lay = {x=162, y=166},
|
||||||
stand = {x=0, y=79},
|
walk = {x=168, y=187},
|
||||||
lay = {x=162, y=166},
|
mine = {x=189, y=198},
|
||||||
walk = {x=168, y=187},
|
walk_mine = {x=200, y=219},
|
||||||
mine = {x=189, y=198},
|
sit = {x=81, y=160},
|
||||||
walk_mine = {x=200, y=219},
|
},
|
||||||
sit = {x=81, y=160},
|
})
|
||||||
},
|
|
||||||
})
|
|
||||||
else
|
|
||||||
-- Minetest-0.4 compatible
|
|
||||||
default.player_register_model("skinsdb_3d_armor_character.b3d", {
|
|
||||||
animation_speed = 30,
|
|
||||||
textures = {
|
|
||||||
"blank.png",
|
|
||||||
"blank.png",
|
|
||||||
"blank.png",
|
|
||||||
"blank.png",
|
|
||||||
},
|
|
||||||
animations = {
|
|
||||||
stand = {x=0, y=79},
|
|
||||||
lay = {x=162, y=166},
|
|
||||||
walk = {x=168, y=187},
|
|
||||||
mine = {x=189, y=198},
|
|
||||||
walk_mine = {x=200, y=219},
|
|
||||||
sit = {x=81, y=160},
|
|
||||||
},
|
|
||||||
})
|
|
||||||
end
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -73,13 +73,9 @@ function skin_class:apply_skin_to_player(player)
|
|||||||
|
|
||||||
local playername = player:get_player_name()
|
local playername = player:get_player_name()
|
||||||
local ver = self:get_meta("format") or "1.0"
|
local ver = self:get_meta("format") or "1.0"
|
||||||
if minetest.global_exists("player_api") then
|
|
||||||
-- Minetest-5 compatible
|
player_api.set_model(player, "skinsdb_3d_armor_character_5.b3d")
|
||||||
player_api.set_model(player, "skinsdb_3d_armor_character_5.b3d")
|
|
||||||
else
|
|
||||||
-- Minetest-0.4 compatible
|
|
||||||
default.player_set_model(player, "skinsdb_3d_armor_character.b3d")
|
|
||||||
end
|
|
||||||
local v10_texture = "blank.png"
|
local v10_texture = "blank.png"
|
||||||
local v18_texture = "blank.png"
|
local v18_texture = "blank.png"
|
||||||
local armor_texture = "blank.png"
|
local armor_texture = "blank.png"
|
||||||
@ -114,23 +110,12 @@ function skin_class:apply_skin_to_player(player)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if minetest.global_exists("player_api") then
|
player_api.set_textures(player, {
|
||||||
-- Minetest-5 compatible
|
v10_texture,
|
||||||
player_api.set_textures(player, {
|
v18_texture,
|
||||||
v10_texture,
|
armor_texture,
|
||||||
v18_texture,
|
wielditem_texture,
|
||||||
armor_texture,
|
})
|
||||||
wielditem_texture,
|
|
||||||
})
|
|
||||||
else
|
|
||||||
-- Minetest-0.4 compatible
|
|
||||||
default.player_set_textures(player, {
|
|
||||||
v10_texture,
|
|
||||||
v18_texture,
|
|
||||||
armor_texture,
|
|
||||||
wielditem_texture,
|
|
||||||
})
|
|
||||||
end
|
|
||||||
|
|
||||||
player:set_properties({
|
player:set_properties({
|
||||||
visual_size = {
|
visual_size = {
|
||||||
|
Loading…
Reference in New Issue
Block a user