diff --git a/NoteSkins/Para/default/Down Go Receptor.png b/NoteSkins/Para/default/Down Go Receptor.png deleted file mode 100644 index f77dc4b281..0000000000 Binary files a/NoteSkins/Para/default/Down Go Receptor.png and /dev/null differ diff --git a/NoteSkins/Para/default/Down Hold Body active.png b/NoteSkins/Para/default/Down Hold Body active.png deleted file mode 100644 index e3fa342c01..0000000000 Binary files a/NoteSkins/Para/default/Down Hold Body active.png and /dev/null differ diff --git a/NoteSkins/Para/default/Down Hold Body inactive.png b/NoteSkins/Para/default/Down Hold Body inactive.png deleted file mode 100644 index f4e5dd036e..0000000000 Binary files a/NoteSkins/Para/default/Down Hold Body inactive.png and /dev/null differ diff --git a/NoteSkins/Para/default/Down Hold BottomCap active.png b/NoteSkins/Para/default/Down Hold BottomCap active.png deleted file mode 100644 index 8c78230ff6..0000000000 Binary files a/NoteSkins/Para/default/Down Hold BottomCap active.png and /dev/null differ diff --git a/NoteSkins/Para/default/Down Hold BottomCap inactive.png b/NoteSkins/Para/default/Down Hold BottomCap inactive.png deleted file mode 100644 index c456d347d1..0000000000 Binary files a/NoteSkins/Para/default/Down Hold BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/Para/default/Down Hold Explosion 2x1.png b/NoteSkins/Para/default/Down Hold Explosion 2x1.png deleted file mode 100644 index a41efd89d0..0000000000 Binary files a/NoteSkins/Para/default/Down Hold Explosion 2x1.png and /dev/null differ diff --git a/NoteSkins/Para/default/Down Hold Head Active.png b/NoteSkins/Para/default/Down Hold Head Active.png deleted file mode 100644 index 6fc976ba79..0000000000 Binary files a/NoteSkins/Para/default/Down Hold Head Active.png and /dev/null differ diff --git a/NoteSkins/Para/default/Down Hold Head Inactive.png b/NoteSkins/Para/default/Down Hold Head Inactive.png deleted file mode 100644 index 9f0943e379..0000000000 Binary files a/NoteSkins/Para/default/Down Hold Head Inactive.png and /dev/null differ diff --git a/NoteSkins/Para/default/Down KeypressBlock.png b/NoteSkins/Para/default/Down KeypressBlock.png deleted file mode 100644 index 93435a7aeb..0000000000 Binary files a/NoteSkins/Para/default/Down KeypressBlock.png and /dev/null differ diff --git a/NoteSkins/Para/default/Down Receptor.lua b/NoteSkins/Para/default/Down Receptor.lua deleted file mode 100644 index d9e816a726..0000000000 --- a/NoteSkins/Para/default/Down Receptor.lua +++ /dev/null @@ -1,12 +0,0 @@ -return Def.ActorFrame { - -- We want this under the noteskin, so that we it looks like a laser (?) - LoadActor( NOTESKIN:GetPath("", "_Tap Receptor"), NOTESKIN:LoadActor( Var "Button", "KeypressBlock" ) ) .. { - InitCommand=cmd(vertalign,top;zoomx,0); - -- Press/Lift allows this to appear and disappear - PressCommand=cmd(zoomx,0;linear,0.02;zoomx,1); - LiftCommand=cmd(zoomx,1;linear,0.14;zoomx,0); - }; - -- Overlay the receptor. - LoadActor( NOTESKIN:GetPath("", "_Tap Receptor"), NOTESKIN:LoadActor( Var "Button", "Go Receptor" ) ); -}; - diff --git a/NoteSkins/Para/default/Down Roll Body active.png b/NoteSkins/Para/default/Down Roll Body active.png deleted file mode 100644 index 920ae6f7ab..0000000000 Binary files a/NoteSkins/Para/default/Down Roll Body active.png and /dev/null differ diff --git a/NoteSkins/Para/default/Down Roll Body inactive.png b/NoteSkins/Para/default/Down Roll Body inactive.png deleted file mode 100644 index deb34b1366..0000000000 Binary files a/NoteSkins/Para/default/Down Roll Body inactive.png and /dev/null differ diff --git a/NoteSkins/Para/default/Down Roll BottomCap active.png b/NoteSkins/Para/default/Down Roll BottomCap active.png deleted file mode 100644 index f83ead2316..0000000000 Binary files a/NoteSkins/Para/default/Down Roll BottomCap active.png and /dev/null differ diff --git a/NoteSkins/Para/default/Down Roll BottomCap inactive.png b/NoteSkins/Para/default/Down Roll BottomCap inactive.png deleted file mode 100644 index 2a2bf3064d..0000000000 Binary files a/NoteSkins/Para/default/Down Roll BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/Para/default/Down Tap Explosion Dim 4x1.png b/NoteSkins/Para/default/Down Tap Explosion Dim 4x1.png deleted file mode 100644 index 8adfcb2de4..0000000000 Binary files a/NoteSkins/Para/default/Down Tap Explosion Dim 4x1.png and /dev/null differ diff --git a/NoteSkins/Para/default/Down Tap Note.lua b/NoteSkins/Para/default/Down Tap Note.lua deleted file mode 100644 index 6268e29266..0000000000 --- a/NoteSkins/Para/default/Down Tap Note.lua +++ /dev/null @@ -1,7 +0,0 @@ -return Def.ActorFrame { - Def.Sprite { - Texture=NOTESKIN:GetPath( '_down', 'tap note' ); - Frames = Sprite.LinearFrames( 4, 1 ); - }; - -}; \ No newline at end of file diff --git a/NoteSkins/Para/default/NoteSkin.lua b/NoteSkins/Para/default/NoteSkin.lua deleted file mode 100644 index 79007d7dfd..0000000000 --- a/NoteSkins/Para/default/NoteSkin.lua +++ /dev/null @@ -1,105 +0,0 @@ -local ret = ... or {}; - -ret.RedirTable = -{ - Up = "Down", - Down = "Down", - Left = "Down", - Right = "Down", - UpLeft = "Down", - UpRight = "Down", -}; - - -local OldRedir = ret.Redir; -ret.Redir = function(sButton, sElement) - sButton, sElement = OldRedir(sButton, sElement); - - -- Instead of separate hold heads, use the tap note graphics. - --[[if sElement == "Hold Head Inactive" or - sElement == "Hold Head Active" or - sElement == "Roll Head Inactive" or - sElement == "Roll Head Active" - then - sElement = "Tap Note"; - end -]] - sButton = ret.RedirTable[sButton]; - - return sButton, sElement; -end - - - --- To have separate graphics for each hold part: ---[[ -local OldRedir = ret.Redir; -ret.Redir = function(sButton, sElement) - -- Redirect non-hold, non-roll parts. - if string.find(sElement, "hold") then - return sButton, sElement; - end - return OldRedir(sButton, sElement); -end -]] - -local OldFunc = ret.Load; -function ret.Load() - local t = OldFunc(); - - -- The main "Explosion" part just loads other actors; don't rotate - -- it. The "Hold Explosion" part should not be rotated. - if Var "Element" == "Explosion" or - Var "Element" == "Roll Explosion" or - Var "Element" == "Hold Explosion" then - t.BaseRotationZ = nil; - end - return t; -end - -ret.PartsToRotate = -{ - ["Go Receptor"] = true, - ["Ready Receptor"] = true, - ["Tap Explosion Bright"] = true, - ["Tap Explosion Dim"] = true, - ["Tap Note"] = true, - ["Hold Bottom Cap Active"] = true, - ["Hold Bottom Cap Inactive"] = true, - ["Hold Head Active"] = true, - ["Hold Head Inactive"] = true, - ["Roll Head Active"] = true, - ["Roll Head Inactive"] = true, -}; -ret.Rotate = -{ - Up = 180, - Down = 0, - Left = 90, - Right = -90, - UpLeft = 135, - UpRight = 225, -}; - --- --- If a derived skin wants to have separate UpLeft graphics, --- use this: --- --- ret.RedirTable.UpLeft = "UpLeft"; --- ret.RedirTable.UpRight = "UpLeft"; --- ret.Rotate.UpLeft = 0; --- ret.Rotate.UpRight = 90; --- -ret.Blank = -{ - ["Hold Topcap Active"] = true, - ["Hold Topcap Inactive"] = true, - ["Roll Topcap Active"] = true, - ["Roll Topcap Inactive"] = true, - ["Hold Tail Active"] = true, - ["Hold Tail Inactive"] = true, - ["Roll Tail Active"] = true, - ["Roll Tail Inactive"] = true, -}; - -return ret; diff --git a/NoteSkins/Para/default/_Down Tap Explosion Bright 2x2.png b/NoteSkins/Para/default/_Down Tap Explosion Bright 2x2.png deleted file mode 100644 index a853009a2c..0000000000 Binary files a/NoteSkins/Para/default/_Down Tap Explosion Bright 2x2.png and /dev/null differ diff --git a/NoteSkins/Para/default/_down tap note 4x2.png b/NoteSkins/Para/default/_down tap note 4x2.png deleted file mode 100644 index 79a7c21197..0000000000 Binary files a/NoteSkins/Para/default/_down tap note 4x2.png and /dev/null differ diff --git a/NoteSkins/Para/default/metrics.ini b/NoteSkins/Para/default/metrics.ini deleted file mode 100644 index 727b708b8e..0000000000 --- a/NoteSkins/Para/default/metrics.ini +++ /dev/null @@ -1,77 +0,0 @@ -[Global] - -[NoteDisplay] -TapNoteAnimationIsVivid=0 -DrawHoldHeadForTapsOnSameRow=0 - -TapNoteAnimationLength=2 -TapAdditionAnimationLength=4 -TapMineAnimationLength=1 -TapLiftAnimationLength=4 - -HoldHeadAnimationLength=1 // doesn't matter. Only 1 frame anyway. -HoldTopCapAnimationLength=1 // doesn't matter. Only 1 frame anyway. -HoldBottomCapAnimationLength=1 // doesn't matter. Only 1 frame anyway. -HoldBodyAnimationLength=1 // doesn't matter. Only 1 frame anyway. -HoldTailAnimationLength=1 // doesn't matter. Only 1 frame anyway. - -HoldHeadAnimationIsNoteColor=0 -HoldTopCapAnimationIsNoteColor=0 -HoldBodyAnimationIsNoteColor=0 -HoldBottomCapAnimationIsNoteColor=0 -HoldTailAnimationIsNoteColor=0 - -HoldLetGoGrayPercent=0.25 -HoldHeadIsAboveWavyParts=0 -HoldTailIsAboveWavyParts=0 - -StartDrawingHoldBodyOffsetFromHead=0 -StopDrawingHoldBodyOffsetFromTail=0 // top of tail - -ReverseDrawOrder=1101 -TapNoteAdditionTextureCoordOffsetX=0.5 -TapNoteAdditionTextureCoordOffsetY=0 -FlipHeadAndTailWhenReverse=1 -FlipHoldBodyWhenReverse=1 -TopHoldAnchorWhenReverse=1 - -TapNoteNoteColorTextureCoordSpacingX=0 -TapNoteNoteColorTextureCoordSpacingY=0 -HoldHeadNoteColorTextureCoordSpacingX=0 -HoldHeadNoteColorTextureCoordSpacingY=0 - -[GhostArrowDim] -HitMineCommand=finishtweening;blend,"BlendMode_Add";diffuse,1,1,1,1;zoom,1;rotationz,0;linear,0.3;rotationz,90;linear,0.3;rotationz,180;diffusealpha,0 -W5Command=diffuse,0.8,0.0,0.6,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -W4Command=diffuse,0.3,0.8,1.0,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -W3Command=diffuse,0.0,1.0,0.4,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -W2Command=diffuse,1.0,1.0,0.3,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -W1Command=diffuse,1.0,1.0,1.0,1;zoom,1;linear,0.2;zoom,1.5;decelerate,0.1;zoom,1.5;diffusealpha,0 -HeldCommand=diffuse,1.0,1.0,1.0,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 - -[GhostArrowBright] -NoneCommand= -HitMineCommand=finishtweening;blend,"BlendMode_Add";diffuse,1,1,1,1;zoom,1;rotationz,0;linear,0.3;rotationz,90;linear,0.3;rotationz,180;diffusealpha,0 -AvoidMineCommand= -MissCommand= -W5Command=diffuse,0.8,0.0,0.6,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -W4Command=diffuse,0.3,0.8,1.0,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -W3Command=diffuse,0.0,1.0,0.4,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -W2Command=diffuse,1.0,1.0,0.3,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -W1Command=diffuse,0.8,0.0,0.6,1;zoom,1;linear,0.2;zoom,1.5;decelerate,0.1;zoom,1.5;diffusealpha,0 -HeldCommand=diffuse,1.0,1.0,1.0,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 - -[ReceptorArrow] -InitCommand=effectclock,'beat';diffuseramp;effectcolor1,color("0.5,0.5,0.5,1");effectcolor2,color("1,1,1,1"); -NoneCommand=zoom,1.1;linear,0.06;diffusealpha,0;linear,0.06;zoom,1.0;diffuse,0.3,0.8,1.0,1 - -HitMineCommand= -AvoidMineCommand= -MissCommand= -W5Command=stoptweening;zoom,1.25;linear,0.11;zoom,1 -W4Command=stoptweening;zoom,1.25;linear,0.11;zoom,1 -W3Command=stoptweening;zoom,1.25;linear,0.11;zoom,1 -W2Command=stoptweening;zoom,1.25;linear,0.11;zoom,1 -W1Command=stoptweening;zoom,1.25;linear,0.11;zoom,1 -PressCommand= -LiftCommand= \ No newline at end of file diff --git a/NoteSkins/beat/default/Blue Go Receptor.png b/NoteSkins/beat/default/Blue Go Receptor.png deleted file mode 100644 index d35ff60a62..0000000000 Binary files a/NoteSkins/beat/default/Blue Go Receptor.png and /dev/null differ diff --git a/NoteSkins/beat/default/Blue Hold Body active.png b/NoteSkins/beat/default/Blue Hold Body active.png deleted file mode 100644 index 9e218e1dd3..0000000000 Binary files a/NoteSkins/beat/default/Blue Hold Body active.png and /dev/null differ diff --git a/NoteSkins/beat/default/Blue Hold Body inactive.png b/NoteSkins/beat/default/Blue Hold Body inactive.png deleted file mode 100644 index 2dcb91cfef..0000000000 Binary files a/NoteSkins/beat/default/Blue Hold Body inactive.png and /dev/null differ diff --git a/NoteSkins/beat/default/Blue Hold BottomCap active.png b/NoteSkins/beat/default/Blue Hold BottomCap active.png deleted file mode 100644 index efb4dbd60d..0000000000 Binary files a/NoteSkins/beat/default/Blue Hold BottomCap active.png and /dev/null differ diff --git a/NoteSkins/beat/default/Blue Hold BottomCap inactive.png b/NoteSkins/beat/default/Blue Hold BottomCap inactive.png deleted file mode 100644 index 67878e5a2f..0000000000 Binary files a/NoteSkins/beat/default/Blue Hold BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/beat/default/Blue Tap Explosion Bright 9x1.png b/NoteSkins/beat/default/Blue Tap Explosion Bright 9x1.png deleted file mode 100644 index c5826f134e..0000000000 Binary files a/NoteSkins/beat/default/Blue Tap Explosion Bright 9x1.png and /dev/null differ diff --git a/NoteSkins/beat/default/Blue Tap Explosion Dim 9x1.png b/NoteSkins/beat/default/Blue Tap Explosion Dim 9x1.png deleted file mode 100644 index c5826f134e..0000000000 Binary files a/NoteSkins/beat/default/Blue Tap Explosion Dim 9x1.png and /dev/null differ diff --git a/NoteSkins/beat/default/Blue Tap Mine 1x1.png b/NoteSkins/beat/default/Blue Tap Mine 1x1.png deleted file mode 100644 index d725a1ac64..0000000000 Binary files a/NoteSkins/beat/default/Blue Tap Mine 1x1.png and /dev/null differ diff --git a/NoteSkins/beat/default/Blue Tap Note 1x1.png b/NoteSkins/beat/default/Blue Tap Note 1x1.png deleted file mode 100644 index 6d5434c745..0000000000 Binary files a/NoteSkins/beat/default/Blue Tap Note 1x1.png and /dev/null differ diff --git a/NoteSkins/beat/default/Common Tap Explosion Bright.redir b/NoteSkins/beat/default/Common Tap Explosion Bright.redir deleted file mode 100644 index 23b063598c..0000000000 --- a/NoteSkins/beat/default/Common Tap Explosion Bright.redir +++ /dev/null @@ -1 +0,0 @@ -Common Tap Explosion Dim diff --git a/NoteSkins/beat/default/Fallback Explosion.lua b/NoteSkins/beat/default/Fallback Explosion.lua deleted file mode 100644 index 69e8357439..0000000000 --- a/NoteSkins/beat/default/Fallback Explosion.lua +++ /dev/null @@ -1,54 +0,0 @@ -local t = Def.ActorFrame { }; -t[#t+1] = NOTESKIN:LoadActor( Var "Button", "Hold Explosion" ) .. { - HoldingOnCommand=cmd(visible,true); - HoldingOffCommand=cmd(visible,false); - InitCommand=cmd(visible,false;finishtweening;blend,"BlendMode_Add"); - Frames = Sprite.LinearFrames( - NOTESKIN:GetMetricF( "GhostArrowDim", "HoldFrames" ), - NOTESKIN:GetMetricF( "GhostArrowDim", "HoldSeconds" ) ); -}; - -t[#t+1] = NOTESKIN:LoadActor( Var "Button", "Roll Explosion" ) .. { - RollOnCommand=cmd(visible,true); - RollOffCommand=cmd(visible,false); - InitCommand=cmd(visible,false;finishtweening;blend,"BlendMode_Add"); - Frames = Sprite.LinearFrames( - NOTESKIN:GetMetricF( "GhostArrowDim", "HoldFrames" ), - NOTESKIN:GetMetricF( "GhostArrowDim", "HoldSeconds" ) ); -}; - -t[#t+1] = NOTESKIN:LoadActor( Var "Button", "Tap Explosion Dim" ) .. { - InitCommand=cmd(diffusealpha,0;blend,"BlendMode_Add"); - HeldCommand=cmd(zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0); - ColumnJudgmentCommand=function(self, params) - if params.TapNoteScore == "TapNoteScore_HitMine" then return; end - - (cmd(finishtweening;loop,0;diffusealpha,1;setstate,0;sleep,self:GetAnimationLengthSeconds()-0.001;diffusealpha,0))(self); - end; - Frames = Sprite.LinearFrames( - NOTESKIN:GetMetricF( "GhostArrowDim", "JudgmentFrames" ), - NOTESKIN:GetMetricF( "GhostArrowDim", "JudgmentSeconds" ) ); -}; - -local mine = NOTESKIN:LoadActor( Var "Button", "HitMine Explosion" ) .. { - InitCommand=cmd(diffusealpha,0); - Frames = Sprite.LinearFrames( - NOTESKIN:GetMetricF( "GhostArrowDim", "MineFrames" ), - NOTESKIN:GetMetricF( "GhostArrowDim", "MineSeconds" ) ); -}; - -local Next = "1"; -t[#t+1] = Def.ActorFrame { - mine .. { Name="1"; }; - mine .. { Name="2"; }; - - ColumnJudgmentCommand=function(self, params) - if params.TapNoteScore ~= "TapNoteScore_HitMine" then return; end - - local c = self:GetChild(Next); - Next = Next == "1" and "2" or "1"; - (cmd(stoptweening;setstate,0;diffusealpha,1;sleep,self:GetAnimationLengthSeconds()-0.001;diffusealpha,0))(c); - end; -}; - -return t; diff --git a/NoteSkins/beat/default/NoteSkin.lua b/NoteSkins/beat/default/NoteSkin.lua deleted file mode 100644 index 6368678c40..0000000000 --- a/NoteSkins/beat/default/NoteSkin.lua +++ /dev/null @@ -1,80 +0,0 @@ -local ret = ... or {}; - -ret.RedirTable = -{ - Key1 = "White", - Key2 = "Blue", - Key3 = "White", - Key4 = "Blue", - Key5 = "White", - Key6 = "Blue", - Key7 = "White", - scratch = "Red", -}; - -local OldRedir = ret.Redir; -ret.Redir = function(sButton, sElement) - sButton, sElement = OldRedir(sButton, sElement); - - -- Instead of separate hold heads, use the tap note graphics. - if sElement == "Hold Head Inactive" or - sElement == "Hold Head Active" or - sElement == "Roll Head Inactive" or - sElement == "Roll Head Active" - then - sElement = "Tap Note"; - end - - sButton = ret.RedirTable[sButton]; - - return sButton, sElement; -end - -local OldFunc = ret.Load; -function ret.Load() - local t = OldFunc(); - - -- The main "Explosion" part just loads other actors; don't rotate - -- it. The "Hold Explosion" part should not be rotated. - if Var "Element" == "Explosion" or - Var "Element" == "Hold Explosion" then - t.BaseRotationZ = nil; - end - return t; -end - -ret.PartsToRotate = -{ - ["Go Receptor"] = false, - ["Ready Receptor"] = false, - ["Tap Explosion Bright"] = false, - ["Tap Explosion Dim"] = false, - ["Tap Note"] = false, - ["Hold Head Active"] = false, - ["Hold Head Inactive"] = false, - ["Roll Head Active"] = false, - ["Roll Head Inactive"] = false, -}; - --- --- If a derived skin wants to have separate UpLeft graphics, --- use this: --- --- ret.RedirTable.UpLeft = "UpLeft"; --- ret.RedirTable.UpRight = "UpLeft"; --- ret.Rotate.UpLeft = 0; --- ret.Rotate.UpRight = 90; --- -ret.Blank = -{ - ["Hold Topcap Active"] = true, - ["Hold Topcap Inactive"] = true, - ["Roll Topcap Active"] = true, - ["Roll Topcap Inactive"] = true, - ["Hold Tail Active"] = true, - ["Hold Tail Inactive"] = true, - ["Roll Tail Active"] = true, - ["Roll Tail Inactive"] = true, -}; - -return ret; diff --git a/NoteSkins/beat/default/Red Go Receptor.png b/NoteSkins/beat/default/Red Go Receptor.png deleted file mode 100644 index 4dc46ce966..0000000000 Binary files a/NoteSkins/beat/default/Red Go Receptor.png and /dev/null differ diff --git a/NoteSkins/beat/default/Red Tap Explosion Bright 9x1.png b/NoteSkins/beat/default/Red Tap Explosion Bright 9x1.png deleted file mode 100644 index c5826f134e..0000000000 Binary files a/NoteSkins/beat/default/Red Tap Explosion Bright 9x1.png and /dev/null differ diff --git a/NoteSkins/beat/default/Red Tap Explosion Dim 9x1.png b/NoteSkins/beat/default/Red Tap Explosion Dim 9x1.png deleted file mode 100644 index c5826f134e..0000000000 Binary files a/NoteSkins/beat/default/Red Tap Explosion Dim 9x1.png and /dev/null differ diff --git a/NoteSkins/beat/default/Red Tap Mine 1x1.png b/NoteSkins/beat/default/Red Tap Mine 1x1.png deleted file mode 100644 index cd99d1bbbc..0000000000 Binary files a/NoteSkins/beat/default/Red Tap Mine 1x1.png and /dev/null differ diff --git a/NoteSkins/beat/default/Red Tap Note 1x1.png b/NoteSkins/beat/default/Red Tap Note 1x1.png deleted file mode 100644 index 19ce9154dc..0000000000 Binary files a/NoteSkins/beat/default/Red Tap Note 1x1.png and /dev/null differ diff --git a/NoteSkins/beat/default/White Go Receptor.png b/NoteSkins/beat/default/White Go Receptor.png deleted file mode 100644 index de21d3f2a2..0000000000 Binary files a/NoteSkins/beat/default/White Go Receptor.png and /dev/null differ diff --git a/NoteSkins/beat/default/White Hold Body active.png b/NoteSkins/beat/default/White Hold Body active.png deleted file mode 100644 index ed70ec38e0..0000000000 Binary files a/NoteSkins/beat/default/White Hold Body active.png and /dev/null differ diff --git a/NoteSkins/beat/default/White Hold Body inactive.png b/NoteSkins/beat/default/White Hold Body inactive.png deleted file mode 100644 index 6e19b87652..0000000000 Binary files a/NoteSkins/beat/default/White Hold Body inactive.png and /dev/null differ diff --git a/NoteSkins/beat/default/White Hold BottomCap active.png b/NoteSkins/beat/default/White Hold BottomCap active.png deleted file mode 100644 index a42d06e14f..0000000000 Binary files a/NoteSkins/beat/default/White Hold BottomCap active.png and /dev/null differ diff --git a/NoteSkins/beat/default/White Hold BottomCap inactive.png b/NoteSkins/beat/default/White Hold BottomCap inactive.png deleted file mode 100644 index 3c5eb8f308..0000000000 Binary files a/NoteSkins/beat/default/White Hold BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/beat/default/White Tap Explosion Bright 9x1.png b/NoteSkins/beat/default/White Tap Explosion Bright 9x1.png deleted file mode 100644 index c5826f134e..0000000000 Binary files a/NoteSkins/beat/default/White Tap Explosion Bright 9x1.png and /dev/null differ diff --git a/NoteSkins/beat/default/White Tap Explosion Dim 9x1.png b/NoteSkins/beat/default/White Tap Explosion Dim 9x1.png deleted file mode 100644 index c5826f134e..0000000000 Binary files a/NoteSkins/beat/default/White Tap Explosion Dim 9x1.png and /dev/null differ diff --git a/NoteSkins/beat/default/White Tap Mine 1x1.png b/NoteSkins/beat/default/White Tap Mine 1x1.png deleted file mode 100644 index cf8d3ead75..0000000000 Binary files a/NoteSkins/beat/default/White Tap Mine 1x1.png and /dev/null differ diff --git a/NoteSkins/beat/default/White Tap Note 1x1.png b/NoteSkins/beat/default/White Tap Note 1x1.png deleted file mode 100644 index 507f42b5e3..0000000000 Binary files a/NoteSkins/beat/default/White Tap Note 1x1.png and /dev/null differ diff --git a/NoteSkins/beat/default/_Blue Tap Explosion Bright.redir b/NoteSkins/beat/default/_Blue Tap Explosion Bright.redir deleted file mode 100644 index d20fc4c55d..0000000000 --- a/NoteSkins/beat/default/_Blue Tap Explosion Bright.redir +++ /dev/null @@ -1 +0,0 @@ -Blue Tap Explosion Dim \ No newline at end of file diff --git a/NoteSkins/beat/default/_Blue Tap Explosion Dim.png b/NoteSkins/beat/default/_Blue Tap Explosion Dim.png deleted file mode 100644 index f1d4f331eb..0000000000 Binary files a/NoteSkins/beat/default/_Blue Tap Explosion Dim.png and /dev/null differ diff --git a/NoteSkins/beat/default/_Red Tap Explosion Bright.redir b/NoteSkins/beat/default/_Red Tap Explosion Bright.redir deleted file mode 100644 index 13f826785b..0000000000 --- a/NoteSkins/beat/default/_Red Tap Explosion Bright.redir +++ /dev/null @@ -1 +0,0 @@ -Red Tap Explosion Dim \ No newline at end of file diff --git a/NoteSkins/beat/default/_Red Tap Explosion Dim.png b/NoteSkins/beat/default/_Red Tap Explosion Dim.png deleted file mode 100644 index da6d21254a..0000000000 Binary files a/NoteSkins/beat/default/_Red Tap Explosion Dim.png and /dev/null differ diff --git a/NoteSkins/beat/default/_Tap Lead-in Receptor.lua b/NoteSkins/beat/default/_Tap Lead-in Receptor.lua deleted file mode 100644 index 223d184854..0000000000 --- a/NoteSkins/beat/default/_Tap Lead-in Receptor.lua +++ /dev/null @@ -1,21 +0,0 @@ -return Def.ActorFrame { - children = { - LoadActor( "_Tap Receptor", NOTESKIN:LoadActor(Var "Button", "Ready Receptor") ) .. { - Frame0000=0; - Delay0000=1; - - InitCommand=cmd(playcommand, "Set"); - GameplayLeadInChangedMessageCommand=cmd(playcommand,"Set"); - SetCommand=cmd(visible,GAMESTATE:GetGameplayLeadIn()); - }; - - LoadActor( "_Tap Receptor", NOTESKIN:LoadActor(Var "Button", "Go Receptor") ) .. { - Frame0000=0; - Delay0000=1; - - InitCommand=cmd(playcommand, "Set"); - GameplayLeadInChangedMessageCommand=cmd(playcommand,"Set"); - SetCommand=cmd(visible,not GAMESTATE:GetGameplayLeadIn()); - }; - } -} diff --git a/NoteSkins/beat/default/_Tap Receptor.lua b/NoteSkins/beat/default/_Tap Receptor.lua deleted file mode 100644 index e2e850a0a6..0000000000 --- a/NoteSkins/beat/default/_Tap Receptor.lua +++ /dev/null @@ -1,15 +0,0 @@ -local t = ...; -assert( type(t) == "table" ); - -return t .. { - InitCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'InitCommand'); - MissCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'MissCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - HitMineCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'HitMineCommand'); - 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'); -}; - diff --git a/NoteSkins/beat/default/_White Tap Explosion Bright.redir b/NoteSkins/beat/default/_White Tap Explosion Bright.redir deleted file mode 100644 index 5007a73fa8..0000000000 --- a/NoteSkins/beat/default/_White Tap Explosion Bright.redir +++ /dev/null @@ -1 +0,0 @@ -White Tap Explosion Dim \ No newline at end of file diff --git a/NoteSkins/beat/default/_White Tap Explosion Dim.png b/NoteSkins/beat/default/_White Tap Explosion Dim.png deleted file mode 100644 index f1d4f331eb..0000000000 Binary files a/NoteSkins/beat/default/_White Tap Explosion Dim.png and /dev/null differ diff --git a/NoteSkins/beat/default/metrics.ini b/NoteSkins/beat/default/metrics.ini deleted file mode 100644 index 3095d747a5..0000000000 --- a/NoteSkins/beat/default/metrics.ini +++ /dev/null @@ -1,62 +0,0 @@ -[Global] -FallbackNoteSkin=common - -[NoteDisplay] -DrawHoldHeadForTapsOnSameRow=0 -TapNoteAnimationLength=1 -TapAdditionAnimationLength=1 -TapMineAnimationLength=1 -TapLiftAnimationLength=1 -HoldHeadAnimationLength=4 // doesn't matter. Only 1 frame anyway. -HoldTopCapAnimationLength=4 // doesn't matter. Only 1 frame anyway. -HoldBottomCapAnimationLength=4 // doesn't matter. Only 1 frame anyway. -HoldBodyAnimationLength=4 // doesn't matter. Only 1 frame anyway. -HoldTailAnimationLength=4 // doesn't matter. Only 1 frame anyway. -StartDrawingHoldBodyOffsetFromHead=0 -StopDrawingHoldBodyOffsetFromTail=-32 // top of tail -HoldLetGoGrayPercent=0.25 -ReverseDrawOrder=0000000 -HoldHeadIsAboveWavyParts=1 -HoldTailIsAboveWavyParts=1 -TapNoteAdditionTextureCoordOffsetX=0 -TapNoteAdditionTextureCoordOffsetY=0 -TapNoteNoteColorTextureCoordSpacingX=0 -TapNoteNoteColorTextureCoordSpacingY=0 -HoldHeadNoteColorTextureCoordSpacingX=0 -HoldHeadNoteColorTextureCoordSpacingY=0 - -[GhostArrowDim] -NoneCommand= -HitMineCommand=blend,'BlendMode_Add';diffuse,1,1,1,1;zoom,1;rotationz,0;linear,0.3;rotationz,90;linear,0.3;rotationz,180;diffusealpha,0 -MissCommand= -LetGoCommand= -HeldCommand=diffuse,1.0,1.0,0.3,1;zoom,1;linear,0.1;zoom,1.1;linear,0.1;diffusealpha,0 -W5Command=loop,0;diffusealpha,1;setstate,0;sleep,self:GetAnimationLengthSeconds();diffusealpha,0 -W4Command=loop,0;diffusealpha,1;setstate,0;sleep,self:GetAnimationLengthSeconds();diffusealpha,0 -W3Command=loop,0;diffusealpha,1;setstate,0;sleep,self:GetAnimationLengthSeconds();diffusealpha,0 -W2Command=loop,0;diffusealpha,1;setstate,0;sleep,self:GetAnimationLengthSeconds();diffusealpha,0 -W1Command=loop,0;diffusealpha,1;setstate,0;sleep,self:GetAnimationLengthSeconds();diffusealpha,0 -JudgmentFrames=7 -JudgmentSeconds=0.2 -MineFrames=1 -MineSeconds=0.2 -HoldFrames=1 -HoldSeconds=0.2 - -[GhostArrowBright] -W5Command=loop,0;diffusealpha,1;setstate,0;sleep,self:GetAnimationLengthSeconds();diffusealpha,0 -W4Command=loop,0;diffusealpha,1;setstate,0;sleep,self:GetAnimationLengthSeconds();diffusealpha,0 -W3Command=loop,0;diffusealpha,1;setstate,0;sleep,self:GetAnimationLengthSeconds();diffusealpha,0 -W2Command=loop,0;diffusealpha,1;setstate,0;sleep,self:GetAnimationLengthSeconds();diffusealpha,0 -W1Command=loop,0;diffusealpha,1;setstate,0;sleep,self:GetAnimationLengthSeconds();diffusealpha,0 -NoneCommand= -HitMineCommand=blend,'BlendMode_Add';diffuse,1,1,1,1;zoom,1;rotationz,0;linear,0.3;rotationz,90;linear,0.3;rotationz,180;diffusealpha,0 -MissCommand= -LetGoCommand=sleep,0.06 -HeldCommand=diffuse,1.0,1.0,0.3,1;zoom,1;linear,0.1;zoom,1.1;linear,0.1;diffusealpha,0 - -[ReceptorArrow] -W3Command= -W2Command= -W1Command= -#NoneCommand= diff --git a/NoteSkins/kb7/default/Key Go Receptor.png b/NoteSkins/kb7/default/Key Go Receptor.png deleted file mode 100644 index 6df47f2f66..0000000000 Binary files a/NoteSkins/kb7/default/Key Go Receptor.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Key Hold Body active.png b/NoteSkins/kb7/default/Key Hold Body active.png deleted file mode 100644 index 60a62549f6..0000000000 Binary files a/NoteSkins/kb7/default/Key Hold Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Key Hold Body inactive.png b/NoteSkins/kb7/default/Key Hold Body inactive.png deleted file mode 100644 index 4ef3a238d1..0000000000 Binary files a/NoteSkins/kb7/default/Key Hold Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Key Hold BottomCap Inactive.png b/NoteSkins/kb7/default/Key Hold BottomCap Inactive.png deleted file mode 100644 index e97dd7f33e..0000000000 Binary files a/NoteSkins/kb7/default/Key Hold BottomCap Inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Key Hold BottomCap active.png b/NoteSkins/kb7/default/Key Hold BottomCap active.png deleted file mode 100644 index 699cdd5445..0000000000 Binary files a/NoteSkins/kb7/default/Key Hold BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Key Hold Explosion 2x1.png b/NoteSkins/kb7/default/Key Hold Explosion 2x1.png deleted file mode 100644 index a91319d791..0000000000 Binary files a/NoteSkins/kb7/default/Key Hold Explosion 2x1.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Key Receptor.lua b/NoteSkins/kb7/default/Key Receptor.lua deleted file mode 100644 index aef9e9a115..0000000000 --- a/NoteSkins/kb7/default/Key Receptor.lua +++ /dev/null @@ -1,13 +0,0 @@ -local t = Def.ActorFrame { - LoadActor( "Key Go Receptor" )..{ - InitCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'InitCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - }; - LoadActor( "Key Go Receptor" )..{ - InitCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'InitCommand'); - PressCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'PressCommand'); - LiftCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'LiftCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - }; -}; -return t; diff --git a/NoteSkins/kb7/default/Key Roll Body active.png b/NoteSkins/kb7/default/Key Roll Body active.png deleted file mode 100644 index ac9daa346f..0000000000 Binary files a/NoteSkins/kb7/default/Key Roll Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Key Roll Body inactive.png b/NoteSkins/kb7/default/Key Roll Body inactive.png deleted file mode 100644 index 2ca5f5d03c..0000000000 Binary files a/NoteSkins/kb7/default/Key Roll Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Key Roll BottomCap active.png b/NoteSkins/kb7/default/Key Roll BottomCap active.png deleted file mode 100644 index 8a9fffffa6..0000000000 Binary files a/NoteSkins/kb7/default/Key Roll BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Key Roll BottomCap inactive.png b/NoteSkins/kb7/default/Key Roll BottomCap inactive.png deleted file mode 100644 index 02a27b822a..0000000000 Binary files a/NoteSkins/kb7/default/Key Roll BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Key Tap Explosion Bright.png b/NoteSkins/kb7/default/Key Tap Explosion Bright.png deleted file mode 100644 index 892e327c58..0000000000 Binary files a/NoteSkins/kb7/default/Key Tap Explosion Bright.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Key Tap Explosion Dim.png b/NoteSkins/kb7/default/Key Tap Explosion Dim.png deleted file mode 100644 index cbd86ed7e0..0000000000 Binary files a/NoteSkins/kb7/default/Key Tap Explosion Dim.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Key Tap Note.lua b/NoteSkins/kb7/default/Key Tap Note.lua deleted file mode 100644 index 2adb303974..0000000000 --- a/NoteSkins/kb7/default/Key Tap Note.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_key', 'tap note' ); - Frames = Sprite.LinearFrames( 4, 1 ); -}; diff --git a/NoteSkins/kb7/default/NoteSkin.lua b/NoteSkins/kb7/default/NoteSkin.lua deleted file mode 100644 index 00bb49907e..0000000000 --- a/NoteSkins/kb7/default/NoteSkin.lua +++ /dev/null @@ -1,103 +0,0 @@ -local ret = ... or {}; - -ret.RedirTable = -{ - Key1 = "Key", - Key2 = "Key", - Key3 = "Key", - -- should work? doesn't though. - Key4 = GAMESTATE:IsSideJoined('PlayerNumber_P2') and "Space" or "Key", - Key5 = "Key", - Key6 = "Key", - Key7 = "Key", -}; - -local OldRedir = ret.Redir; -ret.Redir = function(sButton, sElement) - sButton, sElement = OldRedir(sButton, sElement); - - -- Instead of separate hold heads, use the tap note graphics. - if sElement == "Hold Head Inactive" or - sElement == "Hold Head Active" or - sElement == "Roll Head Inactive" or - sElement == "Roll Head Active" - then - sElement = "Tap Note"; - end - - sButton = ret.RedirTable[sButton]; - - return sButton, sElement; -end - --- To have separate graphics for each hold part: ---[[ -local OldRedir = ret.Redir; -ret.Redir = function(sButton, sElement) - -- Redirect non-hold, non-roll parts. - if string.find(sElement, "hold") then - return sButton, sElement; - end - return OldRedir(sButton, sElement); -end -]] - -local OldFunc = ret.Load; -function ret.Load() - local t = OldFunc(); - - -- The main "Explosion" part just loads other actors; don't rotate - -- it. The "Hold Explosion" part should not be rotated. - if Var "Element" == "Explosion" or - Var "Element" == "Roll Explosion" or - Var "Element" == "Hold Explosion" then - t.BaseRotationZ = nil; - end - return t; -end - -ret.PartsToRotate = -{ - ["Go Receptor"] = true, - ["Ready Receptor"] = true, - ["Tap Explosion Bright"] = true, - ["Tap Explosion Dim"] = true, - ["Tap Note"] = true, - ["Hold Head Active"] = true, - ["Hold Head Inactive"] = true, - ["Roll Head Active"] = true, - ["Roll Head Inactive"] = true, -}; -ret.Rotate = -{ - Key1 = 0, - Key2 = 0, - Key3 = 0, - Key4 = 0, - Key5 = 0, - Key6 = 0, - Key7 = 0, -}; - --- --- If a derived skin wants to have separate UpLeft graphics, --- use this: --- --- ret.RedirTable.UpLeft = "UpLeft"; --- ret.RedirTable.UpRight = "UpLeft"; --- ret.Rotate.UpLeft = 0; --- ret.Rotate.UpRight = 90; --- -ret.Blank = -{ - ["Hold Topcap Active"] = true, - ["Hold Topcap Inactive"] = true, - ["Roll Topcap Active"] = true, - ["Roll Topcap Inactive"] = true, - ["Hold Tail Active"] = true, - ["Hold Tail Inactive"] = true, - ["Roll Tail Active"] = true, - ["Roll Tail Inactive"] = true, -}; - -return ret; diff --git a/NoteSkins/kb7/default/Space Hold Body active.png b/NoteSkins/kb7/default/Space Hold Body active.png deleted file mode 100644 index 34d6fad3ce..0000000000 Binary files a/NoteSkins/kb7/default/Space Hold Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Space Hold Body inactive.png b/NoteSkins/kb7/default/Space Hold Body inactive.png deleted file mode 100644 index f4dbeaea82..0000000000 Binary files a/NoteSkins/kb7/default/Space Hold Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Space Hold BottomCap active.png b/NoteSkins/kb7/default/Space Hold BottomCap active.png deleted file mode 100644 index de8033e015..0000000000 Binary files a/NoteSkins/kb7/default/Space Hold BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Space Hold BottomCap inactive.png b/NoteSkins/kb7/default/Space Hold BottomCap inactive.png deleted file mode 100644 index 0604d261ee..0000000000 Binary files a/NoteSkins/kb7/default/Space Hold BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Space Hold Explosion 2x1.png b/NoteSkins/kb7/default/Space Hold Explosion 2x1.png deleted file mode 100644 index 3c0f693b3c..0000000000 Binary files a/NoteSkins/kb7/default/Space Hold Explosion 2x1.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Space Receptor.lua b/NoteSkins/kb7/default/Space Receptor.lua deleted file mode 100644 index b2edd4ec6c..0000000000 --- a/NoteSkins/kb7/default/Space Receptor.lua +++ /dev/null @@ -1 +0,0 @@ -return Def.Actor {} diff --git a/NoteSkins/kb7/default/Space Roll Body active.png b/NoteSkins/kb7/default/Space Roll Body active.png deleted file mode 100644 index 055d451ea2..0000000000 Binary files a/NoteSkins/kb7/default/Space Roll Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Space Roll Body inactive.png b/NoteSkins/kb7/default/Space Roll Body inactive.png deleted file mode 100644 index 9cac60073a..0000000000 Binary files a/NoteSkins/kb7/default/Space Roll Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Space Roll BottomCap active.png b/NoteSkins/kb7/default/Space Roll BottomCap active.png deleted file mode 100644 index a7286e8577..0000000000 Binary files a/NoteSkins/kb7/default/Space Roll BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Space Roll BottomCap inactive.png b/NoteSkins/kb7/default/Space Roll BottomCap inactive.png deleted file mode 100644 index ea25d9d0fd..0000000000 Binary files a/NoteSkins/kb7/default/Space Roll BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Space Tap Explosion Bright.png b/NoteSkins/kb7/default/Space Tap Explosion Bright.png deleted file mode 100644 index be0ba55b12..0000000000 Binary files a/NoteSkins/kb7/default/Space Tap Explosion Bright.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Space Tap Explosion Dim.png b/NoteSkins/kb7/default/Space Tap Explosion Dim.png deleted file mode 100644 index 0de23983a1..0000000000 Binary files a/NoteSkins/kb7/default/Space Tap Explosion Dim.png and /dev/null differ diff --git a/NoteSkins/kb7/default/Space Tap Note.lua b/NoteSkins/kb7/default/Space Tap Note.lua deleted file mode 100644 index 916fabe7e5..0000000000 --- a/NoteSkins/kb7/default/Space Tap Note.lua +++ /dev/null @@ -1,5 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_space', 'tap note' ); - -- probably don't need this line - Frames = Sprite.LinearFrames( 1, 1 ); -}; diff --git a/NoteSkins/kb7/default/_key tap note 4x8.png b/NoteSkins/kb7/default/_key tap note 4x8.png deleted file mode 100644 index 42028db2c0..0000000000 Binary files a/NoteSkins/kb7/default/_key tap note 4x8.png and /dev/null differ diff --git a/NoteSkins/kb7/default/_space tap note 1x8.png b/NoteSkins/kb7/default/_space tap note 1x8.png deleted file mode 100644 index b064d571b7..0000000000 Binary files a/NoteSkins/kb7/default/_space tap note 1x8.png and /dev/null differ diff --git a/NoteSkins/kb7/default/metrics.ini b/NoteSkins/kb7/default/metrics.ini deleted file mode 100644 index 6f1f91a104..0000000000 --- a/NoteSkins/kb7/default/metrics.ini +++ /dev/null @@ -1,68 +0,0 @@ -[Global] -#FallbackNoteSkin=common - -[NoteDisplay] -TapNoteAnimationIsVivid=0 -DrawHoldHeadForTapsOnSameRow=1 -TapNoteAnimationLength=4 -TapAdditionAnimationLength=4 -TapMineAnimationLength=1 -TapLiftAnimationLength=4 -HoldHeadAnimationLength=4 -HoldTopCapAnimationLength=4 -HoldBottomCapAnimationLength=4 -HoldBodyAnimationLength=4 -HoldTailAnimationLength=4 -StartDrawingHoldBodyOffsetFromHead=0 -StopDrawingHoldBodyOffsetFromTail=-32 -HoldLetGoGrayPercent=0.25 -ReverseDrawOrder=1101 -HoldHeadIsAboveWavyParts=1 -HoldTailIsAboveWavyParts=1 -TapNoteAdditionTextureCoordOffsetX=0 -TapNoteAdditionTextureCoordOffsetY=0 -FlipHeadAndTailWhenReverse=1 -FlipHoldBodyWhenReverse=1 -TopHoldAnchorWhenReverse=1 - -TapNoteNoteColorTextureCoordSpacingX=0 -TapNoteNoteColorTextureCoordSpacingY=0.125 -HoldHeadNoteColorTextureCoordSpacingX=0 -HoldHeadNoteColorTextureCoordSpacingY=0.125 - -[GhostArrowDim] -NoneCommand= -HitMineCommand=finishtweening;blend,'BlendMode_Add';diffuse,1,1,1,1;zoom,1;rotationz,0;smooth,0.3;rotationz,90;linear,0.3;rotationz,180;diffusealpha,0 -MissCommand= -W5Command=diffuse,0.8,0.0,0.6,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -W4Command=diffuse,0.3,0.8,1.0,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -W3Command=diffuse,0.0,1.0,0.4,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -W2Command=diffuse,1.0,1.0,0.3,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -W1Command=diffuse,1.0,1.0,1.0,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 - -LetGoCommand= -HeldCommand=diffuse,1.0,1.0,0.3,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 - -[GhostArrowBright] -NoneCommand= -HitMineCommand=finishtweening;blend,'BlendMode_Add';diffuse,1,1,1,1;zoom,1;rotationz,0;linear,0.3;rotationz,90;linear,0.3;rotationz,180;diffusealpha,0 -MissCommand= -W5Command=diffuse,0.8,0.0,0.6,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -W4Command=diffuse,0.3,0.8,1.0,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -W3Command=diffuse,0.0,1.0,0.4,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -W2Command=diffuse,1.0,1.0,0.3,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -W1Command=diffuse,1.0,1.0,1.0,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -LetGoCommand= -HeldCommand=diffuse,1.0,1.0,0.3,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 - -[ReceptorArrow] -W3Command= -W2Command= -W1Command= -InitCommand=effectclock,"beat";diffuseramp;effectcolor1,color("0.8,0.8,0.8,1");effectcolor2,color("1,1,1,1");effecttiming,0.2,0,0.8,0;effectoffset,0.05 -NoneCommand=zoom,0.8;linear,0.1;zoom,1 - -[ReceptorOverlay] -InitCommand=diffusealpha,0 -PressCommand=blend,"BlendMode_Add";diffusealpha,0.6 -LiftCommand=diffusealpha,0 \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Bar Go Receptor.png b/NoteSkins/kb7/orbital/Bar Go Receptor.png deleted file mode 100644 index 6df47f2f66..0000000000 Binary files a/NoteSkins/kb7/orbital/Bar Go Receptor.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/Bar Receptor.lua b/NoteSkins/kb7/orbital/Bar Receptor.lua deleted file mode 100644 index 8949ca99b6..0000000000 --- a/NoteSkins/kb7/orbital/Bar Receptor.lua +++ /dev/null @@ -1,13 +0,0 @@ -local t = Def.ActorFrame { - LoadActor( "Bar Go Receptor" )..{ - InitCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'InitCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - }; - LoadActor( "Bar Go Receptor" )..{ - InitCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'InitCommand'); - PressCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'PressCommand'); - LiftCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'LiftCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - }; -}; -return t; diff --git a/NoteSkins/kb7/orbital/Noteskin.lua b/NoteSkins/kb7/orbital/Noteskin.lua deleted file mode 100644 index f3ab950d60..0000000000 --- a/NoteSkins/kb7/orbital/Noteskin.lua +++ /dev/null @@ -1,107 +0,0 @@ --- from scratch, with various references. -local Noteskin = ... or {}; - --- element redirs -Noteskin.ElementRedirs = { - -- ["element"] = "redir_element"; -}; - --- button redirs (since this is a bar noteskin, it's all the same) -Noteskin.ButtonRedirs = { - -- dance - Left = "Red"; - UpLeft = "Red"; - Up = "Red"; - Down = "Red"; - UpRight = "Red"; - Right = "Red"; - -- kb7 - Key1 = "Red"; - Key2 = "Red"; - Key3 = "Red"; - Key4 = "Yellow"; - Key5 = "Red"; - Key6 = "Red"; - Key7 = "Red"; - -- pump - DownLeft = "Bar"; - DownRight = "Bar"; - Center = "Bar"; -}; - --- things to blank out -Noteskin.Hide = { - -- ["element"] = true/false; - ["Hold Topcap Active"] = true, - ["Hold Topcap Inactive"] = true, - ["Roll Topcap Active"] = true, - ["Roll Topcap Inactive"] = true, - ["Hold Tail Active"] = true, - ["Hold Tail Inactive"] = true, - ["Roll Tail Active"] = true, - ["Roll Tail Inactive"] = true -}; - --- rotations -Noteskin.BaseRotX = { - Left = 0; - UpLeft = 0; - Up = 0; - Down = 0; - UpRight = 0; - Right = 0; -}; -Noteskin.BaseRotY = { - Left = 0; - UpLeft = 0; - Up = 0; - Down = 0; - UpRight = 0; - Right = 0; -}; - -local function NoteskinLoader() - local Button = Var "Button" - local Element = Var "Element" - - if Noteskin.Hide[Element] then - -- Return a blank element. If SpriteOnly is set, we need to return a - -- sprite; otherwise just return a dummy actor. - local t; - if Var "SpriteOnly" then - t = LoadActor( "_blank" ); - else - t = Def.Actor {}; - end - return t .. { - cmd(visible,false); - }; - end; - - -- load element and button, using redirs - local LoadElement = Noteskin.ElementRedirs[Element] - if not LoadElement then - LoadElement = Element; - end; - - local LoadButton = Noteskin.ButtonRedirs[Button] - if not LoadButton then - LoadButton = Button; - end; - - -- get path to thing - local sPath = NOTESKIN:GetPath( LoadButton, LoadElement ); - - -- make actor - local t = LoadActor( sPath ); - - -- apply rotation - t.BaseRotationX=Noteskin.BaseRotX[sButton] - t.BaseRotationY=Noteskin.BaseRotY[sButton] - - return t; -end - -Noteskin.Load = NoteskinLoader; -Noteskin.CommonLoad = NoteskinLoader; -return Noteskin; \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Red Hold Body active.png b/NoteSkins/kb7/orbital/Red Hold Body active.png deleted file mode 100644 index 60a62549f6..0000000000 Binary files a/NoteSkins/kb7/orbital/Red Hold Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/Red Hold Body inactive.png b/NoteSkins/kb7/orbital/Red Hold Body inactive.png deleted file mode 100644 index 4ef3a238d1..0000000000 Binary files a/NoteSkins/kb7/orbital/Red Hold Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/Red Hold BottomCap Inactive.png b/NoteSkins/kb7/orbital/Red Hold BottomCap Inactive.png deleted file mode 100644 index e97dd7f33e..0000000000 Binary files a/NoteSkins/kb7/orbital/Red Hold BottomCap Inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/Red Hold BottomCap active.png b/NoteSkins/kb7/orbital/Red Hold BottomCap active.png deleted file mode 100644 index 699cdd5445..0000000000 Binary files a/NoteSkins/kb7/orbital/Red Hold BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/Red Hold Explosion 2x1.png b/NoteSkins/kb7/orbital/Red Hold Explosion 2x1.png deleted file mode 100644 index a91319d791..0000000000 Binary files a/NoteSkins/kb7/orbital/Red Hold Explosion 2x1.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/Red Hold Head active.redir b/NoteSkins/kb7/orbital/Red Hold Head active.redir deleted file mode 100644 index 0003e7ec31..0000000000 --- a/NoteSkins/kb7/orbital/Red Hold Head active.redir +++ /dev/null @@ -1 +0,0 @@ -Red Tap Note \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Red Hold Head inactive.redir b/NoteSkins/kb7/orbital/Red Hold Head inactive.redir deleted file mode 100644 index 0003e7ec31..0000000000 --- a/NoteSkins/kb7/orbital/Red Hold Head inactive.redir +++ /dev/null @@ -1 +0,0 @@ -Red Tap Note \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Red Receptor.redir b/NoteSkins/kb7/orbital/Red Receptor.redir deleted file mode 100644 index b5b756e170..0000000000 --- a/NoteSkins/kb7/orbital/Red Receptor.redir +++ /dev/null @@ -1 +0,0 @@ -Bar Receptor \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Red Roll Body active.png b/NoteSkins/kb7/orbital/Red Roll Body active.png deleted file mode 100644 index ac9daa346f..0000000000 Binary files a/NoteSkins/kb7/orbital/Red Roll Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/Red Roll Body inactive.png b/NoteSkins/kb7/orbital/Red Roll Body inactive.png deleted file mode 100644 index 2ca5f5d03c..0000000000 Binary files a/NoteSkins/kb7/orbital/Red Roll Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/Red Roll BottomCap active.png b/NoteSkins/kb7/orbital/Red Roll BottomCap active.png deleted file mode 100644 index 8a9fffffa6..0000000000 Binary files a/NoteSkins/kb7/orbital/Red Roll BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/Red Roll BottomCap inactive.png b/NoteSkins/kb7/orbital/Red Roll BottomCap inactive.png deleted file mode 100644 index 02a27b822a..0000000000 Binary files a/NoteSkins/kb7/orbital/Red Roll BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/Red Roll Explosion.redir b/NoteSkins/kb7/orbital/Red Roll Explosion.redir deleted file mode 100644 index da28ad4cc1..0000000000 --- a/NoteSkins/kb7/orbital/Red Roll Explosion.redir +++ /dev/null @@ -1 +0,0 @@ -Red Hold Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Red Roll Head active.redir b/NoteSkins/kb7/orbital/Red Roll Head active.redir deleted file mode 100644 index 0003e7ec31..0000000000 --- a/NoteSkins/kb7/orbital/Red Roll Head active.redir +++ /dev/null @@ -1 +0,0 @@ -Red Tap Note \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Red Roll Head inactive.redir b/NoteSkins/kb7/orbital/Red Roll Head inactive.redir deleted file mode 100644 index 0003e7ec31..0000000000 --- a/NoteSkins/kb7/orbital/Red Roll Head inactive.redir +++ /dev/null @@ -1 +0,0 @@ -Red Tap Note \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Red Tap Explosion Bright.png b/NoteSkins/kb7/orbital/Red Tap Explosion Bright.png deleted file mode 100644 index 892e327c58..0000000000 Binary files a/NoteSkins/kb7/orbital/Red Tap Explosion Bright.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/Red Tap Explosion Dim.png b/NoteSkins/kb7/orbital/Red Tap Explosion Dim.png deleted file mode 100644 index cbd86ed7e0..0000000000 Binary files a/NoteSkins/kb7/orbital/Red Tap Explosion Dim.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/Red Tap Note.lua b/NoteSkins/kb7/orbital/Red Tap Note.lua deleted file mode 100644 index 6566bc622b..0000000000 --- a/NoteSkins/kb7/orbital/Red Tap Note.lua +++ /dev/null @@ -1,6 +0,0 @@ -local t = Def.Model { - Meshes=NOTESKIN:GetPath('','model/note.txt'); - Materials=NOTESKIN:GetPath('','model/grey.txt'); - Bones=NOTESKIN:GetPath('','model/note.txt'); -}; -return t; \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Yellow Go Receptor.png b/NoteSkins/kb7/orbital/Yellow Go Receptor.png deleted file mode 100644 index a7b7c3e99f..0000000000 Binary files a/NoteSkins/kb7/orbital/Yellow Go Receptor.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/Yellow Hold Body active.redir b/NoteSkins/kb7/orbital/Yellow Hold Body active.redir deleted file mode 100644 index 9fc409bec9..0000000000 --- a/NoteSkins/kb7/orbital/Yellow Hold Body active.redir +++ /dev/null @@ -1 +0,0 @@ -Red Hold Body active \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Yellow Hold Body inactive.redir b/NoteSkins/kb7/orbital/Yellow Hold Body inactive.redir deleted file mode 100644 index f3b5db1edd..0000000000 --- a/NoteSkins/kb7/orbital/Yellow Hold Body inactive.redir +++ /dev/null @@ -1 +0,0 @@ -Red Hold Body inactive \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Yellow Hold BottomCap active.redir b/NoteSkins/kb7/orbital/Yellow Hold BottomCap active.redir deleted file mode 100644 index fe8795d50b..0000000000 --- a/NoteSkins/kb7/orbital/Yellow Hold BottomCap active.redir +++ /dev/null @@ -1 +0,0 @@ -Red Hold BottomCap active \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Yellow Hold BottomCap inactive.redir b/NoteSkins/kb7/orbital/Yellow Hold BottomCap inactive.redir deleted file mode 100644 index 9f75e3831b..0000000000 --- a/NoteSkins/kb7/orbital/Yellow Hold BottomCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -Red Hold BottomCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Yellow Hold Explosion.redir b/NoteSkins/kb7/orbital/Yellow Hold Explosion.redir deleted file mode 100644 index da28ad4cc1..0000000000 --- a/NoteSkins/kb7/orbital/Yellow Hold Explosion.redir +++ /dev/null @@ -1 +0,0 @@ -Red Hold Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Yellow Hold Head active.redir b/NoteSkins/kb7/orbital/Yellow Hold Head active.redir deleted file mode 100644 index c2bf288384..0000000000 --- a/NoteSkins/kb7/orbital/Yellow Hold Head active.redir +++ /dev/null @@ -1 +0,0 @@ -Yellow Tap Note \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Yellow Hold Head inactive.redir b/NoteSkins/kb7/orbital/Yellow Hold Head inactive.redir deleted file mode 100644 index c2bf288384..0000000000 --- a/NoteSkins/kb7/orbital/Yellow Hold Head inactive.redir +++ /dev/null @@ -1 +0,0 @@ -Yellow Tap Note \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Yellow Receptor.lua b/NoteSkins/kb7/orbital/Yellow Receptor.lua deleted file mode 100644 index 9e1201f817..0000000000 --- a/NoteSkins/kb7/orbital/Yellow Receptor.lua +++ /dev/null @@ -1,13 +0,0 @@ -local t = Def.ActorFrame { - LoadActor( "Yellow Go Receptor" )..{ - InitCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'InitCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - }; - LoadActor( "Yellow Go Receptor" )..{ - InitCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'InitCommand'); - PressCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'PressCommand'); - LiftCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'LiftCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - }; -}; -return t; diff --git a/NoteSkins/kb7/orbital/Yellow Roll Body active.redir b/NoteSkins/kb7/orbital/Yellow Roll Body active.redir deleted file mode 100644 index 4cf2f5318c..0000000000 --- a/NoteSkins/kb7/orbital/Yellow Roll Body active.redir +++ /dev/null @@ -1 +0,0 @@ -Red Roll Body active \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Yellow Roll Body inactive.redir b/NoteSkins/kb7/orbital/Yellow Roll Body inactive.redir deleted file mode 100644 index d13ee23a3f..0000000000 --- a/NoteSkins/kb7/orbital/Yellow Roll Body inactive.redir +++ /dev/null @@ -1 +0,0 @@ -Red Roll Body inactive \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Yellow Roll BottomCap active.redir b/NoteSkins/kb7/orbital/Yellow Roll BottomCap active.redir deleted file mode 100644 index af22bc8d64..0000000000 --- a/NoteSkins/kb7/orbital/Yellow Roll BottomCap active.redir +++ /dev/null @@ -1 +0,0 @@ -Red Roll BottomCap active \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Yellow Roll BottomCap inactive.redir b/NoteSkins/kb7/orbital/Yellow Roll BottomCap inactive.redir deleted file mode 100644 index bb11bc8176..0000000000 --- a/NoteSkins/kb7/orbital/Yellow Roll BottomCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -Red Roll BottomCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Yellow Roll Explosion.redir b/NoteSkins/kb7/orbital/Yellow Roll Explosion.redir deleted file mode 100644 index da28ad4cc1..0000000000 --- a/NoteSkins/kb7/orbital/Yellow Roll Explosion.redir +++ /dev/null @@ -1 +0,0 @@ -Red Hold Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Yellow Roll Head active.redir b/NoteSkins/kb7/orbital/Yellow Roll Head active.redir deleted file mode 100644 index 0003e7ec31..0000000000 --- a/NoteSkins/kb7/orbital/Yellow Roll Head active.redir +++ /dev/null @@ -1 +0,0 @@ -Red Tap Note \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Yellow Roll Head inactive.redir b/NoteSkins/kb7/orbital/Yellow Roll Head inactive.redir deleted file mode 100644 index 0003e7ec31..0000000000 --- a/NoteSkins/kb7/orbital/Yellow Roll Head inactive.redir +++ /dev/null @@ -1 +0,0 @@ -Red Tap Note \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/Yellow Tap Explosion Bright.png b/NoteSkins/kb7/orbital/Yellow Tap Explosion Bright.png deleted file mode 100644 index bf1b0d6e35..0000000000 Binary files a/NoteSkins/kb7/orbital/Yellow Tap Explosion Bright.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/Yellow Tap Explosion Dim.png b/NoteSkins/kb7/orbital/Yellow Tap Explosion Dim.png deleted file mode 100644 index 75f83555c6..0000000000 Binary files a/NoteSkins/kb7/orbital/Yellow Tap Explosion Dim.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/Yellow Tap Note.lua b/NoteSkins/kb7/orbital/Yellow Tap Note.lua deleted file mode 100644 index c15e17da25..0000000000 --- a/NoteSkins/kb7/orbital/Yellow Tap Note.lua +++ /dev/null @@ -1,6 +0,0 @@ -local t = Def.Model { - Meshes=NOTESKIN:GetPath('','model/note-wide.txt'); - Materials=NOTESKIN:GetPath('','model/yellow.txt'); - Bones=NOTESKIN:GetPath('','model/note-wide.txt'); -}; -return t; \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/_blank.png b/NoteSkins/kb7/orbital/_blank.png deleted file mode 100644 index f66cc02e06..0000000000 Binary files a/NoteSkins/kb7/orbital/_blank.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/_blue tap note 4x1.png b/NoteSkins/kb7/orbital/_blue tap note 4x1.png deleted file mode 100644 index a70eced83f..0000000000 Binary files a/NoteSkins/kb7/orbital/_blue tap note 4x1.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/_red tap note 4x1.png b/NoteSkins/kb7/orbital/_red tap note 4x1.png deleted file mode 100644 index 48ed1777e8..0000000000 Binary files a/NoteSkins/kb7/orbital/_red tap note 4x1.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/_yellow tap note 4x1.png b/NoteSkins/kb7/orbital/_yellow tap note 4x1.png deleted file mode 100644 index e044794706..0000000000 Binary files a/NoteSkins/kb7/orbital/_yellow tap note 4x1.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/metrics.ini b/NoteSkins/kb7/orbital/metrics.ini deleted file mode 100644 index f9399725ee..0000000000 --- a/NoteSkins/kb7/orbital/metrics.ini +++ /dev/null @@ -1,68 +0,0 @@ -[Global] -#FallbackNoteSkin=common - -[NoteDisplay] -TapNoteAnimationIsVivid=0 -DrawHoldHeadForTapsOnSameRow=1 -TapNoteAnimationLengthInBeats=4 -TapAdditionAnimationLengthInBeats=4 -TapMineAnimationLengthInBeats=1 -TapLiftAnimationLengthInBeats=4 -HoldHeadAnimationLengthInBeats=4 -HoldTopCapAnimationLengthInBeats=4 -HoldBottomCapAnimationLengthInBeats=4 -HoldBodyAnimationLengthInBeats=4 -HoldTailAnimationLengthInBeats=4 -StartDrawingHoldBodyOffsetFromHead=0 -StopDrawingHoldBodyOffsetFromTail=-32 -HoldLetGoGrayPercent=0.25 -ReverseDrawOrder=1101 -HoldHeadIsAboveWavyParts=1 -HoldTailIsAboveWavyParts=1 -TapNoteAdditionTextureCoordOffsetX=0 -TapNoteAdditionTextureCoordOffsetY=0 -FlipHeadAndTailWhenReverse=1 -FlipHoldBodyWhenReverse=1 -TopHoldAnchorWhenReverse=1 - -TapNoteNoteColorTextureCoordSpacingX=0.125 -TapNoteNoteColorTextureCoordSpacingY=0 -HoldHeadNoteColorTextureCoordSpacingX=0.125 -HoldHeadNoteColorTextureCoordSpacingY=0 - -[GhostArrowDim] -NoneCommand= -HitMineCommand=finishtweening;blend,'BlendMode_Add';diffuse,1,1,1,1;zoom,1;rotationz,0;smooth,0.3;rotationz,90;linear,0.3;rotationz,180;diffusealpha,0 -MissCommand= -W5Command=diffuse,0.8,0.0,0.6,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -W4Command=diffuse,0.3,0.8,1.0,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -W3Command=diffuse,0.0,1.0,0.4,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -W2Command=diffuse,1.0,1.0,0.3,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -W1Command=diffuse,1.0,1.0,1.0,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 - -LetGoCommand= -HeldCommand=diffuse,1.0,1.0,0.3,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 - -[GhostArrowBright] -NoneCommand= -HitMineCommand=finishtweening;blend,'BlendMode_Add';diffuse,1,1,1,1;zoom,1;rotationz,0;linear,0.3;rotationz,90;linear,0.3;rotationz,180;diffusealpha,0 -MissCommand= -W5Command=diffuse,0.8,0.0,0.6,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -W4Command=diffuse,0.3,0.8,1.0,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -W3Command=diffuse,0.0,1.0,0.4,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -W2Command=diffuse,1.0,1.0,0.3,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -W1Command=diffuse,1.0,1.0,1.0,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 -LetGoCommand= -HeldCommand=diffuse,1.0,1.0,0.3,1;zoom,1;decelerate,0.1;zoom,1.1;decelerate,0.1;diffusealpha,0 - -[ReceptorArrow] -W3Command= -W2Command= -W1Command= -InitCommand=effectclock,"beat";diffuseramp;effectcolor1,color("0.8,0.8,0.8,1");effectcolor2,color("1,1,1,1");effecttiming,0.2,0,0.8,0;effectoffset,0.05 -NoneCommand=zoom,0.8;linear,0.1;zoom,1 - -[ReceptorOverlay] -InitCommand=diffusealpha,0 -PressCommand=blend,"BlendMode_Add";diffusealpha,0.6 -LiftCommand=diffusealpha,0 \ No newline at end of file diff --git a/NoteSkins/kb7/orbital/model/_grey (no mipmaps).png b/NoteSkins/kb7/orbital/model/_grey (no mipmaps).png deleted file mode 100644 index cb844070f5..0000000000 Binary files a/NoteSkins/kb7/orbital/model/_grey (no mipmaps).png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/model/_yellow (no mipmaps).png b/NoteSkins/kb7/orbital/model/_yellow (no mipmaps).png deleted file mode 100644 index 6144599911..0000000000 Binary files a/NoteSkins/kb7/orbital/model/_yellow (no mipmaps).png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/model/grey.txt b/NoteSkins/kb7/orbital/model/grey.txt deleted file mode 100644 index 9537f3cdb4..0000000000 --- a/NoteSkins/kb7/orbital/model/grey.txt +++ /dev/null @@ -1,19 +0,0 @@ -Materials: 2 -"scroll" -0.000000 0.000000 0.000000 1.000000 -0.800000 0.800000 0.800000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"scroller.ini" -"" -"frame" -0.000000 0.000000 0.000000 1.000000 -0.800000 0.800000 0.800000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"_grey (no mipmaps).png" -"" diff --git a/NoteSkins/kb7/orbital/model/note-wide.txt b/NoteSkins/kb7/orbital/model/note-wide.txt deleted file mode 100644 index be213d8a14..0000000000 --- a/NoteSkins/kb7/orbital/model/note-wide.txt +++ /dev/null @@ -1,316 +0,0 @@ -// MilkShape 3D ASCII - -Frames: 30 -Frame: 1 - -Meshes: 2 -"scroll" 0 0 -17 -0 28.576029 12.295176 2.879607 0.114769 0.235221 -1 -0 22.456854 18.468002 2.879607 0.103466 0.102288 -1 -0 0.000001 -0.000001 2.879607 0.061984 0.500000 -1 -0 31.867174 4.250518 2.879607 0.120849 0.408464 -1 -0 31.829239 -4.441243 2.879607 0.120779 0.595643 -1 -0 28.467997 -12.456865 2.879607 0.114570 0.768261 -1 -0 22.295166 -18.576036 2.879607 0.103167 0.900038 -1 -0 14.250505 -21.867176 2.879607 0.088308 0.970913 -1 -0 -14.441256 -21.829237 2.879607 0.035309 0.970096 -1 -0 -22.456873 -18.467987 2.879607 0.020503 0.897711 -1 -0 -28.576046 -12.295153 2.879607 0.009200 0.764778 -1 -0 -31.867182 -4.250491 2.879607 0.003120 0.591535 -1 -0 -31.829235 4.441269 2.879607 0.003190 0.404357 -1 -0 -28.467979 12.456886 2.879607 0.009399 0.231739 -1 -0 -22.295141 18.576052 2.879607 0.020802 0.099962 -1 -0 -14.250477 21.867180 2.879607 0.035661 0.029087 -1 -0 14.441284 21.829229 2.879607 0.088660 0.029904 -1 -1 -0.000000 0.000000 1.000000 -16 -0 0 1 2 0 0 0 1 -0 2 3 0 0 0 0 1 -0 2 4 3 0 0 0 1 -0 2 5 4 0 0 0 1 -0 2 6 5 0 0 0 1 -0 2 7 6 0 0 0 1 -0 2 8 7 0 0 0 1 -0 2 9 8 0 0 0 1 -0 2 10 9 0 0 0 1 -0 2 11 10 0 0 0 1 -0 2 12 11 0 0 0 1 -0 2 13 12 0 0 0 1 -0 2 14 13 0 0 0 1 -0 2 15 14 0 0 0 1 -0 2 16 15 0 0 0 1 -0 2 1 16 0 0 0 1 -"frame" 1 1 -65 -1 0.000000 -0.000000 3.321190 0.500000 0.500000 -1 -1 27.639259 11.675143 3.321190 0.856463 0.427477 -1 -1 21.828669 17.536682 3.321190 0.801575 0.296586 -1 -1 30.764435 4.036170 3.321190 0.857082 0.569410 -1 -1 30.728415 -4.217276 3.321190 0.803338 0.700776 -1 -1 27.536673 -11.828679 3.321190 0.703414 0.801575 -1 -1 21.675133 -17.639269 3.321190 0.572522 0.856463 -1 -1 14.036156 -20.764439 3.321190 0.430590 0.857082 -1 -1 -14.217289 -20.728411 3.321190 0.299224 0.803338 -1 -1 -21.828686 -17.536667 3.321190 0.198425 0.703414 -1 -1 -27.639275 -11.675121 3.321190 0.143537 0.572522 -1 -1 -30.764442 -4.036143 3.321190 0.142919 0.430589 -1 -1 -30.728407 4.217301 3.321190 0.196662 0.299224 -1 -1 -27.536659 11.828699 3.321190 0.296586 0.198425 -1 -1 -21.675112 17.639282 3.321190 0.427478 0.143538 -1 -1 -14.036130 20.764444 3.321190 0.569411 0.142919 -1 -1 14.217316 20.728405 3.321190 0.700777 0.196662 -1 -1 23.683174 20.286118 3.156490 0.848857 0.264694 -1 -1 30.404764 13.505603 3.156490 0.912349 0.416107 -1 -1 34.019917 4.668982 3.156490 0.913065 0.580292 -1 -1 33.978256 -4.878449 3.156490 0.850896 0.732254 -1 -1 30.286112 -13.683181 3.156490 0.735306 0.848857 -1 -1 23.505600 -20.404768 3.156490 0.583893 0.912349 -1 -1 14.668977 -24.019918 3.156490 0.419708 0.913065 -1 -1 -14.878452 -23.978252 3.156490 0.267746 0.850896 -1 -1 -23.683182 -20.286110 3.156490 0.151143 0.735306 -1 -1 -30.404770 -13.505592 3.156490 0.087651 0.583893 -1 -1 -34.019920 -4.668968 3.156490 0.086935 0.419708 -1 -1 -33.978249 4.878465 3.156490 0.149104 0.267746 -1 -1 -30.286102 13.683196 3.156490 0.264694 0.151143 -1 -1 -23.505577 20.404779 3.156490 0.416107 0.087651 -1 -1 -14.668951 24.019922 3.156490 0.580293 0.086935 -1 -1 14.878481 23.978243 3.156490 0.732254 0.149104 -1 -1 26.305698 24.174189 -0.301926 0.917477 0.218408 -1 -1 25.196014 22.529018 1.012907 0.887427 0.238677 -1 -1 32.660770 14.998834 1.012907 0.957940 0.406831 -1 -1 34.315567 16.094122 -0.301926 0.993459 0.399605 -1 -1 36.675629 5.185213 1.012907 0.958735 0.589169 -1 -1 38.623604 5.563864 -0.301926 0.994316 0.596085 -1 -1 36.629364 -5.417810 1.012907 0.889693 0.757932 -1 -1 38.573959 -5.813441 -0.301926 0.919919 0.777938 -1 -1 32.529015 -15.196017 1.012907 0.761323 0.887427 -1 -1 34.174187 -16.305698 -0.301926 0.781592 0.917477 -1 -1 24.998833 -22.660772 1.012907 0.593169 0.957940 -1 -1 26.094122 -24.315565 -0.301926 0.600395 0.993459 -1 -1 15.185220 -26.675629 1.012907 0.410831 0.958735 -1 -1 15.563870 -28.623604 -0.301926 0.403915 0.994316 -1 -1 -15.417803 -26.629364 1.012907 0.242068 0.889693 -1 -1 -15.813432 -28.573965 -0.301926 0.222062 0.919919 -1 -1 -25.196011 -22.529020 1.012907 0.112573 0.761323 -1 -1 -26.305689 -24.174196 -0.301926 0.082523 0.781592 -1 -1 -32.660770 -14.998836 1.012907 0.042060 0.593169 -1 -1 -34.315559 -16.094126 -0.301926 0.006541 0.600395 -1 -1 -36.675629 -5.185212 1.012907 0.041265 0.410831 -1 -1 -38.623604 -5.563865 -0.301926 0.005684 0.403915 -1 -1 -36.629356 5.417814 1.012907 0.110308 0.242068 -1 -1 -38.573959 5.813443 -0.301926 0.080082 0.222062 -1 -1 -32.529011 15.196029 1.012907 0.238677 0.112573 -1 -1 -34.174187 16.305708 -0.301926 0.218408 0.082523 -1 -1 -24.998821 22.660780 1.012907 0.406831 0.042060 -1 -1 -26.094109 24.315575 -0.301926 0.399605 0.006541 -1 -1 -15.185204 26.675629 1.012907 0.589169 0.041265 -1 -1 -15.563847 28.623608 -0.301926 0.596086 0.005684 -1 -1 15.417831 26.629356 1.012907 0.757932 0.110308 -1 -1 15.813461 28.573956 -0.301926 0.777938 0.080082 -1 -65 -0.000000 0.000000 1.000000 -0.023734 0.018076 0.999555 -0.015010 0.025783 0.999555 -0.028845 0.007618 0.999555 -0.029564 -0.004001 0.999555 -0.025783 -0.015010 0.999555 -0.018076 -0.023734 0.999555 -0.007649 -0.028839 0.999555 --0.003940 -0.029565 0.999555 --0.015010 -0.025783 0.999555 --0.023734 -0.018076 0.999555 --0.028845 -0.007618 0.999555 --0.029565 0.004001 0.999555 --0.025783 0.015010 0.999555 --0.018076 0.023734 0.999555 --0.007649 0.028839 0.999555 -0.003940 0.029565 0.999555 -0.179817 0.302000 0.936196 -0.281699 0.210198 0.936196 -0.340695 0.086397 0.936196 -0.347824 -0.050559 0.936196 -0.302000 -0.179817 0.936196 -0.210198 -0.281699 0.936196 -0.086772 -0.340640 0.936181 --0.049893 -0.347841 0.936225 --0.179817 -0.301999 0.936196 --0.281699 -0.210198 0.936196 --0.340695 -0.086396 0.936196 --0.347824 0.050559 0.936196 --0.302000 0.179817 0.936196 --0.210198 0.281699 0.936196 --0.086772 0.340641 0.936181 -0.049893 0.347841 0.936225 -0.338996 0.437135 0.833064 -0.330211 0.485536 0.809454 -0.490881 0.322210 0.809454 -0.480475 0.274131 0.833064 -0.576820 0.109832 0.809454 -0.548807 0.069395 0.833063 -0.574943 -0.119268 0.809454 -0.533588 -0.145907 0.833063 -0.485536 -0.330211 0.809454 -0.437135 -0.338996 0.833064 -0.322211 -0.490881 0.809454 -0.274132 -0.480475 0.833064 -0.110702 -0.576729 0.809400 -0.070446 -0.548768 0.833001 --0.118450 -0.575039 0.809506 --0.145397 -0.533702 0.833080 --0.330210 -0.485536 0.809454 --0.338996 -0.437135 0.833064 --0.490881 -0.322211 0.809454 --0.480475 -0.274132 0.833064 --0.576820 -0.109831 0.809454 --0.548807 -0.069395 0.833064 --0.574943 0.119268 0.809454 --0.533587 0.145907 0.833064 --0.485535 0.330210 0.809454 --0.437134 0.338996 0.833064 --0.322210 0.490881 0.809454 --0.274131 0.480475 0.833064 --0.110701 0.576729 0.809400 --0.070446 0.548768 0.833001 -0.118450 0.575039 0.809506 -0.145397 0.533702 0.833080 -112 -1 0 1 2 0 1 2 2 -1 0 3 1 0 3 1 2 -1 0 4 3 0 4 3 2 -1 0 5 4 0 5 4 2 -1 0 6 5 0 6 5 2 -1 0 7 6 0 7 6 2 -1 0 8 7 0 8 7 2 -1 0 9 8 0 9 8 2 -1 0 10 9 0 10 9 2 -1 0 11 10 0 11 10 2 -1 0 12 11 0 12 11 2 -1 0 13 12 0 13 12 2 -1 0 14 13 0 14 13 2 -1 0 15 14 0 15 14 2 -1 0 16 15 0 16 15 2 -1 0 2 16 0 2 16 2 -1 17 2 1 17 2 1 2 -1 17 1 18 17 1 18 2 -1 18 1 3 18 1 3 2 -1 18 3 19 18 3 19 2 -1 19 3 4 19 3 4 2 -1 19 4 20 19 4 20 2 -1 20 4 5 20 4 5 2 -1 20 5 21 20 5 21 2 -1 21 5 6 21 5 6 2 -1 21 6 22 21 6 22 2 -1 22 6 7 22 6 7 2 -1 22 7 23 22 7 23 2 -1 23 7 8 23 7 8 2 -1 23 8 24 23 8 24 2 -1 24 8 9 24 8 9 2 -1 24 9 25 24 9 25 2 -1 25 9 10 25 9 10 2 -1 25 10 26 25 10 26 2 -1 26 10 11 26 10 11 2 -1 26 11 27 26 11 27 2 -1 27 11 12 27 11 12 2 -1 27 12 28 27 12 28 2 -1 28 12 13 28 12 13 2 -1 28 13 29 28 13 29 2 -1 29 13 14 29 13 14 2 -1 29 14 30 29 14 30 2 -1 30 14 15 30 14 15 2 -1 30 15 31 30 15 31 2 -1 31 15 16 31 15 16 2 -1 31 16 32 31 16 32 2 -1 2 17 32 2 17 32 2 -1 2 32 16 2 32 16 2 -1 33 34 35 33 34 35 2 -1 33 35 36 33 35 36 2 -1 34 17 18 34 17 18 2 -1 34 18 35 34 18 35 2 -1 36 35 37 36 35 37 2 -1 36 37 38 36 37 38 2 -1 35 18 19 35 18 19 2 -1 35 19 37 35 19 37 2 -1 38 37 39 38 37 39 2 -1 38 39 40 38 39 40 2 -1 37 19 20 37 19 20 2 -1 37 20 39 37 20 39 2 -1 40 39 41 40 39 41 2 -1 40 41 42 40 41 42 2 -1 39 20 21 39 20 21 2 -1 39 21 41 39 21 41 2 -1 42 41 43 42 41 43 2 -1 42 43 44 42 43 44 2 -1 41 21 22 41 21 22 2 -1 41 22 43 41 22 43 2 -1 44 43 45 44 43 45 2 -1 44 45 46 44 45 46 2 -1 43 22 23 43 22 23 2 -1 43 23 45 43 23 45 2 -1 46 45 47 46 45 47 2 -1 46 47 48 46 47 48 2 -1 45 23 24 45 23 24 2 -1 45 24 47 45 24 47 2 -1 48 47 49 48 47 49 2 -1 48 49 50 48 49 50 2 -1 47 24 25 47 24 25 2 -1 47 25 49 47 25 49 2 -1 50 49 51 50 49 51 2 -1 50 51 52 50 51 52 2 -1 49 25 26 49 25 26 2 -1 49 26 51 49 26 51 2 -1 52 51 53 52 51 53 2 -1 52 53 54 52 53 54 2 -1 51 26 27 51 26 27 2 -1 51 27 53 51 27 53 2 -1 54 53 55 54 53 55 2 -1 54 55 56 54 55 56 2 -1 53 27 28 53 27 28 2 -1 53 28 55 53 28 55 2 -1 56 55 57 56 55 57 2 -1 56 57 58 56 57 58 2 -1 55 28 29 55 28 29 2 -1 55 29 57 55 29 57 2 -1 58 57 59 58 57 59 2 -1 58 59 60 58 59 60 2 -1 57 29 30 57 29 30 2 -1 57 30 59 57 30 59 2 -1 60 59 61 60 59 61 2 -1 60 61 62 60 61 62 2 -1 59 30 31 59 30 31 2 -1 59 31 61 59 31 61 2 -1 62 61 63 62 61 63 2 -1 62 63 64 62 63 64 2 -1 61 31 32 61 31 32 2 -1 61 32 63 61 32 63 2 -1 17 34 63 17 34 63 2 -1 17 63 32 17 63 32 2 -1 34 33 64 34 33 64 2 -1 34 64 63 34 64 63 2 - -Materials: 2 -"scroll" -0.000000 0.000000 0.000000 1.000000 -0.800000 0.800000 0.800000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"frame" -0.000000 0.000000 0.000000 1.000000 -0.800000 0.800000 0.800000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" - -Bones: 0 -GroupComments: 0 -MaterialComments: 0 -BoneComments: 0 -ModelComment: 0 diff --git a/NoteSkins/kb7/orbital/model/note.txt b/NoteSkins/kb7/orbital/model/note.txt deleted file mode 100644 index cf74519852..0000000000 --- a/NoteSkins/kb7/orbital/model/note.txt +++ /dev/null @@ -1,316 +0,0 @@ -// MilkShape 3D ASCII - -Frames: 30 -Frame: 1 - -Meshes: 2 -"scroll" 0 0 -17 -0 18.576029 12.295176 2.879607 0.112493 0.233639 -1 -0 12.456854 18.468002 2.879607 0.095922 0.099912 -1 -0 0.000001 -0.000001 2.879607 0.062189 0.500000 -1 -0 21.867174 4.250518 2.879607 0.121405 0.407917 -1 -0 21.829239 -4.441243 2.879607 0.121302 0.596214 -1 -0 18.467995 -12.456865 2.879607 0.112200 0.769864 -1 -0 12.295166 -18.576036 2.879607 0.095484 0.902428 -1 -0 4.250505 -21.867176 2.879607 0.073699 0.973727 -1 -0 -4.441256 -21.829237 2.879607 0.050162 0.972905 -1 -0 -12.456874 -18.467987 2.879607 0.028456 0.900088 -1 -0 -18.576044 -12.295153 2.879607 0.011886 0.766360 -1 -0 -21.867182 -4.250491 2.879607 0.002973 0.592082 -1 -0 -21.829233 4.441269 2.879607 0.003076 0.403785 -1 -0 -18.467979 12.456886 2.879607 0.012178 0.230136 -1 -0 -12.295140 18.576052 2.879607 0.028894 0.097571 -1 -0 -4.250477 21.867180 2.879607 0.050679 0.026273 -1 -0 4.441284 21.829229 2.879607 0.074216 0.027095 -1 -1 -0.000000 0.000000 1.000000 -16 -0 0 1 2 0 0 0 1 -0 2 3 0 0 0 0 1 -0 2 4 3 0 0 0 1 -0 2 5 4 0 0 0 1 -0 2 6 5 0 0 0 1 -0 2 7 6 0 0 0 1 -0 2 8 7 0 0 0 1 -0 2 9 8 0 0 0 1 -0 2 10 9 0 0 0 1 -0 2 11 10 0 0 0 1 -0 2 12 11 0 0 0 1 -0 2 13 12 0 0 0 1 -0 2 14 13 0 0 0 1 -0 2 15 14 0 0 0 1 -0 2 16 15 0 0 0 1 -0 2 1 16 0 0 0 1 -"frame" 1 1 -65 -1 0.000000 -0.000000 3.321190 0.500000 0.500000 -1 -1 17.639259 11.675143 3.321190 0.856463 0.427477 -1 -1 11.828669 17.536682 3.321190 0.801575 0.296586 -1 -1 20.764435 4.036170 3.321190 0.857082 0.569410 -1 -1 20.728415 -4.217276 3.321190 0.803338 0.700776 -1 -1 17.536673 -11.828679 3.321190 0.703414 0.801575 -1 -1 11.675133 -17.639269 3.321190 0.572522 0.856463 -1 -1 4.036156 -20.764439 3.321190 0.430590 0.857082 -1 -1 -4.217289 -20.728411 3.321190 0.299224 0.803338 -1 -1 -11.828687 -17.536667 3.321190 0.198425 0.703414 -1 -1 -17.639275 -11.675121 3.321190 0.143537 0.572522 -1 -1 -20.764442 -4.036143 3.321190 0.142919 0.430589 -1 -1 -20.728407 4.217301 3.321190 0.196662 0.299224 -1 -1 -17.536659 11.828699 3.321190 0.296586 0.198425 -1 -1 -11.675112 17.639282 3.321190 0.427478 0.143538 -1 -1 -4.036130 20.764444 3.321190 0.569411 0.142919 -1 -1 4.217315 20.728405 3.321190 0.700777 0.196662 -1 -1 13.683175 20.286118 3.156490 0.848857 0.264694 -1 -1 20.404764 13.505603 3.156490 0.912349 0.416107 -1 -1 24.019917 4.668982 3.156490 0.913065 0.580292 -1 -1 23.978254 -4.878449 3.156490 0.850896 0.732254 -1 -1 20.286112 -13.683181 3.156490 0.735306 0.848857 -1 -1 13.505599 -20.404768 3.156490 0.583893 0.912349 -1 -1 4.668977 -24.019918 3.156490 0.419708 0.913065 -1 -1 -4.878453 -23.978252 3.156490 0.267746 0.850896 -1 -1 -13.683182 -20.286110 3.156490 0.151143 0.735306 -1 -1 -20.404770 -13.505592 3.156490 0.087651 0.583893 -1 -1 -24.019920 -4.668968 3.156490 0.086935 0.419708 -1 -1 -23.978251 4.878465 3.156490 0.149104 0.267746 -1 -1 -20.286102 13.683196 3.156490 0.264694 0.151143 -1 -1 -13.505578 20.404779 3.156490 0.416107 0.087651 -1 -1 -4.668952 24.019922 3.156490 0.580293 0.086935 -1 -1 4.878480 23.978243 3.156490 0.732254 0.149104 -1 -1 16.305698 24.174189 -0.301926 0.917477 0.218408 -1 -1 15.196015 22.529018 1.012907 0.887427 0.238677 -1 -1 22.660770 14.998834 1.012907 0.957940 0.406831 -1 -1 24.315565 16.094122 -0.301926 0.993459 0.399605 -1 -1 26.675631 5.185213 1.012907 0.958735 0.589169 -1 -1 28.623606 5.563864 -0.301926 0.994316 0.596085 -1 -1 26.629364 -5.417810 1.012907 0.889693 0.757932 -1 -1 28.573961 -5.813441 -0.301926 0.919919 0.777938 -1 -1 22.529016 -15.196017 1.012907 0.761323 0.887427 -1 -1 24.174189 -16.305698 -0.301926 0.781592 0.917477 -1 -1 14.998834 -22.660772 1.012907 0.593169 0.957940 -1 -1 16.094122 -24.315565 -0.301926 0.600395 0.993459 -1 -1 5.185220 -26.675629 1.012907 0.410831 0.958735 -1 -1 5.563870 -28.623604 -0.301926 0.403915 0.994316 -1 -1 -5.417803 -26.629364 1.012907 0.242068 0.889693 -1 -1 -5.813432 -28.573965 -0.301926 0.222062 0.919919 -1 -1 -15.196011 -22.529020 1.012907 0.112573 0.761323 -1 -1 -16.305689 -24.174196 -0.301926 0.082523 0.781592 -1 -1 -22.660770 -14.998836 1.012907 0.042060 0.593169 -1 -1 -24.315561 -16.094126 -0.301926 0.006541 0.600395 -1 -1 -26.675631 -5.185212 1.012907 0.041265 0.410831 -1 -1 -28.623606 -5.563865 -0.301926 0.005684 0.403915 -1 -1 -26.629358 5.417814 1.012907 0.110308 0.242068 -1 -1 -28.573961 5.813443 -0.301926 0.080082 0.222062 -1 -1 -22.529011 15.196029 1.012907 0.238677 0.112573 -1 -1 -24.174185 16.305708 -0.301926 0.218408 0.082523 -1 -1 -14.998822 22.660780 1.012907 0.406831 0.042060 -1 -1 -16.094109 24.315575 -0.301926 0.399605 0.006541 -1 -1 -5.185204 26.675629 1.012907 0.589169 0.041265 -1 -1 -5.563847 28.623608 -0.301926 0.596086 0.005684 -1 -1 5.417831 26.629356 1.012907 0.757932 0.110308 -1 -1 5.813461 28.573956 -0.301926 0.777938 0.080082 -1 -65 -0.000000 0.000000 1.000000 -0.023734 0.018076 0.999555 -0.015010 0.025783 0.999555 -0.028845 0.007618 0.999555 -0.029564 -0.004001 0.999555 -0.025783 -0.015010 0.999555 -0.018076 -0.023734 0.999555 -0.007618 -0.028845 0.999555 --0.004001 -0.029564 0.999555 --0.015010 -0.025783 0.999555 --0.023734 -0.018076 0.999555 --0.028845 -0.007618 0.999555 --0.029564 0.004001 0.999555 --0.025783 0.015010 0.999555 --0.018076 0.023734 0.999555 --0.007618 0.028845 0.999555 -0.004001 0.029565 0.999555 -0.179817 0.302000 0.936196 -0.281699 0.210198 0.936196 -0.340695 0.086397 0.936196 -0.347824 -0.050559 0.936196 -0.301999 -0.179816 0.936196 -0.210198 -0.281699 0.936196 -0.086396 -0.340695 0.936196 --0.050559 -0.347824 0.936196 --0.179817 -0.301999 0.936196 --0.281699 -0.210198 0.936196 --0.340695 -0.086396 0.936196 --0.347824 0.050559 0.936196 --0.301999 0.179817 0.936196 --0.210198 0.281699 0.936196 --0.086396 0.340695 0.936196 -0.050559 0.347824 0.936196 -0.338996 0.437135 0.833064 -0.330211 0.485536 0.809454 -0.490881 0.322211 0.809454 -0.480475 0.274132 0.833064 -0.576820 0.109832 0.809454 -0.548807 0.069395 0.833064 -0.574943 -0.119268 0.809454 -0.533588 -0.145907 0.833064 -0.485536 -0.330211 0.809454 -0.437135 -0.338996 0.833064 -0.322211 -0.490881 0.809454 -0.274132 -0.480475 0.833064 -0.109832 -0.576820 0.809454 -0.069395 -0.548807 0.833064 --0.119268 -0.574943 0.809454 --0.145907 -0.533588 0.833064 --0.330210 -0.485536 0.809454 --0.338996 -0.437135 0.833064 --0.490881 -0.322211 0.809454 --0.480475 -0.274132 0.833064 --0.576820 -0.109831 0.809454 --0.548807 -0.069395 0.833064 --0.574943 0.119268 0.809454 --0.533587 0.145907 0.833064 --0.485536 0.330211 0.809454 --0.437135 0.338996 0.833064 --0.322210 0.490881 0.809454 --0.274131 0.480475 0.833064 --0.109831 0.576820 0.809454 --0.069394 0.548807 0.833064 -0.119268 0.574943 0.809454 -0.145907 0.533588 0.833064 -112 -1 0 1 2 0 1 2 2 -1 0 3 1 0 3 1 2 -1 0 4 3 0 4 3 2 -1 0 5 4 0 5 4 2 -1 0 6 5 0 6 5 2 -1 0 7 6 0 7 6 2 -1 0 8 7 0 8 7 2 -1 0 9 8 0 9 8 2 -1 0 10 9 0 10 9 2 -1 0 11 10 0 11 10 2 -1 0 12 11 0 12 11 2 -1 0 13 12 0 13 12 2 -1 0 14 13 0 14 13 2 -1 0 15 14 0 15 14 2 -1 0 16 15 0 16 15 2 -1 0 2 16 0 2 16 2 -1 17 2 1 17 2 1 2 -1 17 1 18 17 1 18 2 -1 18 1 3 18 1 3 2 -1 18 3 19 18 3 19 2 -1 19 3 4 19 3 4 2 -1 19 4 20 19 4 20 2 -1 20 4 5 20 4 5 2 -1 20 5 21 20 5 21 2 -1 21 5 6 21 5 6 2 -1 21 6 22 21 6 22 2 -1 22 6 7 22 6 7 2 -1 22 7 23 22 7 23 2 -1 23 7 8 23 7 8 2 -1 23 8 24 23 8 24 2 -1 24 8 9 24 8 9 2 -1 24 9 25 24 9 25 2 -1 25 9 10 25 9 10 2 -1 25 10 26 25 10 26 2 -1 26 10 11 26 10 11 2 -1 26 11 27 26 11 27 2 -1 27 11 12 27 11 12 2 -1 27 12 28 27 12 28 2 -1 28 12 13 28 12 13 2 -1 28 13 29 28 13 29 2 -1 29 13 14 29 13 14 2 -1 29 14 30 29 14 30 2 -1 30 14 15 30 14 15 2 -1 30 15 31 30 15 31 2 -1 31 15 16 31 15 16 2 -1 31 16 32 31 16 32 2 -1 2 17 32 2 17 32 2 -1 2 32 16 2 32 16 2 -1 33 34 35 33 34 35 2 -1 33 35 36 33 35 36 2 -1 34 17 18 34 17 18 2 -1 34 18 35 34 18 35 2 -1 36 35 37 36 35 37 2 -1 36 37 38 36 37 38 2 -1 35 18 19 35 18 19 2 -1 35 19 37 35 19 37 2 -1 38 37 39 38 37 39 2 -1 38 39 40 38 39 40 2 -1 37 19 20 37 19 20 2 -1 37 20 39 37 20 39 2 -1 40 39 41 40 39 41 2 -1 40 41 42 40 41 42 2 -1 39 20 21 39 20 21 2 -1 39 21 41 39 21 41 2 -1 42 41 43 42 41 43 2 -1 42 43 44 42 43 44 2 -1 41 21 22 41 21 22 2 -1 41 22 43 41 22 43 2 -1 44 43 45 44 43 45 2 -1 44 45 46 44 45 46 2 -1 43 22 23 43 22 23 2 -1 43 23 45 43 23 45 2 -1 46 45 47 46 45 47 2 -1 46 47 48 46 47 48 2 -1 45 23 24 45 23 24 2 -1 45 24 47 45 24 47 2 -1 48 47 49 48 47 49 2 -1 48 49 50 48 49 50 2 -1 47 24 25 47 24 25 2 -1 47 25 49 47 25 49 2 -1 50 49 51 50 49 51 2 -1 50 51 52 50 51 52 2 -1 49 25 26 49 25 26 2 -1 49 26 51 49 26 51 2 -1 52 51 53 52 51 53 2 -1 52 53 54 52 53 54 2 -1 51 26 27 51 26 27 2 -1 51 27 53 51 27 53 2 -1 54 53 55 54 53 55 2 -1 54 55 56 54 55 56 2 -1 53 27 28 53 27 28 2 -1 53 28 55 53 28 55 2 -1 56 55 57 56 55 57 2 -1 56 57 58 56 57 58 2 -1 55 28 29 55 28 29 2 -1 55 29 57 55 29 57 2 -1 58 57 59 58 57 59 2 -1 58 59 60 58 59 60 2 -1 57 29 30 57 29 30 2 -1 57 30 59 57 30 59 2 -1 60 59 61 60 59 61 2 -1 60 61 62 60 61 62 2 -1 59 30 31 59 30 31 2 -1 59 31 61 59 31 61 2 -1 62 61 63 62 61 63 2 -1 62 63 64 62 63 64 2 -1 61 31 32 61 31 32 2 -1 61 32 63 61 32 63 2 -1 17 34 63 17 34 63 2 -1 17 63 32 17 63 32 2 -1 34 33 64 34 33 64 2 -1 34 64 63 34 64 63 2 - -Materials: 2 -"scroll" -0.000000 0.000000 0.000000 1.000000 -0.800000 0.800000 0.800000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"frame" -0.000000 0.000000 0.000000 1.000000 -0.800000 0.800000 0.800000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" - -Bones: 0 -GroupComments: 0 -MaterialComments: 0 -BoneComments: 0 -ModelComment: 0 diff --git a/NoteSkins/kb7/orbital/model/scroller.ini b/NoteSkins/kb7/orbital/model/scroller.ini deleted file mode 100644 index 62119a1e81..0000000000 --- a/NoteSkins/kb7/orbital/model/scroller.ini +++ /dev/null @@ -1,5 +0,0 @@ -[AnimatedTexture] -TexVelocityY=1 -TexOffsetX=0 -Frame0000=scroller.png -Delay0000=1.0 diff --git a/NoteSkins/kb7/orbital/model/scroller.png b/NoteSkins/kb7/orbital/model/scroller.png deleted file mode 100644 index d3ab3d796b..0000000000 Binary files a/NoteSkins/kb7/orbital/model/scroller.png and /dev/null differ diff --git a/NoteSkins/kb7/orbital/model/yellow.txt b/NoteSkins/kb7/orbital/model/yellow.txt deleted file mode 100644 index 0767ba8c67..0000000000 --- a/NoteSkins/kb7/orbital/model/yellow.txt +++ /dev/null @@ -1,19 +0,0 @@ -Materials: 2 -"scroll" -0.000000 0.000000 0.000000 1.000000 -0.800000 0.800000 0.800000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"scroller.ini" -"" -"frame" -0.000000 0.000000 0.000000 1.000000 -0.800000 0.800000 0.800000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"_yellow (no mipmaps).png" -"" diff --git a/NoteSkins/kb7/retrobar-iidx/Blue Hold Body active.png b/NoteSkins/kb7/retrobar-iidx/Blue Hold Body active.png deleted file mode 100644 index 05d1a289cd..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/Blue Hold Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/Blue Hold Body inactive.png b/NoteSkins/kb7/retrobar-iidx/Blue Hold Body inactive.png deleted file mode 100644 index 97c259eaa1..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/Blue Hold Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/Blue Hold BottomCap active.png b/NoteSkins/kb7/retrobar-iidx/Blue Hold BottomCap active.png deleted file mode 100644 index 80651a8414..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/Blue Hold BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/Blue Hold BottomCap inactive.png b/NoteSkins/kb7/retrobar-iidx/Blue Hold BottomCap inactive.png deleted file mode 100644 index 8e4b469a8b..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/Blue Hold BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/Blue Hold TopCap active.png b/NoteSkins/kb7/retrobar-iidx/Blue Hold TopCap active.png deleted file mode 100644 index bb1601de02..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/Blue Hold TopCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/Blue Hold TopCap inactive.png b/NoteSkins/kb7/retrobar-iidx/Blue Hold TopCap inactive.png deleted file mode 100644 index 76ed2442cb..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/Blue Hold TopCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/Blue Roll Body Inactive.redir b/NoteSkins/kb7/retrobar-iidx/Blue Roll Body Inactive.redir deleted file mode 100644 index 06bde73d76..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/Blue Roll Body Inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Body inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/Blue Roll Body active.redir b/NoteSkins/kb7/retrobar-iidx/Blue Roll Body active.redir deleted file mode 100644 index 56bc768aef..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/Blue Roll Body active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Body active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/Blue Roll BottomCap active.redir b/NoteSkins/kb7/retrobar-iidx/Blue Roll BottomCap active.redir deleted file mode 100644 index e55de56d40..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/Blue Roll BottomCap active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll BottomCap active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/Blue Roll BottomCap inactive.redir b/NoteSkins/kb7/retrobar-iidx/Blue Roll BottomCap inactive.redir deleted file mode 100644 index f60b788141..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/Blue Roll BottomCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll BottomCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/Blue Roll TopCap active.redir b/NoteSkins/kb7/retrobar-iidx/Blue Roll TopCap active.redir deleted file mode 100644 index f06745bdc7..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/Blue Roll TopCap active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll TopCap active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/Blue Roll TopCap inactive.redir b/NoteSkins/kb7/retrobar-iidx/Blue Roll TopCap inactive.redir deleted file mode 100644 index 573998cd31..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/Blue Roll TopCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll TopCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/Blue Tap Note.lua b/NoteSkins/kb7/retrobar-iidx/Blue Tap Note.lua deleted file mode 100644 index 36483e9909..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/Blue Tap Note.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_Blue', 'tap note' ); - Frames = Sprite.LinearFrames( 4, 1 ); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/Blue hold explosion.redir b/NoteSkins/kb7/retrobar-iidx/Blue hold explosion.redir deleted file mode 100644 index a902b7fde9..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/Blue hold explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_Hold Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/Blue receptor.redir b/NoteSkins/kb7/retrobar-iidx/Blue receptor.redir deleted file mode 100644 index bb71de9772..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/Blue receptor.redir +++ /dev/null @@ -1 +0,0 @@ -_Receptor \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/Blue roll explosion.redir b/NoteSkins/kb7/retrobar-iidx/Blue roll explosion.redir deleted file mode 100644 index 0fe8fb872f..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/Blue roll explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/Blue tap explosion bright.redir b/NoteSkins/kb7/retrobar-iidx/Blue tap explosion bright.redir deleted file mode 100644 index 0eb3eea363..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/Blue tap explosion bright.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion bright \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/Blue tap explosion dim.redir b/NoteSkins/kb7/retrobar-iidx/Blue tap explosion dim.redir deleted file mode 100644 index 28a4acbeed..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/Blue tap explosion dim.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion dim \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/Blue tap fake.png b/NoteSkins/kb7/retrobar-iidx/Blue tap fake.png deleted file mode 100644 index fd093b68ec..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/Blue tap fake.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/Noteskin.lua b/NoteSkins/kb7/retrobar-iidx/Noteskin.lua deleted file mode 100644 index f97108072f..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/Noteskin.lua +++ /dev/null @@ -1,108 +0,0 @@ --- from scratch, with various references. -local Noteskin = ... or {}; - --- element redirs -Noteskin.ElementRedirs = { - -- ["element"] = "redir_element"; - -- Instead of separate hold heads, use the tap note graphics. - ["Hold Head Inactive"] = "Tap Note"; - ["Hold Head Active"] = "Tap Note"; - ["Roll Head Inactive"] = "Tap Note"; - ["Roll Head Active"] = "Tap Note"; -}; - --- button redirs --- iidx (without turntable) uses this order: --- [white][blue][white][blue][white][blue][white] -Noteskin.ButtonRedirs = { - -- dance (similar to o2jam) - Left = "White"; - UpLeft = "Blue"; - Up = "White"; - Down = "White"; - UpRight = "Blue"; - Right = "White"; - -- kb7 - Key1 = "White"; - Key2 = "Blue"; - Key3 = "White"; - Key4 = "Blue"; - Key5 = "White"; - Key6 = "Blue"; - Key7 = "White"; - -- pump - --[[ - DownLeft = "Bar"; - DownRight = "Bar"; - Center = "Bar"; - --]] -}; - --- things to blank out -Noteskin.Hide = { - -- ["element"] = true/false; -}; - --- rotations -Noteskin.BaseRotX = { - Left = 0; - UpLeft = 0; - Up = 0; - Down = 0; - UpRight = 0; - Right = 0; -}; -Noteskin.BaseRotY = { - Left = 0; - UpLeft = 0; - Up = 0; - Down = 0; - UpRight = 0; - Right = 0; -}; - -local function NoteskinLoader() - local Button = Var "Button" - local Element = Var "Element" - - if Noteskin.Hide[Element] then - -- Return a blank element. If SpriteOnly is set, we need to return a - -- sprite; otherwise just return a dummy actor. - local t; - if Var "SpriteOnly" then - t = LoadActor( "_blank" ); - else - t = Def.Actor {}; - end - return t .. { - cmd(visible,false); - }; - end; - - -- load element and button, using redirs - local LoadElement = Noteskin.ElementRedirs[Element] - if not LoadElement then - LoadElement = Element; - end; - - local LoadButton = Noteskin.ButtonRedirs[Button] - if not LoadButton then - LoadButton = Button; - end; - - -- get path to thing - local sPath = NOTESKIN:GetPath( LoadButton, LoadElement ); - - -- make actor - local t = LoadActor( sPath ); - - -- apply rotation - t.BaseRotationX=Noteskin.BaseRotX[sButton] - t.BaseRotationY=Noteskin.BaseRotY[sButton] - - return t; -end - -Noteskin.Load = NoteskinLoader; -Noteskin.CommonLoad = NoteskinLoader; -return Noteskin; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/White Hold Body active.png b/NoteSkins/kb7/retrobar-iidx/White Hold Body active.png deleted file mode 100644 index 1e7942ceb0..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/White Hold Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/White Hold Body inactive.png b/NoteSkins/kb7/retrobar-iidx/White Hold Body inactive.png deleted file mode 100644 index 4d19984a11..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/White Hold Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/White Hold BottomCap active.png b/NoteSkins/kb7/retrobar-iidx/White Hold BottomCap active.png deleted file mode 100644 index 02ee7ae3da..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/White Hold BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/White Hold BottomCap inactive.png b/NoteSkins/kb7/retrobar-iidx/White Hold BottomCap inactive.png deleted file mode 100644 index 93a5175caa..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/White Hold BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/White Hold TopCap active.png b/NoteSkins/kb7/retrobar-iidx/White Hold TopCap active.png deleted file mode 100644 index 8ab3726130..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/White Hold TopCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/White Hold TopCap inactive.png b/NoteSkins/kb7/retrobar-iidx/White Hold TopCap inactive.png deleted file mode 100644 index 5640bbe611..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/White Hold TopCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/White Roll Body Inactive.redir b/NoteSkins/kb7/retrobar-iidx/White Roll Body Inactive.redir deleted file mode 100644 index 06bde73d76..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/White Roll Body Inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Body inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/White Roll Body active.redir b/NoteSkins/kb7/retrobar-iidx/White Roll Body active.redir deleted file mode 100644 index 56bc768aef..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/White Roll Body active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Body active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/White Roll BottomCap active.redir b/NoteSkins/kb7/retrobar-iidx/White Roll BottomCap active.redir deleted file mode 100644 index e55de56d40..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/White Roll BottomCap active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll BottomCap active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/White Roll BottomCap inactive.redir b/NoteSkins/kb7/retrobar-iidx/White Roll BottomCap inactive.redir deleted file mode 100644 index f60b788141..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/White Roll BottomCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll BottomCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/White Roll TopCap active.redir b/NoteSkins/kb7/retrobar-iidx/White Roll TopCap active.redir deleted file mode 100644 index f06745bdc7..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/White Roll TopCap active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll TopCap active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/White Roll TopCap inactive.redir b/NoteSkins/kb7/retrobar-iidx/White Roll TopCap inactive.redir deleted file mode 100644 index 573998cd31..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/White Roll TopCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll TopCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/White Tap Note.lua b/NoteSkins/kb7/retrobar-iidx/White Tap Note.lua deleted file mode 100644 index 9f84b8f9ce..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/White Tap Note.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_White', 'tap note' ); - Frames = Sprite.LinearFrames( 4, 1 ); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/White hold explosion.redir b/NoteSkins/kb7/retrobar-iidx/White hold explosion.redir deleted file mode 100644 index a902b7fde9..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/White hold explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_Hold Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/White receptor.redir b/NoteSkins/kb7/retrobar-iidx/White receptor.redir deleted file mode 100644 index bb71de9772..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/White receptor.redir +++ /dev/null @@ -1 +0,0 @@ -_Receptor \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/White roll explosion.redir b/NoteSkins/kb7/retrobar-iidx/White roll explosion.redir deleted file mode 100644 index 0fe8fb872f..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/White roll explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/White tap explosion bright.redir b/NoteSkins/kb7/retrobar-iidx/White tap explosion bright.redir deleted file mode 100644 index 0eb3eea363..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/White tap explosion bright.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion bright \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/White tap explosion dim.redir b/NoteSkins/kb7/retrobar-iidx/White tap explosion dim.redir deleted file mode 100644 index 28a4acbeed..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/White tap explosion dim.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion dim \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/White tap fake.png b/NoteSkins/kb7/retrobar-iidx/White tap fake.png deleted file mode 100644 index ab1abebe8e..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/White tap fake.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/_Blue tap note 4x2.png b/NoteSkins/kb7/retrobar-iidx/_Blue tap note 4x2.png deleted file mode 100644 index 41112e3450..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/_Blue tap note 4x2.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/_Hold Explosion.lua b/NoteSkins/kb7/retrobar-iidx/_Hold Explosion.lua deleted file mode 100644 index 4d2cd0cb29..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/_Hold Explosion.lua +++ /dev/null @@ -1,3 +0,0 @@ -return LoadActor("_bar hold explosion bright")..{ - CheckpointHitCommand=cmd(diffusealpha,0); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/_Receptor.lua b/NoteSkins/kb7/retrobar-iidx/_Receptor.lua deleted file mode 100644 index 288980513e..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/_Receptor.lua +++ /dev/null @@ -1,23 +0,0 @@ -local t = Def.ActorFrame{ - -- normal - Def.Sprite { - Texture=NOTESKIN:GetPath( '_bar', 'receptor base' ); - Frame0000=0; - Delay0000=1; - InitCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'InitCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - PressCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'PressCommand'); - }; - -- flashpert - Def.Sprite { - Texture="_bar receptor tap"; - Frame0000=0; - Delay0000=1; - InitCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'InitCommand'); - PressCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'PressCommand'); - LiftCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'LiftCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - }; -}; - -return t; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/_Roll Body active.png b/NoteSkins/kb7/retrobar-iidx/_Roll Body active.png deleted file mode 100644 index b6ff89cca8..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/_Roll Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/_Roll Body inactive.png b/NoteSkins/kb7/retrobar-iidx/_Roll Body inactive.png deleted file mode 100644 index 10852ee2bd..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/_Roll Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/_Roll BottomCap active.png b/NoteSkins/kb7/retrobar-iidx/_Roll BottomCap active.png deleted file mode 100644 index c9242e50b6..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/_Roll BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/_Roll BottomCap inactive.png b/NoteSkins/kb7/retrobar-iidx/_Roll BottomCap inactive.png deleted file mode 100644 index c38b76ac9e..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/_Roll BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/_Roll Explosion.lua b/NoteSkins/kb7/retrobar-iidx/_Roll Explosion.lua deleted file mode 100644 index 4d2cd0cb29..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/_Roll Explosion.lua +++ /dev/null @@ -1,3 +0,0 @@ -return LoadActor("_bar hold explosion bright")..{ - CheckpointHitCommand=cmd(diffusealpha,0); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/_Roll TopCap active.png b/NoteSkins/kb7/retrobar-iidx/_Roll TopCap active.png deleted file mode 100644 index ebaae412df..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/_Roll TopCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/_Roll TopCap inactive.png b/NoteSkins/kb7/retrobar-iidx/_Roll TopCap inactive.png deleted file mode 100644 index c521c5c556..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/_Roll TopCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/_Tap Lift 4x1.png b/NoteSkins/kb7/retrobar-iidx/_Tap Lift 4x1.png deleted file mode 100644 index 4a46e0b910..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/_Tap Lift 4x1.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/_Tap Mine.lua b/NoteSkins/kb7/retrobar-iidx/_Tap Mine.lua deleted file mode 100644 index 4691e40dbb..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/_Tap Mine.lua +++ /dev/null @@ -1,15 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_bar', 'mine' ); - Frame0000=0; - Delay0000=1; - Frame0001=1; - Delay0001=1; - Frame0002=2; - Delay0002=1; - Frame0003=3; - Delay0003=1; - Frame0004=2; - Delay0004=1; - Frame0005=1; - Delay0005=1; -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/_Tap explosion bright.png b/NoteSkins/kb7/retrobar-iidx/_Tap explosion bright.png deleted file mode 100644 index b6c9e91078..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/_Tap explosion bright.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/_Tap explosion dim.redir b/NoteSkins/kb7/retrobar-iidx/_Tap explosion dim.redir deleted file mode 100644 index 0eb3eea363..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/_Tap explosion dim.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion bright \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-iidx/_White tap note 4x2.png b/NoteSkins/kb7/retrobar-iidx/_White tap note 4x2.png deleted file mode 100644 index efe412e3f6..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/_White tap note 4x2.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/_Yellow tap note 4x2.png b/NoteSkins/kb7/retrobar-iidx/_Yellow tap note 4x2.png deleted file mode 100644 index a150f6a3cc..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/_Yellow tap note 4x2.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/_bar hold explosion bright.png b/NoteSkins/kb7/retrobar-iidx/_bar hold explosion bright.png deleted file mode 100644 index cc89bb2a57..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/_bar hold explosion bright.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/_bar hold explosion dim.png b/NoteSkins/kb7/retrobar-iidx/_bar hold explosion dim.png deleted file mode 100644 index 0cfe70cb32..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/_bar hold explosion dim.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/_bar mine 4x1.png b/NoteSkins/kb7/retrobar-iidx/_bar mine 4x1.png deleted file mode 100644 index f6a87a33a3..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/_bar mine 4x1.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/_bar receptor base.png b/NoteSkins/kb7/retrobar-iidx/_bar receptor base.png deleted file mode 100644 index a3c9a85a03..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/_bar receptor base.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/_bar receptor tap.png b/NoteSkins/kb7/retrobar-iidx/_bar receptor tap.png deleted file mode 100644 index ce6aba0536..0000000000 Binary files a/NoteSkins/kb7/retrobar-iidx/_bar receptor tap.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-iidx/metrics.ini b/NoteSkins/kb7/retrobar-iidx/metrics.ini deleted file mode 100644 index 9a306a981e..0000000000 --- a/NoteSkins/kb7/retrobar-iidx/metrics.ini +++ /dev/null @@ -1,36 +0,0 @@ -[NoteDisplay] -HoldLetGoGrayPercent=.8 -DrawHoldHeadForTapsOnSameRow=0 -StartDrawingHoldBodyOffsetFromHead=0 -StopDrawingHoldBodyOffsetFromTail=-32 - -TapNoteAnimationIsVivid=0 - -# control the vertical -TapNoteNoteColorTextureCoordSpacingX=0 -TapNoteNoteColorTextureCoordSpacingY=0 - -TapNoteAdditionTextureCoordOffsetX=0 -TapNoteAdditionTextureCoordOffsetY=0.5 - -TapFakeAdditionTextureCoordOffsetX=0 -TapFakeAdditionTextureCoordOffsetY=0 -TapLiftAdditionTextureCoordOffsetX=0 -TapLiftAdditionTextureCoordOffsetY=0 - -HoldHeadNoteColorTextureCoordSpacingX=0 -HoldHeadNoteColorTextureCoordSpacingY=0 - -[ReceptorArrow] -InitCommand=effectclock,"beat";diffuseramp;effectcolor1,color(".8,.8,.8,1");effectcolor2,color("1,1,1,1");effecttiming,.2,0,.8,0;effectoffset,.05 -NoneCommand=finishtweening;zoom,.85;diffusealpha,.9;linear,.11;diffusealpha,1;zoom,1 - -[ReceptorOverlay] -InitCommand=diffusealpha,0 -PressCommand=finishtweening;zoom,1;blend,"BlendMode_Add";diffusealpha,.8;decelerate,0.2;diffusealpha,0.4 -LiftCommand=stoptweening;decelerate,.2;diffusealpha,0;zoom,1.2 - -[HoldGhostArrow] -HoldingOnCommand=diffusealpha,0.625;glowshift;effectcolor1,color("1,1,1,0");effectcolor2,color("1,1,1,.7");effectperiod,.1 -HoldingOffCommand=diffusealpha,0 -InitCommand=finishtweening;playcommand,"HoldingOff" \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue Hold Body active.png b/NoteSkins/kb7/retrobar-o2jam/Blue Hold Body active.png deleted file mode 100644 index 05d1a289cd..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/Blue Hold Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue Hold Body inactive.png b/NoteSkins/kb7/retrobar-o2jam/Blue Hold Body inactive.png deleted file mode 100644 index 97c259eaa1..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/Blue Hold Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue Hold BottomCap active.png b/NoteSkins/kb7/retrobar-o2jam/Blue Hold BottomCap active.png deleted file mode 100644 index 80651a8414..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/Blue Hold BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue Hold BottomCap inactive.png b/NoteSkins/kb7/retrobar-o2jam/Blue Hold BottomCap inactive.png deleted file mode 100644 index 8e4b469a8b..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/Blue Hold BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue Hold TopCap active.png b/NoteSkins/kb7/retrobar-o2jam/Blue Hold TopCap active.png deleted file mode 100644 index bb1601de02..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/Blue Hold TopCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue Hold TopCap inactive.png b/NoteSkins/kb7/retrobar-o2jam/Blue Hold TopCap inactive.png deleted file mode 100644 index 76ed2442cb..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/Blue Hold TopCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue Roll Body Inactive.redir b/NoteSkins/kb7/retrobar-o2jam/Blue Roll Body Inactive.redir deleted file mode 100644 index 06bde73d76..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Blue Roll Body Inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Body inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue Roll Body active.redir b/NoteSkins/kb7/retrobar-o2jam/Blue Roll Body active.redir deleted file mode 100644 index 56bc768aef..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Blue Roll Body active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Body active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue Roll BottomCap active.redir b/NoteSkins/kb7/retrobar-o2jam/Blue Roll BottomCap active.redir deleted file mode 100644 index e55de56d40..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Blue Roll BottomCap active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll BottomCap active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue Roll BottomCap inactive.redir b/NoteSkins/kb7/retrobar-o2jam/Blue Roll BottomCap inactive.redir deleted file mode 100644 index f60b788141..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Blue Roll BottomCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll BottomCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue Roll TopCap active.redir b/NoteSkins/kb7/retrobar-o2jam/Blue Roll TopCap active.redir deleted file mode 100644 index f06745bdc7..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Blue Roll TopCap active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll TopCap active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue Roll TopCap inactive.redir b/NoteSkins/kb7/retrobar-o2jam/Blue Roll TopCap inactive.redir deleted file mode 100644 index 573998cd31..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Blue Roll TopCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll TopCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue Tap Note.lua b/NoteSkins/kb7/retrobar-o2jam/Blue Tap Note.lua deleted file mode 100644 index 36483e9909..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Blue Tap Note.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_Blue', 'tap note' ); - Frames = Sprite.LinearFrames( 4, 1 ); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue hold explosion.redir b/NoteSkins/kb7/retrobar-o2jam/Blue hold explosion.redir deleted file mode 100644 index a902b7fde9..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Blue hold explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_Hold Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue receptor.redir b/NoteSkins/kb7/retrobar-o2jam/Blue receptor.redir deleted file mode 100644 index bb71de9772..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Blue receptor.redir +++ /dev/null @@ -1 +0,0 @@ -_Receptor \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue roll explosion.redir b/NoteSkins/kb7/retrobar-o2jam/Blue roll explosion.redir deleted file mode 100644 index 0fe8fb872f..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Blue roll explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue tap explosion bright.redir b/NoteSkins/kb7/retrobar-o2jam/Blue tap explosion bright.redir deleted file mode 100644 index 0eb3eea363..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Blue tap explosion bright.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion bright \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue tap explosion dim.redir b/NoteSkins/kb7/retrobar-o2jam/Blue tap explosion dim.redir deleted file mode 100644 index 28a4acbeed..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Blue tap explosion dim.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion dim \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Blue tap fake.png b/NoteSkins/kb7/retrobar-o2jam/Blue tap fake.png deleted file mode 100644 index fd093b68ec..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/Blue tap fake.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/Noteskin.lua b/NoteSkins/kb7/retrobar-o2jam/Noteskin.lua deleted file mode 100644 index 5e9d081d6a..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Noteskin.lua +++ /dev/null @@ -1,108 +0,0 @@ --- from scratch, with various references. -local Noteskin = ... or {}; - --- element redirs -Noteskin.ElementRedirs = { - -- ["element"] = "redir_element"; - -- Instead of separate hold heads, use the tap note graphics. - ["Hold Head Inactive"] = "Tap Note"; - ["Hold Head Active"] = "Tap Note"; - ["Roll Head Inactive"] = "Tap Note"; - ["Roll Head Active"] = "Tap Note"; -}; - --- button redirs --- o2jam uses this order: --- [white][blue][white][yellow][white][blue][white] -Noteskin.ButtonRedirs = { - -- dance - Left = "White"; - UpLeft = "Blue"; - Up = "White"; - Down = "White"; - UpRight = "Blue"; - Right = "White"; - -- kb7 - Key1 = "White"; - Key2 = "Blue"; - Key3 = "White"; - Key4 = "Yellow"; - Key5 = "White"; - Key6 = "Blue"; - Key7 = "White"; - -- pump - --[[ - DownLeft = "Bar"; - DownRight = "Bar"; - Center = "Bar"; - --]] -}; - --- things to blank out -Noteskin.Hide = { - -- ["element"] = true/false; -}; - --- rotations -Noteskin.BaseRotX = { - Left = 0; - UpLeft = 0; - Up = 0; - Down = 0; - UpRight = 0; - Right = 0; -}; -Noteskin.BaseRotY = { - Left = 0; - UpLeft = 0; - Up = 0; - Down = 0; - UpRight = 0; - Right = 0; -}; - -local function NoteskinLoader() - local Button = Var "Button" - local Element = Var "Element" - - if Noteskin.Hide[Element] then - -- Return a blank element. If SpriteOnly is set, we need to return a - -- sprite; otherwise just return a dummy actor. - local t; - if Var "SpriteOnly" then - t = LoadActor( "_blank" ); - else - t = Def.Actor {}; - end - return t .. { - cmd(visible,false); - }; - end; - - -- load element and button, using redirs - local LoadElement = Noteskin.ElementRedirs[Element] - if not LoadElement then - LoadElement = Element; - end; - - local LoadButton = Noteskin.ButtonRedirs[Button] - if not LoadButton then - LoadButton = Button; - end; - - -- get path to thing - local sPath = NOTESKIN:GetPath( LoadButton, LoadElement ); - - -- make actor - local t = LoadActor( sPath ); - - -- apply rotation - t.BaseRotationX=Noteskin.BaseRotX[sButton] - t.BaseRotationY=Noteskin.BaseRotY[sButton] - - return t; -end - -Noteskin.Load = NoteskinLoader; -Noteskin.CommonLoad = NoteskinLoader; -return Noteskin; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/White Hold Body active.png b/NoteSkins/kb7/retrobar-o2jam/White Hold Body active.png deleted file mode 100644 index 1e7942ceb0..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/White Hold Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/White Hold Body inactive.png b/NoteSkins/kb7/retrobar-o2jam/White Hold Body inactive.png deleted file mode 100644 index 4d19984a11..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/White Hold Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/White Hold BottomCap active.png b/NoteSkins/kb7/retrobar-o2jam/White Hold BottomCap active.png deleted file mode 100644 index 02ee7ae3da..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/White Hold BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/White Hold BottomCap inactive.png b/NoteSkins/kb7/retrobar-o2jam/White Hold BottomCap inactive.png deleted file mode 100644 index 93a5175caa..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/White Hold BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/White Hold TopCap active.png b/NoteSkins/kb7/retrobar-o2jam/White Hold TopCap active.png deleted file mode 100644 index 8ab3726130..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/White Hold TopCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/White Hold TopCap inactive.png b/NoteSkins/kb7/retrobar-o2jam/White Hold TopCap inactive.png deleted file mode 100644 index 5640bbe611..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/White Hold TopCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/White Roll Body Inactive.redir b/NoteSkins/kb7/retrobar-o2jam/White Roll Body Inactive.redir deleted file mode 100644 index 06bde73d76..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/White Roll Body Inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Body inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/White Roll Body active.redir b/NoteSkins/kb7/retrobar-o2jam/White Roll Body active.redir deleted file mode 100644 index 56bc768aef..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/White Roll Body active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Body active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/White Roll BottomCap active.redir b/NoteSkins/kb7/retrobar-o2jam/White Roll BottomCap active.redir deleted file mode 100644 index e55de56d40..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/White Roll BottomCap active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll BottomCap active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/White Roll BottomCap inactive.redir b/NoteSkins/kb7/retrobar-o2jam/White Roll BottomCap inactive.redir deleted file mode 100644 index f60b788141..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/White Roll BottomCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll BottomCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/White Roll TopCap active.redir b/NoteSkins/kb7/retrobar-o2jam/White Roll TopCap active.redir deleted file mode 100644 index f06745bdc7..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/White Roll TopCap active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll TopCap active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/White Roll TopCap inactive.redir b/NoteSkins/kb7/retrobar-o2jam/White Roll TopCap inactive.redir deleted file mode 100644 index 573998cd31..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/White Roll TopCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll TopCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/White Tap Note.lua b/NoteSkins/kb7/retrobar-o2jam/White Tap Note.lua deleted file mode 100644 index 9f84b8f9ce..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/White Tap Note.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_White', 'tap note' ); - Frames = Sprite.LinearFrames( 4, 1 ); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/White hold explosion.redir b/NoteSkins/kb7/retrobar-o2jam/White hold explosion.redir deleted file mode 100644 index a902b7fde9..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/White hold explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_Hold Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/White receptor.redir b/NoteSkins/kb7/retrobar-o2jam/White receptor.redir deleted file mode 100644 index bb71de9772..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/White receptor.redir +++ /dev/null @@ -1 +0,0 @@ -_Receptor \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/White roll explosion.redir b/NoteSkins/kb7/retrobar-o2jam/White roll explosion.redir deleted file mode 100644 index 0fe8fb872f..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/White roll explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/White tap explosion bright.redir b/NoteSkins/kb7/retrobar-o2jam/White tap explosion bright.redir deleted file mode 100644 index 0eb3eea363..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/White tap explosion bright.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion bright \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/White tap explosion dim.redir b/NoteSkins/kb7/retrobar-o2jam/White tap explosion dim.redir deleted file mode 100644 index 28a4acbeed..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/White tap explosion dim.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion dim \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/White tap fake.png b/NoteSkins/kb7/retrobar-o2jam/White tap fake.png deleted file mode 100644 index ab1abebe8e..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/White tap fake.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow Hold Body active.png b/NoteSkins/kb7/retrobar-o2jam/Yellow Hold Body active.png deleted file mode 100644 index 677463dbd5..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/Yellow Hold Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow Hold Body inactive.png b/NoteSkins/kb7/retrobar-o2jam/Yellow Hold Body inactive.png deleted file mode 100644 index 94f8f641ae..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/Yellow Hold Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow Hold BottomCap active.png b/NoteSkins/kb7/retrobar-o2jam/Yellow Hold BottomCap active.png deleted file mode 100644 index 6b6d8def0e..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/Yellow Hold BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow Hold BottomCap inactive.png b/NoteSkins/kb7/retrobar-o2jam/Yellow Hold BottomCap inactive.png deleted file mode 100644 index 0a60b99013..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/Yellow Hold BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow Hold TopCap active.png b/NoteSkins/kb7/retrobar-o2jam/Yellow Hold TopCap active.png deleted file mode 100644 index 9b2c241d3e..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/Yellow Hold TopCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow Hold TopCap inactive.png b/NoteSkins/kb7/retrobar-o2jam/Yellow Hold TopCap inactive.png deleted file mode 100644 index 777fb1816f..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/Yellow Hold TopCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow Roll Body Inactive.redir b/NoteSkins/kb7/retrobar-o2jam/Yellow Roll Body Inactive.redir deleted file mode 100644 index 06bde73d76..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Yellow Roll Body Inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Body inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow Roll Body active.redir b/NoteSkins/kb7/retrobar-o2jam/Yellow Roll Body active.redir deleted file mode 100644 index 56bc768aef..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Yellow Roll Body active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Body active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow Roll BottomCap active.redir b/NoteSkins/kb7/retrobar-o2jam/Yellow Roll BottomCap active.redir deleted file mode 100644 index e55de56d40..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Yellow Roll BottomCap active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll BottomCap active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow Roll BottomCap inactive.redir b/NoteSkins/kb7/retrobar-o2jam/Yellow Roll BottomCap inactive.redir deleted file mode 100644 index f60b788141..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Yellow Roll BottomCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll BottomCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow Roll TopCap active.redir b/NoteSkins/kb7/retrobar-o2jam/Yellow Roll TopCap active.redir deleted file mode 100644 index f06745bdc7..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Yellow Roll TopCap active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll TopCap active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow Roll TopCap inactive.redir b/NoteSkins/kb7/retrobar-o2jam/Yellow Roll TopCap inactive.redir deleted file mode 100644 index 573998cd31..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Yellow Roll TopCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll TopCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow Tap Note.lua b/NoteSkins/kb7/retrobar-o2jam/Yellow Tap Note.lua deleted file mode 100644 index 5bd9656863..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Yellow Tap Note.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_Yellow', 'tap note' ); - Frames = Sprite.LinearFrames( 4, 1 ); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow hold explosion.redir b/NoteSkins/kb7/retrobar-o2jam/Yellow hold explosion.redir deleted file mode 100644 index a902b7fde9..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Yellow hold explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_Hold Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow receptor.redir b/NoteSkins/kb7/retrobar-o2jam/Yellow receptor.redir deleted file mode 100644 index bb71de9772..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Yellow receptor.redir +++ /dev/null @@ -1 +0,0 @@ -_Receptor \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow roll explosion.redir b/NoteSkins/kb7/retrobar-o2jam/Yellow roll explosion.redir deleted file mode 100644 index 0fe8fb872f..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Yellow roll explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow tap explosion bright.redir b/NoteSkins/kb7/retrobar-o2jam/Yellow tap explosion bright.redir deleted file mode 100644 index 0eb3eea363..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Yellow tap explosion bright.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion bright \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow tap explosion dim.redir b/NoteSkins/kb7/retrobar-o2jam/Yellow tap explosion dim.redir deleted file mode 100644 index 28a4acbeed..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/Yellow tap explosion dim.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion dim \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/Yellow tap fake.png b/NoteSkins/kb7/retrobar-o2jam/Yellow tap fake.png deleted file mode 100644 index 8448ca587b..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/Yellow tap fake.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/_Blue tap note 4x2.png b/NoteSkins/kb7/retrobar-o2jam/_Blue tap note 4x2.png deleted file mode 100644 index 41112e3450..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/_Blue tap note 4x2.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/_Hold Explosion.lua b/NoteSkins/kb7/retrobar-o2jam/_Hold Explosion.lua deleted file mode 100644 index 4d2cd0cb29..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/_Hold Explosion.lua +++ /dev/null @@ -1,3 +0,0 @@ -return LoadActor("_bar hold explosion bright")..{ - CheckpointHitCommand=cmd(diffusealpha,0); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/_Receptor.lua b/NoteSkins/kb7/retrobar-o2jam/_Receptor.lua deleted file mode 100644 index 288980513e..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/_Receptor.lua +++ /dev/null @@ -1,23 +0,0 @@ -local t = Def.ActorFrame{ - -- normal - Def.Sprite { - Texture=NOTESKIN:GetPath( '_bar', 'receptor base' ); - Frame0000=0; - Delay0000=1; - InitCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'InitCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - PressCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'PressCommand'); - }; - -- flashpert - Def.Sprite { - Texture="_bar receptor tap"; - Frame0000=0; - Delay0000=1; - InitCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'InitCommand'); - PressCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'PressCommand'); - LiftCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'LiftCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - }; -}; - -return t; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/_Roll Body active.png b/NoteSkins/kb7/retrobar-o2jam/_Roll Body active.png deleted file mode 100644 index b6ff89cca8..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/_Roll Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/_Roll Body inactive.png b/NoteSkins/kb7/retrobar-o2jam/_Roll Body inactive.png deleted file mode 100644 index 10852ee2bd..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/_Roll Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/_Roll BottomCap active.png b/NoteSkins/kb7/retrobar-o2jam/_Roll BottomCap active.png deleted file mode 100644 index c9242e50b6..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/_Roll BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/_Roll BottomCap inactive.png b/NoteSkins/kb7/retrobar-o2jam/_Roll BottomCap inactive.png deleted file mode 100644 index c38b76ac9e..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/_Roll BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/_Roll Explosion.lua b/NoteSkins/kb7/retrobar-o2jam/_Roll Explosion.lua deleted file mode 100644 index 4d2cd0cb29..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/_Roll Explosion.lua +++ /dev/null @@ -1,3 +0,0 @@ -return LoadActor("_bar hold explosion bright")..{ - CheckpointHitCommand=cmd(diffusealpha,0); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/_Roll TopCap active.png b/NoteSkins/kb7/retrobar-o2jam/_Roll TopCap active.png deleted file mode 100644 index ebaae412df..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/_Roll TopCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/_Roll TopCap inactive.png b/NoteSkins/kb7/retrobar-o2jam/_Roll TopCap inactive.png deleted file mode 100644 index c521c5c556..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/_Roll TopCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/_Tap Lift 4x1.png b/NoteSkins/kb7/retrobar-o2jam/_Tap Lift 4x1.png deleted file mode 100644 index 4a46e0b910..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/_Tap Lift 4x1.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/_Tap Mine.lua b/NoteSkins/kb7/retrobar-o2jam/_Tap Mine.lua deleted file mode 100644 index 4691e40dbb..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/_Tap Mine.lua +++ /dev/null @@ -1,15 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_bar', 'mine' ); - Frame0000=0; - Delay0000=1; - Frame0001=1; - Delay0001=1; - Frame0002=2; - Delay0002=1; - Frame0003=3; - Delay0003=1; - Frame0004=2; - Delay0004=1; - Frame0005=1; - Delay0005=1; -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/_Tap explosion bright.png b/NoteSkins/kb7/retrobar-o2jam/_Tap explosion bright.png deleted file mode 100644 index b6c9e91078..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/_Tap explosion bright.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/_Tap explosion dim.redir b/NoteSkins/kb7/retrobar-o2jam/_Tap explosion dim.redir deleted file mode 100644 index 0eb3eea363..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/_Tap explosion dim.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion bright \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-o2jam/_White tap note 4x2.png b/NoteSkins/kb7/retrobar-o2jam/_White tap note 4x2.png deleted file mode 100644 index efe412e3f6..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/_White tap note 4x2.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/_Yellow tap note 4x2.png b/NoteSkins/kb7/retrobar-o2jam/_Yellow tap note 4x2.png deleted file mode 100644 index a150f6a3cc..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/_Yellow tap note 4x2.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/_bar hold explosion bright.png b/NoteSkins/kb7/retrobar-o2jam/_bar hold explosion bright.png deleted file mode 100644 index cc89bb2a57..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/_bar hold explosion bright.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/_bar hold explosion dim.png b/NoteSkins/kb7/retrobar-o2jam/_bar hold explosion dim.png deleted file mode 100644 index 0cfe70cb32..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/_bar hold explosion dim.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/_bar mine 4x1.png b/NoteSkins/kb7/retrobar-o2jam/_bar mine 4x1.png deleted file mode 100644 index 0cc6968c87..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/_bar mine 4x1.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/_bar receptor base.png b/NoteSkins/kb7/retrobar-o2jam/_bar receptor base.png deleted file mode 100644 index a3c9a85a03..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/_bar receptor base.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/_bar receptor tap.png b/NoteSkins/kb7/retrobar-o2jam/_bar receptor tap.png deleted file mode 100644 index ce6aba0536..0000000000 Binary files a/NoteSkins/kb7/retrobar-o2jam/_bar receptor tap.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-o2jam/metrics.ini b/NoteSkins/kb7/retrobar-o2jam/metrics.ini deleted file mode 100644 index 9a306a981e..0000000000 --- a/NoteSkins/kb7/retrobar-o2jam/metrics.ini +++ /dev/null @@ -1,36 +0,0 @@ -[NoteDisplay] -HoldLetGoGrayPercent=.8 -DrawHoldHeadForTapsOnSameRow=0 -StartDrawingHoldBodyOffsetFromHead=0 -StopDrawingHoldBodyOffsetFromTail=-32 - -TapNoteAnimationIsVivid=0 - -# control the vertical -TapNoteNoteColorTextureCoordSpacingX=0 -TapNoteNoteColorTextureCoordSpacingY=0 - -TapNoteAdditionTextureCoordOffsetX=0 -TapNoteAdditionTextureCoordOffsetY=0.5 - -TapFakeAdditionTextureCoordOffsetX=0 -TapFakeAdditionTextureCoordOffsetY=0 -TapLiftAdditionTextureCoordOffsetX=0 -TapLiftAdditionTextureCoordOffsetY=0 - -HoldHeadNoteColorTextureCoordSpacingX=0 -HoldHeadNoteColorTextureCoordSpacingY=0 - -[ReceptorArrow] -InitCommand=effectclock,"beat";diffuseramp;effectcolor1,color(".8,.8,.8,1");effectcolor2,color("1,1,1,1");effecttiming,.2,0,.8,0;effectoffset,.05 -NoneCommand=finishtweening;zoom,.85;diffusealpha,.9;linear,.11;diffusealpha,1;zoom,1 - -[ReceptorOverlay] -InitCommand=diffusealpha,0 -PressCommand=finishtweening;zoom,1;blend,"BlendMode_Add";diffusealpha,.8;decelerate,0.2;diffusealpha,0.4 -LiftCommand=stoptweening;decelerate,.2;diffusealpha,0;zoom,1.2 - -[HoldGhostArrow] -HoldingOnCommand=diffusealpha,0.625;glowshift;effectcolor1,color("1,1,1,0");effectcolor2,color("1,1,1,.7");effectperiod,.1 -HoldingOffCommand=diffusealpha,0 -InitCommand=finishtweening;playcommand,"HoldingOff" \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor/Bar Hold Body active.png b/NoteSkins/kb7/retrobar-razor/Bar Hold Body active.png deleted file mode 100644 index 05d1a289cd..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Hold Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Hold Body inactive.png b/NoteSkins/kb7/retrobar-razor/Bar Hold Body inactive.png deleted file mode 100644 index 97c259eaa1..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Hold Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Hold BottomCap active.png b/NoteSkins/kb7/retrobar-razor/Bar Hold BottomCap active.png deleted file mode 100644 index 460ad6faa9..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Hold BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Hold BottomCap inactive.png b/NoteSkins/kb7/retrobar-razor/Bar Hold BottomCap inactive.png deleted file mode 100644 index f53f09e717..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Hold BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Hold Explosion.lua b/NoteSkins/kb7/retrobar-razor/Bar Hold Explosion.lua deleted file mode 100644 index 4d2cd0cb29..0000000000 --- a/NoteSkins/kb7/retrobar-razor/Bar Hold Explosion.lua +++ /dev/null @@ -1,3 +0,0 @@ -return LoadActor("_bar hold explosion bright")..{ - CheckpointHitCommand=cmd(diffusealpha,0); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor/Bar Hold Head active.png b/NoteSkins/kb7/retrobar-razor/Bar Hold Head active.png deleted file mode 100644 index 1d64153261..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Hold Head active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Hold Head inactive.png b/NoteSkins/kb7/retrobar-razor/Bar Hold Head inactive.png deleted file mode 100644 index 70ff02f6d4..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Hold Head inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Hold TopCap active.png b/NoteSkins/kb7/retrobar-razor/Bar Hold TopCap active.png deleted file mode 100644 index bb1601de02..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Hold TopCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Hold TopCap inactive.png b/NoteSkins/kb7/retrobar-razor/Bar Hold TopCap inactive.png deleted file mode 100644 index 76ed2442cb..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Hold TopCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Receptor.lua b/NoteSkins/kb7/retrobar-razor/Bar Receptor.lua deleted file mode 100644 index 288980513e..0000000000 --- a/NoteSkins/kb7/retrobar-razor/Bar Receptor.lua +++ /dev/null @@ -1,23 +0,0 @@ -local t = Def.ActorFrame{ - -- normal - Def.Sprite { - Texture=NOTESKIN:GetPath( '_bar', 'receptor base' ); - Frame0000=0; - Delay0000=1; - InitCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'InitCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - PressCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'PressCommand'); - }; - -- flashpert - Def.Sprite { - Texture="_bar receptor tap"; - Frame0000=0; - Delay0000=1; - InitCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'InitCommand'); - PressCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'PressCommand'); - LiftCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'LiftCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - }; -}; - -return t; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor/Bar Roll Body active.png b/NoteSkins/kb7/retrobar-razor/Bar Roll Body active.png deleted file mode 100644 index b6ff89cca8..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Roll Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Roll Body inactive.png b/NoteSkins/kb7/retrobar-razor/Bar Roll Body inactive.png deleted file mode 100644 index 10852ee2bd..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Roll Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Roll BottomCap active.png b/NoteSkins/kb7/retrobar-razor/Bar Roll BottomCap active.png deleted file mode 100644 index f6f87b880d..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Roll BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Roll BottomCap inactive.png b/NoteSkins/kb7/retrobar-razor/Bar Roll BottomCap inactive.png deleted file mode 100644 index 5f96769b9f..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Roll BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Roll Explosion.lua b/NoteSkins/kb7/retrobar-razor/Bar Roll Explosion.lua deleted file mode 100644 index 4d2cd0cb29..0000000000 --- a/NoteSkins/kb7/retrobar-razor/Bar Roll Explosion.lua +++ /dev/null @@ -1,3 +0,0 @@ -return LoadActor("_bar hold explosion bright")..{ - CheckpointHitCommand=cmd(diffusealpha,0); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor/Bar Roll Head active.png b/NoteSkins/kb7/retrobar-razor/Bar Roll Head active.png deleted file mode 100644 index 7397cdff1a..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Roll Head active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Roll Head inactive.png b/NoteSkins/kb7/retrobar-razor/Bar Roll Head inactive.png deleted file mode 100644 index 3d6c759bdb..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Roll Head inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Roll TopCap active.png b/NoteSkins/kb7/retrobar-razor/Bar Roll TopCap active.png deleted file mode 100644 index ebaae412df..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Roll TopCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Roll TopCap inactive.png b/NoteSkins/kb7/retrobar-razor/Bar Roll TopCap inactive.png deleted file mode 100644 index c521c5c556..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Roll TopCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Tap Explosion bright.png b/NoteSkins/kb7/retrobar-razor/Bar Tap Explosion bright.png deleted file mode 100644 index a7a51e8578..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Tap Explosion bright.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Tap Lift.png b/NoteSkins/kb7/retrobar-razor/Bar Tap Lift.png deleted file mode 100644 index 9275f99ead..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/Bar Tap Lift.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/Bar Tap Mine.lua b/NoteSkins/kb7/retrobar-razor/Bar Tap Mine.lua deleted file mode 100644 index 4691e40dbb..0000000000 --- a/NoteSkins/kb7/retrobar-razor/Bar Tap Mine.lua +++ /dev/null @@ -1,15 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_bar', 'mine' ); - Frame0000=0; - Delay0000=1; - Frame0001=1; - Delay0001=1; - Frame0002=2; - Delay0002=1; - Frame0003=3; - Delay0003=1; - Frame0004=2; - Delay0004=1; - Frame0005=1; - Delay0005=1; -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor/Bar Tap Note.lua b/NoteSkins/kb7/retrobar-razor/Bar Tap Note.lua deleted file mode 100644 index 622457be87..0000000000 --- a/NoteSkins/kb7/retrobar-razor/Bar Tap Note.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_bar', 'tap note' ); - Frames = Sprite.LinearFrames( 1, 1 ); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor/Bar Tap explosion dim.redir b/NoteSkins/kb7/retrobar-razor/Bar Tap explosion dim.redir deleted file mode 100644 index fbe22e3af1..0000000000 --- a/NoteSkins/kb7/retrobar-razor/Bar Tap explosion dim.redir +++ /dev/null @@ -1 +0,0 @@ -Bar Tap explosion bright \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor/Noteskin.lua b/NoteSkins/kb7/retrobar-razor/Noteskin.lua deleted file mode 100644 index 8db306547c..0000000000 --- a/NoteSkins/kb7/retrobar-razor/Noteskin.lua +++ /dev/null @@ -1,99 +0,0 @@ --- from scratch, with various references. -local Noteskin = ... or {}; - --- element redirs -Noteskin.ElementRedirs = { - -- ["element"] = "redir_element"; -}; - --- button redirs (since this is a bar noteskin, it's all the same) -Noteskin.ButtonRedirs = { - -- dance - Left = "Bar"; - UpLeft = "Bar"; - Down = "Bar"; - Up = "Bar"; - UpRight = "Bar"; - Right = "Bar"; - -- kb7 - Key1 = "Bar"; - Key2 = "Bar"; - Key3 = "Bar"; - Key4 = "Bar"; - Key5 = "Bar"; - Key6 = "Bar"; - Key7 = "Bar"; - -- pump - DownLeft = "Bar"; - DownRight = "Bar"; - Center = "Bar"; -}; - --- things to blank out -Noteskin.Hide = { - -- ["element"] = true/false; -}; - --- rotations -Noteskin.BaseRotX = { - Left = 0; - UpLeft = 0; - Up = 0; - Down = 0; - UpRight = 0; - Right = 0; -}; -Noteskin.BaseRotY = { - Left = 0; - UpLeft = 0; - Up = 0; - Down = 0; - UpRight = 0; - Right = 0; -}; - -local function NoteskinLoader() - local Button = Var "Button" - local Element = Var "Element" - - if Noteskin.Hide[Element] then - -- Return a blank element. If SpriteOnly is set, we need to return a - -- sprite; otherwise just return a dummy actor. - local t; - if Var "SpriteOnly" then - t = LoadActor( "_blank" ); - else - t = Def.Actor {}; - end - return t .. { - cmd(visible,false); - }; - end; - - -- load element and button, using redirs - local LoadElement = Noteskin.ElementRedirs[Element] - if not LoadElement then - LoadElement = Element; - end; - - local LoadButton = Noteskin.ButtonRedirs[Button] - if not LoadButton then - LoadButton = Button; - end; - - -- get path to thing - local sPath = NOTESKIN:GetPath( LoadButton, LoadElement ); - - -- make actor - local t = LoadActor( sPath ); - - -- apply rotation - t.BaseRotationX=Noteskin.BaseRotX[sButton] - t.BaseRotationY=Noteskin.BaseRotY[sButton] - - return t; -end - -Noteskin.Load = NoteskinLoader; -Noteskin.CommonLoad = NoteskinLoader; -return Noteskin; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor/_bar hold explosion bright.png b/NoteSkins/kb7/retrobar-razor/_bar hold explosion bright.png deleted file mode 100644 index cc89bb2a57..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/_bar hold explosion bright.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/_bar hold explosion dim.png b/NoteSkins/kb7/retrobar-razor/_bar hold explosion dim.png deleted file mode 100644 index 0cfe70cb32..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/_bar hold explosion dim.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/_bar mine 4x1.png b/NoteSkins/kb7/retrobar-razor/_bar mine 4x1.png deleted file mode 100644 index 664f2dea6e..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/_bar mine 4x1.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/_bar receptor base.png b/NoteSkins/kb7/retrobar-razor/_bar receptor base.png deleted file mode 100644 index 8cc7eadd40..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/_bar receptor base.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/_bar receptor tap.png b/NoteSkins/kb7/retrobar-razor/_bar receptor tap.png deleted file mode 100644 index da45e067ef..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/_bar receptor tap.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/_bar tap fake.png b/NoteSkins/kb7/retrobar-razor/_bar tap fake.png deleted file mode 100644 index e173ab2403..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/_bar tap fake.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/_bar tap note 2x8.png b/NoteSkins/kb7/retrobar-razor/_bar tap note 2x8.png deleted file mode 100644 index a151e7f8df..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor/_bar tap note 2x8.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor/noteskin.ini b/NoteSkins/kb7/retrobar-razor/noteskin.ini deleted file mode 100644 index cee2a32ca4..0000000000 --- a/NoteSkins/kb7/retrobar-razor/noteskin.ini +++ /dev/null @@ -1,9 +0,0 @@ -[Global] -FallbackNoteSkin=retrobar - -[NoteDisplay] -HoldHeadNoteColorTextureCoordSpacingX=0 -HoldHeadNoteColorTextureCoordSpacingY=0 -StartDrawingHoldBodyOffsetFromHead=0 -StopDrawingHoldBodyOffsetFromTail=-16 -DrawHoldHeadForTapsOnSameRow=0 \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue Hold Body active.png b/NoteSkins/kb7/retrobar-razor_o2/Blue Hold Body active.png deleted file mode 100644 index 05d1a289cd..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/Blue Hold Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue Hold Body inactive.png b/NoteSkins/kb7/retrobar-razor_o2/Blue Hold Body inactive.png deleted file mode 100644 index 97c259eaa1..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/Blue Hold Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue Hold BottomCap active.png b/NoteSkins/kb7/retrobar-razor_o2/Blue Hold BottomCap active.png deleted file mode 100644 index 460ad6faa9..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/Blue Hold BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue Hold BottomCap inactive.png b/NoteSkins/kb7/retrobar-razor_o2/Blue Hold BottomCap inactive.png deleted file mode 100644 index f53f09e717..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/Blue Hold BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue Hold TopCap active.png b/NoteSkins/kb7/retrobar-razor_o2/Blue Hold TopCap active.png deleted file mode 100644 index bb1601de02..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/Blue Hold TopCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue Hold TopCap inactive.png b/NoteSkins/kb7/retrobar-razor_o2/Blue Hold TopCap inactive.png deleted file mode 100644 index 76ed2442cb..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/Blue Hold TopCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue Roll Body Inactive.redir b/NoteSkins/kb7/retrobar-razor_o2/Blue Roll Body Inactive.redir deleted file mode 100644 index 06bde73d76..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Blue Roll Body Inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Body inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue Roll Body active.redir b/NoteSkins/kb7/retrobar-razor_o2/Blue Roll Body active.redir deleted file mode 100644 index 56bc768aef..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Blue Roll Body active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Body active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue Roll BottomCap active.redir b/NoteSkins/kb7/retrobar-razor_o2/Blue Roll BottomCap active.redir deleted file mode 100644 index e55de56d40..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Blue Roll BottomCap active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll BottomCap active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue Roll BottomCap inactive.redir b/NoteSkins/kb7/retrobar-razor_o2/Blue Roll BottomCap inactive.redir deleted file mode 100644 index f60b788141..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Blue Roll BottomCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll BottomCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue Roll TopCap active.redir b/NoteSkins/kb7/retrobar-razor_o2/Blue Roll TopCap active.redir deleted file mode 100644 index f06745bdc7..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Blue Roll TopCap active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll TopCap active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue Roll TopCap inactive.redir b/NoteSkins/kb7/retrobar-razor_o2/Blue Roll TopCap inactive.redir deleted file mode 100644 index 573998cd31..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Blue Roll TopCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll TopCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue Tap Note.lua b/NoteSkins/kb7/retrobar-razor_o2/Blue Tap Note.lua deleted file mode 100644 index 15cea8c3f2..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Blue Tap Note.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_Blue', 'tap note' ); - Frames = Sprite.LinearFrames( 1, 1 ); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue hold explosion.redir b/NoteSkins/kb7/retrobar-razor_o2/Blue hold explosion.redir deleted file mode 100644 index a902b7fde9..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Blue hold explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_Hold Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue receptor.redir b/NoteSkins/kb7/retrobar-razor_o2/Blue receptor.redir deleted file mode 100644 index bb71de9772..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Blue receptor.redir +++ /dev/null @@ -1 +0,0 @@ -_Receptor \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue roll explosion.redir b/NoteSkins/kb7/retrobar-razor_o2/Blue roll explosion.redir deleted file mode 100644 index 0fe8fb872f..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Blue roll explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue tap explosion bright.redir b/NoteSkins/kb7/retrobar-razor_o2/Blue tap explosion bright.redir deleted file mode 100644 index 0eb3eea363..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Blue tap explosion bright.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion bright \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Blue tap explosion dim.redir b/NoteSkins/kb7/retrobar-razor_o2/Blue tap explosion dim.redir deleted file mode 100644 index 28a4acbeed..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Blue tap explosion dim.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion dim \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Noteskin.lua b/NoteSkins/kb7/retrobar-razor_o2/Noteskin.lua deleted file mode 100644 index de8752e1b3..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Noteskin.lua +++ /dev/null @@ -1,102 +0,0 @@ --- from scratch, with various references. -local Noteskin = ... or {}; - --- element redirs -Noteskin.ElementRedirs = { - -- ["element"] = "redir_element"; - -- Instead of separate hold heads, use the tap note graphics. - ["Hold Head Inactive"] = "Tap Note"; - ["Hold Head Active"] = "Tap Note"; - ["Roll Head Inactive"] = "Tap Note"; - ["Roll Head Active"] = "Tap Note"; -}; - --- button redirs --- o2jam uses this order: --- [white][blue][white][yellow][white][blue][white] -Noteskin.ButtonRedirs = { - -- dance - Left = "White"; - Up = "White"; - UpLeft = "Blue"; - Down = "White"; - UpRight = "Blue"; - Right = "White"; - -- kb7 - Key1 = "White"; - Key2 = "Blue"; - Key3 = "White"; - Key4 = "Yellow"; - Key5 = "White"; - Key6 = "Blue"; - Key7 = "White"; -}; - --- things to blank out -Noteskin.Hide = { - -- ["element"] = true/false; -}; - --- rotations -Noteskin.BaseRotX = { - Left = 0; - UpLeft = 0; - Up = 0; - Down = 0; - UpRight = 0; - Right = 0; -}; -Noteskin.BaseRotY = { - Left = 0; - UpLeft = 0; - Up = 0; - Down = 0; - UpRight = 0; - Right = 0; -}; - -local function NoteskinLoader() - local Button = Var "Button" - local Element = Var "Element" - - if Noteskin.Hide[Element] then - -- Return a blank element. If SpriteOnly is set, we need to return a - -- sprite; otherwise just return a dummy actor. - local t; - if Var "SpriteOnly" then - t = LoadActor( "_blank" ); - else - t = Def.Actor {}; - end - return t .. { - cmd(visible,false); - }; - end; - - -- load element and button, using redirs - local LoadElement = Noteskin.ElementRedirs[Element] - if not LoadElement then - LoadElement = Element; - end; - - local LoadButton = Noteskin.ButtonRedirs[Button] - if not LoadButton then - LoadButton = Button; - end; - - -- get path to thing - local sPath = NOTESKIN:GetPath( LoadButton, LoadElement ); - - -- make actor - local t = LoadActor( sPath ); - - -- apply rotation - t.BaseRotationX=Noteskin.BaseRotX[sButton] - t.BaseRotationY=Noteskin.BaseRotY[sButton] - - return t; -end - -Noteskin.Load = NoteskinLoader; -Noteskin.CommonLoad = NoteskinLoader; -return Noteskin; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/White Hold Body active.png b/NoteSkins/kb7/retrobar-razor_o2/White Hold Body active.png deleted file mode 100644 index 1e7942ceb0..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/White Hold Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/White Hold Body inactive.png b/NoteSkins/kb7/retrobar-razor_o2/White Hold Body inactive.png deleted file mode 100644 index 4d19984a11..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/White Hold Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/White Hold BottomCap active.png b/NoteSkins/kb7/retrobar-razor_o2/White Hold BottomCap active.png deleted file mode 100644 index 0d0b3e4483..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/White Hold BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/White Hold BottomCap inactive.png b/NoteSkins/kb7/retrobar-razor_o2/White Hold BottomCap inactive.png deleted file mode 100644 index 775a692fb1..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/White Hold BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/White Hold TopCap active.png b/NoteSkins/kb7/retrobar-razor_o2/White Hold TopCap active.png deleted file mode 100644 index 8ab3726130..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/White Hold TopCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/White Hold TopCap inactive.png b/NoteSkins/kb7/retrobar-razor_o2/White Hold TopCap inactive.png deleted file mode 100644 index 5640bbe611..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/White Hold TopCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/White Roll Body Inactive.redir b/NoteSkins/kb7/retrobar-razor_o2/White Roll Body Inactive.redir deleted file mode 100644 index 06bde73d76..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/White Roll Body Inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Body inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/White Roll Body active.redir b/NoteSkins/kb7/retrobar-razor_o2/White Roll Body active.redir deleted file mode 100644 index 56bc768aef..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/White Roll Body active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Body active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/White Roll BottomCap active.redir b/NoteSkins/kb7/retrobar-razor_o2/White Roll BottomCap active.redir deleted file mode 100644 index e55de56d40..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/White Roll BottomCap active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll BottomCap active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/White Roll BottomCap inactive.redir b/NoteSkins/kb7/retrobar-razor_o2/White Roll BottomCap inactive.redir deleted file mode 100644 index f60b788141..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/White Roll BottomCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll BottomCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/White Roll TopCap active.redir b/NoteSkins/kb7/retrobar-razor_o2/White Roll TopCap active.redir deleted file mode 100644 index f06745bdc7..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/White Roll TopCap active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll TopCap active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/White Roll TopCap inactive.redir b/NoteSkins/kb7/retrobar-razor_o2/White Roll TopCap inactive.redir deleted file mode 100644 index 573998cd31..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/White Roll TopCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll TopCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/White Tap Note.lua b/NoteSkins/kb7/retrobar-razor_o2/White Tap Note.lua deleted file mode 100644 index 5db34a5236..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/White Tap Note.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_White', 'tap note' ); - Frames = Sprite.LinearFrames( 1, 1 ); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/White hold explosion.redir b/NoteSkins/kb7/retrobar-razor_o2/White hold explosion.redir deleted file mode 100644 index a902b7fde9..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/White hold explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_Hold Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/White receptor.redir b/NoteSkins/kb7/retrobar-razor_o2/White receptor.redir deleted file mode 100644 index bb71de9772..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/White receptor.redir +++ /dev/null @@ -1 +0,0 @@ -_Receptor \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/White roll explosion.redir b/NoteSkins/kb7/retrobar-razor_o2/White roll explosion.redir deleted file mode 100644 index 0fe8fb872f..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/White roll explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/White tap explosion bright.redir b/NoteSkins/kb7/retrobar-razor_o2/White tap explosion bright.redir deleted file mode 100644 index 0eb3eea363..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/White tap explosion bright.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion bright \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/White tap explosion dim.redir b/NoteSkins/kb7/retrobar-razor_o2/White tap explosion dim.redir deleted file mode 100644 index 28a4acbeed..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/White tap explosion dim.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion dim \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold Body active.png b/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold Body active.png deleted file mode 100644 index 677463dbd5..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold Body inactive.png b/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold Body inactive.png deleted file mode 100644 index 94f8f641ae..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold BottomCap active.png b/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold BottomCap active.png deleted file mode 100644 index 5c4c282eab..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold BottomCap inactive.png b/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold BottomCap inactive.png deleted file mode 100644 index 557c1e9c5b..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold TopCap active.png b/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold TopCap active.png deleted file mode 100644 index 9b2c241d3e..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold TopCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold TopCap inactive.png b/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold TopCap inactive.png deleted file mode 100644 index 777fb1816f..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/Yellow Hold TopCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll Body Inactive.redir b/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll Body Inactive.redir deleted file mode 100644 index 06bde73d76..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll Body Inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Body inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll Body active.redir b/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll Body active.redir deleted file mode 100644 index 56bc768aef..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll Body active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Body active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll BottomCap active.redir b/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll BottomCap active.redir deleted file mode 100644 index e55de56d40..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll BottomCap active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll BottomCap active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll BottomCap inactive.redir b/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll BottomCap inactive.redir deleted file mode 100644 index f60b788141..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll BottomCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll BottomCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll TopCap active.redir b/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll TopCap active.redir deleted file mode 100644 index f06745bdc7..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll TopCap active.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll TopCap active \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll TopCap inactive.redir b/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll TopCap inactive.redir deleted file mode 100644 index 573998cd31..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Yellow Roll TopCap inactive.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll TopCap inactive \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow Tap Note.lua b/NoteSkins/kb7/retrobar-razor_o2/Yellow Tap Note.lua deleted file mode 100644 index df57c93b92..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Yellow Tap Note.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_Yellow', 'tap note' ); - Frames = Sprite.LinearFrames( 1, 1 ); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow hold explosion.redir b/NoteSkins/kb7/retrobar-razor_o2/Yellow hold explosion.redir deleted file mode 100644 index a902b7fde9..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Yellow hold explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_Hold Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow receptor.redir b/NoteSkins/kb7/retrobar-razor_o2/Yellow receptor.redir deleted file mode 100644 index bb71de9772..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Yellow receptor.redir +++ /dev/null @@ -1 +0,0 @@ -_Receptor \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow roll explosion.redir b/NoteSkins/kb7/retrobar-razor_o2/Yellow roll explosion.redir deleted file mode 100644 index 0fe8fb872f..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Yellow roll explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_Roll Explosion \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow tap explosion bright.redir b/NoteSkins/kb7/retrobar-razor_o2/Yellow tap explosion bright.redir deleted file mode 100644 index 0eb3eea363..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Yellow tap explosion bright.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion bright \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/Yellow tap explosion dim.redir b/NoteSkins/kb7/retrobar-razor_o2/Yellow tap explosion dim.redir deleted file mode 100644 index 28a4acbeed..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/Yellow tap explosion dim.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion dim \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/_Blue tap note 2x1.png b/NoteSkins/kb7/retrobar-razor_o2/_Blue tap note 2x1.png deleted file mode 100644 index 30a2393a97..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_Blue tap note 2x1.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/_Hold Explosion.lua b/NoteSkins/kb7/retrobar-razor_o2/_Hold Explosion.lua deleted file mode 100644 index 4d2cd0cb29..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/_Hold Explosion.lua +++ /dev/null @@ -1,3 +0,0 @@ -return LoadActor("_bar hold explosion bright")..{ - CheckpointHitCommand=cmd(diffusealpha,0); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/_Receptor.lua b/NoteSkins/kb7/retrobar-razor_o2/_Receptor.lua deleted file mode 100644 index 288980513e..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/_Receptor.lua +++ /dev/null @@ -1,23 +0,0 @@ -local t = Def.ActorFrame{ - -- normal - Def.Sprite { - Texture=NOTESKIN:GetPath( '_bar', 'receptor base' ); - Frame0000=0; - Delay0000=1; - InitCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'InitCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - PressCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'PressCommand'); - }; - -- flashpert - Def.Sprite { - Texture="_bar receptor tap"; - Frame0000=0; - Delay0000=1; - InitCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'InitCommand'); - PressCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'PressCommand'); - LiftCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'LiftCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - }; -}; - -return t; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/_Roll Body active.png b/NoteSkins/kb7/retrobar-razor_o2/_Roll Body active.png deleted file mode 100644 index b6ff89cca8..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_Roll Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/_Roll Body inactive.png b/NoteSkins/kb7/retrobar-razor_o2/_Roll Body inactive.png deleted file mode 100644 index 10852ee2bd..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_Roll Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/_Roll BottomCap active.png b/NoteSkins/kb7/retrobar-razor_o2/_Roll BottomCap active.png deleted file mode 100644 index f6f87b880d..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_Roll BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/_Roll BottomCap inactive.png b/NoteSkins/kb7/retrobar-razor_o2/_Roll BottomCap inactive.png deleted file mode 100644 index 5f96769b9f..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_Roll BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/_Roll Explosion.lua b/NoteSkins/kb7/retrobar-razor_o2/_Roll Explosion.lua deleted file mode 100644 index 4d2cd0cb29..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/_Roll Explosion.lua +++ /dev/null @@ -1,3 +0,0 @@ -return LoadActor("_bar hold explosion bright")..{ - CheckpointHitCommand=cmd(diffusealpha,0); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/_Roll TopCap active.png b/NoteSkins/kb7/retrobar-razor_o2/_Roll TopCap active.png deleted file mode 100644 index ebaae412df..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_Roll TopCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/_Roll TopCap inactive.png b/NoteSkins/kb7/retrobar-razor_o2/_Roll TopCap inactive.png deleted file mode 100644 index c521c5c556..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_Roll TopCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/_Tap Explosion bright.png b/NoteSkins/kb7/retrobar-razor_o2/_Tap Explosion bright.png deleted file mode 100644 index a7a51e8578..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_Tap Explosion bright.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/_Tap Lift 3x1.png b/NoteSkins/kb7/retrobar-razor_o2/_Tap Lift 3x1.png deleted file mode 100644 index f6bf460396..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_Tap Lift 3x1.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/_Tap Mine.lua b/NoteSkins/kb7/retrobar-razor_o2/_Tap Mine.lua deleted file mode 100644 index 4691e40dbb..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/_Tap Mine.lua +++ /dev/null @@ -1,15 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_bar', 'mine' ); - Frame0000=0; - Delay0000=1; - Frame0001=1; - Delay0001=1; - Frame0002=2; - Delay0002=1; - Frame0003=3; - Delay0003=1; - Frame0004=2; - Delay0004=1; - Frame0005=1; - Delay0005=1; -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/_Tap explosion dim.redir b/NoteSkins/kb7/retrobar-razor_o2/_Tap explosion dim.redir deleted file mode 100644 index 0eb3eea363..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/_Tap explosion dim.redir +++ /dev/null @@ -1 +0,0 @@ -_Tap explosion bright \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar-razor_o2/_White tap note 2x1.png b/NoteSkins/kb7/retrobar-razor_o2/_White tap note 2x1.png deleted file mode 100644 index 999ef29180..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_White tap note 2x1.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/_Yellow tap note 2x1.png b/NoteSkins/kb7/retrobar-razor_o2/_Yellow tap note 2x1.png deleted file mode 100644 index 6c253eee34..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_Yellow tap note 2x1.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/_bar hold explosion bright.png b/NoteSkins/kb7/retrobar-razor_o2/_bar hold explosion bright.png deleted file mode 100644 index cc89bb2a57..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_bar hold explosion bright.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/_bar hold explosion dim.png b/NoteSkins/kb7/retrobar-razor_o2/_bar hold explosion dim.png deleted file mode 100644 index 0cfe70cb32..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_bar hold explosion dim.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/_bar mine 4x1.png b/NoteSkins/kb7/retrobar-razor_o2/_bar mine 4x1.png deleted file mode 100644 index 9f794e4ad4..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_bar mine 4x1.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/_bar receptor base.png b/NoteSkins/kb7/retrobar-razor_o2/_bar receptor base.png deleted file mode 100644 index 8cc7eadd40..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_bar receptor base.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/_bar receptor tap.png b/NoteSkins/kb7/retrobar-razor_o2/_bar receptor tap.png deleted file mode 100644 index da45e067ef..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_bar receptor tap.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/_bar tap fake.png b/NoteSkins/kb7/retrobar-razor_o2/_bar tap fake.png deleted file mode 100644 index e173ab2403..0000000000 Binary files a/NoteSkins/kb7/retrobar-razor_o2/_bar tap fake.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar-razor_o2/metrics.ini b/NoteSkins/kb7/retrobar-razor_o2/metrics.ini deleted file mode 100644 index cee2a32ca4..0000000000 --- a/NoteSkins/kb7/retrobar-razor_o2/metrics.ini +++ /dev/null @@ -1,9 +0,0 @@ -[Global] -FallbackNoteSkin=retrobar - -[NoteDisplay] -HoldHeadNoteColorTextureCoordSpacingX=0 -HoldHeadNoteColorTextureCoordSpacingY=0 -StartDrawingHoldBodyOffsetFromHead=0 -StopDrawingHoldBodyOffsetFromTail=-16 -DrawHoldHeadForTapsOnSameRow=0 \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar/Bar Hold Body active.png b/NoteSkins/kb7/retrobar/Bar Hold Body active.png deleted file mode 100644 index 05d1a289cd..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Hold Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Hold Body inactive.png b/NoteSkins/kb7/retrobar/Bar Hold Body inactive.png deleted file mode 100644 index 97c259eaa1..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Hold Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Hold BottomCap active.png b/NoteSkins/kb7/retrobar/Bar Hold BottomCap active.png deleted file mode 100644 index 80651a8414..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Hold BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Hold BottomCap inactive.png b/NoteSkins/kb7/retrobar/Bar Hold BottomCap inactive.png deleted file mode 100644 index 8e4b469a8b..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Hold BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Hold Explosion.lua b/NoteSkins/kb7/retrobar/Bar Hold Explosion.lua deleted file mode 100644 index 4d2cd0cb29..0000000000 --- a/NoteSkins/kb7/retrobar/Bar Hold Explosion.lua +++ /dev/null @@ -1,3 +0,0 @@ -return LoadActor("_bar hold explosion bright")..{ - CheckpointHitCommand=cmd(diffusealpha,0); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar/Bar Hold Head active.png b/NoteSkins/kb7/retrobar/Bar Hold Head active.png deleted file mode 100644 index d7b1b513e8..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Hold Head active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Hold Head inactive.png b/NoteSkins/kb7/retrobar/Bar Hold Head inactive.png deleted file mode 100644 index a10b5df9e4..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Hold Head inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Hold TopCap active.png b/NoteSkins/kb7/retrobar/Bar Hold TopCap active.png deleted file mode 100644 index bb1601de02..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Hold TopCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Hold TopCap inactive.png b/NoteSkins/kb7/retrobar/Bar Hold TopCap inactive.png deleted file mode 100644 index 76ed2442cb..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Hold TopCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Receptor.lua b/NoteSkins/kb7/retrobar/Bar Receptor.lua deleted file mode 100644 index 288980513e..0000000000 --- a/NoteSkins/kb7/retrobar/Bar Receptor.lua +++ /dev/null @@ -1,23 +0,0 @@ -local t = Def.ActorFrame{ - -- normal - Def.Sprite { - Texture=NOTESKIN:GetPath( '_bar', 'receptor base' ); - Frame0000=0; - Delay0000=1; - InitCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'InitCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - PressCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'PressCommand'); - }; - -- flashpert - Def.Sprite { - Texture="_bar receptor tap"; - Frame0000=0; - Delay0000=1; - InitCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'InitCommand'); - PressCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'PressCommand'); - LiftCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'LiftCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - }; -}; - -return t; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar/Bar Roll Body active.png b/NoteSkins/kb7/retrobar/Bar Roll Body active.png deleted file mode 100644 index b6ff89cca8..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Roll Body active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Roll Body inactive.png b/NoteSkins/kb7/retrobar/Bar Roll Body inactive.png deleted file mode 100644 index 10852ee2bd..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Roll Body inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Roll BottomCap active.png b/NoteSkins/kb7/retrobar/Bar Roll BottomCap active.png deleted file mode 100644 index c9242e50b6..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Roll BottomCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Roll BottomCap inactive.png b/NoteSkins/kb7/retrobar/Bar Roll BottomCap inactive.png deleted file mode 100644 index c38b76ac9e..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Roll BottomCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Roll Explosion.lua b/NoteSkins/kb7/retrobar/Bar Roll Explosion.lua deleted file mode 100644 index 4d2cd0cb29..0000000000 --- a/NoteSkins/kb7/retrobar/Bar Roll Explosion.lua +++ /dev/null @@ -1,3 +0,0 @@ -return LoadActor("_bar hold explosion bright")..{ - CheckpointHitCommand=cmd(diffusealpha,0); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar/Bar Roll Head active.png b/NoteSkins/kb7/retrobar/Bar Roll Head active.png deleted file mode 100644 index 5e9be40056..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Roll Head active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Roll Head inactive.png b/NoteSkins/kb7/retrobar/Bar Roll Head inactive.png deleted file mode 100644 index 55ce40634a..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Roll Head inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Roll TopCap active.png b/NoteSkins/kb7/retrobar/Bar Roll TopCap active.png deleted file mode 100644 index ebaae412df..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Roll TopCap active.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Roll TopCap inactive.png b/NoteSkins/kb7/retrobar/Bar Roll TopCap inactive.png deleted file mode 100644 index c521c5c556..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Roll TopCap inactive.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Tap Lift 4x1.png b/NoteSkins/kb7/retrobar/Bar Tap Lift 4x1.png deleted file mode 100644 index 4a46e0b910..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Tap Lift 4x1.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Tap Mine.lua b/NoteSkins/kb7/retrobar/Bar Tap Mine.lua deleted file mode 100644 index 4691e40dbb..0000000000 --- a/NoteSkins/kb7/retrobar/Bar Tap Mine.lua +++ /dev/null @@ -1,15 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_bar', 'mine' ); - Frame0000=0; - Delay0000=1; - Frame0001=1; - Delay0001=1; - Frame0002=2; - Delay0002=1; - Frame0003=3; - Delay0003=1; - Frame0004=2; - Delay0004=1; - Frame0005=1; - Delay0005=1; -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar/Bar Tap Note.lua b/NoteSkins/kb7/retrobar/Bar Tap Note.lua deleted file mode 100644 index ea3c40560f..0000000000 --- a/NoteSkins/kb7/retrobar/Bar Tap Note.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath( '_bar', 'tap note' ); - Frames = Sprite.LinearFrames( 4, 1 ); -}; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar/Bar Tap explosion bright.png b/NoteSkins/kb7/retrobar/Bar Tap explosion bright.png deleted file mode 100644 index b6c9e91078..0000000000 Binary files a/NoteSkins/kb7/retrobar/Bar Tap explosion bright.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/Bar Tap explosion dim.redir b/NoteSkins/kb7/retrobar/Bar Tap explosion dim.redir deleted file mode 100644 index fbe22e3af1..0000000000 --- a/NoteSkins/kb7/retrobar/Bar Tap explosion dim.redir +++ /dev/null @@ -1 +0,0 @@ -Bar Tap explosion bright \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar/Noteskin.lua b/NoteSkins/kb7/retrobar/Noteskin.lua deleted file mode 100644 index 5155db3306..0000000000 --- a/NoteSkins/kb7/retrobar/Noteskin.lua +++ /dev/null @@ -1,99 +0,0 @@ --- from scratch, with various references. -local Noteskin = ... or {}; - --- element redirs -Noteskin.ElementRedirs = { - -- ["element"] = "redir_element"; -}; - --- button redirs (since this is a bar noteskin, it's all the same) -Noteskin.ButtonRedirs = { - -- dance - Left = "Bar"; - UpLeft = "Bar"; - Up = "Bar"; - Down = "Bar"; - UpRight = "Bar"; - Right = "Bar"; - -- kb7 - Key1 = "Bar"; - Key2 = "Bar"; - Key3 = "Bar"; - Key4 = "Bar"; - Key5 = "Bar"; - Key6 = "Bar"; - Key7 = "Bar"; - -- pump - DownLeft = "Bar"; - DownRight = "Bar"; - Center = "Bar"; -}; - --- things to blank out -Noteskin.Hide = { - -- ["element"] = true/false; -}; - --- rotations -Noteskin.BaseRotX = { - Left = 0; - UpLeft = 0; - Up = 0; - Down = 0; - UpRight = 0; - Right = 0; -}; -Noteskin.BaseRotY = { - Left = 0; - UpLeft = 0; - Up = 0; - Down = 0; - UpRight = 0; - Right = 0; -}; - -local function NoteskinLoader() - local Button = Var "Button" - local Element = Var "Element" - - if Noteskin.Hide[Element] then - -- Return a blank element. If SpriteOnly is set, we need to return a - -- sprite; otherwise just return a dummy actor. - local t; - if Var "SpriteOnly" then - t = LoadActor( "_blank" ); - else - t = Def.Actor {}; - end - return t .. { - cmd(visible,false); - }; - end; - - -- load element and button, using redirs - local LoadElement = Noteskin.ElementRedirs[Element] - if not LoadElement then - LoadElement = Element; - end; - - local LoadButton = Noteskin.ButtonRedirs[Button] - if not LoadButton then - LoadButton = Button; - end; - - -- get path to thing - local sPath = NOTESKIN:GetPath( LoadButton, LoadElement ); - - -- make actor - local t = LoadActor( sPath ); - - -- apply rotation - t.BaseRotationX=Noteskin.BaseRotX[sButton] - t.BaseRotationY=Noteskin.BaseRotY[sButton] - - return t; -end - -Noteskin.Load = NoteskinLoader; -Noteskin.CommonLoad = NoteskinLoader; -return Noteskin; \ No newline at end of file diff --git a/NoteSkins/kb7/retrobar/_bar hold explosion bright.png b/NoteSkins/kb7/retrobar/_bar hold explosion bright.png deleted file mode 100644 index cc89bb2a57..0000000000 Binary files a/NoteSkins/kb7/retrobar/_bar hold explosion bright.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/_bar hold explosion dim.png b/NoteSkins/kb7/retrobar/_bar hold explosion dim.png deleted file mode 100644 index 0cfe70cb32..0000000000 Binary files a/NoteSkins/kb7/retrobar/_bar hold explosion dim.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/_bar mine 4x1.png b/NoteSkins/kb7/retrobar/_bar mine 4x1.png deleted file mode 100644 index dcd85e41a4..0000000000 Binary files a/NoteSkins/kb7/retrobar/_bar mine 4x1.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/_bar receptor base.png b/NoteSkins/kb7/retrobar/_bar receptor base.png deleted file mode 100644 index a3c9a85a03..0000000000 Binary files a/NoteSkins/kb7/retrobar/_bar receptor base.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/_bar receptor tap.png b/NoteSkins/kb7/retrobar/_bar receptor tap.png deleted file mode 100644 index ce6aba0536..0000000000 Binary files a/NoteSkins/kb7/retrobar/_bar receptor tap.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/_bar tap base.png b/NoteSkins/kb7/retrobar/_bar tap base.png deleted file mode 100644 index c76bd36fec..0000000000 Binary files a/NoteSkins/kb7/retrobar/_bar tap base.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/_bar tap fake 1x8.png b/NoteSkins/kb7/retrobar/_bar tap fake 1x8.png deleted file mode 100644 index 1a153092f7..0000000000 Binary files a/NoteSkins/kb7/retrobar/_bar tap fake 1x8.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/_bar tap note 8x8.png b/NoteSkins/kb7/retrobar/_bar tap note 8x8.png deleted file mode 100644 index 447a975d55..0000000000 Binary files a/NoteSkins/kb7/retrobar/_bar tap note 8x8.png and /dev/null differ diff --git a/NoteSkins/kb7/retrobar/metrics.ini b/NoteSkins/kb7/retrobar/metrics.ini deleted file mode 100644 index 822d89f31b..0000000000 --- a/NoteSkins/kb7/retrobar/metrics.ini +++ /dev/null @@ -1,21 +0,0 @@ -[NoteDisplay] -HoldLetGoGrayPercent=.8 -StartDrawingHoldBodyOffsetFromHead=0 -StopDrawingHoldBodyOffsetFromTail=-32 - -HoldHeadNoteColorTextureCoordSpacingX=0 -HoldHeadNoteColorTextureCoordSpacingY=0 - -[ReceptorArrow] -InitCommand=effectclock,"beat";diffuseramp;effectcolor1,color(".8,.8,.8,1");effectcolor2,color("1,1,1,1");effecttiming,.2,0,.8,0;effectoffset,.05 -NoneCommand=finishtweening;zoom,.85;diffusealpha,.9;linear,.11;diffusealpha,1;zoom,1 - -[ReceptorOverlay] -InitCommand=diffusealpha,0 -PressCommand=finishtweening;zoom,1;blend,"BlendMode_Add";diffusealpha,.8;decelerate,0.2;diffusealpha,0.4 -LiftCommand=stoptweening;decelerate,.2;diffusealpha,0;zoom,1.2 - -[HoldGhostArrow] -HoldingOnCommand=diffusealpha,0.625;glowshift;effectcolor1,color("1,1,1,0");effectcolor2,color("1,1,1,.7");effectperiod,.1 -HoldingOffCommand=diffusealpha,0 -InitCommand=finishtweening;playcommand,"HoldingOff" \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyLeftFist Explosion.lua b/NoteSkins/kickbox/default/AnyLeftFist Explosion.lua deleted file mode 100644 index 091a5748b8..0000000000 --- a/NoteSkins/kickbox/default/AnyLeftFist Explosion.lua +++ /dev/null @@ -1,5 +0,0 @@ -local t = LoadActor("AnyRightFist Explosion") .. { - InitCommand=cmd(basezoomx,-1); -} - -return t; diff --git a/NoteSkins/kickbox/default/AnyLeftFist Hold Body Active (doubleres).png b/NoteSkins/kickbox/default/AnyLeftFist Hold Body Active (doubleres).png deleted file mode 100644 index f8d38093cc..0000000000 Binary files a/NoteSkins/kickbox/default/AnyLeftFist Hold Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyLeftFist Hold Body Inactive (doubleres).png b/NoteSkins/kickbox/default/AnyLeftFist Hold Body Inactive (doubleres).png deleted file mode 100644 index 27a16473b5..0000000000 Binary files a/NoteSkins/kickbox/default/AnyLeftFist Hold Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyLeftFist Hold BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/AnyLeftFist Hold BottomCap Active (doubleres).png deleted file mode 100644 index ee11ba1f7e..0000000000 Binary files a/NoteSkins/kickbox/default/AnyLeftFist Hold BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyLeftFist Hold BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/AnyLeftFist Hold BottomCap Inactive (doubleres).png deleted file mode 100644 index 6c13aab879..0000000000 Binary files a/NoteSkins/kickbox/default/AnyLeftFist Hold BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyLeftFist Hold Head Active.lua b/NoteSkins/kickbox/default/AnyLeftFist Hold Head Active.lua deleted file mode 100644 index 6860d80e16..0000000000 --- a/NoteSkins/kickbox/default/AnyLeftFist Hold Head Active.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('AnyRightFist','Hold Head Active'); - InitCommand=cmd(basezoomx,-1); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyLeftFist Hold Head Inactive.lua b/NoteSkins/kickbox/default/AnyLeftFist Hold Head Inactive.lua deleted file mode 100644 index 1f7b9e7ae8..0000000000 --- a/NoteSkins/kickbox/default/AnyLeftFist Hold Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('AnyRightFist','Hold Head Active'); - InitCommand=cmd(basezoomx,-1;diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyLeftFist Receptor.lua b/NoteSkins/kickbox/default/AnyLeftFist Receptor.lua deleted file mode 100644 index 02c21a986a..0000000000 --- a/NoteSkins/kickbox/default/AnyLeftFist Receptor.lua +++ /dev/null @@ -1,5 +0,0 @@ -local t = LoadActor("AnyRightFist Receptor") .. { - InitCommand=cmd(zoomx,-1); -} - -return t; diff --git a/NoteSkins/kickbox/default/AnyLeftFist Roll Body Active (doubleres).png b/NoteSkins/kickbox/default/AnyLeftFist Roll Body Active (doubleres).png deleted file mode 100644 index a72adc84c0..0000000000 Binary files a/NoteSkins/kickbox/default/AnyLeftFist Roll Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyLeftFist Roll Body Inactive (doubleres).png b/NoteSkins/kickbox/default/AnyLeftFist Roll Body Inactive (doubleres).png deleted file mode 100644 index 1c1c24ac56..0000000000 Binary files a/NoteSkins/kickbox/default/AnyLeftFist Roll Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyLeftFist Roll BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/AnyLeftFist Roll BottomCap Active (doubleres).png deleted file mode 100644 index d37a6f7922..0000000000 Binary files a/NoteSkins/kickbox/default/AnyLeftFist Roll BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyLeftFist Roll BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/AnyLeftFist Roll BottomCap Inactive (doubleres).png deleted file mode 100644 index 97a53f1339..0000000000 Binary files a/NoteSkins/kickbox/default/AnyLeftFist Roll BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyLeftFist Roll Head Active.lua b/NoteSkins/kickbox/default/AnyLeftFist Roll Head Active.lua deleted file mode 100644 index 3c7a58b5c4..0000000000 --- a/NoteSkins/kickbox/default/AnyLeftFist Roll Head Active.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('AnyRightFist','Roll Head Active'); - InitCommand=cmd(basezoomx,-1;); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyLeftFist Roll Head Inactive.lua b/NoteSkins/kickbox/default/AnyLeftFist Roll Head Inactive.lua deleted file mode 100644 index f78715a86b..0000000000 --- a/NoteSkins/kickbox/default/AnyLeftFist Roll Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('AnyRightFist','Roll Head Active'); - InitCommand=cmd(basezoomx,-1;diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyLeftFist Tap Lift.lua b/NoteSkins/kickbox/default/AnyLeftFist Tap Lift.lua deleted file mode 100644 index 69436f46e1..0000000000 --- a/NoteSkins/kickbox/default/AnyLeftFist Tap Lift.lua +++ /dev/null @@ -1,5 +0,0 @@ -local t = LoadActor("AnyRightFist Tap Lift") .. { - InitCommand=cmd(basezoomx,-1); -} - -return t; diff --git a/NoteSkins/kickbox/default/AnyLeftFist tap note.lua b/NoteSkins/kickbox/default/AnyLeftFist tap note.lua deleted file mode 100644 index 2b684618ac..0000000000 --- a/NoteSkins/kickbox/default/AnyLeftFist tap note.lua +++ /dev/null @@ -1,5 +0,0 @@ -local t = LoadActor("AnyRightFist tap Note") .. { - InitCommand=cmd(basezoomx,-1); -} - -return t; diff --git a/NoteSkins/kickbox/default/AnyLeftFoot Explosion.lua b/NoteSkins/kickbox/default/AnyLeftFoot Explosion.lua deleted file mode 100644 index d5a4101423..0000000000 --- a/NoteSkins/kickbox/default/AnyLeftFoot Explosion.lua +++ /dev/null @@ -1,5 +0,0 @@ -local t = LoadActor("AnyRightFoot Explosion") .. { - InitCommand=cmd(basezoomx,-1); -} - -return t; diff --git a/NoteSkins/kickbox/default/AnyLeftFoot Hold Body Active (doubleres).png b/NoteSkins/kickbox/default/AnyLeftFoot Hold Body Active (doubleres).png deleted file mode 100644 index c6d425f298..0000000000 Binary files a/NoteSkins/kickbox/default/AnyLeftFoot Hold Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyLeftFoot Hold Body Inactive (doubleres).png b/NoteSkins/kickbox/default/AnyLeftFoot Hold Body Inactive (doubleres).png deleted file mode 100644 index 14494e82c4..0000000000 Binary files a/NoteSkins/kickbox/default/AnyLeftFoot Hold Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyLeftFoot Hold BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/AnyLeftFoot Hold BottomCap Active (doubleres).png deleted file mode 100644 index 66949fc088..0000000000 Binary files a/NoteSkins/kickbox/default/AnyLeftFoot Hold BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyLeftFoot Hold BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/AnyLeftFoot Hold BottomCap Inactive (doubleres).png deleted file mode 100644 index f88bc86cfa..0000000000 Binary files a/NoteSkins/kickbox/default/AnyLeftFoot Hold BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyLeftFoot Hold Head Active.lua b/NoteSkins/kickbox/default/AnyLeftFoot Hold Head Active.lua deleted file mode 100644 index c1d9bb879a..0000000000 --- a/NoteSkins/kickbox/default/AnyLeftFoot Hold Head Active.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('AnyRightFoot','Hold Head Active'); - InitCommand=cmd(basezoomx,-1;); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyLeftFoot Hold Head Inactive.lua b/NoteSkins/kickbox/default/AnyLeftFoot Hold Head Inactive.lua deleted file mode 100644 index 6e40567184..0000000000 --- a/NoteSkins/kickbox/default/AnyLeftFoot Hold Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('AnyRightFoot','Hold Head Active'); - InitCommand=cmd(basezoomx,-1;diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyLeftFoot Receptor.lua b/NoteSkins/kickbox/default/AnyLeftFoot Receptor.lua deleted file mode 100644 index 9ea311f4bb..0000000000 --- a/NoteSkins/kickbox/default/AnyLeftFoot Receptor.lua +++ /dev/null @@ -1,5 +0,0 @@ -local t = LoadActor("AnyRightFoot Receptor") .. { - InitCommand=cmd(zoomx,-1); -} - -return t; diff --git a/NoteSkins/kickbox/default/AnyLeftFoot Roll Body Active (doubleres).png b/NoteSkins/kickbox/default/AnyLeftFoot Roll Body Active (doubleres).png deleted file mode 100644 index b001771a70..0000000000 Binary files a/NoteSkins/kickbox/default/AnyLeftFoot Roll Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyLeftFoot Roll Body Inactive (doubleres).png b/NoteSkins/kickbox/default/AnyLeftFoot Roll Body Inactive (doubleres).png deleted file mode 100644 index c6fb7b60f7..0000000000 Binary files a/NoteSkins/kickbox/default/AnyLeftFoot Roll Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyLeftFoot Roll BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/AnyLeftFoot Roll BottomCap Active (doubleres).png deleted file mode 100644 index 268a56e789..0000000000 Binary files a/NoteSkins/kickbox/default/AnyLeftFoot Roll BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyLeftFoot Roll BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/AnyLeftFoot Roll BottomCap Inactive (doubleres).png deleted file mode 100644 index b361a4a42d..0000000000 Binary files a/NoteSkins/kickbox/default/AnyLeftFoot Roll BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyLeftFoot Roll Head Active.lua b/NoteSkins/kickbox/default/AnyLeftFoot Roll Head Active.lua deleted file mode 100644 index f5254f25ce..0000000000 --- a/NoteSkins/kickbox/default/AnyLeftFoot Roll Head Active.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('AnyRightFoot','Roll Head Active'); - InitCommand=cmd(basezoomx,-1;); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyLeftFoot Roll Head Inactive.lua b/NoteSkins/kickbox/default/AnyLeftFoot Roll Head Inactive.lua deleted file mode 100644 index 048ce0d90b..0000000000 --- a/NoteSkins/kickbox/default/AnyLeftFoot Roll Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('AnyRightFoot','Roll Head Active'); - InitCommand=cmd(basezoomx,-1;diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyLeftFoot Tap Lift.lua b/NoteSkins/kickbox/default/AnyLeftFoot Tap Lift.lua deleted file mode 100644 index 2adf78c28b..0000000000 --- a/NoteSkins/kickbox/default/AnyLeftFoot Tap Lift.lua +++ /dev/null @@ -1,5 +0,0 @@ -local t = LoadActor("AnyRightFoot Tap Lift") .. { - InitCommand=cmd(basezoomx,-1); -} - -return t; diff --git a/NoteSkins/kickbox/default/AnyLeftFoot tap note.lua b/NoteSkins/kickbox/default/AnyLeftFoot tap note.lua deleted file mode 100644 index c3cb6b2b34..0000000000 --- a/NoteSkins/kickbox/default/AnyLeftFoot tap note.lua +++ /dev/null @@ -1,5 +0,0 @@ -local t = LoadActor("AnyRightFoot tap Note") .. { - InitCommand=cmd(basezoomx,-1); -} - -return t; diff --git a/NoteSkins/kickbox/default/AnyRightFist Explosion.lua b/NoteSkins/kickbox/default/AnyRightFist Explosion.lua deleted file mode 100644 index 1c4a2c1c90..0000000000 --- a/NoteSkins/kickbox/default/AnyRightFist Explosion.lua +++ /dev/null @@ -1,29 +0,0 @@ -local t = Def.ActorFrame { - LoadActor( "_AnyRightFist Hold Explosion" ) .. { - HoldingOnCommand=NOTESKIN:GetMetricA("HoldGhostArrow", "HoldingOnCommand"); - HoldingOffCommand=NOTESKIN:GetMetricA("HoldGhostArrow", "HoldingOffCommand"); - InitCommand=cmd(playcommand,"HoldingOff";finishtweening); - }; - LoadActor( "_AnyRightFist Roll Explosion" ) .. { - RollOnCommand=NOTESKIN:GetMetricA("HoldGhostArrow", "RollOnCommand"); - RollOffCommand=NOTESKIN:GetMetricA("HoldGhostArrow", "RollOffCommand"); - InitCommand=cmd(playcommand,"RollOff";finishtweening); - }; - LoadActor( "_AnyRightFist Tap Explosion Dim" ) .. { - InitCommand=cmd(diffusealpha,0); - W5Command=NOTESKIN:GetMetricA("GhostArrowDim", "W5Command"); - W4Command=NOTESKIN:GetMetricA("GhostArrowDim", "W4Command"); - W3Command=NOTESKIN:GetMetricA("GhostArrowDim", "W3Command"); - W2Command=NOTESKIN:GetMetricA("GhostArrowDim", "W2Command"); - W1Command=NOTESKIN:GetMetricA("GhostArrowDim", "W1Command"); - HeldCommand=NOTESKIN:GetMetricA("GhostArrowDim", "HeldCommand"); - JudgmentCommand=cmd(finishtweening); - BrightCommand=cmd(visible,false); - DimCommand=cmd(visible,true); - }; - LoadActor( "AnyRightFist HitMine Explosion" ) .. { - InitCommand=cmd(blend,"BlendMode_Add";diffusealpha,0); - HitMineCommand=NOTESKIN:GetMetricA("GhostArrowBright", "HitMineCommand"); - }; -} -return t; diff --git a/NoteSkins/kickbox/default/AnyRightFist HitMine Explosion.redir b/NoteSkins/kickbox/default/AnyRightFist HitMine Explosion.redir deleted file mode 100644 index 42966e5ea3..0000000000 --- a/NoteSkins/kickbox/default/AnyRightFist HitMine Explosion.redir +++ /dev/null @@ -1 +0,0 @@ -Fallback HitMine Explosion \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyRightFist Hold Body Active (doubleres).png b/NoteSkins/kickbox/default/AnyRightFist Hold Body Active (doubleres).png deleted file mode 100644 index f8d38093cc..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFist Hold Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFist Hold Body Inactive (doubleres).png b/NoteSkins/kickbox/default/AnyRightFist Hold Body Inactive (doubleres).png deleted file mode 100644 index 27a16473b5..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFist Hold Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFist Hold BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/AnyRightFist Hold BottomCap Active (doubleres).png deleted file mode 100644 index 9f7bef91a6..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFist Hold BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFist Hold BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/AnyRightFist Hold BottomCap Inactive (doubleres).png deleted file mode 100644 index 48b7f39d65..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFist Hold BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFist Hold Head Active.redir b/NoteSkins/kickbox/default/AnyRightFist Hold Head Active.redir deleted file mode 100644 index 4b94e621e2..0000000000 --- a/NoteSkins/kickbox/default/AnyRightFist Hold Head Active.redir +++ /dev/null @@ -1 +0,0 @@ -AnyRightFist tap note \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyRightFist Hold Head Inactive.lua b/NoteSkins/kickbox/default/AnyRightFist Hold Head Inactive.lua deleted file mode 100644 index 1da889831b..0000000000 --- a/NoteSkins/kickbox/default/AnyRightFist Hold Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('AnyRightFist','Roll Head Active'); - InitCommand=cmd(diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyRightFist Receptor.lua b/NoteSkins/kickbox/default/AnyRightFist Receptor.lua deleted file mode 100644 index b02bcff4bf..0000000000 --- a/NoteSkins/kickbox/default/AnyRightFist Receptor.lua +++ /dev/null @@ -1,19 +0,0 @@ -local t = Def.ActorFrame { - Def.Sprite { - Texture="_AnyRightFist receptor underlay"; - Frame0000=0; - Delay0000=1; - InitCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'InitCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - }; - Def.Sprite { - Texture="_AnyRightFist receptor frame"; - Frame0000=0; - Delay0000=1; - InitCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'InitCommand'); - PressCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'PressCommand'); - LiftCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'LiftCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - }; -}; -return t; diff --git a/NoteSkins/kickbox/default/AnyRightFist Roll Body Active (doubleres).png b/NoteSkins/kickbox/default/AnyRightFist Roll Body Active (doubleres).png deleted file mode 100644 index 6357ddf13e..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFist Roll Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFist Roll Body Inactive (doubleres).png b/NoteSkins/kickbox/default/AnyRightFist Roll Body Inactive (doubleres).png deleted file mode 100644 index 7018cca581..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFist Roll Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFist Roll BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/AnyRightFist Roll BottomCap Active (doubleres).png deleted file mode 100644 index 0fc3e30726..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFist Roll BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFist Roll BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/AnyRightFist Roll BottomCap Inactive (doubleres).png deleted file mode 100644 index 7e2ba13d7a..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFist Roll BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFist Roll Head Active.redir b/NoteSkins/kickbox/default/AnyRightFist Roll Head Active.redir deleted file mode 100644 index 4b94e621e2..0000000000 --- a/NoteSkins/kickbox/default/AnyRightFist Roll Head Active.redir +++ /dev/null @@ -1 +0,0 @@ -AnyRightFist tap note \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyRightFist Roll Head Inactive.lua b/NoteSkins/kickbox/default/AnyRightFist Roll Head Inactive.lua deleted file mode 100644 index 1da889831b..0000000000 --- a/NoteSkins/kickbox/default/AnyRightFist Roll Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('AnyRightFist','Roll Head Active'); - InitCommand=cmd(diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyRightFist Tap Lift.lua b/NoteSkins/kickbox/default/AnyRightFist Tap Lift.lua deleted file mode 100644 index df2bf160a9..0000000000 --- a/NoteSkins/kickbox/default/AnyRightFist Tap Lift.lua +++ /dev/null @@ -1,10 +0,0 @@ -local t = Def.ActorFrame { - InitCommand=cmd(pulse;effectclock,'beat';effectmagnitude,1,1.2,1); - Def.Sprite { - Texture=NOTESKIN:GetPath( '_AnyRightFist', 'tap lift' ); - Frame0000=0; - Delay0000=1; - InitCommand=cmd(diffuseramp;effectclock,'beat';effectcolor1,color("1,1,1,1");effectcolor2,color("1,1,1,0.5")); - }; -}; -return t; diff --git a/NoteSkins/kickbox/default/AnyRightFist tap Note (doubleres).png b/NoteSkins/kickbox/default/AnyRightFist tap Note (doubleres).png deleted file mode 100644 index c973d2d61a..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFist tap Note (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFoot Explosion.lua b/NoteSkins/kickbox/default/AnyRightFoot Explosion.lua deleted file mode 100644 index d6626a9543..0000000000 --- a/NoteSkins/kickbox/default/AnyRightFoot Explosion.lua +++ /dev/null @@ -1,29 +0,0 @@ -local t = Def.ActorFrame { - LoadActor( "_AnyRightFoot Hold Explosion" ) .. { - HoldingOnCommand=NOTESKIN:GetMetricA("HoldGhostArrow", "HoldingOnCommand"); - HoldingOffCommand=NOTESKIN:GetMetricA("HoldGhostArrow", "HoldingOffCommand"); - InitCommand=cmd(playcommand,"HoldingOff";finishtweening); - }; - LoadActor( "_AnyRightFoot Roll Explosion" ) .. { - RollOnCommand=NOTESKIN:GetMetricA("HoldGhostArrow", "RollOnCommand"); - RollOffCommand=NOTESKIN:GetMetricA("HoldGhostArrow", "RollOffCommand"); - InitCommand=cmd(playcommand,"RollOff";finishtweening); - }; - LoadActor( "_AnyRightFoot Tap Explosion Dim" ) .. { - InitCommand=cmd(diffusealpha,0); - W5Command=NOTESKIN:GetMetricA("GhostArrowDim", "W5Command"); - W4Command=NOTESKIN:GetMetricA("GhostArrowDim", "W4Command"); - W3Command=NOTESKIN:GetMetricA("GhostArrowDim", "W3Command"); - W2Command=NOTESKIN:GetMetricA("GhostArrowDim", "W2Command"); - W1Command=NOTESKIN:GetMetricA("GhostArrowDim", "W1Command"); - HeldCommand=NOTESKIN:GetMetricA("GhostArrowDim", "HeldCommand"); - JudgmentCommand=cmd(finishtweening); - BrightCommand=cmd(visible,false); - DimCommand=cmd(visible,true); - }; - LoadActor( "AnyRightFoot HitMine Explosion" ) .. { - InitCommand=cmd(blend,"BlendMode_Add";diffusealpha,0); - HitMineCommand=NOTESKIN:GetMetricA("GhostArrowBright", "HitMineCommand"); - }; -} -return t; diff --git a/NoteSkins/kickbox/default/AnyRightFoot HitMine Explosion.redir b/NoteSkins/kickbox/default/AnyRightFoot HitMine Explosion.redir deleted file mode 100644 index 42966e5ea3..0000000000 --- a/NoteSkins/kickbox/default/AnyRightFoot HitMine Explosion.redir +++ /dev/null @@ -1 +0,0 @@ -Fallback HitMine Explosion \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyRightFoot Hold Body Active (doubleres).png b/NoteSkins/kickbox/default/AnyRightFoot Hold Body Active (doubleres).png deleted file mode 100644 index 2edfc9edcc..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFoot Hold Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFoot Hold Body Inactive (doubleres).png b/NoteSkins/kickbox/default/AnyRightFoot Hold Body Inactive (doubleres).png deleted file mode 100644 index e0ce58df3f..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFoot Hold Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFoot Hold BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/AnyRightFoot Hold BottomCap Active (doubleres).png deleted file mode 100644 index ff1c84141d..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFoot Hold BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFoot Hold BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/AnyRightFoot Hold BottomCap Inactive (doubleres).png deleted file mode 100644 index 59a3396f10..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFoot Hold BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFoot Hold Head Active.redir b/NoteSkins/kickbox/default/AnyRightFoot Hold Head Active.redir deleted file mode 100644 index 7b3cc70420..0000000000 --- a/NoteSkins/kickbox/default/AnyRightFoot Hold Head Active.redir +++ /dev/null @@ -1 +0,0 @@ -AnyRightFoot tap note \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyRightFoot Hold Head Inactive.redir b/NoteSkins/kickbox/default/AnyRightFoot Hold Head Inactive.redir deleted file mode 100644 index 7b3cc70420..0000000000 --- a/NoteSkins/kickbox/default/AnyRightFoot Hold Head Inactive.redir +++ /dev/null @@ -1 +0,0 @@ -AnyRightFoot tap note \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyRightFoot Receptor.lua b/NoteSkins/kickbox/default/AnyRightFoot Receptor.lua deleted file mode 100644 index e22d359884..0000000000 --- a/NoteSkins/kickbox/default/AnyRightFoot Receptor.lua +++ /dev/null @@ -1,19 +0,0 @@ -local t = Def.ActorFrame { - Def.Sprite { - Texture="_AnyRightFoot receptor underlay"; - Frame0000=0; - Delay0000=1; - InitCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'InitCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - }; - Def.Sprite { - Texture="_AnyRightFoot receptor frame"; - Frame0000=0; - Delay0000=1; - InitCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'InitCommand'); - PressCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'PressCommand'); - LiftCommand=NOTESKIN:GetMetricA('ReceptorOverlay', 'LiftCommand'); - NoneCommand=NOTESKIN:GetMetricA('ReceptorArrow', 'NoneCommand'); - }; -}; -return t; diff --git a/NoteSkins/kickbox/default/AnyRightFoot Roll Body Active (doubleres).png b/NoteSkins/kickbox/default/AnyRightFoot Roll Body Active (doubleres).png deleted file mode 100644 index 442a9af6d5..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFoot Roll Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFoot Roll Body Inactive (doubleres).png b/NoteSkins/kickbox/default/AnyRightFoot Roll Body Inactive (doubleres).png deleted file mode 100644 index 62d6829cd3..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFoot Roll Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFoot Roll BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/AnyRightFoot Roll BottomCap Active (doubleres).png deleted file mode 100644 index 1f9213caca..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFoot Roll BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFoot Roll BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/AnyRightFoot Roll BottomCap Inactive (doubleres).png deleted file mode 100644 index 4c215082a6..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFoot Roll BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/AnyRightFoot Roll Head Active.redir b/NoteSkins/kickbox/default/AnyRightFoot Roll Head Active.redir deleted file mode 100644 index 7b3cc70420..0000000000 --- a/NoteSkins/kickbox/default/AnyRightFoot Roll Head Active.redir +++ /dev/null @@ -1 +0,0 @@ -AnyRightFoot tap note \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyRightFoot Roll Head Inactive.lua b/NoteSkins/kickbox/default/AnyRightFoot Roll Head Inactive.lua deleted file mode 100644 index ef274ab9f3..0000000000 --- a/NoteSkins/kickbox/default/AnyRightFoot Roll Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('AnyRightFoot','Roll Head Active'); - InitCommand=cmd(diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/AnyRightFoot Tap Lift.lua b/NoteSkins/kickbox/default/AnyRightFoot Tap Lift.lua deleted file mode 100644 index af6974d334..0000000000 --- a/NoteSkins/kickbox/default/AnyRightFoot Tap Lift.lua +++ /dev/null @@ -1,10 +0,0 @@ -local t = Def.ActorFrame { - InitCommand=cmd(pulse;effectclock,'beat';effectmagnitude,1,1.2,1); - Def.Sprite { - Texture=NOTESKIN:GetPath( '_AnyRightFoot', 'tap lift' ); - Frame0000=0; - Delay0000=1; - InitCommand=cmd(diffuseramp;effectclock,'beat';effectcolor1,color("1,1,1,1");effectcolor2,color("1,1,1,0.5")); - }; -}; -return t; diff --git a/NoteSkins/kickbox/default/AnyRightFoot tap note (doubleres).png b/NoteSkins/kickbox/default/AnyRightFoot tap note (doubleres).png deleted file mode 100644 index 6cc60d40d3..0000000000 Binary files a/NoteSkins/kickbox/default/AnyRightFoot tap note (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFist Hold Body Active (doubleres).png b/NoteSkins/kickbox/default/DownLeftFist Hold Body Active (doubleres).png deleted file mode 100644 index db01049885..0000000000 Binary files a/NoteSkins/kickbox/default/DownLeftFist Hold Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFist Hold Body Inactive (doubleres).png b/NoteSkins/kickbox/default/DownLeftFist Hold Body Inactive (doubleres).png deleted file mode 100644 index 27a16473b5..0000000000 Binary files a/NoteSkins/kickbox/default/DownLeftFist Hold Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFist Hold BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/DownLeftFist Hold BottomCap Active (doubleres).png deleted file mode 100644 index 3972aee3e0..0000000000 Binary files a/NoteSkins/kickbox/default/DownLeftFist Hold BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFist Hold BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/DownLeftFist Hold BottomCap Inactive (doubleres).png deleted file mode 100644 index 6c13aab879..0000000000 Binary files a/NoteSkins/kickbox/default/DownLeftFist Hold BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFist Hold Head Active.lua b/NoteSkins/kickbox/default/DownLeftFist Hold Head Active.lua deleted file mode 100644 index 546daeca87..0000000000 --- a/NoteSkins/kickbox/default/DownLeftFist Hold Head Active.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('DownRightFist','Hold Head Active'); - InitCommand=cmd(basezoomx,-1;); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/DownLeftFist Hold Head Inactive.lua b/NoteSkins/kickbox/default/DownLeftFist Hold Head Inactive.lua deleted file mode 100644 index 58b947ade3..0000000000 --- a/NoteSkins/kickbox/default/DownLeftFist Hold Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('DownRightFist','Hold Head Active'); - InitCommand=cmd(basezoomx,-1;diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/DownLeftFist Roll Body Active (doubleres).png b/NoteSkins/kickbox/default/DownLeftFist Roll Body Active (doubleres).png deleted file mode 100644 index 80a697aaa0..0000000000 Binary files a/NoteSkins/kickbox/default/DownLeftFist Roll Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFist Roll Body Inactive (doubleres).png b/NoteSkins/kickbox/default/DownLeftFist Roll Body Inactive (doubleres).png deleted file mode 100644 index 1c1c24ac56..0000000000 Binary files a/NoteSkins/kickbox/default/DownLeftFist Roll Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFist Roll BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/DownLeftFist Roll BottomCap Active (doubleres).png deleted file mode 100644 index 5fbd74b81e..0000000000 Binary files a/NoteSkins/kickbox/default/DownLeftFist Roll BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFist Roll BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/DownLeftFist Roll BottomCap Inactive (doubleres).png deleted file mode 100644 index 97a53f1339..0000000000 Binary files a/NoteSkins/kickbox/default/DownLeftFist Roll BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFist Roll Head Active.lua b/NoteSkins/kickbox/default/DownLeftFist Roll Head Active.lua deleted file mode 100644 index ffc18da6b2..0000000000 --- a/NoteSkins/kickbox/default/DownLeftFist Roll Head Active.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('DownRightFist','Roll Head Active'); - InitCommand=cmd(basezoomx,-1;); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/DownLeftFist Roll Head Inactive.lua b/NoteSkins/kickbox/default/DownLeftFist Roll Head Inactive.lua deleted file mode 100644 index dd9179c9d5..0000000000 --- a/NoteSkins/kickbox/default/DownLeftFist Roll Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('DownRightFist','Roll Head Active'); - InitCommand=cmd(basezoomx,-1;diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/DownLeftFist tap note.lua b/NoteSkins/kickbox/default/DownLeftFist tap note.lua deleted file mode 100644 index 0da60031f1..0000000000 --- a/NoteSkins/kickbox/default/DownLeftFist tap note.lua +++ /dev/null @@ -1,5 +0,0 @@ -local t = LoadActor("DownRightFist tap Note") .. { - InitCommand=cmd(basezoomx,-1); -} - -return t; diff --git a/NoteSkins/kickbox/default/DownLeftFoot Hold Body Active (doubleres).png b/NoteSkins/kickbox/default/DownLeftFoot Hold Body Active (doubleres).png deleted file mode 100644 index df3691df3e..0000000000 Binary files a/NoteSkins/kickbox/default/DownLeftFoot Hold Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFoot Hold Body Inactive (doubleres).png b/NoteSkins/kickbox/default/DownLeftFoot Hold Body Inactive (doubleres).png deleted file mode 100644 index 14494e82c4..0000000000 Binary files a/NoteSkins/kickbox/default/DownLeftFoot Hold Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFoot Hold BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/DownLeftFoot Hold BottomCap Active (doubleres).png deleted file mode 100644 index 46e135de94..0000000000 Binary files a/NoteSkins/kickbox/default/DownLeftFoot Hold BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFoot Hold BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/DownLeftFoot Hold BottomCap Inactive (doubleres).png deleted file mode 100644 index f88bc86cfa..0000000000 Binary files a/NoteSkins/kickbox/default/DownLeftFoot Hold BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFoot Hold Head Active.lua b/NoteSkins/kickbox/default/DownLeftFoot Hold Head Active.lua deleted file mode 100644 index c54e0cb61e..0000000000 --- a/NoteSkins/kickbox/default/DownLeftFoot Hold Head Active.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('DownRightFoot','Hold Head Active'); - InitCommand=cmd(basezoomx,-1;); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/DownLeftFoot Hold Head Inactive.lua b/NoteSkins/kickbox/default/DownLeftFoot Hold Head Inactive.lua deleted file mode 100644 index fc85fe577e..0000000000 --- a/NoteSkins/kickbox/default/DownLeftFoot Hold Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('DownRightFoot','Hold Head Active'); - InitCommand=cmd(basezoomx,-1;;diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/DownLeftFoot Roll Body Active (doubleres).png b/NoteSkins/kickbox/default/DownLeftFoot Roll Body Active (doubleres).png deleted file mode 100644 index 0ab2d0ae31..0000000000 Binary files a/NoteSkins/kickbox/default/DownLeftFoot Roll Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFoot Roll Body Inactive (doubleres).png b/NoteSkins/kickbox/default/DownLeftFoot Roll Body Inactive (doubleres).png deleted file mode 100644 index c6fb7b60f7..0000000000 Binary files a/NoteSkins/kickbox/default/DownLeftFoot Roll Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFoot Roll BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/DownLeftFoot Roll BottomCap Active (doubleres).png deleted file mode 100644 index 0360109f8a..0000000000 Binary files a/NoteSkins/kickbox/default/DownLeftFoot Roll BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFoot Roll BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/DownLeftFoot Roll BottomCap Inactive (doubleres).png deleted file mode 100644 index b361a4a42d..0000000000 Binary files a/NoteSkins/kickbox/default/DownLeftFoot Roll BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownLeftFoot Roll Head Active.lua b/NoteSkins/kickbox/default/DownLeftFoot Roll Head Active.lua deleted file mode 100644 index 9ced3372f7..0000000000 --- a/NoteSkins/kickbox/default/DownLeftFoot Roll Head Active.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('DownRightFoot','Roll Head Active'); - InitCommand=cmd(basezoomx,-1;); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/DownLeftFoot Roll Head Inactive.lua b/NoteSkins/kickbox/default/DownLeftFoot Roll Head Inactive.lua deleted file mode 100644 index baab4167b6..0000000000 --- a/NoteSkins/kickbox/default/DownLeftFoot Roll Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('DownRightFoot','Roll Head Active'); - InitCommand=cmd(basezoomx,-1;diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/DownLeftFoot tap note.lua b/NoteSkins/kickbox/default/DownLeftFoot tap note.lua deleted file mode 100644 index 7befd52196..0000000000 --- a/NoteSkins/kickbox/default/DownLeftFoot tap note.lua +++ /dev/null @@ -1,5 +0,0 @@ -local t = LoadActor("DownRightfoot tap Note") .. { - InitCommand=cmd(basezoomx,-1); -} - -return t; diff --git a/NoteSkins/kickbox/default/DownRightFist Hold Body Active (doubleres).png b/NoteSkins/kickbox/default/DownRightFist Hold Body Active (doubleres).png deleted file mode 100644 index db01049885..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFist Hold Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFist Hold Body Inactive (doubleres).png b/NoteSkins/kickbox/default/DownRightFist Hold Body Inactive (doubleres).png deleted file mode 100644 index 27a16473b5..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFist Hold Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFist Hold BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/DownRightFist Hold BottomCap Active (doubleres).png deleted file mode 100644 index 7ce3ea8918..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFist Hold BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFist Hold BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/DownRightFist Hold BottomCap Inactive (doubleres).png deleted file mode 100644 index 48b7f39d65..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFist Hold BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFist Hold Head Active.redir b/NoteSkins/kickbox/default/DownRightFist Hold Head Active.redir deleted file mode 100644 index f75ddace0e..0000000000 --- a/NoteSkins/kickbox/default/DownRightFist Hold Head Active.redir +++ /dev/null @@ -1 +0,0 @@ -DownRightFist Tap Note \ No newline at end of file diff --git a/NoteSkins/kickbox/default/DownRightFist Hold Head Inactive.lua b/NoteSkins/kickbox/default/DownRightFist Hold Head Inactive.lua deleted file mode 100644 index 9421a85389..0000000000 --- a/NoteSkins/kickbox/default/DownRightFist Hold Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('DownRightFist','Hold Head Active'); - InitCommand=cmd(diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/DownRightFist Roll Body Active (doubleres).png b/NoteSkins/kickbox/default/DownRightFist Roll Body Active (doubleres).png deleted file mode 100644 index 7d8e6e4eb0..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFist Roll Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFist Roll Body Inactive (doubleres).png b/NoteSkins/kickbox/default/DownRightFist Roll Body Inactive (doubleres).png deleted file mode 100644 index 7018cca581..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFist Roll Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFist Roll BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/DownRightFist Roll BottomCap Active (doubleres).png deleted file mode 100644 index b49d74be20..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFist Roll BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFist Roll BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/DownRightFist Roll BottomCap Inactive (doubleres).png deleted file mode 100644 index 7e2ba13d7a..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFist Roll BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFist Roll Head Active.redir b/NoteSkins/kickbox/default/DownRightFist Roll Head Active.redir deleted file mode 100644 index f75ddace0e..0000000000 --- a/NoteSkins/kickbox/default/DownRightFist Roll Head Active.redir +++ /dev/null @@ -1 +0,0 @@ -DownRightFist Tap Note \ No newline at end of file diff --git a/NoteSkins/kickbox/default/DownRightFist Roll Head Inactive.lua b/NoteSkins/kickbox/default/DownRightFist Roll Head Inactive.lua deleted file mode 100644 index e932453fbf..0000000000 --- a/NoteSkins/kickbox/default/DownRightFist Roll Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('DownRightFist','Roll Head Active'); - InitCommand=cmd(diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/DownRightFist Tap Note (doubleres).png b/NoteSkins/kickbox/default/DownRightFist Tap Note (doubleres).png deleted file mode 100644 index 4910ff6934..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFist Tap Note (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFoot Hold Body Active (doubleres).png b/NoteSkins/kickbox/default/DownRightFoot Hold Body Active (doubleres).png deleted file mode 100644 index e33823e061..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFoot Hold Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFoot Hold Body Inactive (doubleres).png b/NoteSkins/kickbox/default/DownRightFoot Hold Body Inactive (doubleres).png deleted file mode 100644 index e0ce58df3f..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFoot Hold Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFoot Hold BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/DownRightFoot Hold BottomCap Active (doubleres).png deleted file mode 100644 index 0ea451be10..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFoot Hold BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFoot Hold BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/DownRightFoot Hold BottomCap Inactive (doubleres).png deleted file mode 100644 index 59a3396f10..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFoot Hold BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFoot Hold Head Active.redir b/NoteSkins/kickbox/default/DownRightFoot Hold Head Active.redir deleted file mode 100644 index cfce5762a3..0000000000 --- a/NoteSkins/kickbox/default/DownRightFoot Hold Head Active.redir +++ /dev/null @@ -1 +0,0 @@ -DownRightFoot Tap Note \ No newline at end of file diff --git a/NoteSkins/kickbox/default/DownRightFoot Hold Head Inactive.lua b/NoteSkins/kickbox/default/DownRightFoot Hold Head Inactive.lua deleted file mode 100644 index 3da4bc208f..0000000000 --- a/NoteSkins/kickbox/default/DownRightFoot Hold Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('DownRightFoot','Hold Head Active'); - InitCommand=cmd(diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/DownRightFoot Roll Body Active (doubleres).png b/NoteSkins/kickbox/default/DownRightFoot Roll Body Active (doubleres).png deleted file mode 100644 index 4a5053ae40..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFoot Roll Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFoot Roll Body Inactive (doubleres).png b/NoteSkins/kickbox/default/DownRightFoot Roll Body Inactive (doubleres).png deleted file mode 100644 index 62d6829cd3..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFoot Roll Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFoot Roll BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/DownRightFoot Roll BottomCap Active (doubleres).png deleted file mode 100644 index 452664de64..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFoot Roll BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFoot Roll BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/DownRightFoot Roll BottomCap Inactive (doubleres).png deleted file mode 100644 index 4c215082a6..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFoot Roll BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/DownRightFoot Roll Head Active.redir b/NoteSkins/kickbox/default/DownRightFoot Roll Head Active.redir deleted file mode 100644 index cfce5762a3..0000000000 --- a/NoteSkins/kickbox/default/DownRightFoot Roll Head Active.redir +++ /dev/null @@ -1 +0,0 @@ -DownRightFoot Tap Note \ No newline at end of file diff --git a/NoteSkins/kickbox/default/DownRightFoot Roll Head Inactive.lua b/NoteSkins/kickbox/default/DownRightFoot Roll Head Inactive.lua deleted file mode 100644 index 1a8e3831e1..0000000000 --- a/NoteSkins/kickbox/default/DownRightFoot Roll Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('DownRightFoot','Roll Head Active'); - InitCommand=cmd(diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/DownRightFoot tap note (doubleres).png b/NoteSkins/kickbox/default/DownRightFoot tap note (doubleres).png deleted file mode 100644 index 03175feae6..0000000000 Binary files a/NoteSkins/kickbox/default/DownRightFoot tap note (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/Fallback HitMine Explosion.png b/NoteSkins/kickbox/default/Fallback HitMine Explosion.png deleted file mode 100644 index 34c26623b2..0000000000 Binary files a/NoteSkins/kickbox/default/Fallback HitMine Explosion.png and /dev/null differ diff --git a/NoteSkins/kickbox/default/NoteSkin.lua b/NoteSkins/kickbox/default/NoteSkin.lua deleted file mode 100644 index 36d13e337a..0000000000 --- a/NoteSkins/kickbox/default/NoteSkin.lua +++ /dev/null @@ -1,77 +0,0 @@ -local ret = ... or {}; - -local pn = Var "Player" - -local OldRedir = ret.Redir; -ret.Redir = function(sButton, sElement) - -- Replace all receptors with genericized ones - if string.find(sButton,"RightFoot") and string.find(sElement, "Receptor") then - return "AnyRightFoot", "Receptor" - end - if string.find(sButton,"LeftFoot") and string.find(sElement, "Receptor") then - return "AnyLeftFoot", "Receptor" - end - if string.find(sButton,"RightFist") and string.find(sElement, "Receptor") then - return "AnyRightFist", "Receptor" - end - if string.find(sButton,"LeftFist") and string.find(sElement, "Receptor") then - return "AnyLeftFist", "Receptor" - end - - -- Replace all Lifts with genericized ones - if string.find(sButton,"RightFoot") and string.find(sElement, "Tap Lift") then - return "AnyRightFoot", "Tap Lift" - end - if string.find(sButton,"LeftFoot") and string.find(sElement, "Tap Lift") then - return "AnyLeftFoot", "Tap Lift" - end - if string.find(sButton,"RightFist") and string.find(sElement, "Tap Lift") then - return "AnyRightFist", "Tap Lift" - end - if string.find(sButton,"LeftFist") and string.find(sElement, "Tap Lift") then - return "AnyLeftFist", "Tap Lift" - end - - -- Replace all explosions with AnyRight* or AnyLeft*. Is there a better way to do this? - if string.find(sButton,"RightFoot") and string.find(sElement, "Explosion") then - return "AnyRightFoot", "Explosion" - end - if string.find(sButton,"LeftFoot") and string.find(sElement, "Explosion") then - return "AnyLeftFoot", "Explosion" - end - if string.find(sButton,"RightFist") and string.find(sElement, "Explosion") then - return "AnyRightFist", "Explosion" - end - if string.find(sButton,"LeftFist") and string.find(sElement, "Explosion") then - return "AnyLeftFist", "Explosion" - end - - if (GAMESTATE:GetCurrentStyle(pn):GetStepsType() == "StepsType_Kickbox_Human") then - if string.find(sButton, "LeftFoot") then - sButton = "AnyLeftFoot" - end - if string.find(sButton, "RightFoot") then - sButton = "AnyRightFoot" - end - -- - if string.find(sButton, "LeftFist") then - sButton = "AnyLeftFist" - end - if string.find(sButton, "RightFist") then - sButton = "AnyRightFist" - end - end - - if (GAMESTATE:GetCurrentStyle(pn):GetStepsType() == "StepsType_Kickbox_Insect") then - if string.find(sButton, "LeftFoot") then - sButton = "AnyLeftFoot" - end - if string.find(sButton, "RightFoot") then - sButton = "AnyRightFoot" - end - end - -- return OldRedir(sButton, sElement); - return sButton, sElement -end - -return ret \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpLeftFist Hold Body Active (doubleres).png b/NoteSkins/kickbox/default/UpLeftFist Hold Body Active (doubleres).png deleted file mode 100644 index 45cc937c45..0000000000 Binary files a/NoteSkins/kickbox/default/UpLeftFist Hold Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpLeftFist Hold Body Inactive (doubleres).png b/NoteSkins/kickbox/default/UpLeftFist Hold Body Inactive (doubleres).png deleted file mode 100644 index 27a16473b5..0000000000 Binary files a/NoteSkins/kickbox/default/UpLeftFist Hold Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpLeftFist Hold BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/UpLeftFist Hold BottomCap Active (doubleres).png deleted file mode 100644 index cedaa8d60c..0000000000 Binary files a/NoteSkins/kickbox/default/UpLeftFist Hold BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpLeftFist Hold BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/UpLeftFist Hold BottomCap Inactive (doubleres).png deleted file mode 100644 index 6c13aab879..0000000000 Binary files a/NoteSkins/kickbox/default/UpLeftFist Hold BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpLeftFist Hold Head Active.lua b/NoteSkins/kickbox/default/UpLeftFist Hold Head Active.lua deleted file mode 100644 index fc9b4d75fb..0000000000 --- a/NoteSkins/kickbox/default/UpLeftFist Hold Head Active.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('UpRightFist','Hold Head Active'); - InitCommand=cmd(basezoomx,-1); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpLeftFist Hold Head Inactive.lua b/NoteSkins/kickbox/default/UpLeftFist Hold Head Inactive.lua deleted file mode 100644 index 843b85ee6f..0000000000 --- a/NoteSkins/kickbox/default/UpLeftFist Hold Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('UpRightFist','Hold Head Active'); - InitCommand=cmd(basezoomx,-1;diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpLeftFist Roll Body Active (doubleres).png b/NoteSkins/kickbox/default/UpLeftFist Roll Body Active (doubleres).png deleted file mode 100644 index 2b1ba16fdc..0000000000 Binary files a/NoteSkins/kickbox/default/UpLeftFist Roll Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpLeftFist Roll Body Inactive (doubleres).png b/NoteSkins/kickbox/default/UpLeftFist Roll Body Inactive (doubleres).png deleted file mode 100644 index 1c1c24ac56..0000000000 Binary files a/NoteSkins/kickbox/default/UpLeftFist Roll Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpLeftFist Roll BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/UpLeftFist Roll BottomCap Active (doubleres).png deleted file mode 100644 index 29c99b9ceb..0000000000 Binary files a/NoteSkins/kickbox/default/UpLeftFist Roll BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpLeftFist Roll BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/UpLeftFist Roll BottomCap Inactive (doubleres).png deleted file mode 100644 index 97a53f1339..0000000000 Binary files a/NoteSkins/kickbox/default/UpLeftFist Roll BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpLeftFist Roll Head Active.lua b/NoteSkins/kickbox/default/UpLeftFist Roll Head Active.lua deleted file mode 100644 index 130785536e..0000000000 --- a/NoteSkins/kickbox/default/UpLeftFist Roll Head Active.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('UpRightFist','Roll Head Active'); - InitCommand=cmd(basezoomx,-1); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpLeftFist Roll Head Inactive.lua b/NoteSkins/kickbox/default/UpLeftFist Roll Head Inactive.lua deleted file mode 100644 index 5a4f6740e1..0000000000 --- a/NoteSkins/kickbox/default/UpLeftFist Roll Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('UpRightFist','Roll Head Active'); - InitCommand=cmd(basezoomx,-1;diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpLeftFist tap note.lua b/NoteSkins/kickbox/default/UpLeftFist tap note.lua deleted file mode 100644 index 19354e02ef..0000000000 --- a/NoteSkins/kickbox/default/UpLeftFist tap note.lua +++ /dev/null @@ -1,5 +0,0 @@ -local t = LoadActor("UpRightFist tap Note") .. { - InitCommand=cmd(basezoomx,-1); -} - -return t; diff --git a/NoteSkins/kickbox/default/UpLeftFoot Hold Body Active (doubleres).png b/NoteSkins/kickbox/default/UpLeftFoot Hold Body Active (doubleres).png deleted file mode 100644 index 04df3ae21f..0000000000 Binary files a/NoteSkins/kickbox/default/UpLeftFoot Hold Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpLeftFoot Hold Body Inactive (doubleres).png b/NoteSkins/kickbox/default/UpLeftFoot Hold Body Inactive (doubleres).png deleted file mode 100644 index 14494e82c4..0000000000 Binary files a/NoteSkins/kickbox/default/UpLeftFoot Hold Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpLeftFoot Hold BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/UpLeftFoot Hold BottomCap Active (doubleres).png deleted file mode 100644 index ad57537f3b..0000000000 Binary files a/NoteSkins/kickbox/default/UpLeftFoot Hold BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpLeftFoot Hold BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/UpLeftFoot Hold BottomCap Inactive (doubleres).png deleted file mode 100644 index f88bc86cfa..0000000000 Binary files a/NoteSkins/kickbox/default/UpLeftFoot Hold BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpLeftFoot Hold Head Active.lua b/NoteSkins/kickbox/default/UpLeftFoot Hold Head Active.lua deleted file mode 100644 index 61146282f1..0000000000 --- a/NoteSkins/kickbox/default/UpLeftFoot Hold Head Active.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('UpRightFoot','Hold Head Active'); - InitCommand=cmd(basezoomx,-1); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpLeftFoot Hold Head Inactive.lua b/NoteSkins/kickbox/default/UpLeftFoot Hold Head Inactive.lua deleted file mode 100644 index c5a6822b3a..0000000000 --- a/NoteSkins/kickbox/default/UpLeftFoot Hold Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('UpRightFoot','Hold Head Active'); - InitCommand=cmd(basezoomx,-1;diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpLeftFoot Roll Body Active (doubleres).png b/NoteSkins/kickbox/default/UpLeftFoot Roll Body Active (doubleres).png deleted file mode 100644 index 73aa60a8bb..0000000000 Binary files a/NoteSkins/kickbox/default/UpLeftFoot Roll Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpLeftFoot Roll Body Inactive (doubleres).png b/NoteSkins/kickbox/default/UpLeftFoot Roll Body Inactive (doubleres).png deleted file mode 100644 index c6fb7b60f7..0000000000 Binary files a/NoteSkins/kickbox/default/UpLeftFoot Roll Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpLeftFoot Roll BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/UpLeftFoot Roll BottomCap Active (doubleres).png deleted file mode 100644 index 34196a23cc..0000000000 Binary files a/NoteSkins/kickbox/default/UpLeftFoot Roll BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpLeftFoot Roll BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/UpLeftFoot Roll BottomCap Inactive (doubleres).png deleted file mode 100644 index b361a4a42d..0000000000 Binary files a/NoteSkins/kickbox/default/UpLeftFoot Roll BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpLeftFoot Roll Head Active.lua b/NoteSkins/kickbox/default/UpLeftFoot Roll Head Active.lua deleted file mode 100644 index dde3793531..0000000000 --- a/NoteSkins/kickbox/default/UpLeftFoot Roll Head Active.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('UpRightFoot','Roll Head Active'); - InitCommand=cmd(basezoomx,-1); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpLeftFoot Roll Head Inactive.lua b/NoteSkins/kickbox/default/UpLeftFoot Roll Head Inactive.lua deleted file mode 100644 index e6cf005901..0000000000 --- a/NoteSkins/kickbox/default/UpLeftFoot Roll Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('UpRightFoot','Roll Head Active'); - InitCommand=cmd(basezoomx,-1;diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpLeftFoot tap note.lua b/NoteSkins/kickbox/default/UpLeftFoot tap note.lua deleted file mode 100644 index b5a0ee700a..0000000000 --- a/NoteSkins/kickbox/default/UpLeftFoot tap note.lua +++ /dev/null @@ -1,5 +0,0 @@ -local t = LoadActor("UpRightFoot tap Note") .. { - InitCommand=cmd(basezoomx,-1); -} - -return t; diff --git a/NoteSkins/kickbox/default/UpRightFist Hold Body Active (doubleres).png b/NoteSkins/kickbox/default/UpRightFist Hold Body Active (doubleres).png deleted file mode 100644 index 45cc937c45..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFist Hold Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFist Hold Body Inactive (doubleres).png b/NoteSkins/kickbox/default/UpRightFist Hold Body Inactive (doubleres).png deleted file mode 100644 index 27a16473b5..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFist Hold Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFist Hold BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/UpRightFist Hold BottomCap Active (doubleres).png deleted file mode 100644 index ca71791d1f..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFist Hold BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFist Hold BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/UpRightFist Hold BottomCap Inactive (doubleres).png deleted file mode 100644 index 48b7f39d65..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFist Hold BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFist Hold Head Active.redir b/NoteSkins/kickbox/default/UpRightFist Hold Head Active.redir deleted file mode 100644 index dd2524567c..0000000000 --- a/NoteSkins/kickbox/default/UpRightFist Hold Head Active.redir +++ /dev/null @@ -1 +0,0 @@ -UpRightFist tap note \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpRightFist Hold Head Inactive.lua b/NoteSkins/kickbox/default/UpRightFist Hold Head Inactive.lua deleted file mode 100644 index 6ee636e5ae..0000000000 --- a/NoteSkins/kickbox/default/UpRightFist Hold Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('UpRightFist','Hold Head Active'); - InitCommand=cmd(diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpRightFist Roll Body Active (doubleres).png b/NoteSkins/kickbox/default/UpRightFist Roll Body Active (doubleres).png deleted file mode 100644 index 6340cd7e48..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFist Roll Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFist Roll Body Inactive (doubleres).png b/NoteSkins/kickbox/default/UpRightFist Roll Body Inactive (doubleres).png deleted file mode 100644 index 7018cca581..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFist Roll Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFist Roll BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/UpRightFist Roll BottomCap Active (doubleres).png deleted file mode 100644 index b4347051f9..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFist Roll BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFist Roll BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/UpRightFist Roll BottomCap Inactive (doubleres).png deleted file mode 100644 index 7e2ba13d7a..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFist Roll BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFist Roll Head Active.redir b/NoteSkins/kickbox/default/UpRightFist Roll Head Active.redir deleted file mode 100644 index dd2524567c..0000000000 --- a/NoteSkins/kickbox/default/UpRightFist Roll Head Active.redir +++ /dev/null @@ -1 +0,0 @@ -UpRightFist tap note \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpRightFist Roll Head Inactive.lua b/NoteSkins/kickbox/default/UpRightFist Roll Head Inactive.lua deleted file mode 100644 index 8224fb70dc..0000000000 --- a/NoteSkins/kickbox/default/UpRightFist Roll Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('UpRightFist','Roll Head Active'); - InitCommand=cmd(diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpRightFist Tap Note (doubleres).png b/NoteSkins/kickbox/default/UpRightFist Tap Note (doubleres).png deleted file mode 100644 index 691ed89bd8..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFist Tap Note (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFoot Hold Body Active (doubleres).png b/NoteSkins/kickbox/default/UpRightFoot Hold Body Active (doubleres).png deleted file mode 100644 index 2d23d94c70..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFoot Hold Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFoot Hold Body Inactive (doubleres).png b/NoteSkins/kickbox/default/UpRightFoot Hold Body Inactive (doubleres).png deleted file mode 100644 index e0ce58df3f..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFoot Hold Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFoot Hold BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/UpRightFoot Hold BottomCap Active (doubleres).png deleted file mode 100644 index 5dc1b546fa..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFoot Hold BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFoot Hold BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/UpRightFoot Hold BottomCap Inactive (doubleres).png deleted file mode 100644 index 59a3396f10..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFoot Hold BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFoot Hold Head Active.redir b/NoteSkins/kickbox/default/UpRightFoot Hold Head Active.redir deleted file mode 100644 index 173d519124..0000000000 --- a/NoteSkins/kickbox/default/UpRightFoot Hold Head Active.redir +++ /dev/null @@ -1 +0,0 @@ -UpRightFoot tap note \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpRightFoot Hold Head Inactive.lua b/NoteSkins/kickbox/default/UpRightFoot Hold Head Inactive.lua deleted file mode 100644 index f6ece95dcf..0000000000 --- a/NoteSkins/kickbox/default/UpRightFoot Hold Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('UpRightFoot','Hold Head Active'); - InitCommand=cmd(diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpRightFoot Roll Body Active (doubleres).png b/NoteSkins/kickbox/default/UpRightFoot Roll Body Active (doubleres).png deleted file mode 100644 index 11558f0025..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFoot Roll Body Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFoot Roll Body Inactive (doubleres).png b/NoteSkins/kickbox/default/UpRightFoot Roll Body Inactive (doubleres).png deleted file mode 100644 index 62d6829cd3..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFoot Roll Body Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFoot Roll BottomCap Active (doubleres).png b/NoteSkins/kickbox/default/UpRightFoot Roll BottomCap Active (doubleres).png deleted file mode 100644 index dd7770fd1b..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFoot Roll BottomCap Active (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFoot Roll BottomCap Inactive (doubleres).png b/NoteSkins/kickbox/default/UpRightFoot Roll BottomCap Inactive (doubleres).png deleted file mode 100644 index 4c215082a6..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFoot Roll BottomCap Inactive (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/UpRightFoot Roll Head Active.redir b/NoteSkins/kickbox/default/UpRightFoot Roll Head Active.redir deleted file mode 100644 index 173d519124..0000000000 --- a/NoteSkins/kickbox/default/UpRightFoot Roll Head Active.redir +++ /dev/null @@ -1 +0,0 @@ -UpRightFoot tap note \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpRightFoot Roll Head Inactive.lua b/NoteSkins/kickbox/default/UpRightFoot Roll Head Inactive.lua deleted file mode 100644 index 8c1e64442a..0000000000 --- a/NoteSkins/kickbox/default/UpRightFoot Roll Head Inactive.lua +++ /dev/null @@ -1,4 +0,0 @@ -return Def.Sprite { - Texture=NOTESKIN:GetPath('UpRightFoot','Roll Head Active'); - InitCommand=cmd(diffuse,color("0.5,0.5,0.5,1")); -}; \ No newline at end of file diff --git a/NoteSkins/kickbox/default/UpRightFoot tap note (doubleres).png b/NoteSkins/kickbox/default/UpRightFoot tap note (doubleres).png deleted file mode 100644 index 3b7b2103c6..0000000000 Binary files a/NoteSkins/kickbox/default/UpRightFoot tap note (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/_AnyRightFist Hold Explosion.redir b/NoteSkins/kickbox/default/_AnyRightFist Hold Explosion.redir deleted file mode 100644 index da0637f259..0000000000 --- a/NoteSkins/kickbox/default/_AnyRightFist Hold Explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_AnyRightFist Tap explosion dim \ No newline at end of file diff --git a/NoteSkins/kickbox/default/_AnyRightFist Roll Explosion.redir b/NoteSkins/kickbox/default/_AnyRightFist Roll Explosion.redir deleted file mode 100644 index da0637f259..0000000000 --- a/NoteSkins/kickbox/default/_AnyRightFist Roll Explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_AnyRightFist Tap explosion dim \ No newline at end of file diff --git a/NoteSkins/kickbox/default/_AnyRightFist Tap Explosion Dim (doubleres).png b/NoteSkins/kickbox/default/_AnyRightFist Tap Explosion Dim (doubleres).png deleted file mode 100644 index 7072601112..0000000000 Binary files a/NoteSkins/kickbox/default/_AnyRightFist Tap Explosion Dim (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/_AnyRightFist Tap Lift (doubleres).png b/NoteSkins/kickbox/default/_AnyRightFist Tap Lift (doubleres).png deleted file mode 100644 index 8bf71144a5..0000000000 Binary files a/NoteSkins/kickbox/default/_AnyRightFist Tap Lift (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/_AnyRightFist receptor frame (doubleres).png b/NoteSkins/kickbox/default/_AnyRightFist receptor frame (doubleres).png deleted file mode 100644 index 8e5c28506e..0000000000 Binary files a/NoteSkins/kickbox/default/_AnyRightFist receptor frame (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/_AnyRightFist receptor underlay (doubleres).png b/NoteSkins/kickbox/default/_AnyRightFist receptor underlay (doubleres).png deleted file mode 100644 index 067dbeebff..0000000000 Binary files a/NoteSkins/kickbox/default/_AnyRightFist receptor underlay (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/_AnyRightFoot Hold Explosion.redir b/NoteSkins/kickbox/default/_AnyRightFoot Hold Explosion.redir deleted file mode 100644 index 92395ce391..0000000000 --- a/NoteSkins/kickbox/default/_AnyRightFoot Hold Explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_AnyRightFoot Tap explosion dim \ No newline at end of file diff --git a/NoteSkins/kickbox/default/_AnyRightFoot Roll Explosion.redir b/NoteSkins/kickbox/default/_AnyRightFoot Roll Explosion.redir deleted file mode 100644 index 92395ce391..0000000000 --- a/NoteSkins/kickbox/default/_AnyRightFoot Roll Explosion.redir +++ /dev/null @@ -1 +0,0 @@ -_AnyRightFoot Tap explosion dim \ No newline at end of file diff --git a/NoteSkins/kickbox/default/_AnyRightFoot Tap Explosion Dim (doubleres).png b/NoteSkins/kickbox/default/_AnyRightFoot Tap Explosion Dim (doubleres).png deleted file mode 100644 index ac8b969e48..0000000000 Binary files a/NoteSkins/kickbox/default/_AnyRightFoot Tap Explosion Dim (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/_AnyRightFoot Tap Lift (doubleres).png b/NoteSkins/kickbox/default/_AnyRightFoot Tap Lift (doubleres).png deleted file mode 100644 index 25f1ef1f6b..0000000000 Binary files a/NoteSkins/kickbox/default/_AnyRightFoot Tap Lift (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/_AnyRightFoot receptor frame (doubleres).png b/NoteSkins/kickbox/default/_AnyRightFoot receptor frame (doubleres).png deleted file mode 100644 index 8c930452e1..0000000000 Binary files a/NoteSkins/kickbox/default/_AnyRightFoot receptor frame (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/_AnyRightFoot receptor underlay (doubleres).png b/NoteSkins/kickbox/default/_AnyRightFoot receptor underlay (doubleres).png deleted file mode 100644 index 539556d338..0000000000 Binary files a/NoteSkins/kickbox/default/_AnyRightFoot receptor underlay (doubleres).png and /dev/null differ diff --git a/NoteSkins/kickbox/default/metrics.ini b/NoteSkins/kickbox/default/metrics.ini deleted file mode 100644 index a9376cb03c..0000000000 --- a/NoteSkins/kickbox/default/metrics.ini +++ /dev/null @@ -1,57 +0,0 @@ -[Global] -FallbackNoteSkin=common - -[NoteDisplay] -StartDrawingHoldBodyOffsetFromHead=-12 -StopDrawingHoldBodyOffsetFromTail=-32 // top of tail - -FlipHeadAndTailWhenReverse=0 -FlipHoldBodyWhenReverse=0 - -[GhostArrowDim] -HitMineCommand=blend,"BlendMode_Add";diffuse,1,1,1,1;zoom,1;rotationz,0;linear,0.3;rotationz,90;linear,0.3;rotationz,180;diffusealpha,0 -W5Command=diffuse,0.8,0.0,0.6,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -W4Command=diffuse,0.3,0.8,1.0,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -W3Command=diffuse,0.0,1.0,0.4,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -W2Command=diffuse,1.0,1.0,0.3,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -W1Command=diffuse,1.0,1.0,1.0,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -HeldCommand=diffuse,1.0,1.0,1.0,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 - -[GhostArrowBright] -NoneCommand= -HitMineCommand=blend,"BlendMode_Add";diffuse,1,1,1,1;zoom,1;rotationz,0;linear,0.3;rotationz,90;linear,0.3;rotationz,180;diffusealpha,0 -AvoidMineCommand= -MissCommand= -W5Command=diffuse,0.8,0.0,0.6,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -W4Command=diffuse,0.3,0.8,1.0,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -W3Command=diffuse,0.0,1.0,0.4,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -W2Command=diffuse,1.0,1.0,0.3,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -W1Command=diffuse,1.0,1.0,1.0,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 -HeldCommand=diffuse,1.0,1.0,1.0,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0 - -[HoldGhostArrow] -HoldingOnCommand=visible,true;pulse;effectmagnitude,1,1.1,1;effectclock,'beat';effectperiod,0.125 -HoldingOffCommand=visible,false;stopeffect; -RollOnCommand=visible,true;pulse;effectmagnitude,1,1.1,1;effectclock,'beat';effectperiod,0.125 -RollOffCommand=visible,false;stopeffect; - -[ReceptorArrow] -InitCommand=effectclock,'beat';glowramp;effectcolor1,color("1,1,1,0");effectcolor2,color("1,1,1,0.5"); -# By default, always step. Individual game skins can override this. -NoneCommand= -HitMineCommand= -AvoidMineCommand= -MissCommand= -W5Command= -W4Command= -W3Command= -W2Command= -W1Command= -PressCommand=stoptweening;bounceend,0.05;zoom,0.75 -LiftCommand=stoptweening;decelerate,0.1;zoom,1 - -[ReceptorOverlay] -InitCommand= -PressCommand=stoptweening;bounceend,0.05;zoom,0.75 -LiftCommand=stoptweening;decelerate,0.1;zoom,1 -NoneCommand= \ No newline at end of file