threejs instance multiple objects with different sizes and positions
问题 just yesterday i started to tried the InstancedBufferGeometry method because i want to render thousand of objects with a good performance. In my case i want to instance cube geometries with different heights of each other. At moment i tried this code AFRAME.registerComponent('instancing', { schema: { count: {type: 'int', default: 10000} }, init: function () { this.count = this.data.count; this.model = null; }, update: function () { if (this.model !== null) { return; } var data = this.data;