BufferAttribute
This class stores data for an attribute (such as vertex positions, face indices, normals, colors, UVs, and any custom attributes )
So I assume I can do such as:
geometry.setAttribute( 'giraffe', new THREE.Float32BufferAttribute( giraffeArray, 3 ) );
Right?