Changeset View
Changeset View
Standalone View
Standalone View
source/blender/io/usd/intern/usd_hierarchy_iterator.cc
| Show First 20 Lines • Show All 89 Lines • ▼ Show 20 Lines | switch (context->object->type) { | ||||
| case OB_LAMP: | case OB_LAMP: | ||||
| data_writer = new USDLightWriter(usd_export_context); | data_writer = new USDLightWriter(usd_export_context); | ||||
| break; | break; | ||||
| case OB_MBALL: | case OB_MBALL: | ||||
| data_writer = new USDMetaballWriter(usd_export_context); | data_writer = new USDMetaballWriter(usd_export_context); | ||||
| break; | break; | ||||
| case OB_EMPTY: | case OB_EMPTY: | ||||
| case OB_CURVE: | case OB_CURVES_LEGACY: | ||||
| case OB_SURF: | case OB_SURF: | ||||
| case OB_FONT: | case OB_FONT: | ||||
| case OB_SPEAKER: | case OB_SPEAKER: | ||||
| case OB_LIGHTPROBE: | case OB_LIGHTPROBE: | ||||
| case OB_LATTICE: | case OB_LATTICE: | ||||
| case OB_ARMATURE: | case OB_ARMATURE: | ||||
| case OB_GPENCIL: | case OB_GPENCIL: | ||||
| return nullptr; | return nullptr; | ||||
| Show All 28 Lines | |||||