[Bf-blender-cvs] [947c197321e] usd-importer-T81257-merge: USD importer: format fix.

makowalski noreply at git.blender.org
Mon Jul 19 02:48:41 CEST 2021


Commit: 947c197321e1984e419cdf1db93622ce30b1861c
Author: makowalski
Date:   Sun Jul 18 17:35:47 2021 -0400
Branches: usd-importer-T81257-merge
https://developer.blender.org/rB947c197321e1984e419cdf1db93622ce30b1861c

USD importer: format fix.

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

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 e73474cbab4..ff90e6ba7e4 100644
--- a/source/blender/editors/io/io_usd.c
+++ b/source/blender/editors/io/io_usd.c
@@ -498,12 +498,13 @@ void WM_OT_usd_import(struct wmOperatorType *ot)
   RNA_def_property_enum_default(
       prop, (MOD_MESHSEQ_READ_VERT | MOD_MESHSEQ_READ_POLY | MOD_MESHSEQ_READ_UV));
 
-  RNA_def_string(ot->srna,
-                 "prim_path_mask",
-                 NULL,
-                 1024,
-                 "",
-                 "If set, only the subset of the USD scene rooted at the given prim will be imported");
+  RNA_def_string(
+      ot->srna,
+      "prim_path_mask",
+      NULL,
+      1024,
+      "",
+      "If set, only the subset of the USD scene rooted at the given prim will be imported");
 
   RNA_def_boolean(ot->srna, "import_guide", false, "Guide", "Import guide geometry");



More information about the Bf-blender-cvs mailing list