Added serving of the customers, npc exits, main menu, settings, saving and loading.
This commit is contained in:
parent
3d1e6caa29
commit
2b6d1faadb
19 changed files with 360 additions and 39 deletions
|
@ -1,4 +1,4 @@
|
|||
[gd_scene load_steps=5 format=3 uid="uid://cvnjpnvchvakj"]
|
||||
[gd_scene load_steps=6 format=3 uid="uid://cvnjpnvchvakj"]
|
||||
|
||||
[ext_resource type="Script" path="res://scripts/entities/npc.gd" id="1_jvyx6"]
|
||||
|
||||
|
@ -10,6 +10,9 @@ material = SubResource("StandardMaterial3D_e5nrh")
|
|||
|
||||
[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_am313"]
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_wyrst"]
|
||||
size = Vector3(3, 2, 3)
|
||||
|
||||
[node name="Npc" type="CharacterBody3D"]
|
||||
script = ExtResource("1_jvyx6")
|
||||
|
||||
|
@ -30,3 +33,8 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.25, 0)
|
|||
pixel_size = 0.01
|
||||
billboard = 1
|
||||
no_depth_test = true
|
||||
|
||||
[node name="Area3D" type="Area3D" parent="."]
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="Area3D"]
|
||||
shape = SubResource("BoxShape3D_wyrst")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue