mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
Fixed 3ds export colors.
This commit is contained in:
parent
1c10e656b2
commit
abf0136b1d
1 changed files with 2 additions and 2 deletions
|
@ -421,12 +421,12 @@ void Export3DStudio()
|
|||
|
||||
if (lcIsColorTranslucent(ColorIdx))
|
||||
{
|
||||
matr->transparency = 0.0f;
|
||||
matr->transparency = 0.5f;
|
||||
matr->transfalloff = 0.0f;
|
||||
}
|
||||
else
|
||||
{
|
||||
matr->transparency = 0.5f;
|
||||
matr->transparency = 0.0f;
|
||||
matr->transfalloff = 0.0f;
|
||||
}
|
||||
matr->selfillumpct = 0.0f;
|
||||
|
|
Loading…
Reference in a new issue