feat(*): Add new match scene, new player scene and main menu

This commit is contained in:
Josh Creek
2025-07-12 19:20:16 +01:00
parent 58fac74683
commit 927bbd0be7
29 changed files with 6741 additions and 50 deletions
+1
View File
@@ -0,0 +1 @@
uid://scnbnslvru0b
+1
View File
@@ -0,0 +1 @@
uid://byy2mu4mxdlgl
+1
View File
@@ -0,0 +1 @@
uid://2xvkyfw3v1ui
+5
View File
@@ -0,0 +1,5 @@
extends Button
func _on_pressed() -> void:
get_tree().change_scene_to_file("res://scenes/Game.tscn")
@@ -0,0 +1 @@
uid://c1tfuurttt8ft
+1
View File
@@ -0,0 +1 @@
uid://cprbkhe46c1be
+1
View File
@@ -0,0 +1 @@
uid://bdda0ybrdo3or
+14
View File
@@ -0,0 +1,14 @@
extends Label3D
var time_left : int = 10
func _ready():
$".".text = "Time left: " + str(time_left) + "s"
func _on_time_left_timer_timeout():
time_left -= 1
$".".text = "Time left: " + str(time_left) + "s"
print(time_left)
if time_left == 0:
Input.mouse_mode = Input.MOUSE_MODE_VISIBLE
get_tree().change_scene_to_file("res://scenes/main_menu.tscn")
+1
View File
@@ -0,0 +1 @@
uid://bj4jfixb8xuni