mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-25 08:13:45 +00:00
make sustain release less tight
This commit is contained in:
parent
06da64ac20
commit
c143bbae23
|
@ -232,8 +232,8 @@ class Note extends FlxSprite
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (strumTime > Conductor.songPosition - HIT_WINDOW)
|
if (strumTime > Conductor.songPosition - HIT_WINDOW)
|
||||||
{ // * 0.2 if sustain note, so u have to keep holding it closer to all the way thru!
|
{ // * 0.5 if sustain note, so u have to keep holding it closer to all the way thru!
|
||||||
if (strumTime < Conductor.songPosition + (HIT_WINDOW * (isSustainNote ? 0.2 : 1)))
|
if (strumTime < Conductor.songPosition + (HIT_WINDOW * (isSustainNote ? 0.5 : 1)))
|
||||||
canBeHit = true;
|
canBeHit = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue