mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 08:07:54 -05:00
use isMinimalMode
This commit is contained in:
parent
1211dbb6e8
commit
b5bc63feca
2 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ class FocusCameraSongEvent extends SongEvent
|
|||
if (PlayState.instance == null || PlayState.instance.currentStage == null) return;
|
||||
|
||||
// Does nothing if we are minimal mode.
|
||||
if (PlayState.instance.minimalMode) return;
|
||||
if (PlayState.instance.isMinimalMode) return;
|
||||
|
||||
var posX:Null<Float> = data.getFloat('x');
|
||||
if (posX == null) posX = 0.0;
|
||||
|
|
|
@ -58,7 +58,7 @@ class ZoomCameraSongEvent extends SongEvent
|
|||
if (PlayState.instance == null || PlayState.instance.currentStage == null) return;
|
||||
|
||||
// Does nothing if we are minimal mode.
|
||||
if (PlayState.instance.minimalMode) return;
|
||||
if (PlayState.instance.isMinimalMode) return;
|
||||
|
||||
var zoom:Null<Float> = data.getFloat('zoom');
|
||||
if (zoom == null) zoom = 1.0;
|
||||
|
|
Loading…
Reference in a new issue