initial commit

This commit is contained in:
2024-12-02 13:45:17 +01:00
commit 92aaadc783
33 changed files with 1392 additions and 0 deletions

11
main.gd Normal file
View File

@@ -0,0 +1,11 @@
extends Node2D
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
$MultiTargetCamera.add_target($Player)
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass