[Bf-extensions-cvs] [3c670394] master: io_coat3D: fix vox scaling issue

Kalle-Samuli Riihikoski noreply at git.blender.org
Tue Oct 27 18:36:22 CET 2020


Commit: 3c670394b5eba10e348dacec80137c772fa40bd7
Author: Kalle-Samuli Riihikoski
Date:   Tue Oct 27 19:36:18 2020 +0200
Branches: master
https://developer.blender.org/rBA3c670394b5eba10e348dacec80137c772fa40bd7

io_coat3D: fix vox scaling issue

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

M	io_coat3D/__init__.py

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

diff --git a/io_coat3D/__init__.py b/io_coat3D/__init__.py
index 0a1b7791..a5f28246 100644
--- a/io_coat3D/__init__.py
+++ b/io_coat3D/__init__.py
@@ -717,7 +717,7 @@ class SCENE_OT_export(bpy.types.Operator):
         if(coat3D.type == 'autopo'):
             coat3D.bring_retopo = True
             coat3D.bring_retopo_path = checkname
-            bpy.ops.export_scene.fbx(filepath=checkname, global_scale = 0.01, use_selection=True, use_mesh_modifiers=coat3D.exportmod, axis_forward='-Z', axis_up='Y')
+            bpy.ops.export_scene.fbx(filepath=checkname, global_scale = 1, use_selection=True, use_mesh_modifiers=coat3D.exportmod, axis_forward='-Z', axis_up='Y')
 
         elif (coat3D.type == 'vox'):
             coat3D.bring_retopo = False



More information about the Bf-extensions-cvs mailing list