I have a .dae model with a long animation. The animation includes segments of walking, running, hitting, death, etc. I know the frame numbers of the start and end of each segment. I also know the frame per second rate. So getting the time of the start and end of each segment is pretty easy.
I can get the full animation as a SCNAnimationPlayer object. What I’ve been experimenting with is making a copy of the full animation and then setting the timeOffset and duration of the animation.
let walkPlayer = fullPlayer.copy() as! SCNAnimationPlayer
walkPlayer.stop()
walkPlayer.animation.timeOffset = walk.offset
walkPlayer.animation.duration = walk.duration
I then add the walkPlayer back to the Bip01 node (where I got the full animation from).
I can play the walk easily enough by calling animationPlayer(forKey:"walk")?.play()
I can change the duration and other aspects of the animation easily enough. But the animation always starts at frame 0. Whatever value I put into .timeOffset, it just gets ignored.
How can I play from a start frame to an end frame of an SCNAnimation found in SCNAnimationPlayer?
The key bit was to find
and
Once I found these then I could use CAAnimationGroup to “crop” the full animation.
Here’s my Troll.swift that I was working on. There is, of course, much to do but now I can at least make the poor beast walk and die.