- fbx: Objects now carry their ID.

This commit is contained in:
Alexander Gessler
2012-07-03 19:36:38 +02:00
parent 8a12b179a6
commit effcaf066a
4 changed files with 40 additions and 19 deletions

View File

@@ -58,8 +58,8 @@ namespace FBX {
using namespace Util;
// ------------------------------------------------------------------------------------------------
MeshGeometry::MeshGeometry(const Element& element, const std::string& name, const ImportSettings& settings)
: Geometry(element,name)
MeshGeometry::MeshGeometry(uint64_t id, const Element& element, const std::string& name, const ImportSettings& settings)
: Geometry(id, element,name)
{
const Scope* sc = element.Compound();
if (!sc) {