Hi,
Is there a way to store a keyframe as a variable for future usage?
Here's my problem:
I have an animation and two cameras. The second camera cuts at Frame 10.
However, if I changed the duration of the animation to Frame 11. The second camera will be out of sync. I want the second camera to "anchor" to the original Frame 10, which is now Frame 11.
I was thinking of something this logic. Don't mind the variables as I don't know how yet to key.
cut_key = timeline.getkey(frameNumber10)
# Change animation
current_frame = cut_key.fetchCurrentFrame()
camera_cut.set_key(current_frame)
#
Or something like that
Is this possible? Or are there any other alternatives to this?
Thank you for looking at my problem.