diff options
author | Hop311 <Hop3114@gmail.com> | 2023-07-21 18:02:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-21 18:02:38 +0200 |
commit | 40e412da4a11de97dda041287e306ca285c50ccf (patch) | |
tree | a0b28dffaba50d351cab1619f54516be23d2aa6f /game/src/Game/GameSession/GameSpeedPanel.tscn | |
parent | f3f240853b15a9f9b7cb561dc6626e7f342c5c74 (diff) | |
parent | 62d001b0fa209f259440e160503dc5ffe5bcaa8f (diff) |
Merge pull request #142 from OpenVicProject/tidying
Tidying: missing req comments, submodules, hotkeys, user data folder
Diffstat (limited to 'game/src/Game/GameSession/GameSpeedPanel.tscn')
-rw-r--r-- | game/src/Game/GameSession/GameSpeedPanel.tscn | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/game/src/Game/GameSession/GameSpeedPanel.tscn b/game/src/Game/GameSession/GameSpeedPanel.tscn index 2ce5042..5526427 100644 --- a/game/src/Game/GameSession/GameSpeedPanel.tscn +++ b/game/src/Game/GameSession/GameSpeedPanel.tscn @@ -1,7 +1,25 @@ -[gd_scene load_steps=2 format=3 uid="uid://dd8k3p7r3huwc"] +[gd_scene load_steps=8 format=3 uid="uid://dd8k3p7r3huwc"] [ext_resource type="Script" path="res://src/Game/GameSession/GameSpeedPanel.gd" id="1_pfs8t"] +[sub_resource type="InputEventAction" id="InputEventAction_3k1tl"] +action = &"time_pause" + +[sub_resource type="Shortcut" id="Shortcut_cg5xm"] +events = [SubResource("InputEventAction_3k1tl")] + +[sub_resource type="InputEventAction" id="InputEventAction_w2rkb"] +action = &"time_speed_decrease" + +[sub_resource type="Shortcut" id="Shortcut_ocrfe"] +events = [SubResource("InputEventAction_w2rkb")] + +[sub_resource type="InputEventAction" id="InputEventAction_7sdhp"] +action = &"time_speed_increase" + +[sub_resource type="Shortcut" id="Shortcut_gwofc"] +events = [SubResource("InputEventAction_7sdhp")] + [node name="GameSpeedPanel" type="PanelContainer" node_paths=PackedStringArray("_longform_date_button", "_play_pause_display_button", "_decrease_speed_button", "_increase_speed_button")] script = ExtResource("1_pfs8t") _longform_date_button = NodePath("ButtonList/LongformDateButton") @@ -13,27 +31,34 @@ _increase_speed_button = NodePath("ButtonList/IncreaseSpeedButton") layout_mode = 2 [node name="LongformDateButton" type="Button" parent="ButtonList"] +editor_description = "UI-74" custom_minimum_size = Vector2(200, 0) layout_mode = 2 focus_mode = 0 text = "LONGFORM DATE" [node name="PlayPauseDisplayButton" type="Button" parent="ButtonList"] +editor_description = "UI-75, UIFUN-90" custom_minimum_size = Vector2(30, 0) layout_mode = 2 focus_mode = 0 +shortcut = SubResource("Shortcut_cg5xm") text = "⏸ " [node name="DecreaseSpeedButton" type="Button" parent="ButtonList"] +editor_description = "UI-77" custom_minimum_size = Vector2(30, 0) layout_mode = 2 focus_mode = 0 +shortcut = SubResource("Shortcut_ocrfe") text = "-" [node name="IncreaseSpeedButton" type="Button" parent="ButtonList"] +editor_description = "UI-76" custom_minimum_size = Vector2(30, 0) layout_mode = 2 focus_mode = 0 +shortcut = SubResource("Shortcut_gwofc") text = "+" [connection signal="pressed" from="ButtonList/LongformDateButton" to="." method="_on_longform_date_label_pressed"] |