source: Studio/Interface/Respawn.gd

godot4-dev
Last change on this file 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: 302 bytes
RevLine 
[831a978]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_respawn_pressed():
9 Universal._ready()
10 Universal.respaun = true # Fleg to recall ready script in player gd
11 visible = !visible
12 Universal.ui_lock = false
Note: See TracBrowser for help on using the repository browser.