three.jsblender

How to group vertices in Blender for Three.js?


What is the best way to group a bunch of vertices in Blender? After exporting I want to manipulate only this group of vertices in ThreeJS (eg. change their position).

I tried:


Solution

  • My solution: Put all objects in Blender (which should belong to one group) into one single object. The exporter then creates an object o for each Blender object. ThreeJS will create a child node for each of this objects. Only problem: Manipulating the original objects in Blender (that are now combined in one object) is more difficult.