Переглянути джерело

Prefer “BLEND” over “MASK” as an alphaMode default

“BLEND” is a much nicer alphaMode value (if the hardware supports it – not a steep requirement) than “MASK” as mask is either fully opaque or fully transparent, depending on the alphaCutoff. This matches many other converters’ alphaMode default.
Daniel Hritzkiv 8 роки тому
батько
коміт
40147d253d
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      code/glTF2Exporter.cpp

+ 1 - 1
code/glTF2Exporter.cpp

@@ -475,7 +475,7 @@ void glTF2Exporter::ExportMaterials()
 
             if (mat->Get(AI_MATKEY_OPACITY, opacity) == AI_SUCCESS) {
                 if (opacity < 1) {
-                    m->alphaMode = "MASK";
+                    m->alphaMode = "BLEND";
                     m->pbrMetallicRoughness.baseColorFactor[3] *= opacity;
                 }
             }