summaryrefslogtreecommitdiff
path: root/Game.gd
blob: 78f9b8462fa45f670e4b36f499e83b8b9f6b6b39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extends Node2D

@export var player : RigidBody2D
@export_file("*.tscn") var scene : String
@export var ded_text : Label

# Called when the node enters the scene tree for the first time.
func _ready():
	pass # Replace with function body.

# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
	if player == null:
		ded_text.visible = true
		if Input.is_action_just_pressed("ui_select"):
			get_tree().change_scene_to_file(scene)