Skip to content
Snippets Groups Projects
Commit a6425611 authored by Gundalf's avatar Gundalf
Browse files

Updated to latest changes in plugins.

parent 7d177c7c
No related branches found
No related tags found
No related merge requests found
......@@ -135,28 +135,28 @@ void NifProps::BeginEditParams(Interface *ip, IUtil *iu)
mNode = NULL;
const char **str;
str = HvkMaterialNames;
str = NpHvkMaterialNames;
while (*str)
{
mCbMaterial.add(*str);
str++;
}
str = HvkLayerNames;
str = NpHvkLayerNames;
while (*str)
{
mCbLayer.add(*str);
str++;
}
str = HvkMotionSystems;
str = NpHvkMotionSystems;
while (*str)
{
mCbMotionSystem.add(*str);
str++;
}
str = HvkQualityTypes;
str = NpHvkQualityTypes;
while (*str)
{
mCbQualityType.add(*str);
......
static const char *HvkMaterialNames[] =
static const char *NpHvkMaterialNames[] =
{
"Stone",
"Cloth",
......@@ -34,7 +34,7 @@ static const char *HvkMaterialNames[] =
NULL
};
static const char *HvkLayerNames[] =
static const char *NpHvkLayerNames[] =
{
"Unidentified",
"Static",
......@@ -96,7 +96,7 @@ static const char *HvkLayerNames[] =
NULL
};
static const char *HvkMotionSystems[] =
static const char *NpHvkMotionSystems[] =
{
"Keyframed",
"Box (2)",
......@@ -111,7 +111,7 @@ static const char *HvkMotionSystems[] =
NULL
};
static const char *HvkQualityTypes[] =
static const char *NpHvkQualityTypes[] =
{
"Moving",
"Fixed",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment