55 lines
1.9 KiB
Lua
55 lines
1.9 KiB
Lua
-- scenes/test :: a basic test scene
|
|
|
|
--[[
|
|
Copyright © 2019 Kazhnuz
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
the Software without restriction, including without limitation the rights to
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
]]
|
|
|
|
local Scene = require "core.modules.scenes"
|
|
local TitleScreen = Scene:extend()
|
|
local gui = require "game.modules.gui"
|
|
|
|
function TitleScreen:new()
|
|
TitleScreen.super.new(self)
|
|
|
|
self.borders = gui.newBorder(424, 30, 8)
|
|
self.assets:addImage("background", "assets/backgrounds/titlescreen.png")
|
|
self.assets:addImage("sonic", "assets/artworks/titlescreen_sonic.png")
|
|
self.assets:addImage("logo", "assets/artworks/logo.png")
|
|
|
|
self:register()
|
|
end
|
|
|
|
function TitleScreen:update(dt)
|
|
|
|
end
|
|
|
|
function TitleScreen:draw()
|
|
utils.graphics.resetColor()
|
|
self.assets:drawImage("background", 0, 0)
|
|
|
|
love.graphics.draw(self.borders, 0, 25, 0, 1, -1)
|
|
love.graphics.draw(self.borders, 424, 215, 0, -1, 1)
|
|
|
|
self.assets:drawImage("sonic", 90, 128, 0, 1, 1, 92, 106)
|
|
self.assets:drawImage("logo", 290, 60, 0, 1, 1, 150, 71)
|
|
|
|
end
|
|
|
|
return TitleScreen
|