summaryrefslogtreecommitdiff
path: root/scenes/menu.tscn
blob: 0a69c8783c430433f5bbc91c108b65d7e5b36468 (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
[gd_scene load_steps=6 format=2]

[ext_resource path="res://components/Logo.tscn" type="PackedScene" id=1]
[ext_resource path="res://components/button.tscn" type="PackedScene" id=2]
[ext_resource path="res://textures/backgrounds/background_grey.png" type="Texture" id=3]
[ext_resource path="res://textures/backgrounds/background_blue.png" type="Texture" id=4]
[ext_resource path="res://scenes/menu.gd" type="Script" id=5]

[node name="Node2D" type="Node2D"]
script = ExtResource( 5 )

[node name="Sprite" type="Sprite" parent="."]
position = Vector2( 640, 360 )
scale = Vector2( 0.7, 0.7 )
texture = ExtResource( 3 )

[node name="Sprite2" type="Sprite" parent="."]
position = Vector2( 630.621, 248.9 )
scale = Vector2( 0.744024, 0.314293 )
texture = ExtResource( 4 )

[node name="Exit" parent="." instance=ExtResource( 2 )]
position = Vector2( 850, 500 )
text = "Exit"
fixed_width = 150

[node name="Strart" parent="." instance=ExtResource( 2 )]
position = Vector2( 450, 500 )
text = "Start"
fixed_width = 150

[node name="Logo" parent="." instance=ExtResource( 1 )]
position = Vector2( 640, 250 )
rotation = -1.74846e-07
[connection signal="on_click" from="Exit" to="." method="_on_Exit_on_click"]