replaced use of label with banner for menu titles, updated solo lobby to show preview on load

This commit is contained in:
2021-01-05 20:32:56 -06:00
parent a6c2b080b9
commit b8d5bd2368
9 changed files with 34 additions and 24 deletions

View File

@@ -11,13 +11,13 @@ class IMICRTS
@status = @messages[@messages_index]
@last_update = Gosu.milliseconds
@update_interval = 250
@update_interval = 200
@switcher = CyberarmEngine::Timer.new(5_000) do
@switcher = CyberarmEngine::Timer.new(3_000) do
push_state(MainMenu)
end
@loader = CyberarmEngine::Timer.new(250) do
@loader = CyberarmEngine::Timer.new(@update_interval) do
split = @status.scan(".")
if split.size >= 3
@messages_index+=1