HUD.tscn 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. [gd_scene load_steps=10 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="AtlasTexture" id=9]
  17. flags = 4
  18. atlas = ExtResource( 2 )
  19. region = Rect2( 16, 1865, 914, 471 )
  20. [sub_resource type="AtlasTexture" id=10]
  21. flags = 4
  22. atlas = ExtResource( 2 )
  23. region = Rect2( -1, 1275, 915, 471 )
  24. [sub_resource type="AtlasTexture" id=11]
  25. flags = 4
  26. atlas = ExtResource( 2 )
  27. region = Rect2( 1073, 1283, 914, 472 )
  28. [node name="HUD" type="CanvasLayer"]
  29. script = ExtResource( 1 )
  30. [node name="ScoreLabel" type="Label" parent="."]
  31. anchor_right = 1.0
  32. margin_bottom = 78.0
  33. custom_fonts/font = SubResource( 2 )
  34. text = "0"
  35. align = 1
  36. [node name="MessageLabel" type="Label" parent="."]
  37. anchor_top = 0.5
  38. anchor_right = 1.0
  39. anchor_bottom = 0.5
  40. margin_top = -148.5
  41. margin_bottom = 148.5
  42. custom_fonts/font = SubResource( 4 )
  43. text = "Dodge the creeps!"
  44. align = 1
  45. autowrap = true
  46. [node name="MessageTimer" type="Timer" parent="."]
  47. wait_time = 2.15
  48. one_shot = true
  49. [node name="ColorButton" type="TextureButton" parent="."]
  50. anchor_top = 1.0
  51. anchor_right = 1.0
  52. anchor_bottom = 1.0
  53. margin_top = -200.0
  54. margin_bottom = -50.0
  55. texture_normal = SubResource( 9 )
  56. texture_pressed = SubResource( 10 )
  57. texture_hover = SubResource( 11 )
  58. expand = true
  59. stretch_mode = 5
  60. [node name="Start" type="Label" parent="ColorButton"]
  61. anchor_right = 1.0
  62. anchor_bottom = 1.0
  63. margin_top = 19.0
  64. custom_fonts/font = SubResource( 2 )
  65. text = "Start"
  66. align = 1
  67. [connection signal="timeout" from="MessageTimer" to="." method="_on_MessageTimer_timeout"]
  68. [connection signal="pressed" from="ColorButton" to="." method="_on_StartButton_pressed"]