three.js - mesh group example? (THREE.Object3D() advanced)

后端 未结 2 796
抹茶落季
抹茶落季 2021-01-03 17:43

I\'m attempting to understand how to group / link child meshes to a parent. I want to be able to:

  • drag the parent
  • rotate child elements relative to t
2条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-03 18:41

    The dragging will be a bit more tricky because you need to work out where would the x/y positions of the mouse on the screen (screen space) will be in the 3D world, then you will need to cast a ray and check if it intersects the object you want to drag. I presume this will be a different question.

    Setting object hierarchy is fairly simple. As you hinted, you will use a THREE.Object3D instance to nest objects into using it's add() method. The idea is that you will use a Mesh for objects that have geometry, and Object3D instances, where you simply need to nest elements. I suggest starting with the canvas_geometry_hierarchy sample.

    The interesting bits are:

    group = new THREE.Object3D();//create an empty container
    group.add( mesh );//add a mesh with geometry to it
    scene.add( group );//when done, add the group to the scene
    

提交回复
热议问题