Add player movement and test world foundation

This commit is contained in:
Alexander Sellite 2026-07-25 10:42:21 -04:00
parent 6741a9fa5e
commit dd2563c0d8
6 changed files with 387 additions and 0 deletions

13
main/main.tscn Normal file
View file

@ -0,0 +1,13 @@
[gd_scene load_steps=3 format=3]
[ext_resource type="PackedScene" path="res://world/test_world.tscn" id="1_world"]
[ext_resource type="PackedScene" path="res://player/player.tscn" id="2_player"]
[node name="Main" type="Node3D"]
[node name="TestWorld" parent="." instance=ExtResource("1_world")]
[node name="Players" type="Node3D" parent="."]
[node name="Player" parent="Players" instance=ExtResource("2_player")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 5)