mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 22:05:38 +00:00
Parse out TranslucencyPatternSelect
This commit is contained in:
parent
4d5c9e7231
commit
8452d4c0ef
|
@ -377,6 +377,11 @@ int PolyHeader::TranslatorMapOffset()
|
||||||
return (header[6] >> 24) & 0x7f;
|
return (header[6] >> 24) & 0x7f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool PolyHeader::TranslucencyPatternSelect()
|
||||||
|
{
|
||||||
|
return (header[6] & 0x10000) > 0;
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// misc
|
// misc
|
||||||
//
|
//
|
||||||
|
|
|
@ -144,6 +144,7 @@ public:
|
||||||
bool Luminous();
|
bool Luminous();
|
||||||
float LightModifier();
|
float LightModifier();
|
||||||
int TranslatorMapOffset();
|
int TranslatorMapOffset();
|
||||||
|
bool TranslucencyPatternSelect();
|
||||||
|
|
||||||
// misc
|
// misc
|
||||||
UINT64 Hash(); // make a unique hash for sorting by state
|
UINT64 Hash(); // make a unique hash for sorting by state
|
||||||
|
|
Loading…
Reference in a new issue