
Right now I'm trying to understand/decode how the UI handles nifs (like the magic effect icon). I looked at the nif in question (Health_Bar01.nif) and found the NiControllerSequence and NiControllerManager. After alot of reading I have a decent understanding of how they work. But....as we all know the speed at which the nif is 'animated' (maybe sequenced is a better word) isn't always the same, depending on how long the magic effect will last. In the nif itself the length of the animation/sequence is 1.333 seconds, well actually 3.333 but it reaches the end of the sequence at 1.333, so the game must have code to change the duration/spread of the sequence.
I began looking for an 'easy' way to change or scale the entirety of the NiControllerSequence. I say 'easy' because, from what I understand, the alternative is to change each and every keydata in the associated NiFloatInterpolator. I tried changing the frequency and start/stop time but none of them seemed to affect the global 'speed' of the animation sequence. Atleast, not while viewing in NifSkope.

So my question would be, is there a way to either slow down or speed up a animation sequence?
-kyoma