Created
September 5, 2024 08:02
-
-
Save LewisGet/18737c767ae92efdbbe507b3e08f19e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import bpy | |
from math import radians | |
bpy.ops.object.mode_set(mode='POSE') | |
for bone in bpy.data.objects['body_structure'].pose.bones: | |
bone.rotation_mode = 'XYZ' | |
bone.rotation_euler = (radians(0), radians(0), radians(0)) | |
bpy.context.view_layer.update() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment