Curves: Draw point overlay only in point selection mode #104715

Merged
Falk David merged 2 commits from filedescriptor/blender:curves-overlay-curve-mode into main 2023-02-13 22:25:19 +01:00
Member

If the selection domain is ATTR_DOMAIN_CURVE then do not draw the points.

image

If the selection domain is `ATTR_DOMAIN_CURVE` then do not draw the points. ![image](/attachments/2aa463e8-97ec-47ce-af8c-37f9fe4cad38)
189 KiB
Falk David added 1 commit 2023-02-13 19:40:34 +01:00
Falk David added this to the Nodes & Physics project 2023-02-13 19:40:45 +01:00
Falk David requested review from Hans Goudey 2023-02-13 19:40:54 +01:00
Falk David requested review from Kévin Dietrich 2023-02-13 19:41:21 +01:00
Falk David changed title from Curves: Draw point overlay in point selection mode to Curves: Draw point overlay only in point selection mode 2023-02-13 19:42:21 +01:00
Kévin Dietrich approved these changes 2023-02-13 19:57:35 +01:00
Hans Goudey requested changes 2023-02-13 20:03:31 +01:00
Hans Goudey left a comment
Member

The code looks good, but this seems not to work for the examples in the assets file.

image

I wonder if that's a problem with the nodes (not copying the selection domain to new curves properly? (missing curves_copy_parameters)) or with this patch (maybe this should retrieve the data from the original object's data like other places in curves edit mode?). Or maybe both!

The code looks good, but this seems not to work for the examples in the assets file. ![image](/attachments/17af0547-4e23-489b-8e2e-653798b81d08) I wonder if that's a problem with the nodes (not copying the selection domain to new curves properly? (missing `curves_copy_parameters`)) or with this patch (maybe this should retrieve the data from the original object's data like other places in curves edit mode?). Or maybe both!
440 KiB
@ -18,6 +20,8 @@ void OVERLAY_edit_curves_init(OVERLAY_Data *vedata)
OVERLAY_PrivateData *pd = vedata->stl->pd;
const DRWContextState *draw_ctx = DRW_context_state_get();
Curves &curves_id = *static_cast<Curves *>(draw_ctx->obact->data);
Member

const Curves &curves_id = *static_cast<const Curves *>(draw_ctx->obact->data);

`const Curves &curves_id = *static_cast<const Curves *>(draw_ctx->obact->data);`
filedescriptor marked this conversation as resolved
Author
Member

The problem might be that I'm checking the selection domain on the eval object, when it probably should be checked on the orig object.
EDIT: I'm sorry, that's exactly what you meant, I misread your comment.

~~The problem might be that I'm checking the selection domain on the eval object, when it probably should be checked on the orig object.~~ EDIT: I'm sorry, that's exactly what you meant, I misread your comment.
Falk David added 1 commit 2023-02-13 22:13:48 +01:00
Falk David requested review from Hans Goudey 2023-02-13 22:13:56 +01:00
Hans Goudey approved these changes 2023-02-13 22:21:04 +01:00
Hans Goudey left a comment
Member

That looks right!

That looks right!
Falk David merged commit 7dbf2e2e95 into main 2023-02-13 22:25:19 +01:00
Falk David deleted branch curves-overlay-curve-mode 2023-02-13 22:25:19 +01:00
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 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#104715
No description provided.