updateNormals method
Replaces every vertex normal, keeping the vertex count unchanged.
Implementation
void updateNormals(Float32List normals) {
_ensureUpdatable('updateNormals');
_checkAttributeLength('normals', normals.length, 3);
_cpuNormals = Float32List.fromList(normals);
_uploadVertexBytes();
}