mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-31 02:56:26 -04:00
Sam III
This commit is contained in:
parent
5518c277f3
commit
984a8f482b
6 changed files with 4 additions and 7463 deletions
|
@ -70,10 +70,8 @@ Calinou (CC BY-SA):
|
||||||
default_mineral_copper.png
|
default_mineral_copper.png
|
||||||
default_glass_detail.png
|
default_glass_detail.png
|
||||||
|
|
||||||
MirceaKitsune (WTFPL):
|
stu (WTFPL):
|
||||||
character.x
|
character.b3d
|
||||||
|
|
||||||
Jordach (CC BY-SA 3.0):
|
|
||||||
character.png
|
character.png
|
||||||
|
|
||||||
PilzAdam (WTFPL):
|
PilzAdam (WTFPL):
|
||||||
|
|
BIN
mods/default/models/character.b3d
Normal file
BIN
mods/default/models/character.b3d
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 3.2 KiB |
File diff suppressed because it is too large
Load diff
|
@ -15,7 +15,7 @@ function default.player_register_model(name, def)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Default player appearance
|
-- Default player appearance
|
||||||
default.player_register_model("character.x", {
|
default.player_register_model("character.b3d", {
|
||||||
animation_speed = 30,
|
animation_speed = 30,
|
||||||
textures = {"character.png", },
|
textures = {"character.png", },
|
||||||
animations = {
|
animations = {
|
||||||
|
@ -93,7 +93,7 @@ end
|
||||||
-- Update appearance when the player joins
|
-- Update appearance when the player joins
|
||||||
minetest.register_on_joinplayer(function(player)
|
minetest.register_on_joinplayer(function(player)
|
||||||
default.player_attached[player:get_player_name()] = false
|
default.player_attached[player:get_player_name()] = false
|
||||||
default.player_set_model(player, "character.x")
|
default.player_set_model(player, "character.b3d")
|
||||||
player:set_local_animation({x=0, y=79}, {x=168, y=187}, {x=189, y=198}, {x=200, y=219}, 30)
|
player:set_local_animation({x=0, y=79}, {x=168, y=187}, {x=189, y=198}, {x=200, y=219}, 30)
|
||||||
|
|
||||||
-- set GUI
|
-- set GUI
|
||||||
|
|
Loading…
Add table
Reference in a new issue