Tween Manager -Stepped Keyframes
Is it possible to have stepped keyframes or essentially lower the fps of the transform values from the Tween Manager?
The project I'm working on has lots of intentional 12fps animation artwork sequence. The developer I'm working with is using the Tween Manager to slide in some of this artwork but I want it to also move at 12fps like the sequence.
Is there an additional script that could take these transform values from Tween Manager and essentially have them only update every other frame?
Your best bet would probably to use the getGenericTweenValue function and use a script to create the 12 fps motion. It's not necessarily straightforward, but it could work. You could have a TweenAlpha running (which has a 0-1 scale, or probably any tween could work) even if it isn't making any visible change. Then on each frame you want motion, you can read the tween value and use that to know how far along in the motion your animation should be. That let's you still set the easing function on the tween itself and the script will automatically move the animation at the correct rate.
I've never tried any of this, but on paper it seems like it should work.