Parse out TranslucencyPatternSelect

This commit is contained in:
Ian Curtis 2018-05-24 20:13:15 +00:00
parent 4d5c9e7231
commit 8452d4c0ef
2 changed files with 6 additions and 0 deletions

View file

@ -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
// //

View file

@ -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