diff options
author | Bastiaan Olij <mux213@gmail.com> | 2024-04-29 21:46:28 +1000 |
---|---|---|
committer | Bastiaan Olij <mux213@gmail.com> | 2024-04-29 21:46:28 +1000 |
commit | d83aaeea17fcf7a2bc4d7f4346280149ba222c8a (patch) | |
tree | 68ce99c0bae436850eecf8819c87c7c22eb24b73 | |
parent | 6118592c6d88350d01f74faff6fd49754f84a7d0 (diff) | |
download | redot-engine-d83aaeea17fcf7a2bc4d7f4346280149ba222c8a.tar.gz |
MobileVR: orientation is progressive and needs to be initialised
-rw-r--r-- | modules/mobile_vr/mobile_vr_interface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mobile_vr/mobile_vr_interface.cpp b/modules/mobile_vr/mobile_vr_interface.cpp index 94a3f0777e..bba56f6468 100644 --- a/modules/mobile_vr/mobile_vr_interface.cpp +++ b/modules/mobile_vr/mobile_vr_interface.cpp @@ -126,7 +126,7 @@ void MobileVRInterface::set_position_from_sensors() { // 9dof is a misleading marketing term coming from 3 accelerometer axis + 3 gyro axis + 3 magnetometer axis = 9 axis // but in reality this only offers 3 dof (yaw, pitch, roll) orientation - Basis orientation; + Basis orientation = head_transform.basis; uint64_t ticks = OS::get_singleton()->get_ticks_usec(); uint64_t ticks_elapsed = ticks - last_ticks; |