disposeGeometry method

void disposeGeometry()

Implementation

void disposeGeometry() {
  // Delete vertices only if we do not vertex deform at runtime.
  if (_animationDeformedVertices == null) {
    _vertices = null;
  }
  _triangles = null;
}