three.js - A-Frame: How do you add multiple meshes to an entity with setObject3D? -
with a-frames tags, 1 can add multiple components children entity:
<a-scene> <a-entity> <a-box>...</a-box> <a-box>...</a-box> </a-entity> <a-scene>
how duplicate in registered component setobject3d method?
yup, can name object3d want. mesh
word sort of commonly accepted meshes , used geometry/material components. clarify:
setobject3d('mesh')
setobject3d('yourobject')
setobject3d('whateveryouwantbox');
Comments
Post a Comment