-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTitleScreen.tscn
More file actions
120 lines (107 loc) · 2.73 KB
/
TitleScreen.tscn
File metadata and controls
120 lines (107 loc) · 2.73 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[gd_scene load_steps=5 format=2]
[ext_resource path="res://Player/Fighter.png" type="Texture" id=1]
[ext_resource path="res://Player/Wizard.png" type="Texture" id=2]
[ext_resource path="res://Player/Cleric.png" type="Texture" id=3]
[ext_resource path="res://TitleScreen.gd" type="Script" id=4]
[node name="TitleScreen" type="Node2D"]
script = ExtResource( 4 )
[node name="Title" type="Label" parent="."]
margin_right = 480.0
margin_bottom = 64.0
text = "Wizards & Wyverns
Select your class"
align = 1
valign = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Fighter" type="Sprite" parent="."]
position = Vector2( 128, 96 )
texture = ExtResource( 1 )
hframes = 60
frame = 18
[node name="Wizard" type="Sprite" parent="."]
position = Vector2( 240, 96 )
texture = ExtResource( 2 )
hframes = 60
frame = 18
[node name="Cleric" type="Sprite" parent="."]
position = Vector2( 352, 96 )
texture = ExtResource( 3 )
hframes = 60
frame = 18
[node name="FighterStats" type="Label" parent="."]
margin_left = 96.0
margin_top = 128.0
margin_right = 256.0
margin_bottom = 210.0
rect_scale = Vector2( 0.5, 0.5 )
text = "Health: 10
Damage: 3
Weapon: Sword
Special: Double Damage"
autowrap = true
__meta__ = {
"_edit_use_anchors_": false
}
[node name="WizardStats" type="Label" parent="."]
margin_left = 208.0
margin_top = 128.0
margin_right = 384.0
margin_bottom = 210.0
rect_scale = Vector2( 0.5, 0.5 )
text = "Health: 4
Damage: 3
Weapon: Fireball
Special: Explosive Fireball"
autowrap = true
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ClericStats" type="Label" parent="."]
margin_left = 320.0
margin_top = 128.0
margin_right = 464.0
margin_bottom = 210.0
rect_scale = Vector2( 0.5, 0.5 )
text = "Health: 6
Damage: 2
Weapon: Holy Aura
Special: Cure Wounds"
autowrap = true
__meta__ = {
"_edit_use_anchors_": false
}
[node name="SelectFighter" type="Button" parent="."]
margin_left = 96.0
margin_top = 192.0
margin_right = 160.0
margin_bottom = 224.0
rect_pivot_offset = Vector2( 32, 8 )
text = "Fighter"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="SelectWizard" type="Button" parent="."]
margin_left = 208.0
margin_top = 192.0
margin_right = 272.0
margin_bottom = 224.0
rect_pivot_offset = Vector2( 32, 8 )
text = "Wizard"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="SelectCleric" type="Button" parent="."]
margin_left = 320.0
margin_top = 192.0
margin_right = 384.0
margin_bottom = 220.0
rect_pivot_offset = Vector2( 32, 8 )
text = "Cleric"
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="SelectFighter" to="." method="_on_SelectFighter_pressed"]
[connection signal="pressed" from="SelectWizard" to="." method="_on_SelectWizard_pressed"]
[connection signal="pressed" from="SelectCleric" to="." method="_on_SelectCleric_pressed"]