You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation for Phaser.ScaleManager.USER_SCALE states:
The game Display is scaled according to the user-specified scale set by setUserScale. This scale can be adjusted in the resize callback for flexible custom-sizing needs.
I'd like to do some custom resizing, and setResizeCallback seems to be the say to do it. So I added this to my create function:
I would expect this to get called when the viewport is resized, adjust the to 1.5 times the default size and then be done.
What Actually Happens
The resize callback gets caught in an infinite loop. Calling game.scale.setUserScale(...) triggers the resize callback, which calls setUserScale again, and so on.
Other Notes
You guys are awesome! Thanks for taking a look.
The text was updated successfully, but these errors were encountered:
LandonSchropp
changed the title
Calling setUserScale inside setResizeCallback creates a loop
Calling setUserScale inside setResizeCallback causes an infinite loop
May 5, 2017
LandonSchropp
changed the title
Calling setUserScale inside setResizeCallback causes an infinite loop
Calling setUserScale inside setResizeCallback results in an infinite loop
May 5, 2017
Phaser version(s): 2.7.7
Live example: https://codepen.io/LandonSchropp/pen/vmeZXr
What Should Happen
The documentation for
Phaser.ScaleManager.USER_SCALE
states:I'd like to do some custom resizing, and
setResizeCallback
seems to be the say to do it. So I added this to mycreate
function:I would expect this to get called when the viewport is resized, adjust the to 1.5 times the default size and then be done.
What Actually Happens
The resize callback gets caught in an infinite loop. Calling
game.scale.setUserScale(...)
triggers the resize callback, which callssetUserScale
again, and so on.Other Notes
You guys are awesome! Thanks for taking a look.
The text was updated successfully, but these errors were encountered: