49 lines
1.7 KiB
Lua
49 lines
1.7 KiB
Lua
local play = false
|
|
|
|
return {
|
|
onCreate = function(song)
|
|
local backDark = Image("images/stage/erect/backDark.png")
|
|
backDark.position = Vector2(729, -170)
|
|
backDark.layer = -10
|
|
|
|
local crowd = Sprite("sprites/stage/erect/crowd.png", "sprites/stage/erect/crowd.json")
|
|
crowd:PlayAnimation("Symbol 2 instance 1", 24, true)
|
|
crowd.position = Vector2(560, 300)
|
|
crowd.modifier = 0.8
|
|
crowd.layer = -9
|
|
|
|
local brightLightSmall = Image("images/stage/erect/brightLightSmall.png")
|
|
brightLightSmall.position = Vector2(967, -103)
|
|
brightLightSmall.modifier = 1.2
|
|
brightLightSmall.layer = -8
|
|
|
|
local bg = Image("images/stage/erect/bg.png")
|
|
bg.position = Vector2(-603, -187)
|
|
bg.layer = -7
|
|
|
|
local server = Image("images/stage/erect/server.png")
|
|
server.position = Vector2(-361, 205)
|
|
server.layer = -6
|
|
|
|
local lightGreen = Image("images/stage/erect/lightgreen.png")
|
|
lightGreen.position = Vector2(-171, 242)
|
|
lightGreen.layer = -5
|
|
|
|
local lightRed = Image("images/stage/erect/lightred.png")
|
|
lightRed.position = Vector2(-101, 560)
|
|
lightRed.layer = -4
|
|
|
|
local lightOrange = Image("images/stage/erect/orangeLight.png")
|
|
lightOrange.position = Vector2(189, -195)
|
|
lightOrange.layer = -3
|
|
|
|
local lights = Image("images/stage/erect/lights.png")
|
|
lights.position = Vector2(-601, -147)
|
|
lights.modifier = 1.2
|
|
lights.layer = 5
|
|
|
|
local lightAbove = Image("images/stage/erect/lightAbove.png")
|
|
lights.position = Vector2(804, -117)
|
|
lightAbove.layer = 6
|
|
end,
|
|
} |