Rename project to Yet Another Pose Library (for now)

This commit is contained in:
2025-01-13 16:03:46 -06:00
parent 21f2278990
commit 23ffed939a
6 changed files with 107 additions and 107 deletions

View File

@ -93,7 +93,7 @@ def set_keyframes_from_bones(context, arm_object, new_marker):
elif bone.rotation_mode == "QUATERNION":
rot_mode = "rotation_quaternion"
else:
self.report({'WARNING'}, "DSPL: Unsupported bone: " + bone.name + ": " + bone.rotation_mode)
self.report({'WARNING'}, "YAPL: Unsupported bone: " + bone.name + ": " + bone.rotation_mode)
rot_mode = None
loc_x = bone.location[0]
@ -158,7 +158,7 @@ def set_bones_from_keyframes(context, arm_object, active_marker):
elif bone.rotation_mode == "QUATERNION":
rot_mode = "rotation_quaternion"
else:
self.report({'WARNING'}, "DSPL: Unsupported bone: " + bone.name + ": " + bone.rotation_mode)
self.report({'WARNING'}, "YAPL: Unsupported bone: " + bone.name + ": " + bone.rotation_mode)
rot_mode = None
loc_x = find_fcurve(context, bone_name, "location", 0) or 0.0