We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e0747a commit 0b47253Copy full SHA for 0b47253
source/funkin/game/PlayState.hx
@@ -1338,6 +1338,8 @@ class PlayState extends MusicBeatState
1338
}
1339
data.put();
1340
1341
+
1342
+ if (camZooming){
1343
FlxG.camera.zoom = lerp(FlxG.camera.zoom, defaultCamZoom, camGameZoomLerp);
1344
camHUD.zoom = lerp(camHUD.zoom, defaultHudZoom, camHUDZoomLerp);
1345
@@ -1528,7 +1530,7 @@ class PlayState extends MusicBeatState
1528
1530
public function endSong():Void
1529
1531
{
1532
endingSong = true;
-
1533
1534
var event = scripts.event("onSongEnd", new CancellableEvent());
1535
if (event.cancelled) return;
1536
0 commit comments