TaggedEngine/stages/schoolEvil.lua
AGU 67aa712f88 Thorns is functional
erect stages at a later date becuase i had to MANUALLY convert spirit's txt file into an xml
2025-09-01 13:00:16 -04:00

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