Hi there! Right now I am hard-coding a piece of code, and I dont know almost anything about mel (but i am trying) The thing is I want this code works for any cam i have selected, right now only work if the camara names that way setAttr "cameraShape1.filmFit" 3; setAttr "cameraShape1.overscan" 1; setAttr…
What you'll want to do is use a variable to store the cameraShape name and use string concatenation, like so: <div>// Get the name of the currently selected camera transform. </div><div>string $myCam[] = `ls -sl`; // We can't be certain of the exact name of the camera Shape node, so let's get it from the transform.…