Lately I have been dabbling with the idea of creating an Attribute Checker in Python (within a python panel), giving me insights, where and how attributes are accessed upstream. I have found that with hou.AttribDataId I can check for changes in attributes.
However, is there a python method of some sorts that gives info about Accessed attributes not Changed?
I.e. if I have this snippet somewhere in my stream:
vector test = v@rest; v@test = test
This would help me greatly figuring out what attributes can be discarded in huge node trees.
Thanks in advance!