USD export: fix armature export.

Fixed a bug that was preventing armature writers
from being created, due to a missing break statement,
introduced after the latest merge from master.
This commit is contained in:
Michael Kowalski 2022-07-27 12:23:21 -04:00
parent 1417bf6525
commit 1770d462cc
1 changed files with 1 additions and 0 deletions

View File

@ -174,6 +174,7 @@ AbstractHierarchyWriter *USDHierarchyIterator::create_data_writer(const Hierarch
}
else
return nullptr;
break;
case OB_VOLUME:
data_writer = new USDVolumeWriter(usd_export_context);
break;