WIP: Custom build for 3.6 #109150

Draft
Lukas Sneyd wants to merge 7 commits from lcas/blender:360 into blender-v3.6-release

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
First-time contributor

Custom build for 3.6. The idea is to keep things the way they are, while giving you more options for:

Edges and Faces

  1. Box, lasso, and circle will select random unseen edges and faces in near select (X-Ray off) because the viewport is drawing some of them erroneously, since some of their verts are visible.

With my build you can filter this out based on the direction of mesh normals relative to the viewport. It works with a high degree of success and customization.

  1. Blender selects edges in a hybrid fashion with box and lasso. If the box or lasso contains at least one edge with both of its verts inside, you will only select edges that are like that. If you are touching some edges, but none of them have both of their verts inside, you will select any edge that is touched by the box or lasso. With circle you select any edge that is touched by the circle regardless of other factors.

With my build you can also use these options to select edges:
Touch will select anything the selection area touches
Enclose will select edges that have both ends inside the selection area

  1. Blender selects faces in a hybrid fashion with box, lasso, and circle. If X-Ray is off, you select any faces you touch, and if X-Ray is on you select them by their center.

With my build you can also use these options to select faces:
Touch will select anything the selection area touches
Enclose will select a face if all their verts are inside the selection area
Center will select a face if the selection area touches their center

X-Ray

  1. Box, circle, and lasso always select through objects in Object mode, and never select through mesh in Edit mode. With my build you can do either thing in both Object and Edit mode.

  2. Automatic X-Ray can turn X-Ray on for you while using box, circle, and/or lasso

Both of the above are implemented modularly. There are many ways to setup your shortcuts so you can dynamically or permanently decide which tools and modes will use Select Through and/or Automatic X-Ray. There are some optional operators with header buttons that can be shown and hidden as you see fit. They will intelligently handle the modular aspect of either X-Ray feature for you in an on/off fashion for whichever tool and mode you are currently using.

  1. Can turn off facedots in X-Ray shading

Drag Direction
Blender lets you choose up to 8 directions to move in when click-dragging. If all you want are 2 directions (left vs right or up vs down) they aren't implemented very intuitively, take a lot more keymap items to set everything up, and they are innaccurate. With my build you can restrict the directions to either left vs right or up vs down. It makes sense, is easy to setup your keymap, and has accurate calculation of your drag direction.

Selection Radius
Verts, edges, and facedots (X-Ray on) have a large radius for single-clicking them. Faces, (X-Ray off) have zero radius, the hotspot of the mouse cursor needs to be on top of the face. With my build you can experience a consisten selection radius among all 3 in both shading modes, and adjust how large the selection radius is.

Mouse Cursor
Now you can choose which mouse cursor to use in different tools and modes. I included some new ones as well.

Header Highlights
The top of the active window or panel gets brighter, now you can adjust or disable this

Header Buttons
Can combine the X-Ray and Shading buttons into one thing. Assuming you don't click on the shading buttons to switch shading modes, this makes a lot of sense.

Camera Zoom
Can adjust how fast the camera zooms, as many mappings as your keymap can handle.

Frame Selected
Can give an offset for the viewport camera when using Frame Selected

Repeat Last
A new operator called Invoke Last the will invoke the previous operation instead of executing everything exactly the same.

Thankyou
This build is only possible because of the knowledge and experience shared by the community. I want mention some people that helped me figure things out like Chris Blackbourne, LazyDodo, Harley and Campbell. Everyone on devtalk and in the chat, thank you. Most of all, I want to thank kio. Select Through, Facedot visibility, and Touch select faces in X-Ray are from the work he did. Some of it is basically untouched, and I learned a lot by updating it and changing how it works.

Custom build for 3.6. The idea is to keep things the way they are, while giving you more options for: **Edges and Faces** 1. Box, lasso, and circle will select random unseen edges and faces in near select (X-Ray off) because the viewport is drawing some of them erroneously, since some of their verts are visible. With my build you can filter this out based on the direction of mesh normals relative to the viewport. It works with a high degree of success and customization. 2. Blender selects edges in a hybrid fashion with box and lasso. If the box or lasso contains at least one edge with both of its verts inside, you will only select edges that are like that. If you are touching some edges, but none of them have both of their verts inside, you will select any edge that is touched by the box or lasso. With circle you select any edge that is touched by the circle regardless of other factors. With my build you can also use these options to select edges: Touch will select anything the selection area touches Enclose will select edges that have both ends inside the selection area 3. Blender selects faces in a hybrid fashion with box, lasso, and circle. If X-Ray is off, you select any faces you touch, and if X-Ray is on you select them by their center. With my build you can also use these options to select faces: Touch will select anything the selection area touches Enclose will select a face if all their verts are inside the selection area Center will select a face if the selection area touches their center **X-Ray** 1. Box, circle, and lasso always select through objects in Object mode, and never select through mesh in Edit mode. With my build you can do either thing in both Object and Edit mode. 2. Automatic X-Ray can turn X-Ray on for you while using box, circle, and/or lasso Both of the above are implemented modularly. There are many ways to setup your shortcuts so you can dynamically or permanently decide which tools and modes will use Select Through and/or Automatic X-Ray. There are some optional operators with header buttons that can be shown and hidden as you see fit. They will intelligently handle the modular aspect of either X-Ray feature for you in an on/off fashion for whichever tool and mode you are currently using. 3. Can turn off facedots in X-Ray shading **Drag Direction** Blender lets you choose up to 8 directions to move in when click-dragging. If all you want are 2 directions (left vs right or up vs down) they aren't implemented very intuitively, take a lot more keymap items to set everything up, and they are innaccurate. With my build you can restrict the directions to either left vs right or up vs down. It makes sense, is easy to setup your keymap, and has accurate calculation of your drag direction. **Selection Radius** Verts, edges, and facedots (X-Ray on) have a large radius for single-clicking them. Faces, (X-Ray off) have zero radius, the hotspot of the mouse cursor needs to be on top of the face. With my build you can experience a consisten selection radius among all 3 in both shading modes, and adjust how large the selection radius is. **Mouse Cursor** Now you can choose which mouse cursor to use in different tools and modes. I included some new ones as well. **Header Highlights** The top of the active window or panel gets brighter, now you can adjust or disable this **Header Buttons** Can combine the X-Ray and Shading buttons into one thing. Assuming you don't click on the shading buttons to switch shading modes, this makes a lot of sense. **Camera Zoom** Can adjust how fast the camera zooms, as many mappings as your keymap can handle. **Frame Selected** Can give an offset for the viewport camera when using `Frame Selected` **Repeat Last** A new operator called `Invoke Last` the will invoke the previous operation instead of executing everything exactly the same. **Thankyou** This build is only possible because of the knowledge and experience shared by the community. I want mention some people that helped me figure things out like Chris Blackbourne, LazyDodo, Harley and Campbell. Everyone on devtalk and in the chat, thank you. Most of all, I want to thank kio. Select Through, Facedot visibility, and Touch select faces in X-Ray are from [the work he did.](https://archive.blender.org/developer/D6322) Some of it is basically untouched, and I learned a lot by updating it and changing how it works.
Lukas Sneyd added 1 commit 2023-06-20 10:47:44 +02:00
Iliya Katushenock added the
Interest
Platforms, Builds & Tests
label 2023-06-20 14:47:54 +02:00
Lukas Sneyd added 1 commit 2023-06-29 06:20:48 +02:00
Lukas Sneyd added 1 commit 2023-06-29 06:26:45 +02:00
Lukas Sneyd added 1 commit 2023-06-29 06:36:59 +02:00
17a75d69e8 Revert "commit untracked cursors and icons"
This reverts commit 48eaad03b0.

didn't use the open versions of these cursors
Lukas Sneyd added 1 commit 2023-06-29 06:42:26 +02:00
buildbot/vexp-code-patch-coordinator Build done. Details
e4d7864ab7
commit untracked icons and cursors
Lukas Sneyd changed title from WIP: Custom build for 3.6 to WIP: Custom build for 3.6 2023-06-29 07:00:56 +02:00
lcas changed target branch from main to blender-v3.6-release 2023-06-29 07:00:58 +02:00

@blender-bot package

@blender-bot package
Member

Package build started. Download here when ready.

Package build started. [Download here](https://builder.blender.org/download/patch/PR109150) when ready.
Lukas Sneyd added 1 commit 2023-06-29 12:21:41 +02:00
buildbot/vexp-code-patch-coordinator Build done. Details
bb48f832cf
Merge branch 'blender-v3.6-release' into 360
Member

@blender-bot package

@blender-bot package
Member

Package build started. Download here when ready.

Package build started. [Download here](https://builder.blender.org/download/patch/PR109150) when ready.
Lukas Sneyd added 1 commit 2023-07-06 14:17:17 +02:00
This pull request is marked as a work in progress.
This branch is out-of-date with the base branch

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u 360:lcas-360
git checkout lcas-360
Sign in to join this conversation.
No reviewers
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#109150
No description provided.