rename fronts to forwards

This commit is contained in:
Triplelexx 2017-03-22 19:03:39 +00:00
parent d1db04f93a
commit 216f20ed2c

View file

@ -123,16 +123,16 @@ public:
void update(float deltaTime) {
if (moving()) {
glm::vec3 camFront = getOrientation() * Vectors::FRONT;
glm::vec3 camForward = getOrientation() * Vectors::FRONT;
glm::vec3 camRight = getOrientation() * Vectors::RIGHT;
glm::vec3 camUp = getOrientation() * Vectors::UP;
float moveSpeed = deltaTime * movementSpeed;
if (keys[FORWARD]) {
position += camFront * moveSpeed;
position += camForward * moveSpeed;
}
if (keys[BACK]) {
position -= camFront * moveSpeed;
position -= camForward * moveSpeed;
}
if (keys[LEFT]) {
position -= camRight * moveSpeed;