carver Tool: Invoking brush profile results in crash #96206
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
5 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: blender/blender-addons#96206
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-10.0.19044-SP0 64 Bits
Graphics card: Quadro K4000/PCIe/SSE2 NVIDIA Corporation 4.5.0 NVIDIA 472.98
Blender Version
Broken: version: 3.0.1, branch: master, commit date: 2022-01-25 17:19, hash:
blender/blender@dc2d180181
Worked: (newest version of Blender that worked as expected)
Short description of error
when i use carver Tool the tool crushed when i click on shortcut (B) to use carver Tool brush
Exact steps for others to reproduce the error
Boolean Tool crush.blend
Added subscriber: @osama_khaled
#100643 was marked as duplicate of this issue
Added subscriber: @OmarEmaraDev
Changed status from 'Needs Triage' to: 'Needs User Info'
This is about the Carver add-on, correct? Does a crash happen or just a failure in the tool as shown in the screenshot? Can you open the console and attach the error that was printed there? Window -> Toggle System Console.
I can't replicate a crash or an error when activating the brush tool.
Boolean Tool brush crushto carver Tool brush crushyes carver tool sorry, this i what you ask for
Read prefs: C:\Users\Usama\AppData\Roaming\Blender Foundation\Blender\3.0\config\userpref.blend
Registered Power Sequencer with 74 modules
DEBUG:BlenderGIS-master.core.checkdeps:GDAL Python binding unavailable
DEBUG:BlenderGIS-master.core.checkdeps:PyProj unavailable
DEBUG:BlenderGIS-master.core.checkdeps:Pillow unavailable
DEBUG:BlenderGIS-master.core.checkdeps:ImageIO Freeimage plugin available
POV centric workspace available if you set render option
and save it in default file with CTRL+U
[Carver MT ERROR]
Traceback (most recent call last):
KeyError: 'bpy_prop_collection[key]: key "Solidify" not found'
:ي║«ي╗│ي║شي║جي║ù: Operation finished. Failure during Carving (Check the console for more info)
I still can't replicate the issue. Can you try a more recent Blender build 3.1 or 3.2 and check the issue still exist? https://builder.blender.org/download/daily/
Can you also reset to factory settings and only enable the carver add-on and check if the issue still exists? File > Defaults > Load Factory Settings
thank you sir, i Load Factory Settings and carver tool brush work
Then my guess is that another add-on or a key binding is interfering with the add-on. Can you find out which add-on might be causing this? Try disabling half of the add-ons, check if the errors happens, if not, enable half of the ones you just disabled and check again, do this until you find the culprit.
Added subscriber: @rjg
The carver add-on creates the modifier through
bpy.ops.object.modifier_add(type='SOLIDIFY')
followed by an attempt to rename it withcontext.object.modifiers["Solidify"].name = "CT_SOLIDIFY"
. I'm not sure under which circumstances this would fail as shown in the error message, since either there is no previous solidify modifier on the object, then one is created and should by default have the expected name"Solidify"
or if there would already be a modifier with that name, then the newly created one would be called "Solidify.001
" andcontext.object.modifiers["Solidify"]
would pick the previously created one.However, the operator call can be removed entirely by using
context.object.modifiers.new("CT_SOLIDIFY", "SOLIDIFY")
instead.Changed status from 'Needs User Info' to: 'Confirmed'
I can't replicate the issue still, but I am confirming this because the code can be written in a more robust was as describe by Robert.
Added subscriber: @JamesK2021
carver Tool brush crushto carver Tool: Invoking brush profile results in crash