Shape keys for surface not working - no active option #111365

Closed
opened 2023-08-22 00:12:20 +02:00 by ManBlender · 14 comments

System Information
Operating system: Windows-10-10.0.22621-SP0 64 Bits
Graphics card: NVIDIA GeForce GTX 1650 Ti/PCIe/SSE2 NVIDIA Corporation 4.5.0 NVIDIA 497.17

Blender Version
Broken: version: 3.5.0, branch: blender-v3.5-release, commit date: 2023-03-29 02:56, hash: 1be25cfff18b
Broken: version: 3.6.0, branch: blender-v3.6-release, commit date: 2023-06-27 08:08, hash: c7fc78b81ecb
Worked: don't know any version where this working, but last time no option for use this doing hard work

Short description of error
Shape keys for surface not working - no active option.

Exact steps for others to reproduce the error
This not working like expected as typical object have verts. See screen.

**System Information** Operating system: Windows-10-10.0.22621-SP0 64 Bits Graphics card: NVIDIA GeForce GTX 1650 Ti/PCIe/SSE2 NVIDIA Corporation 4.5.0 NVIDIA 497.17 **Blender Version** Broken: version: 3.5.0, branch: blender-v3.5-release, commit date: 2023-03-29 02:56, hash: `1be25cfff18b` Broken: version: 3.6.0, branch: blender-v3.6-release, commit date: 2023-06-27 08:08, hash: `c7fc78b81ecb` Worked: don't know any version where this working, but last time no option for use this doing hard work **Short description of error** Shape keys for surface not working - no active option. **Exact steps for others to reproduce the error** This not working like expected as typical object have verts. See screen.
ManBlender added the
Type
Report
Priority
Normal
Status
Needs Triage
labels 2023-08-22 00:12:21 +02:00
Author

The reason that this must be or working bather is case where trying move some densely arranged mesh and when trying move by arrows from local gizmo then selection diapering for nearest curve verts, and only x,y,z shortcuts solving problem.

The reason that this must be or working bather is case where trying move some densely arranged mesh and when trying move by arrows from local gizmo then selection diapering for nearest curve verts, and only x,y,z shortcuts solving problem.

Have you try to go to object mode?

Have you try to go to object mode?
Member

Yes, shape add/remove operator won't work in edit mode (and when object is linked from other file): https://projects.blender.org/blender/blender/src/branch/main/source/blender/editors/object/object_shapekey.cc#L232

Yes, shape add/remove operator won't work in edit mode (and when object is linked from other file): https://projects.blender.org/blender/blender/src/branch/main/source/blender/editors/object/object_shapekey.cc#L232
Blender Bot added
Status
Archived
and removed
Status
Needs Triage
labels 2023-08-22 04:55:32 +02:00
Author

Have you try to go to object mode?

It's active in object mode, but then can select the verts to separate some parts as group by shape keys, so any created shape keys name in object mode can be used in edit mode, then no sense to create for surface any shape keys.

@PratikPB2123 it's normal behavior or plan? Coz closed mind for that is not bug or issue. Soo.. I'm not understanding how to use this or it's undeveloped solution for surface in relation to normal mesh objects.

> Have you try to go to object mode? It's active in object mode, but then can select the verts to separate some parts as group by shape keys, so any created shape keys name in object mode can be used in edit mode, then no sense to create for surface any shape keys. @PratikPB2123 it's normal behavior or plan? Coz closed mind for that is not bug or issue. Soo.. I'm not understanding how to use this or it's undeveloped solution for surface in relation to normal mesh objects.
Member

@ManBlender hi, there might be misunderstanding from our side about your bug report.
From the image and original description we assumed you're not able to add "new shape keys". This is because "surface object" is in edit mode.

Could you share more info about the issue? Maybe a short video recording will help if explaining in words is not possible.

@ManBlender hi, there might be misunderstanding from our side about your bug report. From the image and original description we assumed you're not able to add "new shape keys". This is because "surface object" is in edit mode. Could you share more info about the issue? Maybe a short video recording will help if explaining in words is not possible.
Blender Bot added
Status
Needs Triage
and removed
Status
Archived
labels 2023-08-23 08:00:02 +02:00
Pratik Borhade added
Status
Needs Information from User
and removed
Status
Needs Triage
labels 2023-08-23 08:00:19 +02:00
Author

@ManBlender hi, there might be misunderstanding from our side about your bug report.
From the image and original description we assumed you're not able to add "new shape keys". This is because "surface object" is in

I see.. but why user can't add in edit mode "new shape keys" and assign some points?

There is no sense to record anything, only for comparison the working case on normal mesh object, but the issue is not for this but surface. Issue need simple confirmation that this not working and assign to solve.

> @ManBlender hi, there might be misunderstanding from our side about your bug report. > From the image and original description we assumed you're not able to add "new shape keys". This is because "surface object" is in I see.. but why user can't add in edit mode "new shape keys" and assign some points? There is no sense to record anything, only for comparison the working case on normal mesh object, but the issue is not for this but surface. Issue need simple confirmation that this not working and assign to solve.
Member

I see.. but why user can't add in edit mode "new shape keys" and assign some points?

I removed ob->mode != OB_MODE_EDIT from poll function so that I can add/remove shape keys in edit mode.
I noticed some problems due to this. But I'm not aware of the actual reason to exclude these operators in edit mode. @lichtwerk , any idea?


but the issue is not for this but surface

What problem you're observing with surface?

> I see.. but why user can't add in edit mode "new shape keys" and assign some points? I removed `ob->mode != OB_MODE_EDIT` from poll function so that I can add/remove shape keys in edit mode. I noticed some problems due to this. But I'm not aware of the actual reason to exclude these operators in edit mode. @lichtwerk , any idea? - - - > but the issue is not for this but surface What problem you're observing with `surface`?
Author

What problem you're observing with surface?

Behavior around "new shape keys" is other for edit mode than normal object where this working and can assign to keys. Thats all regarding the comment.

> What problem you're observing with `surface`? Behavior around "new shape keys" is other for edit mode than normal object where this working and can assign to keys. Thats all regarding the comment.
Member

@PratikPB2123 : short answer is "No", but assume the majority of shapekey-related stuff that is happening on entering editmode (bmesh conversion etc.) would have to be "refreshed" from editmode [which is probably not impossible to do, but sounds like a rather large refactor]

@PratikPB2123 : short answer is "No", but assume the majority of shapekey-related stuff that is happening on entering editmode (bmesh conversion etc.) would have to be "refreshed" from editmode [which is probably not impossible to do, but sounds like a rather large refactor]
Member

Behavior around "new shape keys" is other for edit mode than normal object where this working and can assign to keys. Thats all regarding the comment.

For which "normal object" can you "assign to keys" (what does this mean exactly btw.?) in editmode?

> Behavior around "new shape keys" is other for edit mode than normal object where this working and can assign to keys. Thats all regarding the comment. For which "normal object" can you "assign to keys" (what does this mean exactly btw.?) in editmode?
Author

For which "normal object" can you "assign to keys" (what does this mean exactly btw.?) in editmode?

Coz for object is vertex group not shape keys, and normal object.. eg. Cube.. anything with vertex, not surface that is created from curves etc.
https://recordit.co/N1K7rqNXOq
I know how this should work
https://www.youtube.com/watch?v=yg3RSTV2JnQ
But I'm refering more to groups verts exactly that curves and points that creating faces not have this.. only mesh.

> For which "normal object" can you "assign to keys" (what does this mean exactly btw.?) in editmode? Coz for object is vertex group not shape keys, and normal object.. eg. Cube.. anything with vertex, not surface that is created from curves etc. https://recordit.co/N1K7rqNXOq I know how this should work https://www.youtube.com/watch?v=yg3RSTV2JnQ But I'm refering more to groups verts exactly that curves and points that creating faces not have this.. only mesh.
Member

Sorry for the late replay, this soehow slipped through.

However, it is still unclear what this report is about (at least for me).
Are you reporting that curves dont support vertexgroups?

Sorry for the late replay, this soehow slipped through. However, it is still unclear what this report is about (at least for me). Are you reporting that curves dont support vertexgroups?
Author

Are you reporting that curves dont support vertexgroups?

Yes.

>Are you reporting that curves dont support vertexgroups? Yes.
Member

Thanks for the report, but the issue reported here is a request for modified/improved behavior and not a bug in current behavior. Closing as this bug tracker is only for bugs and errors.

For user requests and feedback, please use other channels: https://wiki.blender.org/wiki/Communication/Contact#User_Feedback_and_Requests

For more information on why this isn't considered a bug, visit: https://wiki.blender.org/wiki/Reference/Not_a_bug

Thanks for the report, but the issue reported here is a request for modified/improved behavior and not a bug in current behavior. Closing as this bug tracker is only for bugs and errors. For user requests and feedback, please use other channels: https://wiki.blender.org/wiki/Communication/Contact#User_Feedback_and_Requests For more information on why this isn't considered a bug, visit: https://wiki.blender.org/wiki/Reference/Not_a_bug
Blender Bot added
Status
Archived
and removed
Status
Needs Information from User
labels 2023-10-11 12:57:10 +02: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 project
No Assignees
4 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#111365
No description provided.