Advertisement
Jousway

Show Bright Explosion at end

Apr 13th, 2011
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.61 KB | None | 0 0
  1.     --Dim Explosion Commands
  2.     NOTESKIN:LoadActor( Var "Button", "Tap Explosion Dim" ) .. {
  3.         InitCommand=cmd(diffusealpha,0);
  4.         W5Command=NOTESKIN:GetMetricA("GhostArrowDim", "W5Command");
  5.         W4Command=NOTESKIN:GetMetricA("GhostArrowDim", "W4Command");
  6.         W3Command=NOTESKIN:GetMetricA("GhostArrowDim", "W3Command");
  7.         W2Command=NOTESKIN:GetMetricA("GhostArrowDim", "W2Command");
  8.         W1Command=NOTESKIN:GetMetricA("GhostArrowDim", "W1Command");
  9.         JudgmentCommand=cmd(finishtweening);
  10.         BrightCommand=cmd(visible,false);
  11.         DimCommand=cmd(visible,true);
  12.     };
  13.     --yes yes I know I could do it in another way but I'm lazy and it works doesnt it ;>
  14.     --This code give the Hold OK explosion Dim the same images as Bright
  15.     NOTESKIN:LoadActor( Var "Button", "Tap Explosion Bright" ) .. {
  16.         InitCommand=cmd(diffusealpha,0);
  17.         HeldCommand=NOTESKIN:GetMetricA("GhostArrowDim", "HeldCommand");
  18.         JudgmentCommand=cmd(finishtweening);
  19.         BrightCommand=cmd(visible,false);
  20.         DimCommand=cmd(visible,true);
  21.     };
  22.     --Bright Explosion Commands
  23.     NOTESKIN:LoadActor( Var "Button", "Tap Explosion Bright" ) .. {
  24.         InitCommand=cmd(diffusealpha,0);
  25.         W5Command=NOTESKIN:GetMetricA("GhostArrowBright", "W5Command");
  26.         W4Command=NOTESKIN:GetMetricA("GhostArrowBright", "W4Command");
  27.         W3Command=NOTESKIN:GetMetricA("GhostArrowBright", "W3Command");
  28.         W2Command=NOTESKIN:GetMetricA("GhostArrowBright", "W2Command");
  29.         W1Command=NOTESKIN:GetMetricA("GhostArrowBright", "W1Command");
  30.         HeldCommand=NOTESKIN:GetMetricA("GhostArrowBright", "HeldCommand");
  31.         JudgmentCommand=cmd(finishtweening);
  32.         BrightCommand=cmd(visible,true);
  33.         DimCommand=cmd(visible,false);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement