various theme changes by Midiman and myself.

This commit is contained in:
AJ Kelly
2010-02-17 19:47:36 -06:00
parent 4791b411d1
commit dfc5f53134
36 changed files with 314 additions and 250 deletions
@@ -1,16 +1,19 @@
return LoadFont("Common Normal") .. {
Text="BPM";
SetCommand=function(self)
local bIsFirst = false;
local song = GAMESTATE:GetCurrentSong();
self:stoptweening();
self:linear(0.25);
if song then
self:diffusebottomedge( song:GetTimingData():HasStops() and color("#55CCEE") or color("#FFFFFF") );
else
self:diffusebottomedge( color("#FFFFFF") );
return Def.ActorFrame {
LoadFont("Common Normal") .. {
Text="BPM";
InitCommand=cmd(horizalign,right;zoom,0.75;strokecolor,Color("Outline"));
SetCommand=function(self)
local bIsFirst = false;
local song = GAMESTATE:GetCurrentSong();
self:stoptweening();
-- self:linear(0.25);
if song then
self:diffusebottomedge( song:GetTimingData():HasStops() and color("#55CCEE") or color("#FFFFFF") );
else
self:diffusebottomedge( color("#FFFFFF") );
end;
end;
end;
CurrentSongChangedMessageCommand=cmd(playcommand,"Set");
CurrentCourseChangedMessageCommand=cmd(playcommand,"Set");
CurrentSongChangedMessageCommand=cmd(playcommand,"Set");
CurrentCourseChangedMessageCommand=cmd(playcommand,"Set");
};
};