diff options
| author | tpart <tpart120@proton.me> | 2024-07-12 00:54:18 +0200 |
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2024-07-12 00:54:18 +0200 |
| commit | a9ee32b2e2126c622b23ae83329836faaacc7368 (patch) | |
| tree | 7d49bb3c15b4553a98ee425013902b25be17bd83 /client/menu/popup_message.gd | |
| parent | 6173d3e9a45f17dc92318d11786c5631143808e5 (diff) | |
| download | hurrycurry-a9ee32b2e2126c622b23ae83329836faaacc7368.tar hurrycurry-a9ee32b2e2126c622b23ae83329836faaacc7368.tar.bz2 hurrycurry-a9ee32b2e2126c622b23ae83329836faaacc7368.tar.zst | |
Add move hint; Increase display time of hints
Diffstat (limited to 'client/menu/popup_message.gd')
| -rw-r--r-- | client/menu/popup_message.gd | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/menu/popup_message.gd b/client/menu/popup_message.gd index b0ead906..67b4d6ab 100644 --- a/client/menu/popup_message.gd +++ b/client/menu/popup_message.gd @@ -59,3 +59,7 @@ func _input(_event): func _on_boost_timeout(): if not Global.get_profile("hint_boost_seen") and not Global.get_setting("touch_controls"): display_hint_msg(tr("Press SHIFT/Controller B to boost")) + +func _on_move_timeout(): + if not Global.get_profile("hint_move_seen") and not Global.get_setting("touch_controls"): + display_hint_msg(tr("Use WASD/Controller left stick to move")) |