Text becomes blurry on scaling

Hey @udidol, i have this pixel problem because of the

this actually made my game pixelated. My canvas area is 1920x1080 and it was getting pixel’s when i small the canvas size e.g when i gave mode: Phaser.Scale.WIDTH_CONTROLS_HEIGHT to my scale object inside config :slight_smile:

Maybe you could also try to get ride of those

Update:

Hey again, I told that I gave mode: Phaser.Scale.WIDTH_CONTROLS_HEIGHT but i have changed my config like this:

scale = {
    width: 1920,
    height: 1080,
    parent: 'core',
    fullscreenTarget: 'core',
    autoCenter: Phaser.Scale.CENTER_BOTH,
    mode: Phaser.Scale.FIT,
}

After changing this FIT it’s produced this issue tho

1 Like