aboutsummaryrefslogtreecommitdiff
path: root/MainScene.tscn
blob: f9d0a7779bc437459087696fab21f7afa5f4e227 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[gd_scene load_steps=9 format=2]

[ext_resource path="res://assets/background.png" type="Texture" id=1]
[ext_resource path="res://coffee_machine/coffee_machine.tscn" type="PackedScene" 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]

[sub_resource type="RectangleShape2D" id=1]
extents = Vector2( 32, 32 )

[node name="Node2D" type="Node2D"]

[node name="background" type="Sprite" parent="."]
position = Vector2( 511.115, 299.606 )
texture = ExtResource( 1 )

[node name="coffee_machine" parent="." instance=ExtResource( 2 )]
position = Vector2( 256.585, 298.451 )

[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( 519.268, 89.2965 )
texture = ExtResource( 5 )

[node name="Area2D" type="Area2D" parent="hiring/hire"]
script = ExtResource( 6 )

[node name="CollisionShape2D" type="CollisionShape2D" parent="hiring/hire/Area2D"]
shape = SubResource( 1 )