|
Revision 11213, 0.5 kB
(checked in by paulmartz, 3 years ago)
|
|
Backport FBX plugin to 2.8 branch. Modified FBX to use the old osgDB::ReaderWriter::Options namespace. This commit includes a merge of r11111 (osgDB UTF mods).
|
-
Property svn:mime-type set to
text/x-cpp
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | #ifndef FBXRMESH_H |
|---|
| 2 | #define FBXRMESH_H |
|---|
| 3 | |
|---|
| 4 | #include <fbxfilesdk/fbxfilesdk_def.h> |
|---|
| 5 | #include <osgDB/ReaderWriter> |
|---|
| 6 | #include <osg/Material> |
|---|
| 7 | #include "fbxRNode.h" |
|---|
| 8 | osgDB::ReaderWriter::ReadResult readFbxMesh( |
|---|
| 9 | FBXFILESDK_NAMESPACE::KFbxSdkManager& pSdkManager, |
|---|
| 10 | FBXFILESDK_NAMESPACE::KFbxNode* pNode, |
|---|
| 11 | osg::ref_ptr<osgAnimation::AnimationManagerBase>& pAnimationManager, |
|---|
| 12 | std::vector<StateSetContent>&, |
|---|
| 13 | BindMatrixMap& boneBindMatrices, |
|---|
| 14 | std::map<KFbxNode*, osgAnimation::Skeleton*>& skeletonMap); |
|---|
| 15 | |
|---|
| 16 | #endif |
|---|