diff --git a/assets/preload/gameRenders/renderlol.bat b/assets/preload/gameRenders/renderlol.bat index c5d3ff828c7..05ec24fc88e 100644 --- a/assets/preload/gameRenders/renderlol.bat +++ b/assets/preload/gameRenders/renderlol.bat @@ -10,6 +10,10 @@ echo. echo what would you like to name your rendered video? set /p "renderName=" +echo. +echo what is the framerate of your images/video? +set /p "vidFPS=" + echo. echo lastly, are you rendering your video in a lossless format? (y/n, default n, makes the renderer find pngs instead of jpgs) set /p "useLossless=" @@ -25,6 +29,6 @@ echo. echo Starting... echo. -ffmpeg -r 60 -i "%~dp0%renderFolder%\%%07d.%fExt%" "%renderName%.mp4" +ffmpeg -r %vidFPS% -i "%~dp0%renderFolder%\%%07d.%fExt%" "%renderName%.mp4" pause \ No newline at end of file diff --git a/source/MusicBeatState.hx b/source/MusicBeatState.hx index fa10d0fde90..f9cbbced1c9 100644 --- a/source/MusicBeatState.hx +++ b/source/MusicBeatState.hx @@ -84,7 +84,7 @@ class MusicBeatState extends FlxUIState override function update(elapsed:Float) { - if (oldStep != curStep) oldStep = curStep; + oldStep = curStep; updateCurStep(); updateBeat(); diff --git a/source/PlayState.hx b/source/PlayState.hx index 537ece47e3e..95c34a394a9 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -3097,11 +3097,12 @@ class PlayState extends MusicBeatState if (ClientPrefs.noteColorStyle == 'Char-Based') { - for (note in notes){ - if (note == null) - continue; - note.updateRGBColors(); - } + for (group in [notes, sustainNotes]) + for (note in group){ + if (note == null) + continue; + if (ClientPrefs.enableColorShader) note.updateRGBColors(); + } } unspawnNotes.sort(sortByTime); @@ -4670,11 +4671,12 @@ class PlayState extends MusicBeatState } if (ClientPrefs.noteColorStyle == 'Char-Based') { - for (note in notes){ - if (note == null) - continue; - if (ClientPrefs.enableColorShader) note.updateRGBColors(); - } + for (group in [notes, sustainNotes]) + for (note in group){ + if (note == null) + continue; + if (ClientPrefs.enableColorShader) note.updateRGBColors(); + } } }