recreateResource property
Implementation
@override
bool get recreateResource {
final sizeInBytes = _vertices.lengthInBytes + _indices.lengthInBytes;
return resourceSizeInByes != sizeInBytes;
}
Implementation
bool recreateResource = true;
@override
bool get recreateResource {
final sizeInBytes = _vertices.lengthInBytes + _indices.lengthInBytes;
return resourceSizeInByes != sizeInBytes;
}
bool recreateResource = true;