kev zettler

Results 112 comments of kev zettler

I should mention that the author of `pixi-shim` did some work on a new release that looks like it may now be viable to use in webworkers see the thread...

@hdemmer I think we're all well aware of that restriction and that is the exact issue this entire thread is about.

As of late, I have found [Spector.js](https://github.com/BabylonJS/Spector.js) to be incredibly helpful. It is available as a [standalone module](https://www.npmjs.com/package/spectorjs) you can integrate into your project and also has browser extensions.

@jwerle I can help contribute to your effort here if you need a hand. I unfortunately just noticed this issue after trying a bunch of hacks to improve mobile performance....

@chinedufn what are your thoughts on adapting: https://github.com/chinedufn/skeletal-animation-system to use regl? I was just considering this but haven't wrapped my head around it yet.

I ported @chinedufn 's `skeletal-animation-system`. To regl see: https://github.com/chinedufn/skeletal-animation-system/pull/3 I am interested in feedback on the demo and further discussion here. We could use that as the example. It is...

@donmccurdy if you're looking for regl skeletal animation support I did put together a demo for the `skeletal-animation-system` module at: https://github.com/chinedufn/skeletal-animation-system/pull/3 I'm not sure why it was removed form the...

@jwerle lmao no, I haven't, and looks like the exact same idea. Thanks for sharing and confirming my problems. Maybe this should be mentioned in the docs? Maybe eventual incorporated...

@jwerle I spoke to soon. `deferred-regl` has the right idea but the execution is still awkward. It still requires you to instantiate a "deferred regl instance" before you can create...

Ok if I wrap `deferred-regl` with another singleton module that exports the `deferred-regl` instance I can then use it in a similar manner. ``` js // reglDefer.js import defregl from...