teil 1 - Projekt Setup mit Startbildschirm und Navigation

This commit is contained in:
Patrick Nueser
2024-06-27 10:09:13 +02:00
commit 27b9bb4777
152 changed files with 2420 additions and 0 deletions

12
level/level.gd Normal file
View File

@ -0,0 +1,12 @@
extends Node2D
# 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 Input.is_key_pressed(KEY_Q) == true:
GameManager.load_main_scene()

3
level/level.tscn Normal file
View File

@ -0,0 +1,3 @@
[gd_scene format=3 uid="uid://c2ceksy5q1g8w"]
[node name="Level" type="Node2D"]