Describe the Bug
As stated.
To Reproduce
Steps to reproduce the behavior:
- create operation with Collection source
- Set it to pocket strategy
- Deselect everything
- Click calculate path
Expected Behavior
Path get calculated
System Information:
- OS: Arch
- Blender Version: 4.4.3
- Addon Version: 1.0.66
Error Message:
Copy and Paste the text of the error message here, it helps us to fix the bug faster.
Additional context
Can be fixed some what by adding code to select object in collection in the async def _calc_path(operator, context) function of path_ops.py.
if o.geometry_source == "COLLECTION":
obc = bpy.data.collections[o.collection_name]
for ob in obc.objects:
ob.hide_set(False)
ob.select_set(True)
bpy.context.view_layer.objects.active = ob
I don't know if it's the ideal fix. I also don't know how to contribute with github.
Describe the Bug
As stated.
To Reproduce
Steps to reproduce the behavior:
Expected Behavior
Path get calculated
System Information:
Error Message:
Copy and Paste the text of the error message here, it helps us to fix the bug faster.
Additional context
Can be fixed some what by adding code to select object in collection in the
async def _calc_path(operator, context)function ofpath_ops.py.I don't know if it's the ideal fix. I also don't know how to contribute with github.