diff options
Diffstat (limited to 'game_state.wren')
-rw-r--r-- | game_state.wren | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/game_state.wren b/game_state.wren index 94e8a99..4794fb7 100644 --- a/game_state.wren +++ b/game_state.wren @@ -1,10 +1,22 @@ +import "audio" for AudioEngine +import "dome" for Window + class GameState { construct new() { + AudioEngine.load("menu_music","assets/musics/04 All of Us - Menu.ogg") + AudioEngine.load("level1_bg","assets/musics/01 A Night Of Dizzy Spells.ogg") + _fullScreen = false + } + toggleFullscreen() { + _fullScreen = !_fullScreen + Window.fullscreen = _fullScreen } switch(level) { - _currentLevel = level.new() + AudioEngine.stopAllChannels() + _currentLevel = level.new(this) + System.print("Current Level : %(level.name)") } update() { |