Skip to content

Commit c1bf6f9

Browse files
Zeg9PilzAdam
authored andcommittedApr 3, 2013
Fix camera "jumping" when attached and the parent goes too fast
1 parent f85c116 commit c1bf6f9

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed
 

‎src/camera.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,8 @@ void Camera::update(LocalPlayer* player, f32 frametime, v2u32 screensize,
218218
// Smooth the movement when walking up stairs
219219
v3f old_player_position = m_playernode->getPosition();
220220
v3f player_position = player->getPosition();
221+
if (player->isAttached && player->parent)
222+
player_position = player->parent->getPosition();
221223
//if(player->touching_ground && player_position.Y > old_player_position.Y)
222224
if(player->touching_ground &&
223225
player_position.Y > old_player_position.Y)

‎src/content_cao.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1129,6 +1129,7 @@ class GenericCAO : public ClientActiveObject
11291129
{
11301130
LocalPlayer *player = m_env->getLocalPlayer();
11311131
player->overridePosition = getParent()->getPosition();
1132+
m_env->getLocalPlayer()->parent = getParent();
11321133
}
11331134
}
11341135
else

‎src/localplayer.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
3535

3636
LocalPlayer::LocalPlayer(IGameDef *gamedef):
3737
Player(gamedef),
38+
parent(0),
3839
isAttached(false),
3940
overridePosition(v3f(0,0,0)),
4041
last_position(v3f(0,0,0)),

‎src/localplayer.h

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
2525

2626
class ClientEnvironment;
2727

28+
class ClientActiveObject;
29+
2830
class LocalPlayer : public Player
2931
{
3032
public:
@@ -35,6 +37,8 @@ class LocalPlayer : public Player
3537
{
3638
return true;
3739
}
40+
41+
ClientActiveObject *parent;
3842

3943
bool isAttached;
4044

0 commit comments

Comments
 (0)
Please sign in to comment.