actual initial commit lmao

This commit is contained in:
2025-08-12 04:49:06 -04:00
parent b130b7eb7b
commit 0b69c0ae6f
1150 changed files with 124659 additions and 0 deletions

13
testscene.gd Normal file
View File

@@ -0,0 +1,13 @@
extends Node3D
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
if Input.is_action_pressed("ui_cancel"):
get_tree().quit()
pass