From 574d13eea89cf9e9ccd4b15d0d3d3d6b3b8e7a80 Mon Sep 17 00:00:00 2001 From: KadeDeveloper Date: Wed, 4 Aug 2021 13:53:45 -0700 Subject: [PATCH] fix a modchart bug with cameras --- source/PlayState.hx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/source/PlayState.hx b/source/PlayState.hx index 17beeaa..84a8a65 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -2387,6 +2387,15 @@ class PlayState extends MusicBeatState if (i <= playerStrums.length) playerStrums.members[i].visible = p2; } + + camNotes.zoom = camHUD.zoom; + camNotes.x = camHUD.x; + camNotes.y = camHUD.y; + camNotes.angle = camHUD.angle; + camSustains.zoom = camHUD.zoom; + camSustains.x = camHUD.x; + camSustains.y = camHUD.y; + camSustains.angle = camHUD.angle; } #end