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
@@ -1,4 +1,12 @@
return Def.Sprite {
Texture=NOTESKIN:GetPath( '_center', 'explosion' );
InitCommand=cmd(blend,"BlendMode_Add";finishtweening;diffusealpha,0.2;zoom,0.6;linear,0.1;diffusealpha,0;zoom,0.8);
return Def.Sprite {
Texture=NOTESKIN:GetPath( '_center', 'explosion' );
InitCommand=function(self)
self:blend("BlendMode_Add");
self:finishtweening();
self:diffusealpha(0.2);
self:zoom(0.6);
self:linear(0.1);
self:diffusealpha(0);
self:zoom(0.8);
end;
};