Files
2024-01-09 09:39:41 -08:00

122 lines
5.0 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");
--The NOTESKIN:LoadActor() just tells us the name of the image the Actor redirects on.
--Oh and if you wonder about the "Button" in the "NOTESKIN:LoadActor( )" it means that it will check for that direction.
--So you dont have to do "Down" or "Up" or "Left" etc for every direction which will save space ;)
local t = Def.ActorFrame {
--Hold Explosion Commands
NOTESKIN:LoadActor( Var "Button", "Hold Explosion" ) .. {
HoldingOnCommand=NOTESKIN:GetMetricA("HoldGhostArrow", "HoldingOnCommand");
HoldingOffCommand=NOTESKIN:GetMetricA("HoldGhostArrow", "HoldingOffCommand");
InitCommand=cmd(playcommand,"HoldingOff";finishtweening);
};
--Roll Explosion Commands
NOTESKIN:LoadActor( Var "Button", "Hold Explosion" ) .. {
RollOnCommand=NOTESKIN:GetMetricA("HoldGhostArrow", "RollOnCommand");
RollOffCommand=NOTESKIN:GetMetricA("HoldGhostArrow", "RollOffCommand");
InitCommand=cmd(playcommand,"RollOff";finishtweening);
BrightCommand=cmd(visible,false);
DimCommand=cmd(visible,false);
};
--We use this for Seperate Explosions for every Judgement
Def.ActorFrame {
--W1 aka Marvelous Dim Explosion Commands
NOTESKIN:LoadActor( Var "Button", "Tap Explosion Dim W1" ) .. {
InitCommand=cmd(diffusealpha,0);
W1Command=NOTESKIN:GetMetricA("GhostArrowDim", "W1Command");
JudgmentCommand=cmd(finishtweening);
BrightCommand=cmd(visible,false);
DimCommand=cmd(visible,true);
};
--W1 aka Marvelous Bright Explosion Commands
NOTESKIN:LoadActor( Var "Button", "Tap Explosion Bright W1" ) .. {
InitCommand=cmd(diffusealpha,0);
W1Command=cmd(diffusealpha,0);
JudgmentCommand=cmd(finishtweening);
BrightCommand=NOTESKIN:GetMetricA("GhostArrowBright", "W1Command");
DimCommand=cmd(visible,true);
};
};
Def.ActorFrame {
--W2 aka Perfect Dim Explosion Commands
NOTESKIN:LoadActor( Var "Button", "Tap Explosion Dim W2" ) .. {
InitCommand=cmd(diffusealpha,0);
W2Command=NOTESKIN:GetMetricA("GhostArrowDim", "W1Command");
HeldCommand=NOTESKIN:GetMetricA("GhostArrowDim", "HeldCommand");
JudgmentCommand=cmd(finishtweening);
BrightCommand=cmd(visible,false);
DimCommand=cmd(visible,true);
};
--W2 aka Perfect Bright Explosion Commands
NOTESKIN:LoadActor( Var "Button", "Tap Explosion Dim W2" ) .. {
InitCommand=cmd(diffusealpha,0);
W2Command=NOTESKIN:GetMetricA("GhostArrowBright", "W1Command");
HeldCommand=NOTESKIN:GetMetricA("GhostArrowBright", "HeldCommand");
JudgmentCommand=cmd(finishtweening);
BrightCommand=cmd(visible,true);
DimCommand=cmd(visible,false);
};
};
Def.ActorFrame {
--W3 aka Great Dim Explosion Commands
NOTESKIN:LoadActor( Var "Button", "Tap Explosion Dim W3" ) .. {
InitCommand=cmd(diffusealpha,0);
W3Command=NOTESKIN:GetMetricA("GhostArrowDim", "W1Command");
JudgmentCommand=cmd(finishtweening);
BrightCommand=cmd(visible,false);
DimCommand=cmd(visible,true);
};
--W3 aka Great Bright Explosion Commands
NOTESKIN:LoadActor( Var "Button", "Tap Explosion Dim W3" ) .. {
InitCommand=cmd(diffusealpha,0);
W3Command=NOTESKIN:GetMetricA("GhostArrowBright", "W1Command");
JudgmentCommand=cmd(finishtweening);
BrightCommand=cmd(visible,true);
DimCommand=cmd(visible,false);
};
};
Def.ActorFrame {
--W4 aka Good Dim Explosion Commands
NOTESKIN:LoadActor( Var "Button", "Tap Explosion Dim W4" ) .. {
InitCommand=cmd(diffusealpha,0);
W4Command=NOTESKIN:GetMetricA("GhostArrowDim", "W1Command");
JudgmentCommand=cmd(finishtweening);
BrightCommand=cmd(visible,false);
DimCommand=cmd(visible,true);
};
--W4 aka Good Bright Explosion Commands
NOTESKIN:LoadActor( Var "Button", "Tap Explosion Dim W4" ) .. {
InitCommand=cmd(diffusealpha,0);
W4Command=NOTESKIN:GetMetricA("GhostArrowBright", "W1Command");
JudgmentCommand=cmd(finishtweening);
BrightCommand=cmd(visible,true);
DimCommand=cmd(visible,false);
};
};
Def.ActorFrame {
--W5 aka Boo Dim Explosion Commands
NOTESKIN:LoadActor( Var "Button", "Tap Explosion Dim W5" ) .. {
InitCommand=cmd(diffusealpha,0);
W5Command=NOTESKIN:GetMetricA("GhostArrowDim", "W1Command");
JudgmentCommand=cmd(finishtweening);
BrightCommand=cmd(visible,false);
DimCommand=cmd(visible,true);
};
--W5 aka Boo Bright Explosion Commands
NOTESKIN:LoadActor( Var "Button", "Tap Explosion Dim W5" ) .. {
InitCommand=cmd(diffusealpha,0);
W5Command=NOTESKIN:GetMetricA("GhostArrowBright", "W1Command");
JudgmentCommand=cmd(finishtweening);
BrightCommand=cmd(visible,true);
DimCommand=cmd(visible,false);
};
};
--Mine Explosion Commands
NOTESKIN:LoadActor( Var "Button", "HitMine Explosion" ) .. {
InitCommand=cmd(blend,"BlendMode_Add";diffusealpha,0);
HitMineCommand=NOTESKIN:GetMetricA("GhostArrowBright", "HitMineCommand");
};
}
return t;