Also includes: Bf & Gf (Dark) spookyErect (Placeholder until finished) Winter Horrorland (Chart)
12 lines
392 B
Lua
12 lines
392 B
Lua
local myTypes = require("modules.types")
|
|
local mansion
|
|
|
|
return {
|
|
onCreate = function(song)
|
|
mansion = myTypes.Sprite("sprites/spooky/halloween_bg.png", "sprites/spooky/halloween_bg.json")
|
|
mansion.resize = myTypes.Vector2(2,2)
|
|
mansion:PlayAnimation("halloweem bg", 1, false)
|
|
mansion.position = myTypes.Vector2(-400, -200)
|
|
mansion.layer = -1
|
|
end
|
|
} |