Fix default texture color

master
Jeremy HU 2022-12-12 22:35:58 +11:00
parent aa057af886
commit 14888f459e
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ void UvMapGenerator::packUvs()
for (const auto& partIt : m_snapshot->parts) { for (const auto& partIt : m_snapshot->parts) {
dust3d::Uuid imageId; dust3d::Uuid imageId;
dust3d::Color color; dust3d::Color color(1.0, 1.0, 1.0);
double width = 1.0; double width = 1.0;
double height = 1.0; double height = 1.0;
const auto& colorIt = partIt.second.find("color"); const auto& colorIt = partIt.second.find("color");