Initial commit

This commit is contained in:
2025-05-23 10:58:01 +02:00
commit f23df0b1f8
34 changed files with 527 additions and 0 deletions

18
scenes/player.tscn Normal file
View File

@@ -0,0 +1,18 @@
[gd_scene load_steps=4 format=3 uid="uid://07yvalnsoex7"]
[ext_resource type="Texture2D" uid="uid://ddd236iwmyh0r" path="res://assets/icon.svg" id="1_3vyb7"]
[ext_resource type="Script" uid="uid://bgahsyy7gxau4" path="res://scripts/player.gd" id="1_g2els"]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_g2els"]
size = Vector2(128, 128)
[node name="Player" type="CharacterBody2D"]
z_index = 5
scale = Vector2(0.2, 0.2)
script = ExtResource("1_g2els")
[node name="Sprite2D" type="Sprite2D" parent="."]
texture = ExtResource("1_3vyb7")
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource("RectangleShape2D_g2els")