Skip to content

Commit

Permalink
English comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ousttrue committed Jan 4, 2021
1 parent 06608a7 commit f5452e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/UniGLTF/Runtime/UniGLTF/IO/MeshImporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public MeshContext(string name, int meshIndex)
}

/// <summary>
/// 指定した長さを0で埋める
/// Fill list with 0s with the specified length
/// </summary>
/// <param name="list"></param>
/// <param name="fillLength"></param>
Expand All @@ -90,7 +90,7 @@ static void FillZero<T>(IList<T> list, int fillLength)
{
if (list.Count > fillLength)
{
throw new Exception("ありえない");
throw new Exception("Impossible");
}
while (list.Count < fillLength)
{
Expand Down

0 comments on commit f5452e6

Please sign in to comment.