oops
Tries to fix #166 Seems like I had -1 brain cells and didn't notice this blaintant oversight in the code
This commit is contained in:
+3
-1
@@ -650,7 +650,9 @@ class ArmatureData(Tuple[bool,bool]):
|
|||||||
|
|
||||||
def store_breaking_settings_armature(armature: bpy.types.Object) -> ArmatureData:
|
def store_breaking_settings_armature(armature: bpy.types.Object) -> ArmatureData:
|
||||||
armature_data: bpy.types.Armature = armature.data
|
armature_data: bpy.types.Armature = armature.data
|
||||||
return (armature_data.use_mirror_x, armature.pose.use_mirror_x)
|
data: ArmatureData = (armature_data.use_mirror_x, armature.pose.use_mirror_x)
|
||||||
|
armature_data.use_mirror_x, armature.pose.use_mirror_x = (False, False)
|
||||||
|
return data
|
||||||
|
|
||||||
def restore_breaking_settings_armature(armature: bpy.types.Object, data: ArmatureData) -> None:
|
def restore_breaking_settings_armature(armature: bpy.types.Object, data: ArmatureData) -> None:
|
||||||
armature_data: bpy.types.Armature = armature.data
|
armature_data: bpy.types.Armature = armature.data
|
||||||
|
|||||||
Reference in New Issue
Block a user