Brush Asset Project #101895
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
16 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: blender/blender#101895
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?
NOTE: WIP...
This task is a general overview of the proposed new 'Brush Asset' system, aiming at offering a better brush management in Blender. Technical design will be done in sub-tasks.
The short-term flow of work is not organized here, but on the dedicated "Taiga" platform: https://tree.taiga.io/project/julianeisel-blender-brush-assets
Issues With Current Brush Management
Currently brushes are essentially handled like any other data-block. However, they are not really data, more some sort of complex presets affecting sculpting or drawing tools.
Their coupling with editing modes and tools is also flaky, in most cases (besides Grease Pencil modes), selecting a tool also select a brush, and often there is only one default brush per tool. So having to select a tool automatically select a 'default' brush for it, this is redundant and not so clear for the user.
Being regular local data-blocks, they are hard to share:
Further more, any edit to the brush settings is stored in the current file, making the concept of 'default' brush essentially nonexistent. Typical brush usages implies lots of frequent changes for a few properties, which should not be stored/kept across editing sessions.
New Proposal
General Ideas
Brushes define the type of edit mode and action they perform. Selecting a brush automatically enable its relevant 'tool'. Consequently, there is only one drawing or sculpting tool left, per edit mode.
Brushes are assets, stored in asset repositories. Either regular repositories, or a few special ones (like one shipped with Blender, currently called 'Essentials'). There are no more brushes stored in a regular working .blend file.
In regular working files, brushes are runtime-only data, their settings can be edited, but all changes are lost by default when closing Blender. Users can see (and reset) the edited values.
Changes to brushes can be saved into the 'draft'. Draft is a special asset repository that acts as some kind of advanced per-user copy-paste buffer (similar to e.g. User Preferences: several instances of Blender ran by the same user would have access to the same draft data, but it would not be shared between different users).
Draft data can either be independent (i.e. a full duplicate of the original brush data), or a library override of the original asset, to allow draft brushes to be updated if their original source is modified.
Authoring of brushes assets happens in the asset .blend files. Brushes can be either created from scratch, or duplicated from the draft or other assets. This process needs to be clearly separated from brush usage in the UI (probably done in different editors, Asset and/or Properties ones?).
UI/UX Mockups
This is a mockup of the new asset region for accessing as many or as few brushes as needed, as well as catalogs.
From the bottom, the user would access and use their brushes. Meanwhile the brush settings would still be accessed in the tool settings.
Basic drafting and saving of a draft would happen in the sidebar, but possibly in a different tab.
The Toolbar would keep a single brush tool, which activates if a brush is selected.
If there is a strong need for multiple tools for brushes in the Toolbar is still open.
Like the name implies, this region would be used for more assets than just brushes, and could be used in various different editors.
The basic interaction with assets would be the same as the current Pose Library implementation, which this region aims to build upon and replace.
Using a new horizontal region is a more efficient and intuitive use of space, while saving space in the toolbar and sidebar for other important content.
More open questions and details in a different design task.
Technical Aspects
Main points:
Open Questions:
BKE_paint_toolslots_brush_get
and the toolslot system? Pre-load brushes from the essentials there? Otherwise hook this code into the new brush loading system.Issues Not Tackled Here
There are several other issues with Brushes and Sculpt/Paint modes that are not meant to be tackled by this proposal:
** Somewhat related, serious lacking in things like tablet pressure control etc.
Changed status from 'Needs Triage' to: 'Confirmed'
Added subscribers: @mont29, @dfelinto, @JulianEisel, @JulienKaspar
#100122 was marked as duplicate of this issue
Added subscriber: @AndyCuccaro
Added subscriber: @AlexeyAdamitsky
Added subscriber: @lichtwerk
Added subscriber: @JulianPerez
Added subscriber: @GeorgiaPacific
Added subscriber: @persun
Added subscriber: @JanErik
Added subscriber: @Emi_Martinez
Added subscriber: @Georgefly
Added subscriber: @Tilapiatsu
Added subscribers: @DavidKozma, @Yuro, @s12a, @tiagoffcruz, @ideasman42, @piranha4D, @TheRedWaxPolice, @DarkKnight
Added subscriber: @hmturnbull
Added subscriber: @JoshParsons
Added subscriber: @Jason-Lai
While we are working on multiple branches/PRs, we regularly merge those into one combined
brush-assets-project
branch. There's a PR to follow this now: #106303: WIP: Brush assets project