Noeri Huisman
Noeri Huisman
> What should I do to reproduce? @dmarcos What worked for me was on desktop Chrome 122 visiting https://aframe.glitch.me/, opening the dev console and _then refreshing_. They didn't show up...
Do you have the "Verbose" log level enabled? Just noticed that despite their warning colour/semantic, they are logged with the verbose level :neutral_face: 
The transmission pass of Three.js doesn't render transparent objects. By default both the `` and `` primitives are marked as transparent. For images you can set `transparent="false"`. However, the built-in...
Under the hood A-Frame is pretty much vanilla Three.js, so anything that can be done with Three.js can be done with A-Frame with some effort as well. Looking at the...
Primitives have a nice benefit in terms of DX and readability, which extend beyond just beginner use. With only `` and its components, you'd have to infer its semantic purpose...
> In practice when writing HTML or instantiating entities with JS you don't deal with the component expansion. The checkpoin component initializes the others at setup. That's one of the...
Very useful test, thanks! I can reproduce the behaviour on a Quest 3 and managed to bisect it to the following commit (8341329d7112116d127c62b8aa4ebefba0539124): ``` 8341329d7112116d127c62b8aa4ebefba0539124 is the first bad commit...
Besides the lack of background service worker support in Firefox, there is another issue. The `MAIN` [ExecutionWorld](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/scripting/ExecutionWorld) isn't supported by Firefox yet, which the extension uses to inject the webxr-polyfill....
It might be a good idea to change the code in [inspector.js#L19](https://github.com/aframevr/aframe/blob/master/src/components/scene/inspector.js#L19) as well. Although the `webpack.DefinePlugin` provides a value for it, so it doesn't actually use/need `process` it is...
We can already start transitioning to `import` syntax in preparation of going fully ESM modules. While we still have a build-step, it can take care of transpiling the non-ESM dependencies....