mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2024-12-21 13:56:50 +01:00
62 lines
1.4 KiB
Plaintext
62 lines
1.4 KiB
Plaintext
|
[gd_scene load_steps=7 format=2]
|
||
|
|
||
|
[ext_resource path="res://HUD.gd" type="Script" id=1]
|
||
|
[ext_resource path="res://fonts/Xolonium-Regular.ttf" type="DynamicFontData" id=2]
|
||
|
|
||
|
[sub_resource type="DynamicFont" id=1]
|
||
|
size = 64
|
||
|
font_data = ExtResource( 2 )
|
||
|
|
||
|
[sub_resource type="DynamicFont" id=2]
|
||
|
size = 64
|
||
|
font_data = ExtResource( 2 )
|
||
|
|
||
|
[sub_resource type="InputEventAction" id=3]
|
||
|
action = "start_game"
|
||
|
|
||
|
[sub_resource type="ShortCut" id=4]
|
||
|
shortcut = SubResource( 3 )
|
||
|
|
||
|
[node name="HUD" type="CanvasLayer"]
|
||
|
script = ExtResource( 1 )
|
||
|
|
||
|
[node name="ScoreLabel" type="Label" parent="."]
|
||
|
anchor_right = 1.0
|
||
|
margin_bottom = 78.0
|
||
|
custom_fonts/font = SubResource( 1 )
|
||
|
text = "0"
|
||
|
align = 1
|
||
|
|
||
|
[node name="MessageLabel" type="Label" parent="."]
|
||
|
anchor_top = 0.5
|
||
|
anchor_right = 1.0
|
||
|
anchor_bottom = 0.5
|
||
|
margin_top = -79.5
|
||
|
margin_bottom = 79.5
|
||
|
custom_fonts/font = SubResource( 1 )
|
||
|
text = "Dodge the
|
||
|
Creeps"
|
||
|
align = 1
|
||
|
|
||
|
[node name="StartButton" type="Button" parent="."]
|
||
|
anchor_left = 0.5
|
||
|
anchor_top = 1.0
|
||
|
anchor_right = 0.5
|
||
|
anchor_bottom = 1.0
|
||
|
margin_left = -90.0
|
||
|
margin_top = -200.0
|
||
|
margin_right = 90.0
|
||
|
margin_bottom = -100.0
|
||
|
custom_fonts/font = SubResource( 2 )
|
||
|
shortcut = SubResource( 4 )
|
||
|
text = "Start"
|
||
|
__meta__ = {
|
||
|
"_edit_use_anchors_": false
|
||
|
}
|
||
|
|
||
|
[node name="MessageTimer" type="Timer" parent="."]
|
||
|
one_shot = true
|
||
|
|
||
|
[connection signal="pressed" from="StartButton" to="." method="_on_StartButton_pressed"]
|
||
|
[connection signal="timeout" from="MessageTimer" to="." method="_on_MessageTimer_timeout"]
|