updates to midi-note and midi-vivid from saturn
|
After Width: | Height: | Size: 8.7 KiB |
|
Before Width: | Height: | Size: 335 B |
|
After Width: | Height: | Size: 8.8 KiB |
|
Before Width: | Height: | Size: 405 B |
|
After Width: | Height: | Size: 4.6 KiB |
|
Before Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 7.1 KiB |
|
Before Width: | Height: | Size: 372 B |
|
After Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 463 B |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
@@ -1,4 +0,0 @@
|
||||
return Def.Sprite {
|
||||
Texture=NOTESKIN:GetPath('Down','Roll BottomCap Active');
|
||||
InitCommand=cmd(diffuse,color("0.5,0.5,0.5,0.5"));
|
||||
};
|
||||
|
After Width: | Height: | Size: 7.7 KiB |
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -14,7 +14,7 @@ ret.RedirTable =
|
||||
|
||||
local OldRedir = ret.Redir;
|
||||
ret.Redir = function(sButton, sElement)
|
||||
sButton, sElement = OldRedir(sButton, sElement);
|
||||
-- sButton, sElement = OldRedir(sButton, sElement);
|
||||
|
||||
-- Instead of separate hold heads, use the tap note graphics.
|
||||
if sElement == "Hold Head Inactive" or
|
||||
@@ -30,16 +30,23 @@ ret.Redir = function(sButton, sElement)
|
||||
return sButton, sElement;
|
||||
end
|
||||
|
||||
-- local OldRedir = ret.Redir;
|
||||
-- ret.Redir = function(sButton, sElement)
|
||||
-- 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
|
||||
if string.find(sElement, "hold") or string.find(sElement, "roll") then
|
||||
return sButton, sElement;
|
||||
end
|
||||
return OldRedir(sButton, sElement);
|
||||
end
|
||||
|
||||
--[[
|
||||
local OldFunc = ret.Load;
|
||||
function ret.Load()
|
||||
local t = OldFunc();
|
||||
@@ -52,6 +59,18 @@ function ret.Load()
|
||||
end
|
||||
return t;
|
||||
end
|
||||
]]
|
||||
|
||||
local OldFunc = ret.Load;
|
||||
function ret.Load()
|
||||
local t = OldFunc();
|
||||
|
||||
--Explosion should not be rotated; it calls other actors.
|
||||
if Var "Element" == "Explosion" then
|
||||
t.BaseRotationZ = nil;
|
||||
end
|
||||
return t;
|
||||
end
|
||||
|
||||
ret.PartsToRotate =
|
||||
{
|
||||
|
||||
|
After Width: | Height: | Size: 225 KiB |
|
Before Width: | Height: | Size: 113 KiB |
|
After Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -1,5 +1,5 @@
|
||||
[Global]
|
||||
# FallbackNoteSkin=default
|
||||
FallbackNoteSkin=default
|
||||
|
||||
[NoteDisplay]
|
||||
TapNoteAnimationIsVivid=0
|
||||
@@ -61,6 +61,10 @@ W1Command=blend,'BlendMode_Add';diffuse,1.0,1.0,1.0,0.875;zoom,1;linear,0.06;zoo
|
||||
LetGoCommand=blend,'BlendMode_Add';
|
||||
HeldCommand=blend,'BlendMode_Add';diffuse,1.0,1.0,0.3,0.875;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0
|
||||
|
||||
[HoldGhostArrow]
|
||||
HoldingOnCommand=hidden,0
|
||||
HoldingOffCommand=hidden,1
|
||||
|
||||
[ReceptorArrow]
|
||||
W3Command=stoptweening;zoom,1.15;linear,0.12;zoom,1
|
||||
W2Command=stoptweening;zoom,1.15;linear,0.12;zoom,1
|
||||
|
||||