Adds missing data
This commit is contained in:
parent
e6391d9fdd
commit
53cdcc3433
620 changed files with 47293 additions and 151 deletions
10
content/levels/exit_script.gd
Normal file
10
content/levels/exit_script.gd
Normal 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()
|
||||
Loading…
Add table
Add a link
Reference in a new issue