2021-11-25 10:57:13 +01:00
|
|
|
-- scenes/test :: a basic test scene
|
2019-02-03 19:40:28 +01:00
|
|
|
|
|
|
|
--[[
|
|
|
|
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.
|
|
|
|
]]
|
|
|
|
|
2021-11-25 10:57:13 +01:00
|
|
|
local Scene = require "game.scenes"
|
|
|
|
local Title = Scene:extend()
|
|
|
|
local TitleScreen = require "scenes.menus.titlescreen.screen"
|
2019-02-03 19:40:28 +01:00
|
|
|
|
2021-11-25 10:57:13 +01:00
|
|
|
function Title:new(fromMenu)
|
|
|
|
Title.super.new(self, true, true)
|
2019-02-11 22:36:04 +01:00
|
|
|
|
2021-11-25 10:57:13 +01:00
|
|
|
self.assets:addImage("logo", "assets/artworks/logo.png")
|
|
|
|
self.assets:addTileset("charicons", "assets/sprites/characters/charicons")
|
|
|
|
|
|
|
|
TitleScreen(fromMenu)
|
2019-02-03 19:40:28 +01:00
|
|
|
end
|
|
|
|
|
2021-11-25 10:57:13 +01:00
|
|
|
function Title:startPressed()
|
|
|
|
self.assets:playSFX("mSelect")
|
|
|
|
self.menusystem:setSoundFromSceneAssets("mBeep")
|
|
|
|
self.gui.focusedElement = nil
|
|
|
|
self.gui:playScreenTransform("titleScreen", "showMenu")
|
2019-12-28 21:51:41 +01:00
|
|
|
end
|
|
|
|
|
2021-11-25 10:57:13 +01:00
|
|
|
return Title
|