Skip to content
Snippets Groups Projects
Commit a06a47b2 authored by Kalle-Samuli Riihikoski's avatar Kalle-Samuli Riihikoski
Browse files

Axis were wrong.

parent 0738c304
No related branches found
No related tags found
No related merge requests found
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# #
...@@ -238,7 +239,7 @@ class SCENE_OT_export(bpy.types.Operator): ...@@ -238,7 +239,7 @@ class SCENE_OT_export(bpy.types.Operator):
bpy.ops.export_scene.obj(filepath=checkname,use_selection=True, bpy.ops.export_scene.obj(filepath=checkname,use_selection=True,
use_apply_modifiers=coat3D.exportmod,use_blen_objects=False, group_by_material= True, use_apply_modifiers=coat3D.exportmod,use_blen_objects=False, group_by_material= True,
use_materials = False,keep_vertex_order = True,axis_forward='Y',axis_up='Z') use_materials = False,keep_vertex_order = True,axis_forward='X',axis_up='Y')
bpy.ops.object.origin_set(type='ORIGIN_GEOMETRY', center='MEDIAN') bpy.ops.object.origin_set(type='ORIGIN_GEOMETRY', center='MEDIAN')
coa.export_on = True coa.export_on = True
...@@ -253,7 +254,7 @@ class SCENE_OT_export(bpy.types.Operator): ...@@ -253,7 +254,7 @@ class SCENE_OT_export(bpy.types.Operator):
bpy.ops.export_scene.obj(filepath=checkname,use_selection=True, bpy.ops.export_scene.obj(filepath=checkname,use_selection=True,
use_apply_modifiers=coat3D.exportmod,use_blen_objects=False, group_by_material= True, use_apply_modifiers=coat3D.exportmod,use_blen_objects=False, group_by_material= True,
use_materials = False,keep_vertex_order = True,axis_forward='Y',axis_up='Z') use_materials = False,keep_vertex_order = True,axis_forward='X',axis_up='Y')
obj.location = coat3D.loca obj.location = coat3D.loca
obj.rotation_euler = coat3D.rota obj.rotation_euler = coat3D.rota
...@@ -330,7 +331,7 @@ class SCENE_OT_import(bpy.types.Operator): ...@@ -330,7 +331,7 @@ class SCENE_OT_import(bpy.types.Operator):
os.remove(mtl) os.remove(mtl)
bpy.ops.import_scene.obj(filepath=act_name.coat3D.objectdir,axis_forward='Y',axis_up='Z') bpy.ops.import_scene.obj(filepath=act_name.coat3D.objectdir,axis_forward='X',axis_up='Y')
obj_proxy = scene.objects[0] obj_proxy = scene.objects[0]
bpy.ops.object.select_all(action='TOGGLE') bpy.ops.object.select_all(action='TOGGLE')
obj_proxy.select = True obj_proxy.select = True
...@@ -457,7 +458,7 @@ class SCENE_OT_import3b(bpy.types.Operator): ...@@ -457,7 +458,7 @@ class SCENE_OT_import3b(bpy.types.Operator):
new_obj = palikka new_obj = palikka
import_no = 0 import_no = 0
else: else:
bpy.ops.import_scene.obj(filepath=obj_path,axis_forward='Y',axis_up='Z') bpy.ops.import_scene.obj(filepath=obj_path,axis_forward='X',axis_up='Y')
new_obj = scene.objects[0] new_obj = scene.objects[0]
scene.objects[0].coat3D.objectdir = export scene.objects[0].coat3D.objectdir = export
if(path_on): if(path_on):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment