HUD.tscn 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. [gd_scene load_steps=10 format=2]
  2. [ext_resource path="res://HUD.gd" type="Script" id=1]
  3. [sub_resource type="DynamicFontData" id=1]
  4. font_path = "res://dodge_assets/fonts/Xolonium-Regular.ttf"
  5. [sub_resource type="DynamicFont" id=2]
  6. size = 64
  7. outline_size = 1
  8. outline_color = Color( 0, 0, 0, 1 )
  9. font_data = SubResource( 1 )
  10. [sub_resource type="DynamicFontData" id=3]
  11. font_path = "res://dodge_assets/fonts/Xolonium-Regular.ttf"
  12. [sub_resource type="DynamicFont" id=4]
  13. size = 80
  14. font_data = SubResource( 3 )
  15. [sub_resource type="DynamicFontData" id=5]
  16. font_path = "res://dodge_assets/fonts/Xolonium-Regular.ttf"
  17. [sub_resource type="DynamicFont" id=6]
  18. size = 32
  19. font_data = SubResource( 5 )
  20. [sub_resource type="InputEventAction" id=7]
  21. action = "ui_select"
  22. [sub_resource type="ShortCut" id=8]
  23. shortcut = SubResource( 7 )
  24. [node name="HUD" type="CanvasLayer"]
  25. script = ExtResource( 1 )
  26. [node name="ScoreLabel" type="Label" parent="."]
  27. anchor_right = 1.0
  28. margin_bottom = 78.0
  29. custom_fonts/font = SubResource( 2 )
  30. text = "0"
  31. align = 1
  32. [node name="MessageLabel" type="Label" parent="."]
  33. anchor_top = 0.5
  34. anchor_right = 1.0
  35. anchor_bottom = 0.5
  36. margin_top = -148.5
  37. margin_bottom = 148.5
  38. custom_fonts/font = SubResource( 4 )
  39. text = "Dodge the creeps!"
  40. align = 1
  41. autowrap = true
  42. [node name="StartButton" type="Button" parent="."]
  43. anchor_left = 0.5
  44. anchor_top = 1.0
  45. anchor_right = 0.5
  46. anchor_bottom = 1.0
  47. margin_left = -172.0
  48. margin_top = -200.0
  49. margin_right = 172.0
  50. margin_bottom = -100.0
  51. custom_fonts/font = SubResource( 6 )
  52. shortcut = SubResource( 8 )
  53. text = "Start"
  54. [node name="MessageTimer" type="Timer" parent="."]
  55. wait_time = 2.15
  56. one_shot = true
  57. [connection signal="pressed" from="StartButton" to="." method="_on_StartButton_pressed"]
  58. [connection signal="timeout" from="MessageTimer" to="." method="_on_MessageTimer_timeout"]