ModEnc is currently in Maintenance Mode: Changes could occur at any given moment, without advance warning.

Animation Looping

From ModEnc
Revision as of 19:17, 29 April 2007 by Nighthawk200 (talk | contribs)
Jump to: navigation, search

The animation looping control code is pretty confusing. The loop control allows to set start/end frames for the first iteration of the loop, and start/end frames for all other iterations together.

  • Template:TTL defines a 0-based index of the first frame to play on the first iteration.
  • Template:TTL defines the amount of frames to play on the first iteration.
  • Template:TTL defines a 0-based index of the first frame for all following iterations.
  • Template:TTL defines a 1-based index of the last frame for all but the first iterations. The first iteration will never play frames beyond this one, even if End is set to do so.
  • Template:TTL defines the total amount of iterations to play.

Example

If you imagine two animations with code like this:
Looping control example schematics
[ANIMA]
Start=1
End=9
LoopStart=2
LoopEnd=10
LoopCount=-1

[ANIMB]
Start=3
End=5
LoopStart=3
LoopEnd=9
LoopCount=-1

, then the scheme on the right depicts the frames that will be played for ANIMA (upper/black scheme) and ANIMB (lower/blue scheme). Upper scale shows 0-based indices, lower scale shows 1-based indices.