Status.tscn 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. [gd_scene load_steps=3 format=2]
  2. [ext_resource path="res://Scenes/Fonts/noto_sans_ui_regular.ttf" type="DynamicFontData" id=1]
  3. [sub_resource type="DynamicFont" id=1]
  4. size = 18
  5. font_data = ExtResource( 1 )
  6. [node name="Status" type="Control"]
  7. anchor_right = 1.0
  8. anchor_bottom = 1.0
  9. __meta__ = {
  10. "_edit_use_anchors_": false
  11. }
  12. [node name="Horizontal" type="ColorRect" parent="."]
  13. anchor_right = 1.0
  14. margin_bottom = 28.0
  15. color = Color( 0.0901961, 0.0705882, 0.0352941, 0.615686 )
  16. __meta__ = {
  17. "_edit_use_anchors_": false
  18. }
  19. [node name="Vertical" type="ColorRect" parent="."]
  20. anchor_bottom = 1.0
  21. margin_top = 28.0
  22. margin_right = 221.0
  23. color = Color( 0.0901961, 0.0705882, 0.0352941, 0.615686 )
  24. __meta__ = {
  25. "_edit_use_anchors_": false
  26. }
  27. [node name="Info" type="Label" parent="."]
  28. margin_left = 10.0
  29. custom_fonts/font = SubResource( 1 )
  30. custom_colors/font_color = Color( 0.894531, 0.385843, 0.0489197, 1 )
  31. text = "ESC to quit"
  32. __meta__ = {
  33. "_edit_use_anchors_": false
  34. }
  35. [node name="FPS" type="Label" parent="."]
  36. anchor_left = 1.0
  37. anchor_right = 1.0
  38. margin_right = -10.0
  39. grow_horizontal = 0
  40. custom_fonts/font = SubResource( 1 )
  41. custom_colors/font_color = Color( 0.89, 0.89, 0.89, 1 )
  42. text = "FPS: 000"
  43. align = 2
  44. __meta__ = {
  45. "_edit_use_anchors_": false
  46. }
  47. [node name="Debug" type="Label" parent="."]
  48. margin_left = 10.0
  49. margin_top = 36.0
  50. margin_right = 212.0
  51. margin_bottom = 62.0
  52. custom_fonts/font = SubResource( 1 )
  53. custom_colors/font_color = Color( 1, 1, 1, 1 )
  54. text = "Debug output"
  55. autowrap = true
  56. __meta__ = {
  57. "_edit_use_anchors_": false
  58. }