Animation: Merge Push/Relax Rest Pose operators #108309
No reviewers
Labels
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset System
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Code Documentation
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Viewport & EEVEE
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Asset Browser Project
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Module
Viewport & EEVEE
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Severity
High
Severity
Low
Severity
Normal
Severity
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: blender/blender#108309
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "ChrisLend/blender:pose_blend_to_default"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This patch merges the two operators
Push Pose from Rest Pose
andRelax Pose from Rest Pose
into one new operatorBlend Pose with Rest Pose
The operator has a default range of -1/1 with a default of 0.
The functionality of
Relax Pose from Rest Pose
is on the positive axis andPush Pose from Rest Pose
on the negative.This is a breaking change so ideal for 4.0
Good idea to merge these two, as they're two sides of the same coin. A few remarks:
E
key. Even though it's technically extrapolation, it also makes the feature less accessible.From the change in naming, the extra key required to get the 'push from' behaviour, the change in name and description, those all appear to be hiding the 'push from' side of things. These used to be two equal operators (in terms of visibility, directness, etc.), and I think it's good to rethink some of the details to make sure that it doesn't appear like one of them got lost somehow.
@ -3739,3 +3737,4 @@
layout.operator("pose.relax")
layout.operator("pose.breakdown")
layout.operator("pose.blend_to_neighbor")
layout.operator("pose.blend_to_rest")
For findability it might be better to keep the position in the menu the same.
@ -1658,1 +1585,3 @@
ot->description = "Make the current pose more similar to the rest pose";
ot->name = "Blend Pose to Rest Pose";
ot->idname = "POSE_OT_blend_to_rest";
ot->description = "Blend the current pose to the rest pose";
I think the old description was better. As the wording is more different from the operator name, it is more explanatory for when you don't quite understand the operator name itself.
Also the current description only describes one half of the operator. How about something like this?
"Make the current pose more similar to, or further away from, the rest pose"
Same for the name, by the way. Maybe change it to "Blend Pose from/to Rest Pose"?
I've implemented the changes, except for the change to the operator name
This needs to be discussed in the meeting, but the name "Blend Pose from Rest Pose" is confusing to me.
Like it's not clear where it is going.
That's also the reason why I hid away the push functionality behind the overshoot at first. As an animator it is hard to predict where that is going, so it will always be less important than blending to the rest pose. But I see from a consistency point of view how it should stay the same.
Christoph Lendenfeld referenced this pull request2023-06-09 16:25:40 +02:00
renamed operator to
Blend Pose with Rest Pose
as discussed yesterday in the A&R meetingLGTM!
As a follow-up refactor, do you think it's worth it to change
to
?