Joe Pea

Results 1897 comments of Joe Pea

Yeah, the only reason I was thinking about WAT is because I started by interpolating into WAT strings which is more human readable than binary, and thought I could pass...

Thanks! Yeah, this was a rough first-try weekend thing. I do have plans to expand on this soon though!

Wow, sorry I missed this. Thanks for reporting! This was a weekend project. It has various of problems being slapped together. I'd like to circle back and update it with...

I think we can merge this without having to fix the async stuff if that is not ready. It's a step forward, and we have to fix async at some...

> * Refactor CSS builds from `/build` scripts to CLI tools Would love to remove Stylus and just use plain CSS, as it now has pretty much everything we used...

> Yes. The new rollup build uses [`import.meta.dirname`](https://nodejs.org/api/esm.html#importmetadirname) which was introduced in node 20. Good enough for me! > I'd prefer we get this one merged and handle removing Stylus...

Sidenote, even https://www.3dmeshviewer.com/demo is broken because of this.

Just replace all `https://threejs.org` occurrences in script tag URLs in the HTML files with `https://unpkg.com/[email protected]` where `X.X.X` is the version you need.

The funny thing is if you include the Polymer adapter in an ES5 bundle, then the `class` syntax breaks the ES5 bundle. This makes things really tricky. One way to...

The actual class I'm importing is `Object3D` from the `three` module, which is a class like ```js // https://unpkg.com/[email protected]/src/core/Object3D.d.ts export class Object3D extends EventDispatcher { // ... } ``` The...