Fix casting typo in D3MFExporter::writeBaseMaterials (color channels < 1.0f were zeroed out)
parent
db19f62a0c
commit
2fcd674e9c
|
@ -249,10 +249,10 @@ void D3MFExporter::writeBaseMaterials() {
|
||||||
if (color.r <= 1 && color.g <= 1 && color.b <= 1 && color.a <= 1) {
|
if (color.r <= 1 && color.g <= 1 && color.b <= 1 && color.a <= 1) {
|
||||||
|
|
||||||
hexDiffuseColor = ai_rgba2hex(
|
hexDiffuseColor = ai_rgba2hex(
|
||||||
(int)((ai_real)color.r) * 255,
|
(int)(((ai_real)color.r) * 255),
|
||||||
(int)((ai_real)color.g) * 255,
|
(int)(((ai_real)color.g) * 255),
|
||||||
(int)((ai_real)color.b) * 255,
|
(int)(((ai_real)color.b) * 255),
|
||||||
(int)((ai_real)color.a) * 255,
|
(int)(((ai_real)color.a) * 255),
|
||||||
true);
|
true);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue