This repository has been archived on 2025-06-08. You can view files and clone it, but cannot push or open issues or pull requests.
TaggedEngine/stages/stage.lua

15 lines
487 B
Lua

local myTypes = require("modules.types")
return {
onCreate = function(song)
local back = myTypes.Image("images/stage/stageback.png")
back.position = myTypes.Vector2(-800, 50)
local front = myTypes.Image("images/stage/stagefront.png")
front.position = myTypes.Vector2(-900, 1000)
local curtains = myTypes.Image("images/stage/stagecurtains.png")
curtains.position = myTypes.Vector2(-1150, 50)
curtains.modifier = 1.3
end
}