aboutsummaryrefslogtreecommitdiff
path: root/main_scene/management.tscn
diff options
context:
space:
mode:
Diffstat (limited to 'main_scene/management.tscn')
-rw-r--r--main_scene/management.tscn59
1 files changed, 59 insertions, 0 deletions
diff --git a/main_scene/management.tscn b/main_scene/management.tscn
new file mode 100644
index 0000000..63dc13d
--- /dev/null
+++ b/main_scene/management.tscn
@@ -0,0 +1,59 @@
+[gd_scene load_steps=11 format=2]
+
+[ext_resource path="res://assets/background.png" type="Texture" id=1]
+[ext_resource path="res://main_scene/coffee_machine.gd" type="Script" id=2]
+[ext_resource path="res://main_scene/Label.gd" type="Script" id=3]
+[ext_resource path="res://buildings/buildings.tscn" type="PackedScene" id=4]
+[ext_resource path="res://assets/hire.png" type="Texture" id=5]
+[ext_resource path="res://main_scene/hire_button.gd" type="Script" id=6]
+[ext_resource path="res://main_scene/programmers.gd" type="Script" id=7]
+[ext_resource path="res://assets/coffee_maschine.png" type="Texture" id=8]
+
+[sub_resource type="RectangleShape2D" id=1]
+extents = Vector2( 70.4574, 120 )
+
+[sub_resource type="RectangleShape2D" id=2]
+extents = Vector2( 360, 360 )
+
+[node name="Node2D" type="Node2D"]
+
+[node name="background" type="Sprite" parent="."]
+position = Vector2( 512.018, 299.606 )
+texture = ExtResource( 1 )
+
+[node name="Label" type="Label" parent="."]
+margin_right = 237.0
+margin_bottom = 97.0
+script = ExtResource( 3 )
+__meta__ = {
+"_edit_use_anchors_": false
+}
+
+[node name="buildings" parent="." instance=ExtResource( 4 )]
+
+[node name="hiring" type="Node2D" parent="."]
+script = ExtResource( 7 )
+
+[node name="hire" type="Sprite" parent="hiring"]
+position = Vector2( 501.726, 101.527 )
+scale = Vector2( 0.6, 0.6 )
+texture = ExtResource( 5 )
+
+[node name="Area2D" type="Area2D" parent="hiring/hire"]
+script = ExtResource( 6 )
+
+[node name="CollisionShape2D" type="CollisionShape2D" parent="hiring/hire/Area2D"]
+position = Vector2( -9.54248, -2.42094 )
+shape = SubResource( 1 )
+
+[node name="coffee_maschine" type="Sprite" parent="."]
+position = Vector2( 288, 304 )
+scale = Vector2( 0.2, 0.2 )
+texture = ExtResource( 8 )
+
+[node name="Area2D" type="Area2D" parent="coffee_maschine"]
+script = ExtResource( 2 )
+
+[node name="CollisionShape2D" type="CollisionShape2D" parent="coffee_maschine/Area2D"]
+position = Vector2( -40.0001, -0.00012207 )
+shape = SubResource( 2 )