Skip to content

Commit

Permalink
Merge branch 'main' into kit-106-update
Browse files Browse the repository at this point in the history
  • Loading branch information
lilleyse committed Oct 6, 2024
2 parents abcaa7b + e55dc6e commit b9556fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
### v0.24.0 - 2024-11-01

* **Breaking change:** Cesium for Omniverse now requires Kit 106.0 or above (Isaac Sim 4.0.0 or above).
* Fixed bug where smooth normals setting would crash.

### v0.23.0 - 2024-10-01

Expand Down
2 changes: 1 addition & 1 deletion src/core/src/FabricVertexAttributeAccessors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ NormalsAccessor NormalsAccessor::GenerateSmooth(const PositionsAccessor& positio
}

auto accessor = NormalsAccessor();
accessor._size = normals.size();
accessor._computed = std::move(normals);
accessor._size = indices.size();
return accessor;
}

Expand Down

0 comments on commit b9556fd

Please sign in to comment.