Skip to content

Commit

Permalink
Add animations for third person view
Browse files Browse the repository at this point in the history
  • Loading branch information
BlockMen committed Apr 11, 2014
1 parent a5dcf12 commit 15740ff
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions mods/default/player.lua
Expand Up @@ -141,6 +141,7 @@ end
-- Update appearance when the player joins
minetest.register_on_joinplayer(function(player)
default.player_set_model(player, "character.x")
player:set_local_animation({x=0, y=79}, {x=168, y=187}, {x=189, y=198}, {x=200, y=219}, 30)
end)

minetest.register_on_leaveplayer(function(player)
Expand Down

3 comments on commit 15740ff

@rdnuk
Copy link
Contributor

@rdnuk rdnuk commented on 15740ff Apr 27, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've had to comment that line out as it crashed the server upon player login, this is the error: https://gist.github.com/crazyR14/0cf277efd79511430f40

@PilzAdam
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@crazyR14 have you read the compatibility part in the README? You can't run the latest version of minetest_game with the stable version of the engine.

@rdnuk
Copy link
Contributor

@rdnuk rdnuk commented on 15740ff Apr 29, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i run both the latest versions or at least i use master git repo's for both the game and engine. it only crashed when the client connected to the server. anyhow, ive commented out that line for now till it work properly, and all seems ok so far

Please sign in to comment.