fallback changes from Midi
This commit is contained in:
@@ -175,3 +175,24 @@ function ScoreMissedHoldsAndRolls()
|
|||||||
else return true;
|
else return true;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
local tNotePositions = {
|
||||||
|
-- DDR
|
||||||
|
Classic = {
|
||||||
|
-144,
|
||||||
|
144,
|
||||||
|
},
|
||||||
|
-- ITG
|
||||||
|
Modern = {
|
||||||
|
-125,
|
||||||
|
145,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
function GetTapPosition( sType )
|
||||||
|
bCategory = (sType == 'Standard') and 1 or 2;
|
||||||
|
-- true: Classic
|
||||||
|
-- false: Modern
|
||||||
|
bPreference = GetUserPrefB("UserPrefNotePosition") and "Classic" or "Modern";
|
||||||
|
tNotePos = tNotePositions[bPreference];
|
||||||
|
return tNotePos[bCategory]
|
||||||
|
end
|
||||||
@@ -822,8 +822,8 @@ NumGradeTiersUsed=7
|
|||||||
|
|
||||||
[Player]
|
[Player]
|
||||||
# In The Groove
|
# In The Groove
|
||||||
ReceptorArrowsYStandard=-125
|
# ReceptorArrowsYStandard=-125
|
||||||
ReceptorArrowsYReverse=145
|
# ReceptorArrowsYReverse=145
|
||||||
# StepMania Alpha 4
|
# StepMania Alpha 4
|
||||||
# ~ ReceptorArrowsYStandard=-144
|
# ~ ReceptorArrowsYStandard=-144
|
||||||
# ~ ReceptorArrowsYReverse=144
|
# ~ ReceptorArrowsYReverse=144
|
||||||
@@ -1911,7 +1911,7 @@ Effect,9="mod,tornado;name,Tornado"
|
|||||||
Effect,10="mod,tipsy;name,Tipsy"
|
Effect,10="mod,tipsy;name,Tipsy"
|
||||||
Effect,11="mod,bumpy;name,Bumpy"
|
Effect,11="mod,bumpy;name,Bumpy"
|
||||||
Effect,12="mod,beat;name,Beat"
|
Effect,12="mod,beat;name,Beat"
|
||||||
Effect,13="mod,xmode;name,XMode"
|
Effect,13="mod,45% xmode;name,XMode"
|
||||||
|
|
||||||
# Effect="9"
|
# Effect="9"
|
||||||
# EffectDefault="mod,no drunk,no dizzy,no confusion,no mini,no flip,no tornado,no tipsy"
|
# EffectDefault="mod,no drunk,no dizzy,no confusion,no mini,no flip,no tornado,no tipsy"
|
||||||
|
|||||||
Reference in New Issue
Block a user