mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-21 23:33:56 -05:00
woops!
This commit is contained in:
parent
3382e4e974
commit
589378b6bc
2 changed files with 11 additions and 4 deletions
|
@ -1,3 +1,6 @@
|
|||
# RIGHT NOW THE MODS FOLDER DOES NOT WORK ENTIRELY JUST YET!!!
|
||||
## THIS IS WORK IN PROGRESS!!!
|
||||
|
||||
# QUICK AND DIRTY MOD GUIDE
|
||||
|
||||
With the 0.2.6 update, I added a bit of a slightly nicer mod support backend.
|
||||
|
|
|
@ -664,10 +664,13 @@ class ChartingState extends MusicBeatState
|
|||
|
||||
function changeNoteSustain(value:Float):Void
|
||||
{
|
||||
if (curSelectedNote[2] != null)
|
||||
if (curSelectedNote != null)
|
||||
{
|
||||
curSelectedNote[2] += value;
|
||||
curSelectedNote[2] = Math.max(curSelectedNote[2], 0);
|
||||
if (curSelectedNote[2] != null)
|
||||
{
|
||||
curSelectedNote[2] += value;
|
||||
curSelectedNote[2] = Math.max(curSelectedNote[2], 0);
|
||||
}
|
||||
}
|
||||
|
||||
updateNoteUI();
|
||||
|
@ -796,7 +799,8 @@ class ChartingState extends MusicBeatState
|
|||
|
||||
function updateNoteUI():Void
|
||||
{
|
||||
stepperSusLength.value = curSelectedNote[2];
|
||||
if (curSelectedNote != null)
|
||||
stepperSusLength.value = curSelectedNote[2];
|
||||
}
|
||||
|
||||
function updateGrid():Void
|
||||
|
|
Loading…
Reference in a new issue