Changeset View
Changeset View
Standalone View
Standalone View
source/blender/io/alembic/exporter/abc_writer_abstract.cc
| Show All 39 Lines | |||||
| ABCAbstractWriter::ABCAbstractWriter(const ABCWriterConstructorArgs &args) | ABCAbstractWriter::ABCAbstractWriter(const ABCWriterConstructorArgs &args) | ||||
| : args_(args), | : args_(args), | ||||
| frame_has_been_written_(false), | frame_has_been_written_(false), | ||||
| is_animated_(false), | is_animated_(false), | ||||
| timesample_index_(args_.abc_archive->time_sampling_index_shapes()) | timesample_index_(args_.abc_archive->time_sampling_index_shapes()) | ||||
| { | { | ||||
| } | } | ||||
| ABCAbstractWriter::~ABCAbstractWriter() | |||||
| { | |||||
| } | |||||
| bool ABCAbstractWriter::is_supported(const HierarchyContext * /*context*/) const | bool ABCAbstractWriter::is_supported(const HierarchyContext * /*context*/) const | ||||
| { | { | ||||
| return true; | return true; | ||||
| } | } | ||||
| void ABCAbstractWriter::write(HierarchyContext &context) | void ABCAbstractWriter::write(HierarchyContext &context) | ||||
| { | { | ||||
| if (!frame_has_been_written_) { | if (!frame_has_been_written_) { | ||||
| ▲ Show 20 Lines • Show All 95 Lines • Show Last 20 Lines | |||||