update for recent depsgraph API changes
Details
Details
Diff Detail
Diff Detail
- Repository
- rBA Blender Add-ons
- Branch
- T65990 (branched from master)
- Build Status
Buildable 3905 Build 3905: arc lint + arc unit
Event Timeline
| io_mesh_uv_layout/__init__.py | ||
|---|---|---|
| 144–147 | What happens when the operator is called from another operator which also called to_mesh on some objects, but which should remain valid when this operator is done? | |
| io_mesh_uv_layout/__init__.py | ||
|---|---|---|
| 144–147 | That is a good question, current design for freeing the meshes is done via obj_eval.to_mesh_clear() afaict -- introduced in rB32d5d127cb49. meshes are outside of main, owned by ob, cannot be removed from bpy.data.meshes... | |
| io_mesh_uv_layout/__init__.py | ||
|---|---|---|
| 144–147 | Oh, hold on, should we be using bpy.meshes.new_from_object() instead of object.to_mesh() then? | |