Files
itgmania212121/NoteSkins/dance/retro/Down Receptor.lua
T

23 lines
749 B
Lua
Raw Normal View History

2010-01-26 21:00:30 -06:00
local t = Def.ActorFrame{
-- normal
Def.Sprite {
2010-06-28 13:56:06 -05:00
Texture=NOTESKIN:GetPath( '_down', 'receptor base' );
2010-01-26 21:00:30 -06:00
Frame0000=0;
Delay0000=1;
InitCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'InitCommand');
NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand');
PressCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'PressCommand');
};
-- flashpert
Def.Sprite {
2010-06-28 13:56:06 -05:00
Texture="_down receptor tap";
2010-01-26 21:00:30 -06:00
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;