Add NoteSkin for KB7
|
After Width: | Height: | Size: 7.4 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 5.1 KiB |
@@ -0,0 +1 @@
|
|||||||
|
return LoadActor( NOTESKIN:GetPath("", "_Tap Receptor"), NOTESKIN:LoadActor( Var "Button", "Go Receptor" ) );
|
||||||
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 5.3 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 6.3 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
return Def.Sprite {
|
||||||
|
Texture=NOTESKIN:GetPath( '_down', 'tap note' );
|
||||||
|
Frames = Sprite.LinearFrames( 4, 1 );
|
||||||
|
};
|
||||||
@@ -0,0 +1,101 @@
|
|||||||
|
local ret = ... or {};
|
||||||
|
|
||||||
|
ret.RedirTable =
|
||||||
|
{
|
||||||
|
Key1 = "Down",
|
||||||
|
Key2 = "Down",
|
||||||
|
Key3 = "Down",
|
||||||
|
Key4 = "Down",
|
||||||
|
Key5 = "Down",
|
||||||
|
Key6 = "Down",
|
||||||
|
Key7 = "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 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;
|
||||||
|
After Width: | Height: | Size: 78 KiB |
@@ -0,0 +1,62 @@
|
|||||||
|
[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.5
|
||||||
|
TapNoteAdditionTextureCoordOffsetY=0
|
||||||
|
FlipHeadAndTailWhenReverse=1
|
||||||
|
FlipHoldBodyWhenReverse=1
|
||||||
|
TopHoldAnchorWhenReverse=1
|
||||||
|
|
||||||
|
TapNoteNoteColorTextureCoordSpacingX=0
|
||||||
|
TapNoteNoteColorTextureCoordSpacingY=0.125
|
||||||
|
HoldHeadNoteColorTextureCoordSpacingX=0
|
||||||
|
HoldHeadNoteColorTextureCoordSpacingY=0.125
|
||||||
|
|
||||||
|
[GhostArrowDim]
|
||||||
|
NoneCommand=
|
||||||
|
HitMineCommand=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=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=
|
||||||
|
|
||||||