[Bf-blender-cvs] [5e54c0cbf19] universal-scene-description: USD export: fix skel root by default.

Michael Kowalski noreply at git.blender.org
Tue Aug 30 23:07:25 CEST 2022


Commit: 5e54c0cbf19c9da056be153130dc324f600a8149
Author: Michael Kowalski
Date:   Tue Aug 30 17:06:21 2022 -0400
Branches: universal-scene-description
https://developer.blender.org/rB5e54c0cbf19c9da056be153130dc324f600a8149

USD export: fix skel root by default.

Now enabling fixing the skel root hierarchy on export
by default.  Also removed 'Experimental' from the
'Armatures' export option label.

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

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

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

diff --git a/source/blender/editors/io/io_usd.c b/source/blender/editors/io/io_usd.c
index 8c8eab0f036..924a4b18619 100644
--- a/source/blender/editors/io/io_usd.c
+++ b/source/blender/editors/io/io_usd.c
@@ -658,7 +658,7 @@ void WM_OT_usd_export(struct wmOperatorType *ot)
   RNA_def_boolean(ot->srna,
                   "export_armatures",
                   false,
-                  "Armatures (Experimental)",
+                  "Armatures",
                   "Export armatures and skinned meshes");
 
   RNA_def_boolean(ot->srna,
@@ -675,7 +675,7 @@ void WM_OT_usd_export(struct wmOperatorType *ot)
 
   RNA_def_boolean(ot->srna,
     "fix_skel_root",
-    false,
+    true,
     "Fix Skel Root",
     "If exporting armatures, attempt to automatically "
     "correct invalid USD Skel Root hierarchies");



More information about the Bf-blender-cvs mailing list