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
40
scenes/objects/food/burger.tscn
Normal file
40
scenes/objects/food/burger.tscn
Normal file
|
@ -0,0 +1,40 @@
|
|||
[gd_scene load_steps=7 format=3 uid="uid://bghvogpaly2a6"]
|
||||
|
||||
[ext_resource type="Script" path="res://scripts/player_interactables/food/burger.gd" id="1_nd3af"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ntjpg"]
|
||||
albedo_color = Color(0.765272, 0.371996, 0, 1)
|
||||
|
||||
[sub_resource type="BoxMesh" id="BoxMesh_366d1"]
|
||||
material = SubResource("StandardMaterial3D_ntjpg")
|
||||
size = Vector3(0.2, 0.05, 0.2)
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_6edt3"]
|
||||
albedo_color = Color(0.432741, 0.166278, 0, 1)
|
||||
|
||||
[sub_resource type="BoxMesh" id="BoxMesh_7qoyo"]
|
||||
material = SubResource("StandardMaterial3D_6edt3")
|
||||
size = Vector3(0.2, 0.05, 0.2)
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_cksw3"]
|
||||
size = Vector3(0.2, 0.15, 0.2)
|
||||
|
||||
[node name="Burger" type="RigidBody3D"]
|
||||
mass = 0.5
|
||||
script = ExtResource("1_nd3af")
|
||||
|
||||
[node name="MeshInstance3D" type="MeshInstance3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.05, 0)
|
||||
mesh = SubResource("BoxMesh_366d1")
|
||||
|
||||
[node name="MeshInstance3D2" type="MeshInstance3D" parent="."]
|
||||
mesh = SubResource("BoxMesh_7qoyo")
|
||||
skeleton = NodePath("../MeshInstance3D")
|
||||
|
||||
[node name="MeshInstance3D3" type="MeshInstance3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.05, 0)
|
||||
mesh = SubResource("BoxMesh_366d1")
|
||||
skeleton = NodePath("../MeshInstance3D2")
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="."]
|
||||
shape = SubResource("BoxShape3D_cksw3")
|
Loading…
Add table
Add a link
Reference in a new issue