Why can't locked nodes be reordered?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have been looking into using locked nodes in my current project. There are some restrictions on locked nodes, according to this page: http://help.autodesk.com/cloudhelp/2018/ENU/Maya-Tech-Docs/CommandsPython/lockNode.html. The restrictions for a locked node are as follows:
- It may not be deleted.
- It may not be renamed.
- Its parenting may not be changed.
- Attributes may not be added to or removed from it.
- Locked attributes may not be unlocked.
- Unlocked attributes may not be locked.
These restrictions all make sense to me. However, I am running into an additional restriction that is not listed: locked nodes cannot be reordered. And thus anything under the same parent as a locked node cannot be reordered.
My question is, why does this restriction exist? I understand the rest of the restrictions. But in my mind, reordering a node doesn't change anything about the node itself. Is there a situation in which not being able to reorder a node is the desired behavior?