Vincent Fretin
Vincent Fretin
This fixes what I explain in #49 What do you think?
My commit in aframe-environment-component was reverted https://github.com/feiss/aframe-environment-component/pull/21#issuecomment-334964482, so this was not accurate anymore. You need to change the landingNormal parameter for this to work, but you can't teleport on anything...
This is a follow-up on https://github.com/feiss/aframe-environment-component/pull/21#issuecomment-335930480 It is currently not possible to teleport on generated ground (which is a THREE.PlaneGeometry with mesh rotated to `-90 0 0`), dressing, and cubes...
When you will try to update your project to use latest aframe master, here is the list of the changes needed in the different libraries so you don't need to...
I create the PR so you folks know I'm working on that. I'll probably continue this work in two weeks. I want my cubes and spheres to rest on the...
Properly dispose geometry and material to free memory in simple-water component when the component instance is removed. The normal map shouldn't be disposed because it can be used by another...
This is a similar fix that was done in https://github.com/aframevr/aframe/commit/1fc08e429cef92fe53042ae08846c209889c30e5
Currently the easyrtc adapter register the local media streams under the "local" key, see https://github.com/networked-aframe/networked-aframe/blob/76023a2415d103c9ee00443198004648f0ff4084/src/adapters/EasyRtcAdapter.js#L270-L287 I tried to change in this code "local" by `NAF.clientId` but the camera media will...
This is currently hard coded https://github.com/networked-aframe/networked-aframe/blob/76023a2415d103c9ee00443198004648f0ff4084/src/adapters/EasyRtcAdapter.js#L315-L318 We should be able to specify options here like ```js audio: {echoCancellation: true, noiseSuppression: true, autoGainControl: true} ``` instead of `audio: true` and for...
There can be a race condition case where the schema defined in the footer of the page is not register when the networked init function is executed where it calls...