From 55a7a9e79b205c9ec551eb66439320dc2118e8ed Mon Sep 17 00:00:00 2001 From: somefnfplayerlol <89298564+somefnfplayerlol@users.noreply.github.com> Date: Mon, 4 Oct 2021 17:39:54 -0700 Subject: [PATCH 1/2] camzoom shenanigans --- source/PlayState.hx | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index 8e345ffc..8fbcd1c1 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -10032,7 +10032,7 @@ class PlayState extends MusicBeatState if (FlxG.save.data.camzoom) { // HARDCODING FOR MILF ZOOMS! - if (curSong.toLowerCase() == 'milf' && curBeat >= 168 && curBeat < 200 && camZooming && FlxG.camera.zoom < 1.35) + if ((curSong.toLowerCase() == 'milf' || curSong.toLowerCase() == 'milf-g') && curBeat >= 168 && curBeat < 200 && camZooming && FlxG.camera.zoom < 1.35) { FlxG.camera.zoom += 0.015; camHUD.zoom += 0.03; @@ -10040,8 +10040,17 @@ class PlayState extends MusicBeatState if (camZooming && FlxG.camera.zoom < 1.35 && curBeat % 4 == 0) { - FlxG.camera.zoom += 0.015; - camHUD.zoom += 0.03; + switch (curSong.toLowerCase()) + { + case 'expurgation': + FlxG.camera.zoom += 0.03; + camHUD.zoom += 0.06; + case 'crucify' | 'ballistic': + // do nothing lol + default: + FlxG.camera.zoom += 0.015; + camHUD.zoom += 0.03; + } } if (camZooming && FlxG.camera.zoom < 1.35 && curBeat % 2 == 0 && curSong.toLowerCase() == 'ballistic') @@ -10466,4 +10475,4 @@ class PlayState extends MusicBeatState } var curLight:Int = 0; -} \ No newline at end of file +} From 4439f77075b90707baabe6cc7890a9055aee8f17 Mon Sep 17 00:00:00 2001 From: somefnfplayerlol <89298564+somefnfplayerlol@users.noreply.github.com> Date: Fri, 8 Oct 2021 20:34:14 -0700 Subject: [PATCH 2/2] milf startsWith thing Co-authored-by: Michael --- source/PlayState.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index 8fbcd1c1..940299c6 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -10032,7 +10032,7 @@ class PlayState extends MusicBeatState if (FlxG.save.data.camzoom) { // HARDCODING FOR MILF ZOOMS! - if ((curSong.toLowerCase() == 'milf' || curSong.toLowerCase() == 'milf-g') && curBeat >= 168 && curBeat < 200 && camZooming && FlxG.camera.zoom < 1.35) + if (curSong.toLowerCase().startsWith('milf') && curBeat >= 168 && curBeat < 200 && camZooming && FlxG.camera.zoom < 1.35) { FlxG.camera.zoom += 0.015; camHUD.zoom += 0.03;