-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfbxmanager.sip
More file actions
33 lines (25 loc) · 1.18 KB
/
fbxmanager.sip
File metadata and controls
33 lines (25 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
class FbxManager /NoDefaultCtors/
{
public:
static FbxManager* Create();
virtual void Destroy();
static void GetFileFormatVersion(int& pMajor, int& pMinor, int& pRevision);
FbxObject* CreateNewObjectFromClassId(FbxClassId pClassId, const char * pName, FbxObject* pContainer=NULL, const FbxObject* pCloneFrom=NULL);
FbxClassId FindClass(const char* pClassName) const;
FbxClassId FindFbxFileClass(const char* pFbxFileTypeName, const char* pFbxFileSubTypeName) const;
FbxDataType CreateDataType(const char *pName, EFbxType pType);
const FbxDataType &GetDataTypeFromName(const char *pDataType);
int GetDataTypeCount();
FbxDataType &GetDataType(int pIndex);
FbxUserNotification* GetUserNotification() const;
void SetUserNotification(FbxUserNotification* pUN);
virtual FbxIOSettings * GetIOSettings() const;
virtual void SetIOSettings(FbxIOSettings * pIOSettings);
FbxIOPluginRegistry* GetIOPluginRegistry() const;
bool LoadPluginsDirectory (char *pFilename,char *pExtensions);
bool LoadPlugin (char *pFilename);
bool UnloadPlugins();
protected:
FbxManager();
virtual ~FbxManager();
};