plane_prompts.tscn 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. [gd_scene load_steps=13 format=3 uid="uid://rixhldyytdiy"]
  2. [ext_resource type="Script" path="res://component/ui/input_prompts/prompt_container.gd" id="1_eppoy"]
  3. [ext_resource type="Script" path="res://addons/input_prompts/action_prompt/action_prompt.gd" id="2_h1sqq"]
  4. [sub_resource type="InputEventKey" id="InputEventKey_eyt6c"]
  5. device = -1
  6. physical_keycode = 32
  7. unicode = 32
  8. [sub_resource type="InputEventJoypadButton" id="InputEventJoypadButton_3f2lm"]
  9. device = -1
  10. [sub_resource type="InputEventKey" id="InputEventKey_vqhl2"]
  11. device = -1
  12. physical_keycode = 65
  13. unicode = 97
  14. [sub_resource type="InputEventJoypadMotion" id="InputEventJoypadMotion_l8a88"]
  15. device = -1
  16. axis_value = -1.0
  17. [sub_resource type="InputEventKey" id="InputEventKey_ghxeo"]
  18. device = -1
  19. physical_keycode = 68
  20. unicode = 101
  21. [sub_resource type="InputEventJoypadMotion" id="InputEventJoypadMotion_vm1od"]
  22. device = -1
  23. axis_value = 1.0
  24. [sub_resource type="InputEventKey" id="InputEventKey_fvypa"]
  25. device = -1
  26. physical_keycode = 83
  27. unicode = 111
  28. [sub_resource type="InputEventJoypadMotion" id="InputEventJoypadMotion_f34ba"]
  29. device = -1
  30. axis = 1
  31. axis_value = 1.0
  32. [sub_resource type="InputEventKey" id="InputEventKey_c4xy3"]
  33. device = -1
  34. physical_keycode = 87
  35. unicode = 44
  36. [sub_resource type="InputEventJoypadMotion" id="InputEventJoypadMotion_th7as"]
  37. device = -1
  38. axis = 1
  39. axis_value = -1.0
  40. [node name="PlanePrompts" type="VBoxContainer"]
  41. offset_left = 193.0
  42. offset_right = 193.0
  43. offset_bottom = 100.0
  44. script = ExtResource("1_eppoy")
  45. [node name="AcceleratePrompt" type="HBoxContainer" parent="."]
  46. layout_mode = 2
  47. script = ExtResource("1_eppoy")
  48. [node name="AccelerateLabel" type="Label" parent="AcceleratePrompt"]
  49. layout_mode = 2
  50. theme_override_font_sizes/font_size = 34
  51. text = "Accelerate"
  52. [node name="AccelerateMaxActionPrompt" type="TextureRect" parent="AcceleratePrompt"]
  53. custom_minimum_size = Vector2(100, 100)
  54. layout_mode = 2
  55. stretch_mode = 5
  56. script = ExtResource("2_h1sqq")
  57. action = "main"
  58. icon = 0
  59. events = Array[InputEvent]([SubResource("InputEventKey_eyt6c"), SubResource("InputEventJoypadButton_3f2lm")])
  60. [node name="RollPrompt" type="HBoxContainer" parent="."]
  61. layout_mode = 2
  62. script = ExtResource("1_eppoy")
  63. [node name="RollLabel" type="Label" parent="RollPrompt"]
  64. layout_mode = 2
  65. theme_override_font_sizes/font_size = 34
  66. text = "Roll"
  67. [node name="RollLeftActionPrompt" type="TextureRect" parent="RollPrompt"]
  68. custom_minimum_size = Vector2(100, 100)
  69. layout_mode = 2
  70. stretch_mode = 5
  71. script = ExtResource("2_h1sqq")
  72. action = "move_left"
  73. icon = 0
  74. events = Array[InputEvent]([SubResource("InputEventKey_vqhl2"), SubResource("InputEventJoypadMotion_l8a88")])
  75. [node name="RollRightActionPrompt" type="TextureRect" parent="RollPrompt"]
  76. custom_minimum_size = Vector2(100, 100)
  77. layout_mode = 2
  78. stretch_mode = 5
  79. script = ExtResource("2_h1sqq")
  80. action = "move_right"
  81. icon = 0
  82. events = Array[InputEvent]([SubResource("InputEventKey_ghxeo"), SubResource("InputEventJoypadMotion_vm1od")])
  83. [node name="PitchPrompt" type="HBoxContainer" parent="."]
  84. layout_mode = 2
  85. script = ExtResource("1_eppoy")
  86. [node name="PitchLabel" type="Label" parent="PitchPrompt"]
  87. layout_mode = 2
  88. theme_override_font_sizes/font_size = 34
  89. text = "Roll"
  90. [node name="PitchUpActionPrompt" type="TextureRect" parent="PitchPrompt"]
  91. custom_minimum_size = Vector2(100, 100)
  92. layout_mode = 2
  93. stretch_mode = 5
  94. script = ExtResource("2_h1sqq")
  95. action = "move_back"
  96. icon = 0
  97. events = Array[InputEvent]([SubResource("InputEventKey_fvypa"), SubResource("InputEventJoypadMotion_f34ba")])
  98. [node name="PitchDownActionPrompt" type="TextureRect" parent="PitchPrompt"]
  99. custom_minimum_size = Vector2(100, 100)
  100. layout_mode = 2
  101. stretch_mode = 5
  102. script = ExtResource("2_h1sqq")
  103. action = "move_forward"
  104. icon = 0
  105. events = Array[InputEvent]([SubResource("InputEventKey_c4xy3"), SubResource("InputEventJoypadMotion_th7as")])