I have a Physical camera Selected with zoom, fOV, Target distance and Focal length animated over time.
I want to grab the values of them to copy/paste in a text file, but when I execute the simple maxscript below the FOV and Zoom are constant for every frame, but the values are changing.
i=10
f=60
format for t = i to f do at time t format "FOV: %\n" $.FOV
format for t = i to f do at time t format "FOV: %\n" $.target_distance
Focal Length and Zoom works fine.
It seems simple, but can you help me with the correct syntax to gather the FOV and Target Distance over time when they are animated?
Thanks!