Skip to content

Commit

Permalink
fix typo in strings
Browse files Browse the repository at this point in the history
  • Loading branch information
pfcDorn committed Jul 27, 2023
1 parent d5b2de5 commit 65731a4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -402,9 +402,9 @@ protected virtual async Task ConstructMeshTargets(MeshPrimitive primitive, int m
NumericArray[] sparsePositions = null;
NumericArray[] sparseTangents = null;

const string NormalKey = "NORMALS";
const string PositionKey = "POSITIONS";
const string TangentKey = "TANGENTS";
const string NormalKey = "NORMAL";
const string PositionKey = "POSITION";
const string TangentKey = "TANGENT";

// normals, positions, tangents
foreach (var targetAttribute in target)
Expand Down

0 comments on commit 65731a4

Please sign in to comment.