summaryrefslogtreecommitdiff
path: root/scenes/menu.tscn
blob: 34b444b89a187d47f661d473865e78422e8a055c (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
45
46
47
48
49
50
51
52
53
54
55
56
57
[gd_scene load_steps=10 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]
[ext_resource path="res://textures/texts/name.png" type="Texture" id=6]
[ext_resource path="res://textures/icons/light_bulb.png" type="Texture" id=7]
[ext_resource path="res://textures/icons/light_bulb_r.png" type="Texture" id=8]

[sub_resource type="AnimatedTexture" id=1]
frames = 2
fps = 1.0
frame_0/texture = ExtResource( 7 )
frame_1/texture = ExtResource( 8 )
frame_1/delay_sec = 0.0

[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( 255.566, 250 )
rotation = -1.74846e-07

[node name="Sprite3" type="Sprite" parent="."]
position = Vector2( 666.085, 247.613 )
scale = Vector2( 4.14939, 4.14939 )
texture = ExtResource( 6 )

[node name="Sprite4" type="Sprite" parent="."]
position = Vector2( 1081.89, 246.278 )
scale = Vector2( 4.35795, 4.35795 )
texture = SubResource( 1 )

[connection signal="on_click" from="Exit" to="." method="_on_Exit_on_click"]
[connection signal="on_click" from="Strart" to="." method="_on_Strart_on_click"]