Okay, so I bet half of you have already pulled up this article
http://developer.coronalabs.com/content/performance-and-optimization
Assuming I have already done everything on that list, how can I simplify and optimize my project?
I noticed I called display.newImageRect and math.random/math.round probably 100 times a second.
I made those local by doing
[lua]local newImg = display.newImageRect
local mRand = math.random
–ETC pre-declaring all SDK calls[/lua]
This added back MAYBE 1 fps
Is there much else I can do?