Advertisement
Jousway

FUCKEN CEL N METAL

Jan 19th, 2016
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.75 KB | None | 0 0
  1.                 Def.Sprite{
  2.                     Texture= "Explosion 5x1.png",
  3.                     InitCommand= function(self)
  4.                         self:SetAllStateDelays(0)
  5.                     end,
  6.                     ColumnJudgmentCommand= function(self, param)
  7.                         judgement = param.tap_note_score or param.hold_note_score
  8.                         if judgement == "TapNoteScore_W1" then
  9.                             self:setstate(0)
  10.                         elseif judgement == "TapNoteScore_W2" then
  11.                             self:setstate(1)
  12.                         elseif judgement == "TapNoteScore_W3" then
  13.                             self:setstate(2)
  14.                         elseif judgement == "TapNoteScore_W4" then
  15.                             self:setstate(3)
  16.                         elseif judgement == "TapNoteScore_W5" then
  17.                             self:setstate(4)
  18.                         end
  19.                     end,
  20.                     HoldCommand= function(self, param)
  21.                         if param.finished then
  22.                             self:setstate(1)
  23.                         end
  24.                     end,
  25.                 },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement