Files
itgmania212121/Themes/_fallback/BGAnimations/ScreenConsoleOverlay overlay.lua
T

22 lines
449 B
Lua
Raw Normal View History

2011-03-17 01:47:30 -04:00
local t = Def.ActorFrame {
Def.ActorFrame {
2013-07-03 20:08:34 -04:00
InitCommand=function(self)
self:Center();
end;
--[[
ToggleConsoleDisplayMessageCommand=function(self)
2011-03-17 01:47:30 -04:00
bVisible = 1 - bVisible;
bShow = (bVisible >= 1) and true or false;
self:visible(bShow);
2013-07-03 20:08:34 -04:00
end;
--]]
2011-03-17 01:47:30 -04:00
Def.Quad {
InitCommand(zoomto,64,64;spin;);
2013-07-03 20:08:34 -04:00
ToggleConsoleDisplayMessageCommand=function(self)
self:zoomto(345, 345);
self:visible(true);
end;
2011-03-17 01:47:30 -04:00
};
};
};
2010-06-10 21:40:34 -05:00
return t