Skip to content

Commit

Permalink
Fix default texture color
Browse files Browse the repository at this point in the history
  • Loading branch information
huxingyi committed Dec 12, 2022
1 parent aa057af commit 14888f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/sources/uv_map_generator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ void UvMapGenerator::packUvs()

for (const auto& partIt : m_snapshot->parts) {
dust3d::Uuid imageId;
dust3d::Color color;
dust3d::Color color(1.0, 1.0, 1.0);
double width = 1.0;
double height = 1.0;
const auto& colorIt = partIt.second.find("color");
Expand Down

0 comments on commit 14888f4

Please sign in to comment.