setAttribute method

BufferGeometry setAttribute(
  1. String name,
  2. dynamic attribute
)

Implementation

BufferGeometry setAttribute(String name, attribute) {
  attributes[name] = attribute;

  return this;
}