@@ -2140,7 +2140,8 @@ Mn::Trade::MaterialData ResourceManager::setMaterialDefaultUserAttributes(
2140
2140
ObjectInstanceShaderType shaderTypeToUse,
2141
2141
bool hasVertObjID,
2142
2142
bool hasTxtrObjID,
2143
- int txtrIdx) const {
2143
+ int txtrIdx,
2144
+ bool isFallback) const {
2144
2145
// New material's attributes
2145
2146
Cr::Containers::Array<Mn::Trade::MaterialAttributeData> newAttributes;
2146
2147
arrayAppend (newAttributes, Cr::InPlaceInit, " hasPerVertexObjectId" ,
@@ -2152,6 +2153,8 @@ Mn::Trade::MaterialData ResourceManager::setMaterialDefaultUserAttributes(
2152
2153
arrayAppend (newAttributes, Cr::InPlaceInit, " shaderTypeToUse" ,
2153
2154
static_cast <int >(shaderTypeToUse));
2154
2155
2156
+ arrayAppend (newAttributes, Cr::InPlaceInit, " isFallbackMaterial" , isFallback);
2157
+
2155
2158
Cr::Containers::Optional<Mn::Trade::MaterialData> finalMaterial =
2156
2159
Mn::MaterialTools::merge (
2157
2160
material, Mn::Trade::MaterialData{{}, std::move (newAttributes), {}});
@@ -2252,9 +2255,20 @@ void ResourceManager::initDefaultMaterials() {
2252
2255
2253
2256
// Build default material for fallback material
2254
2257
Mn::Trade::MaterialData fallbackMaterial = buildDefaultMaterial ();
2255
- // Set expected user-defined attributes
2258
+ // Make fallback magenta so visibly obvious
2259
+ fallbackMaterial.mutableAttribute <Mn::Color4>(
2260
+ Mn::Trade::MaterialAttribute::AmbientColor) =
2261
+ Mn::Color4{1 .0f , 0 .0f , 1 .0f , 1 .0f };
2262
+ fallbackMaterial.mutableAttribute <Mn::Color4>(
2263
+ Mn::Trade::MaterialAttribute::DiffuseColor) =
2264
+ Mn::Color4{1 .0f , 0 .0f , 1 .0f , 1 .0f };
2265
+ fallbackMaterial.mutableAttribute <Mn::Color4>(
2266
+ Mn::Trade::MaterialAttribute::SpecularColor) =
2267
+ Mn::Color4{1 .0f , 0 .0f , 1 .0f , 1 .0f };
2268
+ // Set expected user-defined attributes - specify Phong shader to use
2256
2269
fallbackMaterial = setMaterialDefaultUserAttributes (
2257
- fallbackMaterial, ObjectInstanceShaderType::Flat);
2270
+ fallbackMaterial, ObjectInstanceShaderType::Phong, false , false , -1 ,
2271
+ true );
2258
2272
// Add to shaderManager as fallback material
2259
2273
shaderManager_.setFallback <Mn::Trade::MaterialData>(
2260
2274
std::move (fallbackMaterial));
0 commit comments