weepy

Results 165 comments of weepy

Here's my little action : ``` const scrollLeft = writable(0) export function scrollX(node, store) { store.subscribe(val => node.scrollLeft = val) node.addEventListener('scroll', (e) => { store.set(e.target.scrollLeft) }) } ``` use like:...

thanks for that - I think I'd tried that but basically it seems that I the "pixi-stats" package shows 120fps, but if I used MrDoob's "stat.js" - then it shows...

Yep 👍 did it ! Thanks 🤩 On Mon, 5 May 2025 at 12:13, Matt Karl ***@***.***> wrote: > *bigtimebuddy* left a comment (pixijs/pixijs#11411) > > > Maybe you should...

https://github.com/user-attachments/assets/0653de0a-0a1f-4730-a79f-1668bd937349 for reference here's a sample

i think there's a bug where uInputSize changes in power of two jumps, but you would expect it to be consistant. I had to fix by manually passing in the...