From a9aa7843d9fe742da3c5d99e62f87e876b706d51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20S=2E=20=C5=81ukasiewicz?= Date: Tue, 18 Feb 2025 16:59:46 +0100 Subject: [PATCH] Allow the game to run without VR --- project/start_vr.gd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/project/start_vr.gd b/project/start_vr.gd index c610b4c..b9f1026 100644 --- a/project/start_vr.gd +++ b/project/start_vr.gd @@ -37,7 +37,8 @@ func _ready() -> void: else: # We couldn't start OpenXR. print("OpenXR not instantiated!") - get_tree().quit() + # Allow the game to run without VR + #get_tree().quit() # Handle OpenXR session ready.