68f58a46cf
anyways finaly this noteskin is done and I can sleep, als if anyone wonders why I put it in the common folder thats because it has piu and dance build in one so if you have it fallback on _Editor it checks in the gametype folder and the common folder which is were its in, also it takes some time to load when I'm picking a song, maybe becaues of HD images that are 4 times the normal size or because of lua errors, or a combination of the two, I dont know need to check that later also if you want to use this noteskin or test it just make a folder in pump or dance and make a metric.ini file with [Global] FallbackNoteSkin=_Editor and it will fallback to it because fallback checks gametype folder and common folder also I NEED TO LEARN HOW TO MERGE CUZ IT PISSED ME OFF
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( "_centerp1", "Tap Note" );
|
|
Frame0000=99;
|
|
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;
|