Removed Keyframe animation type

Former-commit-id: 807c81e9b738dbb443c3101026f7b5bdff32a931
This commit is contained in:
Lynix
2013-03-05 10:54:58 +01:00
parent a97da928a2
commit e26728c424
10 changed files with 68 additions and 1033 deletions

View File

@@ -7,7 +7,6 @@
#include <Nazara/Utility/Animation.hpp>
#include <Nazara/Utility/Buffer.hpp>
#include <Nazara/Utility/Config.hpp>
#include <Nazara/Utility/KeyframeMesh.hpp>
#include <Nazara/Utility/SkeletalMesh.hpp>
#include <Nazara/Utility/Skeleton.hpp>
#include <Nazara/Utility/SubMesh.hpp>
@@ -131,17 +130,6 @@ bool NzMesh::AddSubMesh(const NzString& identifier, NzSubMesh* subMesh)
return true;
}
bool NzMesh::CreateKeyframe()
{
Destroy();
m_impl = new NzMeshImpl;
m_impl->animationType = nzAnimationType_Keyframe;
NotifyCreated();
return true;
}
bool NzMesh::CreateSkeletal(unsigned int jointCount)
{
Destroy();