Adds missing data

This commit is contained in:
Michel 2025-02-03 19:17:20 +01:00
parent e6391d9fdd
commit 53cdcc3433
620 changed files with 47293 additions and 151 deletions

View file

@ -0,0 +1,10 @@
extends Area3D
func _on_body_entered(body: Node3D) -> void:
if body is not Player:
return
Player.Instance.cameraController.process_mode = Node.PROCESS_MODE_PAUSABLE
get_tree().paused = true
Input.mouse_mode = Input.MOUSE_MODE_VISIBLE
Player.Instance.ui.displayComplete()