48 lines
2.8 KiB
Plaintext
48 lines
2.8 KiB
Plaintext
[gd_scene load_steps=6 format=2]
|
|
|
|
[ext_resource path="res://scenes/item_holder.tscn" type="PackedScene" id=1]
|
|
[ext_resource path="res://scripts/crafting_machine.gd" type="Script" id=2]
|
|
[ext_resource path="res://scenes/coin_machine.tscn" type="PackedScene" id=3]
|
|
|
|
[sub_resource type="CylinderMesh" id=1]
|
|
height = 0.936
|
|
radial_segments = 8
|
|
|
|
[sub_resource type="ConvexPolygonShape" id=2]
|
|
points = PoolVector3Array( -0.0608763, 0.449247, 0.974783, -0.0608763, -0.464612, -0.974783, -0.0608763, 0.449247, -0.974783, 0.974783, -0.464612, -0.0608763, -0.974783, -0.464612, 0.0608763, 0.974783, 0.449247, 0.0608763, 0.0606902, -0.464648, 0.97486, -0.974783, 0.449247, -0.0608763, 0.7071, 0.453517, -0.7071, -0.705748, -0.468, -0.705748, -0.7071, 0.453517, 0.7071, 0.7071, 0.453517, 0.7071, 0.705748, -0.468, 0.705748, -0.705748, -0.468, 0.705748, 0.705748, -0.468, -0.705748, -0.7071, 0.453517, -0.7071, 0.0606902, -0.464648, -0.97486, -0.974783, -0.464612, -0.0608763, 0.974783, -0.464612, 0.0608763, -0.0608763, -0.464612, 0.974783, 0.0606902, 0.449283, 0.97486, 0.0606902, 0.449283, -0.97486, 0.974783, 0.449247, -0.0608763, -0.974783, 0.449247, 0.0608763, -0.642208, -0.46642, 0.73398, -0.642208, -0.46642, -0.73398, 0.578116, -0.464071, -0.760529, 0.578116, -0.464071, 0.760529, 0.760589, -0.464107, 0.577971, -0.760589, -0.464107, 0.577971, -0.760589, -0.464107, -0.577971, 0.760589, -0.464107, -0.577971 )
|
|
|
|
[node name="crafting_machine" type="Spatial"]
|
|
script = ExtResource( 2 )
|
|
|
|
[node name="MeshInstance" type="MeshInstance" parent="."]
|
|
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.372095, 0 )
|
|
mesh = SubResource( 1 )
|
|
|
|
[node name="status_label" type="Label3D" parent="MeshInstance"]
|
|
unique_name_in_owner = true
|
|
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.737837, 0 )
|
|
billboard = 1
|
|
|
|
[node name="StaticBody" type="StaticBody" parent="."]
|
|
|
|
[node name="CollisionShape2" type="CollisionShape" parent="StaticBody"]
|
|
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.372095, 0 )
|
|
shape = SubResource( 2 )
|
|
|
|
[node name="slot_1" parent="." instance=ExtResource( 1 )]
|
|
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 3 )
|
|
|
|
[node name="slot_2" parent="." instance=ExtResource( 1 )]
|
|
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 6 )
|
|
|
|
[node name="craft_item_holder" parent="." instance=ExtResource( 1 )]
|
|
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -3 )
|
|
add_enabled = false
|
|
|
|
[node name="coin_machine" parent="." instance=ExtResource( 3 )]
|
|
|
|
[connection signal="item_changed" from="slot_1" to="." method="_on_slot_1_item_changed"]
|
|
[connection signal="item_changed" from="slot_2" to="." method="_on_slot_2_item_changed"]
|
|
[connection signal="item_changed" from="craft_item_holder" to="." method="_on_craft_item_holder_item_changed"]
|
|
[connection signal="coin_requirement_met" from="coin_machine" to="." method="_on_coin_machine_coin_requirement_met"]
|