Hi
I’m wondering if someone knows if it’s possible to create a MovieClip, a new Stage, or a new Lime Window which has different frame rate than the application’s main stage (or its main window’s stage).
I created new Lime windows with different frame rates, but the main stage seems to be static in code, so the other (original) window’s frame rate has changed as well (new window’s fps was set to 1, the original window’s fps changed to 1, along with the all of the existing displayobject stage’s frame rate).
I need to do some stuff in code, and I’m thinking of creating a low-frame-rate (1 fps) MovieClip (Stage, Window, anything) and do the necessary calculations by adding a listener to its ENTER_FRAME event, while keeping the main application fast and responsive (at 30-60 fps).
I know I can use Haxe threads, which is very exciting to work with, but in this specific case I’m curious if it’s somehow possible to create OpenFL display objects with different frame rate than the main (root) one.
Thank you.