How can I collect all the cameras in a Maya scene excluding the default 'perspective, top, front, side' cameras?
I only want to collect the user created cameras.
cameras = cmds.ls(type=('camera'), l=True) or []
print cameras
Do I need to do listRelatives
for any reason? I eventually just want to print the world Matrix of each camera.