[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [50055] branches/soc-2012-bratwurst/source /blender: - bf_fbx: cleanup import defaults, fix typos and UI descriptions.

Alexander Gessler alexander.gessler at gmx.net
Mon Aug 20 19:25:05 CEST 2012


Revision: 50055
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=50055
Author:   aramis_acg
Date:     2012-08-20 17:25:04 +0000 (Mon, 20 Aug 2012)
Log Message:
-----------
- bf_fbx: cleanup import defaults, fix typos and UI descriptions.

Modified Paths:
--------------
    branches/soc-2012-bratwurst/source/blender/fbx/bfbx.cpp
    branches/soc-2012-bratwurst/source/blender/windowmanager/intern/wm_operators.c

Modified: branches/soc-2012-bratwurst/source/blender/fbx/bfbx.cpp
===================================================================
--- branches/soc-2012-bratwurst/source/blender/fbx/bfbx.cpp	2012-08-20 16:56:11 UTC (rev 50054)
+++ branches/soc-2012-bratwurst/source/blender/fbx/bfbx.cpp	2012-08-20 17:25:04 UTC (rev 50055)
@@ -46,7 +46,7 @@
 
 		defaults_out->all_geo_layers = 1;
 		defaults_out->drop_dummy_anims = 1;
-		defaults_out->preserve_pivot_nodes = 0;
+		defaults_out->preserve_pivot_nodes = 1;
 		defaults_out->strict_mode = 0;
 	}
 

Modified: branches/soc-2012-bratwurst/source/blender/windowmanager/intern/wm_operators.c
===================================================================
--- branches/soc-2012-bratwurst/source/blender/windowmanager/intern/wm_operators.c	2012-08-20 16:56:11 UTC (rev 50054)
+++ branches/soc-2012-bratwurst/source/blender/windowmanager/intern/wm_operators.c	2012-08-20 17:25:04 UTC (rev 50055)
@@ -2345,7 +2345,7 @@
 
 	// add fbx specific stuff
 	RNA_def_boolean(ot->srna, "strict_mode", 0, "FBX: Strict Mode",
-		"Only read FBX 2013 files, do strong version checking to make sure no data is incorrectly interpreted");
+		"Only read FBX 2013 and 2012 files, do strong version checking to make sure no data is incorrectly interpreted");
 
 	RNA_def_boolean(ot->srna, "all_geo_layers", 1, "FBX: Read all geometry layers",
 		"Read all geometry layers present in the source file and merge their contents");
@@ -2353,7 +2353,7 @@
 	RNA_def_boolean(ot->srna, "drop_dummy_anims", 1, "FBX: Strip empty animations",
 		"Remove redundant (i.e. constant) or empty animation curves");
 
-	RNA_def_boolean(ot->srna, "preserve_pivots", 0, "FBX: Preserve pivots",
+	RNA_def_boolean(ot->srna, "preserve_pivots", 1, "FBX: Preserve pivots",
 		"Always preserve pivot points, even if this involves creating dummy nodes");
 
 	// inherit rna settings from assimp operator




More information about the Bf-blender-cvs mailing list