Commit d80773ad authored by hybrid's avatar hybrid

Started Collada 1.4 support. This is work in progress, so don't expect it to work yet.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@1192 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 4b361793
This diff is collapsed.
...@@ -175,6 +175,9 @@ private: ...@@ -175,6 +175,9 @@ private:
//! reads a <library> section and its content //! reads a <library> section and its content
void readLibrarySection(io::IXMLReaderUTF8* reader); void readLibrarySection(io::IXMLReaderUTF8* reader);
//! reads a <visual_scene> element and stores it as a prefab
void CColladaFileLoader::readVisualSceneSection(io::IXMLReaderUTF8* reader);
//! reads a <scene> section and its content //! reads a <scene> section and its content
void readSceneSection(io::IXMLReaderUTF8* reader); void readSceneSection(io::IXMLReaderUTF8* reader);
...@@ -281,6 +284,7 @@ private: ...@@ -281,6 +284,7 @@ private:
scene::IAnimatedMesh* FirstLoadedMesh; scene::IAnimatedMesh* FirstLoadedMesh;
core::stringc FirstLoadedMeshName; core::stringc FirstLoadedMeshName;
s32 LoadedMeshCount; s32 LoadedMeshCount;
u32 Version;
core::array<IColladaPrefab*> Prefabs; core::array<IColladaPrefab*> Prefabs;
core::array<SColladaParam> Parameters; core::array<SColladaParam> Parameters;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment