Closed zhoub closed 11 months ago
Hi,
Is there any way to get all material themes at geometry or polygon ? I did search to the latest code base but only found
std::vector<std::string> AppearanceTarget::getAllTextureThemes(bool front) const { auto& map = front ? m_themeTexMapFront : m_themeTexMapBack; std::vector<std::string> themes; for (const auto& pair : map) { themes.push_back(pair.first); } return themes; }
There is function AppearanceTarget::getAllTextureThemes but no AppearanceTarget::getAllMaterialThemes.
AppearanceTarget::getAllTextureThemes
AppearanceTarget::getAllMaterialThemes
Any ideas ? Thanks in advance.
Done
Hi,
Is there any way to get all material themes at geometry or polygon ? I did search to the latest code base but only found
There is function
AppearanceTarget::getAllTextureThemes
but noAppearanceTarget::getAllMaterialThemes
.Any ideas ? Thanks in advance.