Revert "Handle noteskin lua. Thanks to Jousway."
This reverts commit 1532c4e5ab.
This commit is contained in:
@@ -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"));
|
||||
};
|
||||
@@ -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"));
|
||||
};
|
||||
Reference in New Issue
Block a user