addGroup method

void addGroup(
  1. int start,
  2. int count, [
  3. int materialIndex = 0
])

Implementation

void addGroup(int start, int count, [int materialIndex = 0]) {
  groups.add({
    "start": start,
    "count": count,
    "materialIndex": materialIndex,
  });
}