Might as well jump, JUMP!
This commit is contained in:
parent
75f745efb8
commit
0782f37e0a
@ -124,15 +124,19 @@ Player::Sound Player::ApplyPhysics(Vector3f input, World* world, float elapsedTi
|
||||
bt2 = world->BlockAt(GetPosition().x + input.x, GetPosition().y - 0.9f, GetPosition().z);
|
||||
bt3 = world->BlockAt(GetPosition().x + input.x, GetPosition().y - 1.7f, GetPosition().z);
|
||||
if (bt1 != BTYPE_AIR || bt2 != BTYPE_AIR || bt3 != BTYPE_AIR) {
|
||||
input.x = m_velocity.x = 0;
|
||||
//input.x = m_velocity.x = 0;
|
||||
m_velocity.y += .04f;
|
||||
m_velocity.z *= .5f;
|
||||
m_velocity.x *= .5f;
|
||||
}
|
||||
|
||||
bt1 = world->BlockAt(GetPosition().x, GetPosition().y, GetPosition().z + input.z);
|
||||
bt2 = world->BlockAt(GetPosition().x, GetPosition().y - 0.9f, GetPosition().z + input.z);
|
||||
bt3 = world->BlockAt(GetPosition().x, GetPosition().y - 1.7f, GetPosition().z + input.z);
|
||||
if (bt1 != BTYPE_AIR || bt2 != BTYPE_AIR || bt3 != BTYPE_AIR) {
|
||||
input.z = m_velocity.z = 0;
|
||||
//input.z = m_velocity.z = 0;
|
||||
m_velocity.y += .04f;
|
||||
m_velocity.z *= .5f;
|
||||
m_velocity.x *= .5f;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user