Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/usd/intern/usd_hierarchy_iterator.cc')
-rw-r--r--source/blender/usd/intern/usd_hierarchy_iterator.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/usd/intern/usd_hierarchy_iterator.cc b/source/blender/usd/intern/usd_hierarchy_iterator.cc
index d56de8cff13..fd888f39adc 100644
--- a/source/blender/usd/intern/usd_hierarchy_iterator.cc
+++ b/source/blender/usd/intern/usd_hierarchy_iterator.cc
@@ -24,6 +24,7 @@
#include "usd_writer_hair.h"
#include "usd_writer_light.h"
#include "usd_writer_mesh.h"
+#include "usd_writer_metaball.h"
#include "usd_writer_transform.h"
#include <string>
@@ -106,12 +107,14 @@ AbstractHierarchyWriter *USDHierarchyIterator::create_data_writer(const Hierarch
case OB_LAMP:
data_writer = new USDLightWriter(usd_export_context);
break;
+ case OB_MBALL:
+ data_writer = new USDMetaballWriter(usd_export_context);
+ break;
case OB_EMPTY:
case OB_CURVE:
case OB_SURF:
case OB_FONT:
- case OB_MBALL:
case OB_SPEAKER:
case OB_LIGHTPROBE:
case OB_LATTICE: