erect stages at a later date becuase i had to MANUALLY convert spirit's txt file into an xml
24 lines
639 B
Lua
24 lines
639 B
Lua
local module = {}
|
|
|
|
function module.onCreate(song)
|
|
love.graphics.setDefaultFilter("nearest", "nearest", 0)
|
|
|
|
--yup
|
|
--this is it
|
|
--the entire fucking stage
|
|
--right here
|
|
local bg = Sprite("sprites/weeb/animatedEvilSchool.png", "sprites/weeb/animatedEvilSchool.xml")
|
|
bg.layer = -15
|
|
bg.resize = Vector2(8, 8)
|
|
bg.position = Vector2(-1600, -1300)
|
|
bg:PlayAnimation("background 2 instance 1", 24, true)
|
|
|
|
for index, anim in next, bg.quads do
|
|
for index, quad in next, anim do
|
|
quad.resize = Vector2(8, 8)
|
|
quad.offset = quad.offset:Mul(8)
|
|
end
|
|
end
|
|
end
|
|
|
|
return module |