HUD.tscn 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. [gd_scene load_steps=8 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. [node name="HUD" type="CanvasLayer"]
  21. script = ExtResource( 1 )
  22. [node name="ScoreLabel" type="Label" parent="."]
  23. anchor_right = 1.0
  24. margin_bottom = 78.0
  25. custom_fonts/font = SubResource( 2 )
  26. text = "0"
  27. align = 1
  28. [node name="MessageLabel" type="Label" parent="."]
  29. anchor_top = 0.5
  30. anchor_right = 1.0
  31. anchor_bottom = 0.5
  32. margin_top = -148.5
  33. margin_bottom = 148.5
  34. custom_fonts/font = SubResource( 4 )
  35. text = "Dodge the creeps!"
  36. align = 1
  37. autowrap = true
  38. [node name="StartButton" type="Button" parent="."]
  39. anchor_left = 0.5
  40. anchor_top = 1.0
  41. anchor_right = 0.5
  42. anchor_bottom = 1.0
  43. margin_left = -172.0
  44. margin_top = -200.0
  45. margin_right = 172.0
  46. margin_bottom = -100.0
  47. custom_fonts/font = SubResource( 6 )
  48. text = "Start"
  49. [node name="MessageTimer" type="Timer" parent="."]
  50. wait_time = 2.15
  51. one_shot = true
  52. [connection signal="pressed" from="StartButton" to="." method="_on_StartButton_pressed"]
  53. [connection signal="timeout" from="MessageTimer" to="." method="_on_MessageTimer_timeout"]