Alembic: fix naming of imported transforms.
When importing an Alembic file with grouped transforms, it would badly name the transforms, taking the name of the parent instead of its own. Patch by @maxime.robinot Differential Revision: https://developer.blender.org/D2507
This commit is contained in:
parent
930186d3df
commit
54102ab36e
@ -146,6 +146,6 @@ bool AbcEmptyReader::valid() const
|
||||
|
||||
void AbcEmptyReader::readObjectData(Main *bmain, float /*time*/)
|
||||
{
|
||||
m_object = BKE_object_add_only_object(bmain, OB_EMPTY, m_object_name.c_str());
|
||||
m_object = BKE_object_add_only_object(bmain, OB_EMPTY, m_data_name.c_str());
|
||||
m_object->data = NULL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user