diff options
author | tpart <tpart120@proton.me> | 2024-07-12 00:57:56 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-07-12 00:57:56 +0200 |
commit | 41f8c3c467bfeb51ec34c76b16c78145064e0af6 (patch) | |
tree | 44be40eddb278353305ca29abf2ab60f0b385481 /client/menu/popup_message.gd | |
parent | a9ee32b2e2126c622b23ae83329836faaacc7368 (diff) | |
download | hurrycurry-41f8c3c467bfeb51ec34c76b16c78145064e0af6.tar hurrycurry-41f8c3c467bfeb51ec34c76b16c78145064e0af6.tar.bz2 hurrycurry-41f8c3c467bfeb51ec34c76b16c78145064e0af6.tar.zst |
Add interact hint
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 67b4d6ab..b4afbf3c 100644 --- a/client/menu/popup_message.gd +++ b/client/menu/popup_message.gd @@ -63,3 +63,7 @@ func _on_boost_timeout(): 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")) + +func _on_interact_timeout(): + if not Global.get_profile("hint_interact_seen") and not Global.get_setting("touch_controls"): + display_hint_msg(tr("Press SPACE/Controller A to pick up items and interact with tools")) |