Skip to content

Commit

Permalink
Removed unnecessary comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexer611 committed Aug 3, 2024
1 parent 4ca4c39 commit 8280506
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Runtime/Scripts/GltfImport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3667,7 +3667,6 @@ out GCHandle resultHandle
int triangleStripTriangleCount = oldIndices.Length - 2;
indices = new int[triangleStripTriangleCount * 3];
resultHandle = GCHandle.Alloc(indices, GCHandleType.Pinned);
//RecalculateIndicesTriangleStripJob
var triangleStripJob = new RecalculateIndicesForTriangleStripJob();
fixed (void* dst = &(indices[0]))
{
Expand All @@ -3683,7 +3682,6 @@ out GCHandle resultHandle
int triangleFanTriangleCount = oldIndices.Length - 2;
indices = new int[triangleFanTriangleCount * 3];
resultHandle = GCHandle.Alloc(indices, GCHandleType.Pinned);
//RecalculateIndicesTriangleFanJob
var triangleFanJob = new RecalculateIndicesForTriangleFanJob();
fixed (void* dst = &(indices[0]))
{
Expand Down

0 comments on commit 8280506

Please sign in to comment.