Changed rollForward to accept vector going from camera to bball
This commit is contained in:
parent
2558311844
commit
288d509316
@ -160,8 +160,7 @@ glm::mat4 Physics::getRotation(int i)
|
|||||||
|
|
||||||
void Physics::rollForward(glm::vec3 camPos)
|
void Physics::rollForward(glm::vec3 camPos)
|
||||||
{
|
{
|
||||||
btVector3 pos(camPos.x,camPos.y,camPos.z);
|
btVector3 pos(camPos.x,0,camPos.z);
|
||||||
pos -= playerBody->getCenterOfMassPosition();
|
|
||||||
pos.cross(btVector3(0,1,0));
|
pos.cross(btVector3(0,1,0));
|
||||||
playerBall->applyTorque(pos);
|
playerBall->applyTorque(pos);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user