Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Geraskin <paul_geraskin@mail.ru>2013-07-04 15:18:23 +0400
committerPaul Geraskin <paul_geraskin@mail.ru>2013-07-04 15:18:23 +0400
commit2d665f91f7d20f85193daf20cb93099351ae8602 (patch)
treead55ea35eb92d4e1538f0856da5f619c71bff2db /io_coat3D
parent518ac70ae63b6ec3ea971223bbcb6055b0d6825d (diff)
[3DCoat] Fix for export/import axys. Obj-format for blender2.68+3dCoat4 should be: axis_forward=-Z, axis_up=Y.
Diffstat (limited to 'io_coat3D')
-rw-r--r--io_coat3D/coat.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/io_coat3D/coat.py b/io_coat3D/coat.py
index 7476bc96..49f20e71 100644
--- a/io_coat3D/coat.py
+++ b/io_coat3D/coat.py
@@ -236,7 +236,7 @@ class SCENE_OT_export(bpy.types.Operator):
bpy.ops.export_scene.obj(filepath=coa.applink_name,use_selection=True,
use_mesh_modifiers=False,use_blen_objects=True, use_materials = True,
- keep_vertex_order = True,axis_forward='Y',axis_up='Z')
+ keep_vertex_order = True,axis_forward='-Z',axis_up='Y')
obj.location = coa.loc
obj.rotation_euler = coa.rot
@@ -368,7 +368,7 @@ class SCENE_OT_import(bpy.types.Operator):
if(os.path.isfile(mtl)):
os.remove(mtl)
- bpy.ops.import_scene.obj(filepath=path_object,axis_forward='Y',axis_up='Z',use_image_search=False)
+ bpy.ops.import_scene.obj(filepath=path_object,axis_forward='-Z',axis_up='Y',use_image_search=False)
obj_proxy = scene.objects[0]
bpy.ops.object.select_all(action='TOGGLE')
obj_proxy.select = True
@@ -479,7 +479,7 @@ class SCENE_OT_import(bpy.types.Operator):
if(os.path.isfile(mtl_list)):
os.remove(mtl_list)
- bpy.ops.import_scene.obj(filepath=new_applink_name,axis_forward='Y',axis_up='Z')
+ bpy.ops.import_scene.obj(filepath=new_applink_name,axis_forward='-Z',axis_up='Y')
bpy.ops.object.transform_apply(rotation=True)
new_obj = scene.objects[0]
new_obj.coat3D.applink_name = obj_path