Add inventory system

This commit is contained in:
2025-01-05 12:05:55 -06:00
parent 750719ff88
commit e74878eb80
25 changed files with 247 additions and 46 deletions

14
scenes/MapBounds.tscn Normal file
View File

@@ -0,0 +1,14 @@
[gd_scene load_steps=3 format=3 uid="uid://cy4r0tp2htivb"]
[ext_resource type="Script" path="res://scripts/MapBounds.gd" id="1_43dqt"]
[sub_resource type="BoxShape3D" id="BoxShape3D_ep4u2"]
[node name="MapBounds" type="Area3D"]
script = ExtResource("1_43dqt")
[node name="CollisionShape3D" type="CollisionShape3D" parent="."]
shape = SubResource("BoxShape3D_ep4u2")
[connection signal="body_entered" from="." to="." method="_on_body_entered"]
[connection signal="body_exited" from="." to="." method="_on_body_exited"]