Files
itgmania212121/Themes/default/BGAnimations/ScreenEditMenu background.lua
T

19 lines
460 B
Lua
Raw Normal View History

2017-08-08 01:07:34 -06:00
local t = Def.ActorFrame {};
t[#t+1] = Def.ActorFrame {
InitCommand=cmd(Center);
Def.Quad {
InitCommand=cmd(scaletoclipped,SCREEN_WIDTH,SCREEN_HEIGHT);
OnCommand=cmd(diffuse,color("#947B7E");diffusebottomedge,color("#D698A0"));
};
};
t[#t+1] = Def.ActorFrame {
Def.Quad {
2018-08-14 14:19:02 -06:00
InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y+20;zoomto,SCREEN_WIDTH,SCREEN_HEIGHT*0.70);
2018-02-08 23:35:28 -06:00
OnCommand=cmd(diffuse,color("#61414B");diffusealpha,0.75);
2017-08-08 01:07:34 -06:00
};
};
return t;