miscellaneous/material_template/ormaterial_template_material.h
#ifndef __ORMATERIAL_TEMPLATE_MATERIAL_H__
#define __ORMATERIAL_TEMPLATE_MATERIAL_H__
#define ORMATERIALCUSTOM__CLASSNAME ORMaterialCustom
#define ORMATERIALCUSTOM__CLASSSTR "ORMaterialCustom"
#define ORMATERIALCUSTOM__DESCSTR "OR - Sample Custom Material"
class ORMaterialCustom : public FBMaterial
{
public:
virtual const char* GetMaterialName() const;
virtual const char* GetMaterialDesc() const;
virtual bool FBCreate();
virtual void FBDestroy();
virtual bool FbxStore(FBFbxObject* pFbxObject,
kFbxObjectStore pStoreWhat);
virtual bool FbxRetrieve(FBFbxObject* pFbxObject,
kFbxObjectStore pStoreWhat);
};
#endif