source: Studio/Interface/Pause.gd@ 831a978

godot4-dev
Last change on this file since 831a978 was 831a978, checked in by Jonathan Neufeld <support@…>, 3 years ago

Initial commit of Godot4 project Working world and movable player.

  • Property mode set to 100644
File size: 260 bytes
Line 
1extends ColorRect
2
3
4# Called when the node enters the scene tree for the first time.
5func _ready():
6 pass # Replace with function body.
7
8func _on_resume_pressed():
9 visible = !visible
10 Universal.ui_lock = false
11 Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED)
Note: See TracBrowser for help on using the repository browser.