Library Override: can't add to Collection properties #82118

Closed
opened 2020-10-26 23:24:10 +01:00 by Ovionis · 8 comments

System Information
Operating system: Windows-10-10.0.19041-SP0 64 Bits
Graphics card: GeForce GTX 770/PCIe/SSE2 NVIDIA Corporation 4.5.0 NVIDIA 452.06

Blender Version
Broken: version: 2.92.0 Alpha, branch: master, commit date: 2020-10-23 11:34, hash: e4728d0a16
Broken: version: 2.91.0 Alpha, branch: master, commit date: 2020-09-21 19:29, hash: 8eda3ddc4f
Worked: version: 2.91.0 Alpha, branch: master, commit date: 2020-09-16 21:05, hash: 27660b3cd9

Short description of error
When an addon uses a CollectionProperty to add data to things (example: bones), it uses [collection_path].add() to add the container for the data.
When the owner (bone/object/etc) of that parameter (CollectionProperty) is linked and a Library Override, Blender returns an error when trying to add to the collection.

Exact steps for others to reproduce the error
cube.blend cube-linked.blend
cube-linked.blend Is the test file.
cube.blend is the file being linked

Open cube-linked.
Run the script on the left in the Text Editor
Copy the test code to the Python Console on the right bpy.context.object.col.add()
The Torus object (not linked) will run as expected.

Select the cube (library override) and run the test code again
Blender will say TypeError: bpy_prop_collection.add(): not supported for this collection

**System Information** Operating system: Windows-10-10.0.19041-SP0 64 Bits Graphics card: GeForce GTX 770/PCIe/SSE2 NVIDIA Corporation 4.5.0 NVIDIA 452.06 **Blender Version** Broken: version: 2.92.0 Alpha, branch: master, commit date: 2020-10-23 11:34, hash: `e4728d0a16` Broken: version: 2.91.0 Alpha, branch: master, commit date: 2020-09-21 19:29, hash: `8eda3ddc4f` Worked: version: 2.91.0 Alpha, branch: master, commit date: 2020-09-16 21:05, hash: `27660b3cd9` **Short description of error** When an addon uses a `CollectionProperty` to add data to things (example: bones), it uses `[collection_path].add()` to add the container for the data. When the owner (bone/object/etc) of that parameter (CollectionProperty) is linked and a Library Override, Blender returns an error when trying to add to the collection. **Exact steps for others to reproduce the error** [cube.blend](https://archive.blender.org/developer/F9103672/cube.blend) [cube-linked.blend](https://archive.blender.org/developer/F9103673/cube-linked.blend) `cube-linked.blend` Is the test file. `cube.blend` is the file being linked Open `cube-linked`. Run the script on the left in the Text Editor Copy the test code to the Python Console on the right `bpy.context.object.col.add()` The Torus object *(not linked)* will run as expected. Select the cube *(library override)* and run the test code again Blender will say `TypeError: bpy_prop_collection.add(): not supported for this collection`
Author

Added subscriber: @Phigon

Added subscriber: @Phigon
Member

Added subscriber: @lichtwerk

Added subscriber: @lichtwerk
Member

Changed status from 'Needs Triage' to: 'Archived'

Changed status from 'Needs Triage' to: 'Archived'
Philipp Oeser self-assigned this 2020-10-27 09:59:08 +01:00
Member

For this to work, you have to flag the CollectionProperty with USE_INSERTION

"Allow users to add new items in that collection in library overrides"

    bpy.types.Object.col = bpy.props.CollectionProperty(
        type=propc,
        options={'LIBRARY_EDITABLE'},
        override={'LIBRARY_OVERRIDABLE', 'USE_INSERTION'},
    )

cube-linked-corrected.blend

It is a bit hidden, but not a bug. Will close (but feel free to comment again if issues persist)

For this to work, you have to flag the `CollectionProperty` with `USE_INSERTION` > "Allow users to add new items in that collection in library overrides" ``` bpy.types.Object.col = bpy.props.CollectionProperty( type=propc, options={'LIBRARY_EDITABLE'}, override={'LIBRARY_OVERRIDABLE', 'USE_INSERTION'}, ) ``` [cube-linked-corrected.blend](https://archive.blender.org/developer/F9109184/cube-linked-corrected.blend) It is a bit hidden, but not a bug. Will close (but feel free to comment again if issues persist)
Member

These are the related commits btw.:
c2304d2f02
9756c66720

These are the related commits btw.: c2304d2f02 9756c66720
Author

Thank you.
I haven't tested yet but I'm sure it'll work.

Thank you. I haven't tested yet but I'm sure it'll work.

Added subscriber: @AlfonsoAnnarumma

Added subscriber: @AlfonsoAnnarumma

With 'USE_INSERTION' you can add new items to the override collection prop, but if you save and reopen the file, the items are not saved.
You can try it with the addon "Selection Sets".

Is it a bug? Probaly is the correct way (you can override and modify the props, but not their structure... I think...)

With 'USE_INSERTION' you can add new items to the override collection prop, but if you save and reopen the file, the items are not saved. You can try it with the addon "Selection Sets". Is it a bug? Probaly is the correct way (you can override and modify the props, but not their structure... I think...)
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
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
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
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
EEVEE & Viewport
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
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
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
3 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#82118
No description provided.