HUD.tscn 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. [gd_scene load_steps=14 format=2]
  2. [ext_resource path="res://HUD.gd" type="Script" id=1]
  3. [ext_resource path="res://dodge_assets/art/map_set.png" type="Texture" id=2]
  4. [sub_resource type="DynamicFontData" id=1]
  5. font_path = "res://dodge_assets/fonts/Xolonium-Regular.ttf"
  6. [sub_resource type="DynamicFont" id=2]
  7. size = 64
  8. outline_size = 1
  9. outline_color = Color( 0, 0, 0, 1 )
  10. font_data = SubResource( 1 )
  11. [sub_resource type="DynamicFontData" id=3]
  12. font_path = "res://dodge_assets/fonts/Xolonium-Regular.ttf"
  13. [sub_resource type="DynamicFont" id=4]
  14. size = 80
  15. font_data = SubResource( 3 )
  16. [sub_resource type="DynamicFontData" id=5]
  17. font_path = "res://dodge_assets/fonts/Xolonium-Regular.ttf"
  18. [sub_resource type="DynamicFont" id=6]
  19. size = 32
  20. font_data = SubResource( 5 )
  21. [sub_resource type="InputEventAction" id=7]
  22. action = "ui_select"
  23. [sub_resource type="ShortCut" id=8]
  24. shortcut = SubResource( 7 )
  25. [sub_resource type="AtlasTexture" id=9]
  26. flags = 4
  27. atlas = ExtResource( 2 )
  28. region = Rect2( 16, 1865, 914, 471 )
  29. [sub_resource type="AtlasTexture" id=10]
  30. flags = 4
  31. atlas = ExtResource( 2 )
  32. region = Rect2( -1, 1275, 915, 471 )
  33. [sub_resource type="AtlasTexture" id=11]
  34. flags = 4
  35. atlas = ExtResource( 2 )
  36. region = Rect2( 1073, 1283, 914, 472 )
  37. [node name="HUD" type="CanvasLayer"]
  38. script = ExtResource( 1 )
  39. [node name="ScoreLabel" type="Label" parent="."]
  40. anchor_right = 1.0
  41. margin_bottom = 78.0
  42. custom_fonts/font = SubResource( 2 )
  43. text = "0"
  44. align = 1
  45. [node name="MessageLabel" type="Label" parent="."]
  46. anchor_top = 0.5
  47. anchor_right = 1.0
  48. anchor_bottom = 0.5
  49. margin_top = -148.5
  50. margin_bottom = 148.5
  51. custom_fonts/font = SubResource( 4 )
  52. text = "Dodge the creeps!"
  53. align = 1
  54. autowrap = true
  55. [node name="StartButton" type="Button" parent="."]
  56. anchor_left = 0.5
  57. anchor_top = 1.0
  58. anchor_right = 0.5
  59. anchor_bottom = 1.0
  60. margin_left = -172.0
  61. margin_top = -200.0
  62. margin_right = 172.0
  63. margin_bottom = -100.0
  64. custom_fonts/font = SubResource( 6 )
  65. shortcut = SubResource( 8 )
  66. text = "Start"
  67. [node name="MessageTimer" type="Timer" parent="."]
  68. wait_time = 2.15
  69. one_shot = true
  70. [node name="ColorButton" type="TextureButton" parent="."]
  71. margin_left = 160.073
  72. margin_top = 629.419
  73. margin_right = 322.073
  74. margin_bottom = 714.419
  75. texture_normal = SubResource( 9 )
  76. texture_pressed = SubResource( 10 )
  77. texture_hover = SubResource( 11 )
  78. expand = true
  79. stretch_mode = 4
  80. [connection signal="pressed" from="StartButton" to="." method="_on_StartButton_pressed"]
  81. [connection signal="timeout" from="MessageTimer" to="." method="_on_MessageTimer_timeout"]
  82. [connection signal="pressed" from="ColorButton" to="." method="_on_StartButton_pressed"]