17 lines
438 B
Lua
17 lines
438 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.position = Vector2(-1600, -1300)
|
|
bg:PlayAnimation("background 2 instance 1", 24, true)
|
|
bg:Resize(8)
|
|
end
|
|
|
|
return module |