added UpLeft Receptor to dance-retro

This commit is contained in:
AJ Kelly
2012-02-15 23:02:16 -06:00
parent 60111ac53c
commit a20fca969d
2 changed files with 24 additions and 1 deletions
+1 -1
View File
@@ -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;
+23
View File
@@ -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;