Handle noteskin lua. Thanks to Jousway.

This commit is contained in:
Jason Felds
2013-07-06 21:51:12 -04:00
parent afd0dac0c1
commit 1532c4e5ab
108 changed files with 1940 additions and 1111 deletions
+8 -3
View File
@@ -1,3 +1,8 @@
return NOTESKIN:LoadActor("DownLeft","NoteHit")..{
InitCommand=cmd(rotationy,180;rotationz,180;y,-6;x,2);
}
return NOTESKIN:LoadActor("DownLeft","NoteHit")..{
InitCommand=function(self)
self:rotationy(180);
self:rotationz(180);
self:y(-6);
self:x(2);
end;
}