New snap-to-pixel method


  1. Now snap to pixel method will move the entire text instead of rounding individual points to avoid float value traps.
    Old method:
    Before snap:  x1 = 1.50001, x2 = 2.49999, x3 = 3.49998,...
    After snap: x1 = 2, x2 = 2, x3 = 3, ...

    New method:
    Before snap:  x1 = 1.50001, x2 = 2.49999, ...
    After snap: x1 = 2, x2 = Math.round(2.49999 + (2-1.50001)) = 3, x3 = Math.round(3.49998 + (3-2.49999)) = 4, ...
  2. Do some plugin translation.

Files

OpenTypePixelFontNew.zip 85 kB
13 days ago
OpenTypePixelFontDemo.zip 3.6 MB
13 days ago
www.zip Play in browser
13 days ago

Get Opentype Pixel Font Renderer for MV/MZ

Download NowName your own price

Leave a comment

Log in with itch.io to leave a comment.