Big problem with movements and animations

Hi , I’m working on a 2d game for iOS and I’m stuck in a big problem. The project works really nice and smoothly in unity but when I build it for my iOS device it’s awful and jerky!!! I want to know that it’s because my game instances a lot of objects? Animations that i made them in unity are jerky on device too but really nice in unity! please help me , I really need this! Thanks

Make sure you have read and understand all the optimization requirements for mobile/iOS, like using the Sprite Packer to combine sprite graphics into one atlas, and other things that slow down on mobile.

https://docs.unity3d.com/Manual/MobileOptimizationPracticalGuide.html

And also learn to use the profiler to see what takes the longest time each frame.

Without knowing more about your project and how you made it, it’s impossible to guess where your bottlenecks will be. For example, you have not even said which device you tested on. If it’s an old iphone 4 it’s going to be very challenging to optimize.

If you did follow best practices and are still at a loss, I would guess you have sounds effects playing during your animations? If so, the audio decompressing on the fly will cause hiccups. You have to choose just the right sound format. I found I had to use Vorbis, Decompress on Load, and Preload Audio Data options to prevent visual hiccups when sounds play.