First commit, WIP
This commit is contained in:
@@ -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
|
||||
)
|
||||
|
||||
@@ -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
|
||||
)
|
||||
|
||||
@@ -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
|
||||
)
|
||||
|
||||
@@ -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
|
||||
)
|
||||
|
||||
@@ -59,7 +59,7 @@ end
|
||||
|
||||
function ModeSelectScene:render()
|
||||
love.graphics.draw(
|
||||
backgrounds[0],
|
||||
fetchBackgroundAndLoop(0),
|
||||
0, 0, 0,
|
||||
0.5, 0.5
|
||||
)
|
||||
|
||||
@@ -75,7 +75,7 @@ end
|
||||
|
||||
function ReplaySelectScene:render()
|
||||
love.graphics.draw(
|
||||
backgrounds[0],
|
||||
fetchBackgroundAndLoop(0),
|
||||
0, 0, 0,
|
||||
0.5, 0.5
|
||||
)
|
||||
|
||||
@@ -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
|
||||
)
|
||||
|
||||
@@ -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
|
||||
)
|
||||
|
||||
@@ -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
|
||||
)
|
||||
|
||||
@@ -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
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user