📖 INDEX
LOADING ENGINE...
BufferAttribute
THREE.JS REFERENCE // bufferattribute
Stores data for an attribute associated with a BufferGeometry.
Syntax
const attribute = new THREE.BufferAttribute(new Float32Array(array), 3);Examples
Example 01Basic Usage
const attribute = new THREE.BufferAttribute(new Float32Array(array), 3);Best Practices
- Consult the official Three.js documentation for deeper understanding.
- Be mindful of performance when creating many objects or geometries.