Quick Links: Download Gideros Studio | Gideros Documentation | Gideros Development Center | Gideros community chat | DONATE
onEnterFrame( event) — Gideros Forum

onEnterFrame( event)

jalmincejalmince Member
edited March 2014 in General questions
Hi there! Could you tell me
1) what happens if the event handler lasts for more then 1/60 s (or what ever the frame rate is) ?
2) Knowing that many objects listen to that event ( in my case the main, then different obj in diffrent scenes,..) in which order are the handlers called ?
best regards,
Jp

Comments

  • ar2rsawseenar2rsawseen Maintainer
    1) you will have a drop in FPS as in your game will run slower, so probably not a good idea reading writing files, or loading textures on enterframe

    2)Basically there is no particular order as the event does not propagate as input events, so it could be close to the order of how you added the event listeners
Sign In or Register to comment.