mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-06 14:34:28 +02:00
rename fronts to forwards
This commit is contained in:
parent
d1db04f93a
commit
216f20ed2c
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue