📖 INDEX
LOADING ENGINE...
Group
THREE.JS REFERENCE // group
This is almost identical to an Object3D.
Syntax
const group = new THREE.Group();
group.add(mesh1);
group.add(mesh2);Examples
Example 01Basic Usage
const group = new THREE.Group();
group.add(mesh1);
group.add(mesh2);Best Practices
- Consult the official Three.js documentation for deeper understanding.
- Be mindful of performance when creating many objects or geometries.