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:
authorKévin Dietrich <kevin.dietrich@mailoo.org>2022-03-13 21:50:35 +0300
committerKévin Dietrich <kevin.dietrich@mailoo.org>2022-03-13 21:50:35 +0300
commitc0ef2a5cf56590c7b01502d8d6c5a18067afc028 (patch)
treef04018116f9c412cea30bb6cc14c6a0357568e33 /source/blender/io/alembic/exporter/abc_writer_mesh.h
parent5a0efc9c8b5ad991109c97d52d476d8c071a78ac (diff)
Start replacing write_custom_data with the attribute exporter.temp-abc-features
Diffstat (limited to 'source/blender/io/alembic/exporter/abc_writer_mesh.h')
-rw-r--r--source/blender/io/alembic/exporter/abc_writer_mesh.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/io/alembic/exporter/abc_writer_mesh.h b/source/blender/io/alembic/exporter/abc_writer_mesh.h
index a5d1a0e6613..7d9eb75d107 100644
--- a/source/blender/io/alembic/exporter/abc_writer_mesh.h
+++ b/source/blender/io/alembic/exporter/abc_writer_mesh.h
@@ -34,9 +34,13 @@ class ABCGenericMeshWriter : public ABCAbstractWriter {
CDStreamConfig m_custom_data_config;
+ GenericAttributeExporter *attribute_exporter_;
+
public:
explicit ABCGenericMeshWriter(const ABCWriterConstructorArgs &args);
+ ~ABCGenericMeshWriter();
+
virtual void create_alembic_objects(const HierarchyContext *context) override;
virtual Alembic::Abc::OObject get_alembic_object() const override;
Alembic::Abc::OCompoundProperty abc_prop_for_custom_props() override;