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

14 lines
456 B
Lua

local myTypes = require("modules.types")
return {
onCreate = function(song)
local back = myTypes.Image("images/stage/stageback.png")
back.position = myTypes.Vector2(-1000, 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(-1000, 50)
end
}