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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-05-17 11:23:31 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-05-17 11:24:45 +0300
commit5186cfbea4c1c1111d6e6061ab877ee8d9b4f206 (patch)
tree2826f2a5f8e072c96bd4278b55335c6a35852fe5 /source/blender/makesrna/intern/rna_object_api.c
parente02f68c57757f07fdacdc9db4a0ad38533dd74fb (diff)
Depsgraph: State behavior details more explicitly
Diffstat (limited to 'source/blender/makesrna/intern/rna_object_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_object_api.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_object_api.c b/source/blender/makesrna/intern/rna_object_api.c
index da00e1f155d..7362f6ba610 100644
--- a/source/blender/makesrna/intern/rna_object_api.c
+++ b/source/blender/makesrna/intern/rna_object_api.c
@@ -895,7 +895,8 @@ void RNA_api_object(StructRNA *srna)
RNA_def_function_ui_description(
func,
"Create a Mesh data-block from the current state of the object. The object owns the "
- "data-block. To force free it use to_mesh_clear()");
+ "data-block. To force free it use to_mesh_clear(). "
+ "The result is temporary and can not be used by objects from the main database");
RNA_def_function_flag(func, FUNC_USE_REPORTS);
parm = RNA_def_pointer(func, "mesh", "Mesh", "", "Mesh created from object");
RNA_def_function_return(func, parm);