Remove AI multiplayer

This commit is contained in:
JonShard
2026-07-29 10:57:35 +02:00
parent ea492f914b
commit 0f1f0c6a93
102 changed files with 1146 additions and 960 deletions
+20
View File
@@ -0,0 +1,20 @@
extends Node3D
const RECIPE_MANAGER = preload("res://scripts/recipe_Manager.gd")
const GAME_MANAGER = preload("res://scripts/game_manager.gd")
var xr_interface :XRInterface
func _ready():
print("main: _ready")
RECIPE_MANAGER.print_all_recipes()
GAME_MANAGER.meals_in_play = ["hamburger"]
xr_interface = XRServer.find_interface("OpenXR")
if xr_interface and xr_interface.is_initialized():
print("OpenXR started :)")
DisplayServer.window_set_vsync_mode(DisplayServer.VSYNC_DISABLED)
get_viewport().use_xr = true
else:
print("OpenXR failed to start. Check your headset...")