deleteAttribute method

BufferGeometry deleteAttribute(
  1. Attribute type
)
inherited

Deletes the type with the specified Attribute.

Implementation

BufferGeometry deleteAttribute(Attribute type) {
  attributes.remove(type.name);
  return this;
}