First commit, WIP

This commit is contained in:
aur9ra
2023-07-14 17:54:35 -07:00
parent 52d4aeb3d0
commit 4478c07acf
12 changed files with 85 additions and 26 deletions

View File

@@ -33,7 +33,7 @@ function CreditsScene:render()
love.graphics.setColor(1, 1, 1, 1)
love.graphics.draw(
backgrounds[19],
fetchBackgroundAndLoop(id),
0, 0, 0,
0.5, 0.5
)

View File

@@ -46,7 +46,7 @@ end
function ConfigScene:render()
love.graphics.setColor(1, 1, 1, 1)
love.graphics.draw(
backgrounds["game_config"],
fetchBackgroundAndLoop("options_game"),
0, 0, 0,
0.5, 0.5
)

View File

@@ -21,7 +21,7 @@ function ConfigScene:update() end
function ConfigScene:render()
love.graphics.setColor(1, 1, 1, 1)
love.graphics.draw(
backgrounds["input_config"],
fetchBackgroundAndLoop("options_input"),
0, 0, 0,
0.5, 0.5
)

View File

@@ -46,7 +46,7 @@ end
function KeyConfigScene:render()
love.graphics.setColor(1, 1, 1, 1)
love.graphics.draw(
backgrounds["input_config"],
fetchBackgroundAndLoop("input_config"),
0, 0, 0,
0.5, 0.5
)

View File

@@ -59,7 +59,7 @@ end
function ModeSelectScene:render()
love.graphics.draw(
backgrounds[0],
fetchBackgroundAndLoop(0),
0, 0, 0,
0.5, 0.5
)

View File

@@ -75,7 +75,7 @@ end
function ReplaySelectScene:render()
love.graphics.draw(
backgrounds[0],
fetchBackgroundAndLoop(0),
0, 0, 0,
0.5, 0.5
)

View File

@@ -30,7 +30,7 @@ function SettingsScene:update() end
function SettingsScene:render()
love.graphics.setColor(1, 1, 1, 1)
love.graphics.draw(
backgrounds["game_config"],
fetchBackgroundAndLoop("options_game"),
0, 0, 0,
0.5, 0.5
)

View File

@@ -47,7 +47,7 @@ end
function StickConfigScene:render()
love.graphics.setColor(1, 1, 1, 1)
love.graphics.draw(
backgrounds["input_config"],
fetchBackgroundAndLoop("options_input"),
0, 0, 0,
0.5, 0.5
)

View File

@@ -74,7 +74,7 @@ function TitleScene:render()
love.graphics.setFont(font_3x5_4)
love.graphics.setColor(1, 1, 1, 1 - self.snow_bg_opacity)
love.graphics.draw(
backgrounds["title_no_icon"], -- title, title_night
fetchBackgroundAndLoop("title_no_icon"), -- title, title_night
0, 0, 0,
0.5, 0.5
)
@@ -100,7 +100,7 @@ function TitleScene:render()
love.graphics.setFont(font_3x5_2)
love.graphics.setColor(1, 1, 1, self.snow_bg_opacity)
love.graphics.draw(
backgrounds["snow"],
fetchBackgroundAndLoop("snow"),
0, 0, 0,
0.5, 0.5
)

View File

@@ -35,7 +35,7 @@ end
function TuningScene:render()
love.graphics.setColor(1, 1, 1, 1)
love.graphics.draw(
backgrounds["game_config"],
fetchBackgroundAndLoop("options_game"),
0, 0, 0,
0.5, 0.5
)