Camera animation with AnimationMixer not working - should it?

Meanwhile I’ve got it to work and figured out the following:

  • one shouldn’t just jump to the exact time value which is saved under the VectorKeyframeTrack times:
    In my case the time value is “0.07999999821186066” but mixer.setTime(0.07999999821186066) already jumps to the next frame. So I chose to round the value down a bit and then it works as expected.
  • one shouldn’t rename the imported camera (duh!)

Hope this helps someone with a similar issue(s).

1 Like