More portable way of testing for SLERP

This commit is contained in:
Jack Andersen 2016-04-25 15:45:23 -10:00
parent f581ed3127
commit b48b8e3ea7
1 changed files with 5 additions and 2 deletions

View File

@ -67,10 +67,13 @@ if ackbytes != b'ACK':
quitblender()
# slerp branch check
if b'quat-slerp' in bpy.app.build_branch:
orig_rot = bpy.context.object.rotation_mode
try:
bpy.context.object.rotation_mode = 'QUATERNION_SLERP'
writepipeline(b'SLERP1')
else:
except:
writepipeline(b'SLERP0')
bpy.context.object.rotation_mode = orig_rot
# Count brackets
def count_brackets(linestr):