poly-hammer / BlenderTools

Blender addons that improve the game development workflow between Blender and Unreal.
https://poly-hammer.github.io/BlenderTools/
MIT License
238 stars 15 forks source link

Send2UE - Avoid bpy.data.objects iterations #71

Closed JoshQuake closed 3 months ago

JoshQuake commented 3 months ago

Iterating through bpy.data.objects is against Extensions policy. Replaced instances with bpy.context.scene.objects.

I feel like this can break in certain use cases? Testing needed.

Closes #58