Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: Cryxo on Thu 19/03/2009 20:41:41

Title: Is character animation strictly limited to 8 frames?
Post by: Cryxo on Thu 19/03/2009 20:41:41
I was very confused about this ???. I would prefer to have a lot more animation in a game I am planning to make.

Sorry...
Title: Re: Is character animation strictly limited to 8 frames?
Post by: RickJ on Thu 19/03/2009 21:00:34
No, not limited to 8 frames.  You can keep adding frames until the frame/loop limit is reached (20, 40, or something).  There is a checkbox in the view editor that allows you to chain multiple animation loops together if more frames are needed.
Title: Re: Is character animation strictly limited to 8 frames?
Post by: Cryxo on Thu 19/03/2009 21:04:37
Thanks, I think I misread something on the features page.
Title: Re: Is character animation strictly limited to 8 frames?
Post by: OneDollar on Thu 19/03/2009 22:54:50
You're probably thinking of character directions. When you're setting up a character you can tell them to use either four (down, left, right, up) or eight (down, left, right, up, down-right, up-right, down-left, up-left) facing directions when they're moving by setting the character's DiagonalLoops property to false or true. When choose a view for that character to use as their NormalView AGS will use either loops 0 to 3 or loops 0 to 7 of that view to show their walking animations.

If you are doing a completely separate animation (rather than, say, a characters walk or talk animation) you can use whichever loop you like and keep adding frames to it. Then if you need more frames than you're allowed you can check the 'Run the next loop after this to make a long animation' box and keep adding frames to the next loop, as RickJ says.