About this site
ScriptSpot is a diverse online community of artists and developers who come together to find and share scripts that empower their creativity with 3ds Max. Our users come from all parts of the world and work in everything from visual effects to gaming, architecture, students or hobbyists.
Comments
1-7-2013 update to support VRay cameras
I needed to convert a camera from Syntheyes to 3dsMax 2013 to After Effects CS6. Syntheyes outputs cameras without targets, so I made this script work with VRay cams. All I changed was this:
NewCam.type = #target
to this:
if classof newcam == vrayphysicalcamera then
NewCam.targeted = true
else
NewCam.type = #target