Skip to content

Commit

Permalink
Update syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
keveleigh committed Jun 22, 2021
1 parent aaef3ae commit bd735de
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
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 bd735de

Please sign in to comment.