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:
authorSybren A. Stüvel <sybren@stuvel.eu>2019-01-15 14:20:55 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2019-01-15 18:21:04 +0300
commitf16b9dc750f24f8cc8f5bf08474f67f70bbf6e9c (patch)
tree67bbc6131b12eacf2b3826def352b4489d8e9616 /source/blender/alembic
parent9fed39c7b0e21d46a65ddc08b806f686ec2706dd (diff)
Marked TODOs with the actual string TODO
There are some things that need to be done in Alembic for Blender 2.8 to make all the 'visible/renderable/selected only' options work.
Diffstat (limited to 'source/blender/alembic')
-rw-r--r--source/blender/alembic/intern/alembic_capi.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/alembic/intern/alembic_capi.cc b/source/blender/alembic/intern/alembic_capi.cc
index 4ea4097764a..16f6a4410bc 100644
--- a/source/blender/alembic/intern/alembic_capi.cc
+++ b/source/blender/alembic/intern/alembic_capi.cc
@@ -340,7 +340,7 @@ bool ABC_export(
job->settings.scene = scene;
job->settings.depsgraph = DEG_graph_new(scene, job->view_layer, DAG_EVAL_RENDER);
- /* Sybren: for now we only export the active scene layer.
+ /* TODO(Sybren): for now we only export the active scene layer.
* Later in the 2.8 development process this may be replaced by using
* a specific collection for Alembic I/O, which can then be toggled
* between "real" objects and cached Alembic files. */
@@ -353,7 +353,7 @@ bool ABC_export(
job->settings.shutter_open = params->shutter_open;
job->settings.shutter_close = params->shutter_close;
- /* Sybren: For now this is ignored, until we can get selection
+ /* TODO(Sybren): For now this is ignored, until we can get selection
* detection working through Base pointers (instead of ob->flags). */
job->settings.selected_only = params->selected_only;
@@ -366,7 +366,7 @@ bool ABC_export(
job->settings.apply_subdiv = params->apply_subdiv;
job->settings.flatten_hierarchy = params->flatten_hierarchy;
- /* Sybren: visible_layer & renderable only is ignored for now,
+ /* TODO(Sybren): visible_layer & renderable only is ignored for now,
* to be replaced with collections later in the 2.8 dev process
* (also see note above). */
job->settings.visible_layers_only = params->visible_layers_only;