Mesh Edit tools units #97421
Labels
No Label
Interest
Animation & Rigging
Interest
Blender Cloud
Interest
Collada
Interest
Core
Interest
Documentation
Interest
Eevee & Viewport
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
Import and Export
Interest
Modeling
Interest
Modifiers
Interest
Nodes & Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds, Tests & Devices
Interest
Python API
Interest
Rendering & Cycles
Interest
Sculpt, Paint & Texture
Interest
Translations
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Meta
Good First Issue
Meta
Papercut
Module
Add-ons (BF-Blender)
Module
Add-ons (Community)
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
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: blender/blender-addons#97421
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?
System Information
Operating system: Windows 10
Graphics card: GTX 1050
Blender Version
Broken:
blender/blender@721a9bc35c
Addon Information
Name: Edit Mesh Tools (0, 3, 6)
Author: Meta-Androcto
Short description of error
The
bpy.ops.mesh.offset_edges()
operator does not respect the scene's unit settings. Itswidth
property is unitless.Exact steps for others to reproduce the error
Added subscriber: @stefanoascaridesign
Added subscriber: @rjg
Changed status from 'Needs Triage' to: 'Needs User Info'
What particular part of the add-on does not handle the changed scene units properly? Please provided step by step instructions to reproduce the issue.
Hi Robert,
Here are steps to replicate the problem:
It would seem mesh tools sticks to meters regardless of what the current project units are set to.
Changed status from 'Needs User Info' to: 'Confirmed'
That is the case because the width property is not marked as a length. Adding
unit="LENGTH"
to the property should fix this, if I'm not mistaken.