-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlevel2.tscn
More file actions
80 lines (69 loc) · 2.12 KB
/
level2.tscn
File metadata and controls
80 lines (69 loc) · 2.12 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[gd_scene load_steps=11 format=2]
[ext_resource path="res://img/bg/level.png" type="Texture" id=1]
[ext_resource path="res://scripts/level/level2.gd" type="Script" id=2]
[ext_resource path="res://fonts/Dancing-Script/DancingScript-VariableFont_wght.ttf" type="DynamicFontData" id=3]
[ext_resource path="res://fonts/Montserrat/Montserrat-Light.ttf" type="DynamicFontData" id=4]
[ext_resource path="res://scripts/level/menu-button.gd" type="Script" id=5]
[ext_resource path="res://fonts/Montserrat/Montserrat-Bold.ttf" type="DynamicFontData" id=6]
[ext_resource path="res://scripts/level/restart-level.gd" type="Script" id=7]
[sub_resource type="DynamicFont" id=2]
size = 48
font_data = ExtResource( 4 )
[sub_resource type="DynamicFont" id=3]
size = 96
font_data = ExtResource( 6 )
[sub_resource type="DynamicFont" id=4]
size = 54
font_data = ExtResource( 3 )
[node name="Node2D" type="Node2D"]
script = ExtResource( 2 )
[node name="bg" type="TextureRect" parent="."]
margin_right = 1921.89
margin_bottom = 1075.76
texture = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="CanvasLayer" type="CanvasLayer" parent="."]
[node name="Label" type="Label" parent="CanvasLayer"]
margin_left = 32.0791
margin_top = 25.5712
margin_right = 1484.08
margin_bottom = 85.5712
custom_fonts/font = SubResource( 2 )
text = "Mirrors reflect light, try it out!"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label2" type="Label" parent="CanvasLayer"]
margin_left = 1842.0
margin_top = 962.0
margin_right = 1918.0
margin_bottom = 1080.0
custom_fonts/font = SubResource( 3 )
text = "2"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Button" type="Button" parent="CanvasLayer"]
margin_left = 1796.0
margin_top = 18.0
margin_right = 1916.0
margin_bottom = 90.0
custom_fonts/font = SubResource( 4 )
text = "Menu"
script = ExtResource( 5 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Button2" type="Button" parent="CanvasLayer"]
margin_left = 1636.0
margin_top = 18.0
margin_right = 1789.0
margin_bottom = 90.0
custom_fonts/font = SubResource( 4 )
text = "Restart"
script = ExtResource( 7 )
__meta__ = {
"_edit_use_anchors_": false
}