generateVertexTexCoords method
- Vector2List texCoords,
- Vector3List positions,
- Uint16List indices
Implementation
void generateVertexTexCoords(
Vector2List texCoords, Vector3List positions, Uint16List indices) {
for (var i = 0; i < positions.length; ++i) {
final p = positions[i];
// These are TERRIBLE texture coords, but it's better than nothing.
// Override this function and put better ones in place!
texCoords[i] = Vector2(p.x + p.z, p.y + p.z);
}
}