This is a question for the Corona staff.
I would like to know what is the frame execution order in corona. What I mean is when do certain events fire in a frame loop. What I’m looking for is something like this:
-
Wait for next frame
-
…
-
Call all enterFrame listeners
-
Call all touch listeners
-
Update physics
-
…
-
Update screen
I am guessing that all the touch events get fired at the same time as enterFrame or am I wrong?
I’m also guessing that transitions and timers get fired from enterFrame listeners as well?
If so which gets called first transitions, timers, touch events, enterFrame listeners …
I am trying to do some calculations where this info would be a factor.
Thank you.