Files
itgmania212121/Themes/_fallback/BGAnimations/ScreenTestInput underlay.lua
T

23 lines
408 B
Lua
Raw Normal View History

2011-03-17 01:47:30 -04:00
return Def.ActorFrame {
Def.DeviceList {
Font="Common normal";
2013-07-03 20:08:34 -04:00
InitCommand=function(self)
self:x(SCREEN_LEFT + 20);
self:y(SCREEN_TOP + 80);
self:zoom(0.8);
self:halign(0);
end;
2011-03-17 01:47:30 -04:00
};
Def.InputList {
Font="Common normal";
2013-07-03 20:08:34 -04:00
InitCommand=function(self)
self:x(SCREEN_CENTER_X - 250);
self:y(SCREEN_CENTER_Y);
self:zoom(1);
self:halign(0);
self:vertspacing(8);
end;
2011-03-17 01:47:30 -04:00
};
};