Files
itgmania212121/Themes/default/BGAnimations/ScreenMapControllers background.lua
T
2017-09-19 20:42:08 -06:00

17 lines
370 B
Lua

local t = Def.ActorFrame {};
t[#t+1] = LoadActor(THEME:GetPathG("common bg", "base")) .. {
InitCommand=cmd(Center;zoomto,SCREEN_WIDTH,SCREEN_HEIGHT)
};
-- Overlay
t[#t+1] = Def.ActorFrame {
InitCommand=cmd(Center);
Def.Quad {
InitCommand=cmd(scaletoclipped,SCREEN_WIDTH,SCREEN_HEIGHT);
OnCommand=cmd(diffuse,Color.Black;diffusealpha,0.8);
};
};
--
return t