setType method

GLBufferAttribute setType(
  1. String type,
  2. int elementSize
)

Implementation

GLBufferAttribute setType(String type, int elementSize) {
  this.type = type;
  this.elementSize = elementSize;

  return this;
}