This addon displays a list of objects which can collide with the current object.
Description
Description
Event Timeline
Comment Actions
There are several weak points in the addon:
- It iterates all the objects on each of the scene update and checks intersection of them. First ever thing to do here would be to check whether object was actually updated.
- Objects are stored in the custom property, which is being saved to .blend files and it seems entries from there are never cleaned. This will eventually lead to loads of unused data hanging around.
So at this state we can not accept the addon. Thanks for you effort anyway tho :)
Comment Actions
The data will be cleared if the addon is enabled at a later point by the user. I can optionally clear all data pre-save operations.
There is no way to detect updates to Game settings, as they do not trigger updates to the depsgraph. Any other suggestions?