Is there a low-level version of the operator bpy.ops.object.duplicates_make_real()?
I really want to avoid using ops in my script for efficiency.
Asked
Active
Viewed 267 times
0
Ray Mairlot
- 29,192
- 11
- 103
- 125
XIWEI ZHOU
- 51
- 1
-
If you can select multiple objects that have duplis and call the operator once to create all it may be more efficient than using API methods. Related https://blender.stackexchange.com/questions/149264/what-is-the-most-efficient-way-to-make-instance-real-and-joined – batFINGER Nov 25 '19 at 16:05
-
I'm already only calling the bpy.ops.object.duplicates_make_real() once on a vertsdupli object with 100k verts and it's super slow. – XIWEI ZHOU Nov 26 '19 at 12:26