diff options
author | tpart <tpart120@proton.me> | 2024-07-12 01:27:29 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-07-12 01:27:29 +0200 |
commit | 0f0c7713218dc9fc8beafdbe14785c11a0f61ea8 (patch) | |
tree | 339a55302bf91690e9639bceeb1eb8caea18da51 /client/menu/popup_message.tscn | |
parent | 78186bdcb2f15f8ad00cb83ccaeb5273f328d41c (diff) | |
download | hurrycurry-0f0c7713218dc9fc8beafdbe14785c11a0f61ea8.tar hurrycurry-0f0c7713218dc9fc8beafdbe14785c11a0f61ea8.tar.bz2 hurrycurry-0f0c7713218dc9fc8beafdbe14785c11a0f61ea8.tar.zst |
Add reset camera hint
Diffstat (limited to 'client/menu/popup_message.tscn')
-rw-r--r-- | client/menu/popup_message.tscn | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/client/menu/popup_message.tscn b/client/menu/popup_message.tscn index 3eccfc2e..37133847 100644 --- a/client/menu/popup_message.tscn +++ b/client/menu/popup_message.tscn @@ -102,22 +102,27 @@ one_shot = true wait_time = 10.0 one_shot = true -[node name="HintTimers" type="Node" parent="."] +[node name="AutoHintTimers" type="Node" parent="."] -[node name="Move" type="Timer" parent="HintTimers"] +[node name="Move" type="Timer" parent="AutoHintTimers"] wait_time = 5.0 one_shot = true -[node name="Boost" type="Timer" parent="HintTimers"] +[node name="Boost" type="Timer" parent="AutoHintTimers"] wait_time = 90.0 one_shot = true -[node name="Interact" type="Timer" parent="HintTimers"] +[node name="Interact" type="Timer" parent="AutoHintTimers"] wait_time = 20.0 one_shot = true +[node name="Reset" type="Timer" parent="."] +wait_time = 10.0 +one_shot = true + [connection signal="timeout" from="ServerTimer" to="." method="_on_server_timer_timeout"] [connection signal="timeout" from="HintTimer" to="." method="_on_hint_timer_timeout"] -[connection signal="timeout" from="HintTimers/Move" to="." method="_on_move_timeout"] -[connection signal="timeout" from="HintTimers/Boost" to="." method="_on_boost_timeout"] -[connection signal="timeout" from="HintTimers/Interact" to="." method="_on_interact_timeout"] +[connection signal="timeout" from="AutoHintTimers/Move" to="." method="_on_move_timeout"] +[connection signal="timeout" from="AutoHintTimers/Boost" to="." method="_on_boost_timeout"] +[connection signal="timeout" from="AutoHintTimers/Interact" to="." method="_on_interact_timeout"] +[connection signal="timeout" from="Reset" to="." method="_on_reset_timeout"] |