Dave Kozma
Dave Kozma
When trying to pass in a `Matrix4` via the `matrix` prop, it seemed that my `Object3D` wasn't applying it at all. After updating it to use `applyMatrix`, the matrix transformation...
It looks like the SDK can't run on Safari 14 due to its use of `BigUint64Array`. https://github.com/rustwasm/wasm-bindgen/pull/2727 looks like it tries to add support for this, however it seems like...
When we release a new version, we'll need to update the following to use the new version: - Example code package lock files - JsDelivr URLs in the es-module example
We initially made the release using [threads.js](https://github.com/andywer/threads.js), however we wound up in a scenario where the workers could initially lock and cause the first processImage call to never complete, possibly...
Right now, secrets are not shared for forks on GitHub Actions, which is breaking pull request validations on forked repos. For now, we will be making branches on the local...
We should built this toward the future test setup we spoke about with @gpeacock.
Add the same convenience functions we use in the https://verify.contentauthenticity.org/ to this, such as: - `hasError` or `getErrors` or similar - `isDetached`
It would be nice to cleanly not have to include `dist` in the import paths. I wonder if the [export paths functionality](https://devblogs.microsoft.com/typescript/announcing-typescript-4-5-beta/#packagejson-exports-imports-and-self-referencing) might handle this, although I'm not sure if...
Since examples are used heavily in the documentation, we need to make sure that they still work across code changes. The ideal way this should work is when developing locally...