GeoText COMP Anti Aliasing control?

Is there any way to get the GeoText COMP’s font textures to render without anti aliasing? I know this is using slug which I assume means that under the hood its doing some interp/aa across different character scales maybe? Or just always defaulting to some AA. I am using a blocky pixel style font with only horizontal and vertical edges, and i’d love the edges to be clean, but right now I’m always getting soft/blurred edges. When comparing the same font with text TOP in poly mode you can see here ::

Any way to change this? Is there a character size that might match up to the internal render of the slug stuff and produce no blurriness? Render is in 1x AA, but i realize that does little/nothing since the characters are textures.

Thanks

p

The slug library itself doesn’t provide any antialiasing control, but you can write your own material to clean up the edges. The screenshot below shows a quick example where I just discard any pixels that have an alpha below 1.

1 Like

Ah great call! Thanks for the suggestion!