Revert "Handle noteskin lua. Thanks to Jousway."

This reverts commit 1532c4e5ab.
This commit is contained in:
Jason Felds
2013-07-18 18:02:18 -04:00
parent fb5db73c45
commit ef1190e3db
108 changed files with 1111 additions and 1940 deletions
@@ -1,6 +1,4 @@
return Def.Sprite {
Texture=NOTESKIN:GetPath('Down','Hold Head Active');
InitCommand=function(self)
self:diffuse(color("0.5,0.5,0.5,1"));
end;
InitCommand=cmd(diffuse,color("0.5,0.5,0.5,1"));
};
@@ -1,6 +1,4 @@
return Def.Sprite {
Texture=NOTESKIN:GetPath('Down','Roll Head Active');
InitCommand=function(self)
self:diffuse(color("0.5,0.5,0.5,1"));
end;
InitCommand=cmd(diffuse,color("0.5,0.5,0.5,1"));
};
+1 -5
View File
@@ -3,11 +3,7 @@ local t = Def.ActorFrame {
Texture=NOTESKIN:GetPath( '_down', 'tap mine' );
Frame0000=0;
Delay0000=1;
InitCommand=function(self)
self:spin();
self:effectclock('beat');
self:effectmagnitude(0, 0, -180);
end;
InitCommand=cmd(spin;effectclock,'beat';effectmagnitude,0,0,-180);
};
};
return t;
@@ -1,6 +1,4 @@
return Def.Sprite {
Texture=NOTESKIN:GetPath('Left','Hold BottomCap Active');
InitCommand=function(self)
self:diffuse(color("0.5,0.5,0.5,0.5"));
end;
InitCommand=cmd(diffuse,color("0.5,0.5,0.5,0.5"));
};
@@ -1,6 +1,4 @@
return Def.Sprite {
Texture=NOTESKIN:GetPath('Left','Roll BottomCap Active');
InitCommand=function(self)
self:diffuse(color("0.5,0.5,0.5,0.5"));
end;
InitCommand=cmd(diffuse,color("0.5,0.5,0.5,0.5"));
};
@@ -1,6 +1,4 @@
return Def.Sprite {
Texture=NOTESKIN:GetPath('Up','Hold BottomCap Active');
InitCommand=function(self)
self:diffuse(color("0.5,0.5,0.5,0.5"));
end;
InitCommand=cmd(diffuse,color("0.5,0.5,0.5,0.5"));
};
@@ -1,6 +1,4 @@
return Def.Sprite {
Texture=NOTESKIN:GetPath('Up','Roll BottomCap Active');
InitCommand=function(self)
self:diffuse(color("0.5,0.5,0.5,0.5"));
end;
InitCommand=cmd(diffuse,color("0.5,0.5,0.5,0.5"));
};