Jump to content

Text is blurry


MiniMindGames.com
 Share

Recommended Posts

The more searching the trickier it seems ? ... so it might be good to switch completely to bitmap fonts and then try to cope with all kind of horribleness that brings, such as:

  • Disable user zooming of viewport, like user-scalable=no, initial-scale=1, minimum-scale=1, maximum-scale=1, width=device-width, minimal-ui=1, shrink-to-fit=no
  • Game.scale.mode: Phaser.Scale.NONE to disable scale manager
  • Game.render.antialias: false or in CSS image-rendering: pixelated/crisp-edges
  • Position images on crisp pixels: scene.cameras.main.setRoundPixels(true), which means that text should not be on the same scene as slowly moving sprites.
  • Load images based on window.devicePixelRatio and then downscale with Game.scale.zoom or GameObject.scale.
  • ...
Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...