miscellaneous/material_template/ormaterial_template_material.cxx
#include "ormaterial_template_material.h"
ORMaterialCustom::ORMaterialCustom(
const char* pName,
HIObject pObject ) : FBMaterial( pName, pObject )
{
}
bool ORMaterialCustom::FBCreate()
{
return true;
}
const char* ORMaterialCustom::GetMaterialName() const
{
return ORMATERIALCUSTOM__CLASSSTR;
}
const char* ORMaterialCustom::GetMaterialDesc() const
{
return ORMATERIALCUSTOM__DESCSTR;
}
void ORMaterialCustom::FBDestroy()
{
ParentClass::FBDestroy();
}
bool ORMaterialCustom::FbxStore(FBFbxObject* pFbxObject,
kFbxObjectStore pStoreWhat)
{
return true;
}
bool ORMaterialCustom::FbxRetrieve(FBFbxObject* pFbxObject,
kFbxObjectStore pStoreWhat)
{
return true;
}