Skip to content

Commit

Permalink
added UpLeft Receptor to dance-retro
Browse files Browse the repository at this point in the history
  • Loading branch information
freem committed Feb 16, 2012
1 parent 60111ac commit a20fca9
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion NoteSkins/dance/retro/Down Receptor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ local t = Def.ActorFrame{
NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand');
PressCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'PressCommand');
};
-- flashpert
-- flash part
Def.Sprite {
Texture="_down receptor tap";
Frame0000=0;
Expand Down
23 changes: 23 additions & 0 deletions NoteSkins/dance/retro/UpLeft Receptor.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
local t = Def.ActorFrame{
-- normal
Def.Sprite {
Texture=NOTESKIN:GetPath( '_upleft', 'receptor base' );
Frame0000=0;
Delay0000=1;
InitCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'InitCommand');
NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand');
PressCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'PressCommand');
};
-- flash part
Def.Sprite {
Texture="_upleft receptor tap";
Frame0000=0;
Delay0000=1;
InitCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'InitCommand');
PressCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'PressCommand');
LiftCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'LiftCommand');
NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand');
};
};

return t;

0 comments on commit a20fca9

Please sign in to comment.