Files
itgmania212121/Themes/default/BGAnimations/ScreenProfileLoad overlay/default.lua
T
ListenerJubatus 67099e520c Merge a major revamp of Lambda
Besides a few other minor retouches and additions, the biggest change is
that the theme now has a fixed color scheme of yellow, orange, and dark
magenta, and that many of the glossy graphics have been replaced by
flatter versions with subtle shadows.
2018-02-08 23:35:28 -06:00

27 lines
642 B
Lua

local t = Def.ActorFrame {};
t[#t+1] = Def.ActorFrame {
Def.Sprite {
Name="animation",
Texture="LoadScreen diamond 5x2.png",
InitCommand=function(self)
self:SetAllStateDelays(0.1):diffusealpha(1):diffuse(color("#981F41")):Center()
end,
OnCommand=function(self)
self:zoom(0):decelerate(0.25):zoom(0.5)
end;
OffCommand=function(self)
self:decelerate(0.25):zoom(0)
end;
};
};
t[#t+1] = Def.Actor {
BeginCommand=function(self)
if SCREENMAN:GetTopScreen():HaveProfileToLoad() then self:sleep(1); end;
self:queuecommand("Load");
end;
LoadCommand=function() SCREENMAN:GetTopScreen():Continue(); end;
};
return t;