|
@@ -886,6 +886,9 @@ public:
|
|
|
|
|
|
LazyObject* GetObject(uint64_t id) const;
|
|
LazyObject* GetObject(uint64_t id) const;
|
|
|
|
|
|
|
|
+ bool IsBinary() const {
|
|
|
|
+ return parser.IsBinary();
|
|
|
|
+ }
|
|
|
|
|
|
unsigned int FBXVersion() const {
|
|
unsigned int FBXVersion() const {
|
|
return fbxVersion;
|
|
return fbxVersion;
|
|
@@ -932,15 +935,21 @@ public:
|
|
std::vector<const Connection*> GetConnectionsBySourceSequenced(uint64_t source, const char* classname) const;
|
|
std::vector<const Connection*> GetConnectionsBySourceSequenced(uint64_t source, const char* classname) const;
|
|
std::vector<const Connection*> GetConnectionsByDestinationSequenced(uint64_t dest, const char* classname) const;
|
|
std::vector<const Connection*> GetConnectionsByDestinationSequenced(uint64_t dest, const char* classname) const;
|
|
|
|
|
|
- std::vector<const Connection*> GetConnectionsBySourceSequenced(uint64_t source, const char* const* classnames, size_t count) const;
|
|
|
|
- std::vector<const Connection*> GetConnectionsByDestinationSequenced(uint64_t dest, const char* const* classnames, size_t count) const;
|
|
|
|
|
|
+ std::vector<const Connection*> GetConnectionsBySourceSequenced(uint64_t source,
|
|
|
|
+ const char* const* classnames, size_t count) const;
|
|
|
|
+ std::vector<const Connection*> GetConnectionsByDestinationSequenced(uint64_t dest,
|
|
|
|
+ const char* const* classnames,
|
|
|
|
+ size_t count) const;
|
|
|
|
|
|
const std::vector<const AnimationStack*>& AnimationStacks() const;
|
|
const std::vector<const AnimationStack*>& AnimationStacks() const;
|
|
|
|
|
|
private:
|
|
private:
|
|
|
|
|
|
std::vector<const Connection*> GetConnectionsSequenced(uint64_t id, const ConnectionMap&) const;
|
|
std::vector<const Connection*> GetConnectionsSequenced(uint64_t id, const ConnectionMap&) const;
|
|
- std::vector<const Connection*> GetConnectionsSequenced(uint64_t id, bool is_src, const ConnectionMap&, const char* const* classnames, size_t count) const;
|
|
|
|
|
|
+ std::vector<const Connection*> GetConnectionsSequenced(uint64_t id, bool is_src,
|
|
|
|
+ const ConnectionMap&,
|
|
|
|
+ const char* const* classnames,
|
|
|
|
+ size_t count) const;
|
|
|
|
|
|
private:
|
|
private:
|
|
|
|
|