Hi,
I have a list that I want to update when objects have been added or deleted from the Maya scene.
Is there some kind of global event or perhaps an Outliner event that fires when a change like this happens?
I am working in PyMel. Thank you!
Hi,
I have a list that I want to update when objects have been added or deleted from the Maya scene.
Is there some kind of global event or perhaps an Outliner event that fires when a change like this happens?
I am working in PyMel. Thank you!
you can use either scriptJobs or MMessage
http://help.autodesk.com/cloudhelp/2016/ENU/Maya-Tech-Docs/CommandsPython/scriptJob.html
http://help.autodesk.com/view/MAYAUL/2016/ENU/?guid=__cpp_ref_class_m_message_html
[QUOTE=rgkovach123;30713]you can use either scriptJobs or MMessage
http://help.autodesk.com/cloudhelp/2016/ENU/Maya-Tech-Docs/CommandsPython/scriptJob.html
http://help.autodesk.com/view/MAYAUL/2016/ENU/?guid=__cpp_ref_class_m_message_html[/QUOTE]
I went with scriptJobs, thank you! :D: