@efgames.net, we most certainly would be interested in a test case that shows your slowdowns. There have not been any signifiant changes to those areas recently. But I also don’t know what time frame you’re talking about. In the OP he was talking about going from 2744 to 3077. A lot can happen in that range, but we never plan to do anything that would lead to worse performance.
Second one is sprites - I have a big atlases and small atlases - with small - all ok, with big ones - is not. I`ll prepare a simple test-project tommorow.
Problem - is a amount of frames in atlas. The more of them - the laggy it gets.
Maybe cashing indexes of frames in atlas is not used? ( or not properly, or lua specific issue - you know better)
(bug - amount of frames are slowing down too much)
It lead to next bug with transitions - when it lagging like in example - transitions will stop responding, and onComplete will not be called as a result.
Should I make a another thread about them? Or this is something that is knowed? Or it is something that “is not important to fix this year”?
Since my games always on edge of CoronaSDK performance - would be great to know my limits here. Pity - I had to give up using “transition” for this project. As always - I`m using gameplay features to limit stuff on screen to control lag.
Transitions are ok for simplistic animation but when you are talking about lots of animating objects the library is doing too much extra work per frame which slows things down.
For hundreds of objects you will definitely have to bin off transition library and do it yourself in enter frame to get decent performance.
I was going to say have you tried just using an enter frame event and using setFrame() for your animation? I have 500+ animations now running at full speed on mobile by ditching transitions and “doing it myself”. This is on top of some 20k other display objects.
Number of frames (at least when changed manually, I can’t comment on sprite animations from the Corona side) should have no slowdown as it is a free operation as it is the same texture.
Regarding atlas size, generally the larger the better (try not to go over 2048x2048 as you will hit issues on older devices) as this has less draw calls.
My largest one has 146 frames. I use a few different atlases
Graphically, I am pushing a whole lot more through the open GL pipeline than your example and I can easily sustain 60 fps on simulator. I limit to 30 fps on device to conserve battery.
My game size is roughly 9000 x 4500 px so only a percentage ever fits on screen.