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:
authorJacques Lucke <jacques@blender.org>2020-09-28 14:18:20 +0300
committerJacques Lucke <jacques@blender.org>2020-09-28 14:18:20 +0300
commitf798a6c6799e75890c5415145922cef8de82a700 (patch)
treea02a616e3bfe17b9115b00583b0494ca3f827d4e
parent6501b051185d274d8e4da6fceec695d171856482 (diff)
add todo comment
-rw-r--r--source/blender/modifiers/intern/MOD_mesh_to_volume.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/modifiers/intern/MOD_mesh_to_volume.cc b/source/blender/modifiers/intern/MOD_mesh_to_volume.cc
index 745bdad1b3b..61207207b76 100644
--- a/source/blender/modifiers/intern/MOD_mesh_to_volume.cc
+++ b/source/blender/modifiers/intern/MOD_mesh_to_volume.cc
@@ -204,6 +204,7 @@ static Volume *modifyVolume(ModifierData *md, const ModifierEvalContext *ctx, Vo
if (object_to_convert == NULL) {
return input_volume;
}
+ /* TODO: Support other object types. */
if (object_to_convert->type != OB_MESH) {
return input_volume;
}