Fallback handled. Yes, I tested this.

This commit is contained in:
Jason Felds
2013-07-03 20:08:34 -04:00
parent a5ef44a838
commit 986d510a88
29 changed files with 1314 additions and 793 deletions
+11 -2
View File
@@ -23,8 +23,17 @@ Library = {
local t = Def.ActorFrame {
Name="Radar";
Def.GrooveRadar {
OnCommand=cmd(zoom,0;sleep,0.583;decelerate,0.150;zoom,1);
OffCommand=cmd(sleep,0.183;decelerate,0.167;zoom,0);
OnCommand=function(self)
self:zoom(0);
self:sleep(0.583);
self:decelerate(0.150);
self:zoom(1);
end;
OffCommand=function(self)
self:sleep(0.183);
self:decelerate(0.167);
self:zoom(0);
end;
CurrentSongChangedMessageCommand=function(self)
for pn in ivalues(GAMESTATE:GetHumanPlayers()) do
radarSet(self, pn);