-
Notifications
You must be signed in to change notification settings - Fork 0
/
Scene1.tscn
57 lines (49 loc) · 1.45 KB
/
Scene1.tscn
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=2 format=2]
[ext_resource path="res://Scene1.gd" type="Script" id=1]
[node name="Scene1" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = -1.0
margin_right = -1.0
script = ExtResource( 1 )
[node name="Label" type="Label" parent="."]
margin_left = 20.0
margin_top = 20.0
margin_right = 70.0
margin_bottom = 34.0
text = "This is scene 1"
[node name="GoToScene2Button" type="Button" parent="."]
margin_left = 140.0
margin_top = 18.0
margin_right = 241.0
margin_bottom = 38.0
text = "Go to scene 2"
[node name="PlayTrack1Button" type="Button" parent="."]
margin_left = 20.0
margin_top = 100.0
margin_right = 105.0
margin_bottom = 120.0
text = "Play track 1"
[node name="StopMusicButton" type="Button" parent="."]
margin_left = 20.0
margin_top = 130.0
margin_right = 105.0
margin_bottom = 150.0
text = "Stop Music"
[node name="Label2" type="Label" parent="."]
anchor_left = 1.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = -167.0
margin_top = -36.0
margin_right = -5.0
margin_bottom = -5.0
custom_colors/font_color = Color( 1, 1, 1, 0.392157 )
text = "Music by Kevin Macleod
Licensed under CC BY 3.0"
align = 2
valign = 2
[connection signal="pressed" from="GoToScene2Button" to="." method="_on_GoToScene2Button_pressed"]
[connection signal="pressed" from="PlayTrack1Button" to="." method="_on_PlayTrack1Button_pressed"]
[connection signal="pressed" from="StopMusicButton" to="." method="_on_StopMusicButton_pressed"]