Changeset View
Changeset View
Standalone View
Standalone View
source/blender/io/alembic/exporter/abc_custom_props.cc
| Show First 20 Lines • Show All 45 Lines • ▼ Show 20 Lines | |||||
| using Alembic::Abc::OStringArrayProperty; | using Alembic::Abc::OStringArrayProperty; | ||||
| namespace blender::io::alembic { | namespace blender::io::alembic { | ||||
| CustomPropertiesExporter::CustomPropertiesExporter(ABCAbstractWriter *owner) : owner_(owner) | CustomPropertiesExporter::CustomPropertiesExporter(ABCAbstractWriter *owner) : owner_(owner) | ||||
| { | { | ||||
| } | } | ||||
| CustomPropertiesExporter::~CustomPropertiesExporter() | |||||
| { | |||||
| } | |||||
| void CustomPropertiesExporter::write_all(const IDProperty *group) | void CustomPropertiesExporter::write_all(const IDProperty *group) | ||||
| { | { | ||||
| if (group == nullptr) { | if (group == nullptr) { | ||||
| return; | return; | ||||
| } | } | ||||
| BLI_assert(group->type == IDP_GROUP); | BLI_assert(group->type == IDP_GROUP); | ||||
| /* Loop over the properties, just like IDP_foreach_property() does, but without the recursion. */ | /* Loop over the properties, just like IDP_foreach_property() does, but without the recursion. */ | ||||
| ▲ Show 20 Lines • Show All 203 Lines • Show Last 20 Lines | |||||