ef1190e3db
This reverts commit 1532c4e5ab.
22 lines
1.1 KiB
Lua
22 lines
1.1 KiB
Lua
--If a Command has "NOTESKIN:GetMetricA" in it, that means it gets the command from the metrics.ini, else use cmd(); to define command.
|
|
--If you dont know how "NOTESKIN:GetMetricA" works here is an explanation.
|
|
--NOTESKIN:GetMetricA("The [Group] in the metrics.ini", "The actual Command to fallback on in the metrics.ini");
|
|
|
|
local t = Def.ActorFrame {
|
|
Def.Sprite {
|
|
Texture=NOTESKIN:GetPath( "_Down", "Tap Note" );
|
|
Frame0000=69;
|
|
Delay0000=1;
|
|
InitCommand=cmd(;glowblink;effectcolor1,0.4,0.4,0.4,0.4;effectcolor2,0.8,0.8,0.8,0.4;effectclock,'beat';effecttiming,0.2,0,0.8,0);
|
|
NoneCommand=NOTESKIN:GetMetricA("ReceptorArrow", "NoneCommand");
|
|
PressCommand=NOTESKIN:GetMetricA("ReceptorArrow", "PressCommand");
|
|
LiftCommand=NOTESKIN:GetMetricA("ReceptorArrow", "LiftCommand");
|
|
W5Command=NOTESKIN:GetMetricA("ReceptorArrow", "W5Command");
|
|
W4Command=NOTESKIN:GetMetricA("ReceptorArrow", "W4Command");
|
|
W3Command=NOTESKIN:GetMetricA("ReceptorArrow", "W3Command");
|
|
W2Command=NOTESKIN:GetMetricA("ReceptorArrow", "W2Command");
|
|
W1Command=NOTESKIN:GetMetricA("ReceptorArrow", "W1Command");
|
|
};
|
|
};
|
|
return t;
|