Skip to content

Commit

Permalink
Merge pull request #10014 from keveleigh/2.7.1-cherrypicks
Browse files Browse the repository at this point in the history
Fix build
  • Loading branch information
keveleigh committed Jun 22, 2021
2 parents aaef3ae + bd735de commit 4ea313d
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -79,7 +79,8 @@ private void InitializeUVs(Vector3[] poseVertices)
if (poseVertices.Length == 0)
{
Debug.LogError("Loaded 0 vertices for poseVertices");
return System.Array.Empty<Vector2>();
handMeshUVsUnity = Array.Empty<Vector2>();
return;
}

float minY = poseVertices[0].y;
Expand Down

0 comments on commit 4ea313d

Please sign in to comment.