deleteAttributeFromString method

BufferGeometry deleteAttributeFromString(
  1. String type
)

Deletes the type with the specified string name.

Implementation

BufferGeometry deleteAttributeFromString(String type) {
  attributes.remove(type);
  return this;
}