Added a proper cursor, game pause menu now has a transparent background (Game is drawn behind menu)

This commit is contained in:
2020-01-28 23:17:25 -06:00
parent 46cffa293e
commit c1b5e72d7d
4 changed files with 13 additions and 10 deletions

View File

@@ -1,6 +1,7 @@
class IMICFPS
class GamePauseMenu < Menu
def setup
@background_alpha = 50
title "I-MIC FPS"
subtitle "Paused"
@@ -8,6 +9,10 @@ class IMICFPS
pop_state
end
link "Settings" do
push_state(SettingsMenu)
end
link "Disconnect" do
push_state(MainMenu)
end
@@ -20,4 +25,4 @@ class IMICFPS
super
end
end
end
end