New snap-to-pixel method
- 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, ... - 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
Opentype Pixel Font Renderer for MV/MZ
Better pixel font renderer
More posts
- Bug fix and demo update34 days ago
- Update parameters and demo35 days ago
- Bug fix 2024/12/3053 days ago
Leave a comment
Log in with itch.io to leave a comment.