projects
/
blender.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f23f5b
)
Alembic: added some getter functions to help debug prints etc.
author
Sybren A. Stüvel <sybren@stuvel.eu>
Wed, 15 Feb 2017 14:26:00 +0000
(15:26 +0100)
committer
Sybren A. Stüvel <sybren@stuvel.eu>
Thu, 6 Apr 2017 14:04:31 +0000
(16:04 +0200)
source/blender/alembic/intern/abc_object.h
patch
|
blob
|
history
diff --git
a/source/blender/alembic/intern/abc_object.h
b/source/blender/alembic/intern/abc_object.h
index 0f733e67d3fd827ba25f2a65ad80ad90695e7f6b..7d400f17a2a594a3c52d87b9ba7a66dae0f0345e 100644
(file)
--- a/
source/blender/alembic/intern/abc_object.h
+++ b/
source/blender/alembic/intern/abc_object.h
@@
-161,6
+161,10
@@
public:
Object *object() const;
void object(Object *ob);
+ const std::string & name() const { return m_name; }
+ const std::string & object_name() const { return m_object_name; }
+ const std::string & data_name() const { return m_data_name; }
+
virtual bool valid() const = 0;
virtual void readObjectData(Main *bmain, float time) = 0;