HUD.tscn 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. [gd_scene load_steps=7 format=2]
  2. [sub_resource type="DynamicFontData" id=1]
  3. font_path = "res://dodge_assets/fonts/Xolonium-Regular.ttf"
  4. [sub_resource type="DynamicFont" id=2]
  5. size = 64
  6. outline_size = 1
  7. outline_color = Color( 0, 0, 0, 1 )
  8. font_data = SubResource( 1 )
  9. [sub_resource type="DynamicFontData" id=3]
  10. font_path = "res://dodge_assets/fonts/Xolonium-Regular.ttf"
  11. [sub_resource type="DynamicFont" id=4]
  12. size = 80
  13. font_data = SubResource( 3 )
  14. [sub_resource type="DynamicFontData" id=5]
  15. font_path = "res://dodge_assets/fonts/Xolonium-Regular.ttf"
  16. [sub_resource type="DynamicFont" id=6]
  17. size = 32
  18. font_data = SubResource( 5 )
  19. [node name="HUD" type="CanvasLayer"]
  20. [node name="ScoreLabel" type="Label" parent="."]
  21. anchor_right = 1.0
  22. margin_bottom = 78.0
  23. custom_fonts/font = SubResource( 2 )
  24. text = "0"
  25. align = 1
  26. [node name="MessageLabel" type="Label" parent="."]
  27. anchor_top = 0.5
  28. anchor_right = 1.0
  29. anchor_bottom = 0.5
  30. margin_top = -148.5
  31. margin_bottom = 148.5
  32. custom_fonts/font = SubResource( 4 )
  33. text = "Dodge the creeps!"
  34. align = 1
  35. autowrap = true
  36. [node name="StartButton" type="Button" parent="."]
  37. anchor_left = 0.5
  38. anchor_top = 1.0
  39. anchor_right = 0.5
  40. anchor_bottom = 1.0
  41. margin_left = -172.0
  42. margin_top = -200.0
  43. margin_right = 172.0
  44. margin_bottom = -100.0
  45. custom_fonts/font = SubResource( 6 )
  46. text = "Start"
  47. [node name="MessageTimer" type="Timer" parent="."]