A game created for the Godot Wild Jam #21
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.

198 lines
5.5KB

  1. [gd_scene load_steps=10 format=2]
  2. [ext_resource path="res://Data/Objects/Player.tscn" type="PackedScene" id=2]
  3. [ext_resource path="res://Data/Graphics/UI/Progress_Back.png" type="Texture" id=8]
  4. [ext_resource path="res://Data/Graphics/UI/Progress_Bar.png" type="Texture" id=9]
  5. [ext_resource path="res://Data/Scripts/UI/GUI.gd" type="Script" id=10]
  6. [ext_resource path="res://Data/Graphics/UI/Progress_Bar_H.png" type="Texture" id=11]
  7. [ext_resource path="res://Data/Graphics/UI/Progress_Back_H.png" type="Texture" id=12]
  8. [ext_resource path="res://Data/Fonts/Killer_Robot_20.tres" type="DynamicFont" id=13]
  9. [ext_resource path="res://Data/Fonts/Hydrogen_64.tres" type="DynamicFont" id=14]
  10. [ext_resource path="res://Data/Scripts/World.gd" type="Script" id=15]
  11. [node name="World" type="Node2D"]
  12. script = ExtResource( 15 )
  13. [node name="lvl" type="Node2D" parent="."]
  14. [node name="Player" parent="." instance=ExtResource( 2 )]
  15. visible = false
  16. [node name="GUI" type="CanvasLayer" parent="."]
  17. script = ExtResource( 10 )
  18. [node name="PlayerUI" type="HBoxContainer" parent="GUI"]
  19. margin_left = 10.0
  20. margin_top = 10.0
  21. margin_right = 40.0
  22. margin_bottom = 40.0
  23. custom_constants/separation = 14
  24. __meta__ = {
  25. "_edit_use_anchors_": false
  26. }
  27. [node name="NRG" type="VBoxContainer" parent="GUI/PlayerUI"]
  28. margin_right = 41.0
  29. margin_bottom = 164.0
  30. [node name="Label" type="Label" parent="GUI/PlayerUI/NRG"]
  31. margin_right = 41.0
  32. margin_bottom = 24.0
  33. custom_fonts/font = ExtResource( 13 )
  34. text = "NRG"
  35. [node name="Bar" type="TextureRect" parent="GUI/PlayerUI/NRG"]
  36. margin_top = 28.0
  37. margin_right = 41.0
  38. margin_bottom = 146.0
  39. texture = ExtResource( 12 )
  40. stretch_mode = 4
  41. [node name="Progress" type="TextureProgress" parent="GUI/PlayerUI/NRG/Bar"]
  42. anchor_left = 0.5
  43. anchor_top = 0.5
  44. anchor_right = 0.5
  45. anchor_bottom = 0.5
  46. margin_left = -12.0
  47. margin_top = -59.0
  48. margin_right = 12.0
  49. margin_bottom = 59.0
  50. value = 70.0
  51. texture_progress = ExtResource( 11 )
  52. fill_mode = 3
  53. __meta__ = {
  54. "_edit_use_anchors_": false
  55. }
  56. [node name="Tween" type="Tween" parent="GUI/PlayerUI/NRG/Bar/Progress"]
  57. [node name="MoodBars" type="VBoxContainer" parent="GUI/PlayerUI"]
  58. margin_left = 55.0
  59. margin_right = 311.0
  60. margin_bottom = 164.0
  61. __meta__ = {
  62. "_edit_use_anchors_": false
  63. }
  64. [node name="Aggression" type="VBoxContainer" parent="GUI/PlayerUI/MoodBars"]
  65. margin_right = 256.0
  66. margin_bottom = 52.0
  67. [node name="Label" type="Label" parent="GUI/PlayerUI/MoodBars/Aggression"]
  68. margin_right = 256.0
  69. margin_bottom = 24.0
  70. custom_fonts/font = ExtResource( 13 )
  71. text = "Aggression"
  72. [node name="Bar" type="TextureRect" parent="GUI/PlayerUI/MoodBars/Aggression"]
  73. margin_top = 28.0
  74. margin_right = 256.0
  75. margin_bottom = 52.0
  76. rect_min_size = Vector2( 256, 24 )
  77. texture = ExtResource( 8 )
  78. [node name="Progress" type="TextureProgress" parent="GUI/PlayerUI/MoodBars/Aggression/Bar"]
  79. modulate = Color( 1, 0, 0, 1 )
  80. margin_right = 256.0
  81. margin_bottom = 24.0
  82. rect_min_size = Vector2( 256, 24 )
  83. value = 70.0
  84. texture_progress = ExtResource( 9 )
  85. __meta__ = {
  86. "_edit_use_anchors_": false
  87. }
  88. [node name="Tween" type="Tween" parent="GUI/PlayerUI/MoodBars/Aggression/Bar/Progress"]
  89. [node name="Neediness" type="VBoxContainer" parent="GUI/PlayerUI/MoodBars"]
  90. margin_top = 56.0
  91. margin_right = 256.0
  92. margin_bottom = 108.0
  93. [node name="Label" type="Label" parent="GUI/PlayerUI/MoodBars/Neediness"]
  94. margin_right = 256.0
  95. margin_bottom = 24.0
  96. custom_fonts/font = ExtResource( 13 )
  97. text = "Neediness"
  98. [node name="Bar" type="TextureRect" parent="GUI/PlayerUI/MoodBars/Neediness"]
  99. margin_top = 28.0
  100. margin_right = 256.0
  101. margin_bottom = 52.0
  102. rect_min_size = Vector2( 256, 24 )
  103. texture = ExtResource( 8 )
  104. [node name="Progress" type="TextureProgress" parent="GUI/PlayerUI/MoodBars/Neediness/Bar"]
  105. modulate = Color( 0.0784314, 1, 0, 1 )
  106. margin_right = 256.0
  107. margin_bottom = 24.0
  108. rect_min_size = Vector2( 256, 24 )
  109. value = 70.0
  110. texture_progress = ExtResource( 9 )
  111. __meta__ = {
  112. "_edit_use_anchors_": false
  113. }
  114. [node name="Tween" type="Tween" parent="GUI/PlayerUI/MoodBars/Neediness/Bar/Progress"]
  115. [node name="Contentment" type="VBoxContainer" parent="GUI/PlayerUI/MoodBars"]
  116. margin_top = 112.0
  117. margin_right = 256.0
  118. margin_bottom = 164.0
  119. [node name="Label" type="Label" parent="GUI/PlayerUI/MoodBars/Contentment"]
  120. margin_right = 256.0
  121. margin_bottom = 24.0
  122. custom_fonts/font = ExtResource( 13 )
  123. text = "Contentment"
  124. [node name="Bar" type="TextureRect" parent="GUI/PlayerUI/MoodBars/Contentment"]
  125. margin_top = 28.0
  126. margin_right = 256.0
  127. margin_bottom = 52.0
  128. rect_min_size = Vector2( 256, 24 )
  129. texture = ExtResource( 8 )
  130. [node name="Progress" type="TextureProgress" parent="GUI/PlayerUI/MoodBars/Contentment/Bar"]
  131. modulate = Color( 0, 0.0627451, 1, 1 )
  132. margin_right = 256.0
  133. margin_bottom = 24.0
  134. rect_min_size = Vector2( 256, 24 )
  135. value = 70.0
  136. texture_progress = ExtResource( 9 )
  137. __meta__ = {
  138. "_edit_use_anchors_": false
  139. }
  140. [node name="Tween" type="Tween" parent="GUI/PlayerUI/MoodBars/Contentment/Bar/Progress"]
  141. [node name="Timer" type="VBoxContainer" parent="GUI"]
  142. anchor_left = 1.0
  143. anchor_right = 1.0
  144. margin_left = -362.0
  145. margin_right = -10.0
  146. margin_bottom = 93.0
  147. __meta__ = {
  148. "_edit_use_anchors_": false
  149. }
  150. [node name="Label" type="Label" parent="GUI/Timer"]
  151. margin_right = 362.0
  152. margin_bottom = 24.0
  153. custom_fonts/font = ExtResource( 13 )
  154. custom_colors/font_color = Color( 0.886275, 1, 0.827451, 1 )
  155. text = "Time Elapsed"
  156. align = 2
  157. valign = 1
  158. [node name="TimeText" type="Label" parent="GUI/Timer"]
  159. margin_top = 28.0
  160. margin_right = 362.0
  161. margin_bottom = 93.0
  162. custom_fonts/font = ExtResource( 14 )
  163. custom_colors/font_color = Color( 0.368627, 0.368627, 0.368627, 1 )
  164. custom_colors/font_color_shadow = Color( 1, 1, 1, 1 )
  165. text = "0000:00:00"
  166. align = 2
  167. valign = 1