Matt Karl

Results 404 comments of Matt Karl

Could you please show a minimal reproduction, not just a screenshot?

Makes sense and I agree that seems like a bug. Your solution sounds perfectly reasonable. Fancy making a PR for that?

If you need an example, here's a filter using color uniform: https://github.com/pixijs/filters/blob/main/src/color-overlay/ColorOverlayFilter.ts

The default resolution for filters is 1, but you can set this to inherit the renderer resolution by adding this before creating any filters: ``` import { Filter } from...

Yeah, I understand that. Resolution in Pixi is complicated. Textures, renderer, filters, fonts, etc each manage their own resolutions and they aren't all in sync. At first this can seem...

The reason this is happening is because GPUs have a maximum texture size. For a lot of modern computers this is typically 16384x16384. When you use a large font size...

This article, while old, explains the differences https://medium.com/@bigtimebuddy/lets-talk-about-text-pixijs-244b9f95f830 TLDR Bitmap text renders individual characters from a bitmap font. You could have a very large block of text and not run...

Isn't stableSort just a polyfill of [toSorted](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/toSorted)?

SCALE_MODE is a type union of "nearest" or "linear" strings. Our current docs tool doesn't support types like this. We have a long-standing task to move our docs to typedoc...