Hi,
I want to copy the animation of fov from Physical to Standart camera.
I tried:
StandartCamera.fov.controller = copy PhysicalCamera.fov.controller
or
StandartCamera[4][1].controller = copy PhysicalCamera[4][6].controller
but the animation is copied with strange values
Tried to copy keys:
KeysPhysicalCameraFov = PhysicalCamera.fov.controller.keys
for keyNum = 1 to KeysPhysicalCameraFov.count do
(
with animate on
(
at time KeysPhysicalCameraFov[keyNum].time StandartCamera.fov = PhysicalCamera.fov
)
)
But in this case, the animation’s tangents are not copied.
Please, help me to solve this problem.