From 246c00eb2946c02541cbe4e90fb631aa1e6890dd Mon Sep 17 00:00:00 2001 From: Shraiwi Date: Wed, 10 Feb 2021 01:22:54 -0600 Subject: [PATCH] Added SetVrOutputTransform() snippet to VR example --- examples/core/core_vr_simulator.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/core/core_vr_simulator.c b/examples/core/core_vr_simulator.c index 8d24983cc..07e57ea10 100644 --- a/examples/core/core_vr_simulator.c +++ b/examples/core/core_vr_simulator.c @@ -72,6 +72,8 @@ int main(void) SetCameraMode(camera, CAMERA_FIRST_PERSON); // Set first person camera mode + SetVrOutputTransform(VR_OUTPUT_ROTATE_NONE); // Do not rotate the VR output + SetTargetFPS(90); // Set our game to run at 90 frames-per-second //--------------------------------------------------------------------------------------