Noeri Huisman

Results 133 comments of Noeri Huisman

@bbohlender Not the biggest fan of it either, but it does make the default case [very easy](https://threejs.org/docs/index.html#manual/en/introduction/How-to-create-VR-content). Implicitly it also works with existing logic that expects a singular camera object...

We could rename it to `multiview` in super-three, while keeping the property name `multiviewStereo`.

I think the black background is "correct", as there's no `a-sky` or `background=` defined for that scene. I also see 45fps with it enabled compared to 30fps with it off...

The built-in `text` component and `` primitive uses so-called (M)SDF fonts. These need to be generated with all the characters you plan to use. The default font only supports ASCII...

For my own projects I exclusively use Troika, mostly out of convenience but also because it builds nicely on top of the Three.js material system. I think making it the...

> [@mrxz](https://github.com/mrxz) switching to troika is still something we want to do? I do believe there are still many upsides to switching. But doing so in a backwards compatible turns...

@dmarcos That isn't a bad idea, the old component could also be moved into a separate repo (probably under c-frame) in case people still want to use it beyond 1.7.0....

> [@mrxz](https://github.com/mrxz) troika for 1.7.0? yes, no? @dmarcos I don't really have the time to work on it now, so not for 1.7.0, I'm afraid. It might be for the...

Thanks for the PR. Do you happen to have the Meta Quest 3S Xbox Edition controllers? The profiles list for these should report `meta-quest-touch-plus` as their first fallback. So even...

When the `gltf-model` component finishes loading it emits the `model-loaded` event ([see docs](https://aframe.io/docs/1.7.0/components/gltf-model.html#events_model_loaded)). This event should allow you to determine whether loading is still ongoing or not: ```js this.el.addEventListener('model-loaded', (e)...