Fix Fake Note rotation and remove redir (done in noteskin.lua)
This commit is contained in:
@@ -1 +0,0 @@
|
||||
Down Tap Note
|
||||
@@ -18,7 +18,8 @@ ret.Redir = function(sButton, sElement)
|
||||
if sElement == "Hold Head Inactive" or
|
||||
sElement == "Hold Head Active" or
|
||||
sElement == "Roll Head Inactive" or
|
||||
sElement == "Roll Head Active"
|
||||
sElement == "Roll Head Active" or
|
||||
sElement == "Tap Fake"
|
||||
then
|
||||
sElement = "Tap Note";
|
||||
end
|
||||
@@ -61,6 +62,7 @@ ret.PartsToRotate =
|
||||
["Tap Explosion Bright"] = true,
|
||||
["Tap Explosion Dim"] = true,
|
||||
["Tap Note"] = true,
|
||||
["Tap Fake"] = true,
|
||||
["Hold Head Active"] = true,
|
||||
["Hold Head Inactive"] = true,
|
||||
["Roll Head Active"] = true,
|
||||
|
||||
@@ -16,7 +16,7 @@ ret.Redir = function(sButton, sElement)
|
||||
sButton, sElement = OldRedir(sButton, sElement);
|
||||
|
||||
--Point the head files back to the tap note
|
||||
if string.find(sElement, "Head") then
|
||||
if string.find(sElement, "Head") or sElement == "Tap Fake" then
|
||||
sElement = "Tap Note";
|
||||
end
|
||||
|
||||
@@ -42,14 +42,15 @@ ret.PartsToRotate =
|
||||
{
|
||||
["Receptor"] = true,
|
||||
["Tap Note"] = true,
|
||||
["Tap Lift"] = true,
|
||||
["Tap Fake"] = true,
|
||||
["Ready Receptor"] = true,
|
||||
["Tap Explosion Bright"] = true,
|
||||
["Tap Explosion Dim"] = true,
|
||||
["Hold Head Active"] = true,
|
||||
["Hold Head Inactive"] = true,
|
||||
["Roll Head Active"] = true,
|
||||
["Roll Head Inactive"] = true,
|
||||
["Tap Lift"] = true,
|
||||
["Roll Head Inactive"] = true
|
||||
};
|
||||
ret.Rotate =
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user