Phaser 3
The camera zoom do not have parameter to set a min and max zoom we allow the user to go to.
The minimum is 0.1, but in some cases that do not make any sense to allow the user to go beyond 0.5 for example.
Here are 2 cases where the min zooming is too high and that's not user friendly at all :


Thank you !
To be honest, this is so game specific that you need to manage it in your own code. There's no point Phaser enforcing this. While I could add in min and max properties it seems a bit pointless when it's solved so easily by a quick logic check in the game code.
Most helpful comment
To be honest, this is so game specific that you need to manage it in your own code. There's no point Phaser enforcing this. While I could add in min and max properties it seems a bit pointless when it's solved so easily by a quick logic check in the game code.