I've tried disabling anti-aliasing using the following function.
setAttributes('antialias', false);
Is setting this flag to false meant to make text non-aliased? If not, are there any other way to do it?
I'm trying to get my text to look like this: https://i.imgur.com/S312pVj.png
But instead it's smoothed, like this: https://i.imgur.com/ODbjsI0.png
Welcome! 馃憢 Thanks for opening your first issue here! And to ensure the community is able to respond to your issue, be sure to follow the issue template if you haven't already.
Hi @nullify0000, the setAttributes function is a WebGL mode function and won't have an effect on text. You can try noSmooth to see if it works for you.
Most helpful comment
Hi @nullify0000, the
setAttributesfunction is a WebGL mode function and won't have an effect on text. You can trynoSmoothto see if it works for you.