"ID Data" → "Make Single User" in Outliner for Curve animation data crashes Blender #79187
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
FBX
Interest
Freestyle
Interest
Geometry Nodes
Interest
glTF
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 & 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
Asset System
Module
Core
Module
Development Management
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline & 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
4 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: blender/blender#79187
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
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?
System Information
Operating system: Windows-10-10.0.18362-SP0 64 Bits
Graphics card: Intel(R) Iris(R) Plus Graphics 640 Intel 4.5.0 - Build 26.20.100.7639
Blender Version
Broken: version: 2.83.0 (release), 2.83.3, branch: master, commit date: 2020-07-22 06:01, hash:
353e5bd749
Broken: 2.90 release branch @
ee98dc8d0f
Worked: 2.80, 2.82
Short description of error
Making Curve animation data single-user crashes Blender.
(original report: Linking animation data on curves like keyframed Bevel Start and End values permanenly links animation data and I can't unlink it using "Make Single User" in order to offset curve animation in several curves.)
Exact steps for others to reproduce the error
With Blender in factory defaults:
The above gives you this example file:
#79187-linked_curves-mine.blend
BezierCurveAction
in the outliner and select it.(original report: if you go "Make single User" and select "Animation Data", animation is not unlinked. Changing values on one curve changes animation on all other curves previously linked. In attached file, I replicated the issue and compared it with two mesh cubes. Cubes had their animation data linked, and sucessfuly unlinked and offset so they don't have exact same animation. Curves however curves remain linked. F8715762)
Added subscriber: @ReljaTrajkovic
Changed status from 'Needs Triage' to: 'Confirmed'
This seems to be by design. "Make Single User" from the "Object" menu only works on object data. It does not recursively go into the object data. This means that it makes the animation data of the Object single-user but not the animation data of the Curve itself.
You can see this in effect by following these steps:
Unfortunately, you can't use the Action Editor to make the Curve animation data single-user either, as that only shows object-level actions. It should be possible via the outliner, but that crashes. I'll see if I can fix that crash, so that there is at least some way to make curve animation single-user.
Can't unlink object animation for linked animation on curvesto "ID Data" → "Make Single User" in Outliner for Curve animation data crashes BlenderAdded subscriber: @dr.sybren
Some developer info:
singleuser_action_cb()
is called withtselem->id
pointing to the curve Object, instead of the curve itself. This means that further code will not be able to properly find the animation data.The function then proceeds to use
iat->id
to find the property that is supposed to be made single-user, butiat->id
points to the Scene.The end result is that IDs are mixed up, and since the Scene doesn't have animation data, Blender segfaults.
There are two problems here. First, this is a known issue with the outliner context menu that I've started fixing for GSoC in #77770 (Outliner Context Menu Cleanup). The first time I tried replicating the crash I realized what the real issue is:
If
BezierCurveAction
is first selected with left click, the parentBezierCurve
object is also selected. Selecting "ID Data" → "Make Single User" from here causes the crash.If
BezierCurveAction
is selected with right click and is the only selected object, the context menu shows like it did in 2.82 with "Make Single User" an immediate option. Running with no objects selected shows that It's a hassle, but a temporary workaround is to ensure that no objects are also selected when running "Make Single User".The issue is that fixing #74332 (driver can't be seen in the driver editor(blender2.82)) required a selection sync to ensure that parent objects are selected. Pre-2.83 a selection on the curve did not select the parent as it should. Because the parent object is selected, the context menu shows additional entries (requiring the ID Data submenu), and the object is passed to
singleuser_action_cb
as if it were a curve.However, this is still a bug in that you can cause this to happen pre 2.83. I tested 2.80 with an additional object selected and the result was still a crash.
singleuser_action_cb
is called on all selected elements in the outliner. A simple fix for the crash (which I will commit) is to ensure that the id is an action in the callback.For the context menu confusion between 2.82 and 2.83+, I'm experimenting in the gsoc outliner branch today to find a quick solution. if there is a nice and easy solution, I think it could also be applied to 2.90 to fix the context menu showing the wrong entries which has caused confusion elsewhere.
This issue was referenced by
e48054ece4
This issue was referenced by
9cbf43801b
Changed status from 'Confirmed' to: 'Resolved'