No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

scoreUI.tscn 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. [gd_scene load_steps=5 format=2]
  2. [ext_resource path="res://mini-game/ressources/font/joystix/ot/joystix monospace.otf" type="DynamicFontData" id=1]
  3. [ext_resource path="res://mini-game/scenes/decor/scoreUI.gd" type="Script" id=2]
  4. [sub_resource type="DynamicFont" id=2]
  5. size = 70
  6. outline_size = 2
  7. outline_color = Color( 0, 0, 0, 1 )
  8. font_data = ExtResource( 1 )
  9. [sub_resource type="DynamicFont" id=1]
  10. size = 50
  11. outline_size = 2
  12. outline_color = Color( 0, 0, 0, 1 )
  13. font_data = ExtResource( 1 )
  14. [node name="scoreUI" type="Control"]
  15. anchor_right = 1.0
  16. anchor_bottom = 1.0
  17. script = ExtResource( 2 )
  18. __meta__ = {
  19. "_edit_use_anchors_": false
  20. }
  21. [node name="MarginContainer" type="MarginContainer" parent="."]
  22. anchor_right = 1.0
  23. margin_bottom = 61.0
  24. custom_constants/margin_right = 10
  25. custom_constants/margin_top = 10
  26. custom_constants/margin_left = 10
  27. custom_constants/margin_bottom = 10
  28. __meta__ = {
  29. "_edit_use_anchors_": false
  30. }
  31. [node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer"]
  32. margin_left = 10.0
  33. margin_top = 10.0
  34. margin_right = 1910.0
  35. margin_bottom = 160.0
  36. [node name="ObjectiveLabel" type="Label" parent="MarginContainer/VBoxContainer"]
  37. margin_right = 1900.0
  38. margin_bottom = 85.0
  39. custom_fonts/font = SubResource( 2 )
  40. text = "Objective"
  41. align = 1
  42. __meta__ = {
  43. "_edit_use_anchors_": false
  44. }
  45. [node name="ScoreLabel" type="Label" parent="MarginContainer/VBoxContainer"]
  46. margin_top = 89.0
  47. margin_right = 1900.0
  48. margin_bottom = 150.0
  49. custom_fonts/font = SubResource( 1 )
  50. text = "99999"
  51. align = 1
  52. __meta__ = {
  53. "_edit_use_anchors_": false
  54. }