BASE_animVerticesCount static method

int BASE_animVerticesCount(
  1. int vertexCount
)

Number of components in the animVertices buffer.

Implementation

static int BASE_animVerticesCount(int vertexCount) => vertexCount > 0 ? vertexCount * 3 : 0;