GUI and pathfinding expansions and resting places.
This commit is contained in:
parent
26ee79c57d
commit
27964084ff
6 changed files with 70 additions and 16 deletions
6
scenes/maps/elements/rest.tscn
Normal file
6
scenes/maps/elements/rest.tscn
Normal file
|
@ -0,0 +1,6 @@
|
|||
[gd_scene load_steps=2 format=3 uid="uid://bn60ywtwfn7bq"]
|
||||
|
||||
[ext_resource type="Script" path="res://scripts/maps/rest.gd" id="1_m76x3"]
|
||||
|
||||
[node name="Rest" type="Node3D"]
|
||||
script = ExtResource("1_m76x3")
|
|
@ -1,6 +1,7 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://cbyee7drds7qu"]
|
||||
[gd_scene load_steps=9 format=3 uid="uid://cbyee7drds7qu"]
|
||||
|
||||
[ext_resource type="Script" path="res://scripts/maps/map.gd" id="1_4npcs"]
|
||||
[ext_resource type="Script" path="res://scripts/maps/rest.gd" id="2_yv1d0"]
|
||||
[ext_resource type="PackedScene" uid="uid://bsghm187n6ykx" path="res://scenes/objects/closet.tscn" id="2_yvpvm"]
|
||||
[ext_resource type="PackedScene" uid="uid://cvnjpnvchvakj" path="res://scenes/entities/npc.tscn" id="3_x3gyc"]
|
||||
|
||||
|
@ -30,6 +31,20 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 16, 4, 0)
|
|||
[node name="2" type="Node3D" parent="PlayerSpawn"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3, 15)
|
||||
|
||||
[node name="NPCRestPlaces" type="Node3D" parent="."]
|
||||
|
||||
[node name="0" type="Node3D" parent="NPCRestPlaces"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 2, -28)
|
||||
script = ExtResource("2_yv1d0")
|
||||
|
||||
[node name="1" type="Node3D" parent="NPCRestPlaces"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 13, 2, -32)
|
||||
script = ExtResource("2_yv1d0")
|
||||
|
||||
[node name="2" type="Node3D" parent="NPCRestPlaces"]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 12, 2, -48)
|
||||
script = ExtResource("2_yv1d0")
|
||||
|
||||
[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."]
|
||||
transform = Transform3D(-0.899519, 0.375, 0.224144, -0.224144, -0.836516, 0.5, 0.375, 0.399519, 0.836516, 0, 0, 0)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue