(iphone) Does it make difference to provide more images when the object is moving in a straight line?
Posted
by
Eugene
on Stack Overflow
See other posts from Stack Overflow
or by Eugene
Published on 2010-12-28T15:51:24Z
Indexed on
2010/12/28
15:53 UTC
Read the original article
Hit count: 149
Hi.
Among many animation scenarios, there are times when I want an object to move a straight line then change direction, move another straight line and so forth.
Assuming I would use either UIImageView or CABasicAnimation with image arrays.
Does it make difference to provide more images when the object is moving in a straight line?
For example,
point1 ---------point2 ------- point3 (all points are in a straight line)
Providing an image at point2 to UIImageView or CABasicAnimation, gives any better animation result, assuming I don't need to change the animation speed along the course?
If I were flashing each image myself, yes it would make the animation look smooth, but I'm giving the images to UIImageView/CABasicAnimation, and wonder what they do.
Thank you
© Stack Overflow or respective owner