[Bf-blender-cvs] [91f3cfec109] master: Collada Shape key export can create huge datafiles and may need some optimization. Disable export by default, user can still enable on demand

Gaia Clary noreply at git.blender.org
Tue Feb 27 17:03:02 CET 2018


Commit: 91f3cfec109658ceb0b68ed60eb42a6f5abacdbb
Author: Gaia Clary
Date:   Tue Feb 27 16:51:52 2018 +0100
Branches: master
https://developer.blender.org/rB91f3cfec109658ceb0b68ed60eb42a6f5abacdbb

Collada Shape key export can create huge datafiles and may need some optimization. Disable export by default, user can still enable on demand

===================================================================

M	source/blender/editors/io/io_collada.c

===================================================================

diff --git a/source/blender/editors/io/io_collada.c b/source/blender/editors/io/io_collada.c
index 2874a1398c1..9e917b7023e 100644
--- a/source/blender/editors/io/io_collada.c
+++ b/source/blender/editors/io/io_collada.c
@@ -388,7 +388,7 @@ void WM_OT_collada_export(wmOperatorType *ot)
 	RNA_def_boolean(func, "include_armatures", 0, "Include Armatures",
 	                "Export related armatures (even if not selected)");
 
-	RNA_def_boolean(func, "include_shapekeys", 1, "Include Shape Keys",
+	RNA_def_boolean(func, "include_shapekeys", false, "Include Shape Keys",
 	                "Export all Shape Keys from Mesh Objects");
 
 	RNA_def_boolean(func, "deform_bones_only", 0, "Deform Bones only",



More information about the Bf-blender-cvs mailing list