Add fallback camera with mouse controls

This commit is contained in:
Marek S. Łukasiewicz 2025-03-03 10:01:54 +01:00
parent 2824f77450
commit ad4bb45951
6 changed files with 79 additions and 1 deletions

View file

@ -3,6 +3,7 @@ extends Node3D
signal focus_lost
signal focus_gained
signal pose_recentered
signal setup_failed
@export var maximum_refresh_rate : int = 90
@ -40,6 +41,7 @@ func _ready() -> void:
print("OpenXR not instantiated!")
# Allow the game to run without VR
#get_tree().quit()
setup_failed.emit()
func _on_tracker_added(tracker_name: StringName, type: int) -> void: