initial commit

This commit is contained in:
mr0xb 2025-12-27 00:20:33 -05:00
commit 94847a50a2
42 changed files with 2063 additions and 0 deletions

6
scenes/main/main.gd Normal file
View file

@ -0,0 +1,6 @@
extends Node2D
@onready var scene_container = $CanvasLayer/SceneContainer
func _ready() -> void:
print("Main scene ready")

1
scenes/main/main.gd.uid Normal file
View file

@ -0,0 +1 @@
uid://c14ki8pseb0np

18
scenes/main/main.tscn Normal file
View file

@ -0,0 +1,18 @@
[gd_scene load_steps=2 format=3 uid="uid://bev87hg3nq35t"]
[ext_resource type="Script" uid="uid://c14ki8pseb0np" path="res://scenes/main/main.gd" id="1_y5mkt"]
[node name="Main" type="Node2D"]
script = ExtResource("1_y5mkt")
[node name="CanvasLayer" type="CanvasLayer" parent="."]
[node name="Background" type="ColorRect" parent="CanvasLayer"]
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
color = Color(0.15, 0.15, 0.2, 1)
[node name="SceneContainer" type="Node" parent="CanvasLayer"]