add fields to ExtraGroupInfo allowing it to be used to specify an Ms3d group by index or name
This commit is contained in:
parent
c9df81d7ae
commit
f525005abe
|
@ -6,7 +6,9 @@
|
||||||
|
|
||||||
struct ExtraGroupInfo
|
struct ExtraGroupInfo
|
||||||
{
|
{
|
||||||
|
BOOL specifiedByName;
|
||||||
std::string name;
|
std::string name;
|
||||||
|
uint32_t index;
|
||||||
std::string textureFile;
|
std::string textureFile;
|
||||||
BOOL alphaBlend;
|
BOOL alphaBlend;
|
||||||
|
|
||||||
|
@ -15,6 +17,8 @@ struct ExtraGroupInfo
|
||||||
|
|
||||||
inline ExtraGroupInfo::ExtraGroupInfo()
|
inline ExtraGroupInfo::ExtraGroupInfo()
|
||||||
{
|
{
|
||||||
|
specifiedByName = FALSE;
|
||||||
|
index = 0;
|
||||||
alphaBlend = FALSE;
|
alphaBlend = FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue