Chris McGrane

Results 44 comments of Chris McGrane

@nkholski I'm happy to provide more information as well.

``` var getAlbumInfo = util.promisify(bandcamp.getAlbumInfo); async function getCollection(albums, res){ var ps = albums.map(album => getAlbumInfo(album)); return Promise.all(ps).then(collection => res.json(collection)); } ```

I'd also like to see the tunneling issues resolved.

@Feavy Something like that, but porting isn't super easy.

With the new update, I had trouble accessing properties. So I just do this in my app and it seems to work nicely. ```javascript this.controls = new OrbitControls(this.$refs.camera.inst, document.querySelector('.renderer')); this.controls.addEventListener('change',...

@fraguada I was able to solve it by doing this: ```js Vue.component('OrbitControls', { inject: ['vglNamespace'], props: ['camera'], computed: { cmr () { return this.vglNamespace.cameras.hash.c } }, watch: { cmr: {...

Thanks for the response @h-ikeda I was able to create a component for Convex Geometry then merge all of those, but I did experience performance issues. I understand now that...

@h-ikeda One thing I’ve noticed is, when implementing controls that call .requestRender, the scene will render and change correctly. However, once loading more than a single .obj, or a few...

I also get this error.