Collada exporter: Replaced numbers 0/1 by boolean values fasle/true for better reading

This commit is contained in:
2018-02-27 16:52:51 +01:00
parent 91f3cfec10
commit 0ea110f4ea

View File

@@ -379,19 +379,19 @@ void WM_OT_collada_export(wmOperatorType *ot)
RNA_def_enum(func, "export_mesh_type_selection", prop_bc_export_mesh_type, 0,
"Resolution", "Modifier resolution for export");
RNA_def_boolean(func, "selected", 0, "Selection Only",
RNA_def_boolean(func, "selected", false, "Selection Only",
"Export only selected elements");
RNA_def_boolean(func, "include_children", 0, "Include Children",
RNA_def_boolean(func, "include_children", false, "Include Children",
"Export all children of selected objects (even if not selected)");
RNA_def_boolean(func, "include_armatures", 0, "Include Armatures",
RNA_def_boolean(func, "include_armatures", false, "Include Armatures",
"Export related armatures (even if not selected)");
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",
RNA_def_boolean(func, "deform_bones_only", false, "Deform Bones only",
"Only export deforming bones with armatures");
RNA_def_boolean(func, "include_animations", true,