fromBufferAttribute method

Vector2 fromBufferAttribute(
  1. dynamic attribute,
  2. dynamic index
)

Implementation

Vector2 fromBufferAttribute(attribute, index) {
  x = attribute.getX(index);
  y = attribute.getY(index);

  return this;
}