Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • $\begingroup$ FWIW not a fan of using every as a name for an iterator. A variable named every_object conjures up a collection with every object, like every_object = bpy.data.objects[:]., whereas each iteration the variable every_object is only one object. Wouldn't use for each_object in some_collection: either. Why not something simple like for ob in some_object_collection.? $\endgroup$
    – batFINGER
    Commented Sep 26, 2018 at 13:21
  • $\begingroup$ Yeah you may be correct there :D . It is just easier for myself to follow the code this way. Its personal. Like I said, I apologize it is messy. I did not write it with sharing in mind at the time. I am sure it could be improved and make more sense not only with variable names. The terribly long lines hurt my eyes as well now that I look at it. But it works. I hope it might be useful for somebody. $\endgroup$ Commented Sep 26, 2018 at 13:47