I want to show an animation of various frames of large images. Each frame will cover the whole screen. Is my only option to create an extremely huge image sheet, and use a sprite? I read about the Movieclip library which seems to be exactly what I need, but I heard it was ancient and uses deprecated APIs. I also didn’t find an appropriate place to download it. What would you recommend for this?
What are you trying to do? I initially used sprite sheets for doing my game tutorials, but then scrapped it and just created mini-scenes and actually create and animate game objects to pull it off, with heavy use of transitions. Canned animations that large are expensive in memory and processing time, not to mention they’re static - so if I change the appearance of a particular sprite, I would have to re-do the canned animation to use the new images to maintain consistency.
This new approach is more coding, but once they’re done, they’re done. It’s quite possible you’re talking about something quite different, but if not…
I have 25 frames of an animation that have dimensions of 2048x1294 each in @4x scale, but each are about 30kb in size, since they’re pretty simple. I want to run this animation, but I’m not sure what the best approach would be, since creating an image sheet of 25 x 2048 x 1294 doesn’t seem very practical.
What are you trying to do? I initially used sprite sheets for doing my game tutorials, but then scrapped it and just created mini-scenes and actually create and animate game objects to pull it off, with heavy use of transitions. Canned animations that large are expensive in memory and processing time, not to mention they’re static - so if I change the appearance of a particular sprite, I would have to re-do the canned animation to use the new images to maintain consistency.
This new approach is more coding, but once they’re done, they’re done. It’s quite possible you’re talking about something quite different, but if not…
I have 25 frames of an animation that have dimensions of 2048x1294 each in @4x scale, but each are about 30kb in size, since they’re pretty simple. I want to run this animation, but I’m not sure what the best approach would be, since creating an image sheet of 25 x 2048 x 1294 doesn’t seem very practical.