diff --git a/add_curve_extra_objects/add_surface_plane_cone.py b/add_curve_extra_objects/add_surface_plane_cone.py index 4f34f65470d33850a59f26bcaddb04d1f3eabfba..94889f5b995b8eab4a74a1c199782751e0146437 100644 --- a/add_curve_extra_objects/add_surface_plane_cone.py +++ b/add_curve_extra_objects/add_surface_plane_cone.py @@ -330,7 +330,7 @@ class MakeSurfacePlane(Operator, MakeSurfaceHelpers): bpy.ops.object.mode_set(mode='OBJECT') bpy.ops.object.origin_set(type='ORIGIN_GEOMETRY', center='MEDIAN') # transform scale - bpy.ops.object.transform_apply(scale=True) + bpy.ops.object.transform_apply(location=False,rotation=False,scale=True) # bring object to 3d cursor bpy.ops.object.mode_set(mode='OBJECT') diff --git a/add_mesh_extra_objects/mesh_discombobulator.py b/add_mesh_extra_objects/mesh_discombobulator.py index f168e32b49ece7a0ffac19960e3be7f7bfeadf98..4fcbf59370f6142725498ac2e1575f033cce35e3 100644 --- a/add_mesh_extra_objects/mesh_discombobulator.py +++ b/add_mesh_extra_objects/mesh_discombobulator.py @@ -339,7 +339,7 @@ def doodads(object1, mesh1, dmin, dmax): # First we have to apply scaling and rotation to the mesh bpy.ops.object.select_pattern(pattern=bpy.context.scene.discomb.DISC_doodads[type_dood], extend=False) bpy.context.scene.objects.active = bpy.data.objects[bpy.context.scene.discomb.DISC_doodads[type_dood]] - bpy.ops.object.transform_apply(rotation=True, scale=True) + bpy.ops.object.transform_apply(location=False, rotation=True, scale=True) for polygon in bpy.data.objects[bpy.context.scene.discomb.DISC_doodads[type_dood]].data.polygons: polygons_add.append(polygon.vertices) diff --git a/io_anim_bvh/import_bvh.py b/io_anim_bvh/import_bvh.py index f609ca6cae7a192b02fb9898242bd4240b6644c9..f06a1d872e881a7fbb3ed112ba7aa349f7549c55 100644 --- a/io_anim_bvh/import_bvh.py +++ b/io_anim_bvh/import_bvh.py @@ -650,7 +650,7 @@ def bvh_node_dict2armature( # finally apply matrix arm_ob.matrix_world = global_matrix - bpy.ops.object.transform_apply(rotation=True) + bpy.ops.object.transform_apply(location=False, rotation=True, scale=False) return arm_ob diff --git a/io_import_images_as_planes.py b/io_import_images_as_planes.py index 5cc15311fff57749727394bed66e9a03b1664475..fb8cbc1e93077a18675f6d7da94f4d7a9895be09 100644 --- a/io_import_images_as_planes.py +++ b/io_import_images_as_planes.py @@ -1046,7 +1046,7 @@ class IMPORT_IMAGE_OT_to_plane(Operator, AddObjectHelper): bpy.ops.object.mode_set(mode='OBJECT') plane.dimensions = width, height, 0.0 plane.data.name = plane.name = name - bpy.ops.object.transform_apply(scale=True) + bpy.ops.object.transform_apply(location=False, rotation=False, scale=True) # If sizing for camera, also insert into the camera's field of view if self.size_mode == 'CAMERA':