Re: Power saving kicks in
Right now we have no option to turn that off, but you *can* do it manually after you export to XCode. You have to do it manually every time you export though I'm afraid :(
In "RuntimeIPhoneAppDelegate.m" after line 25, insert this line:
Code:
[[UIApplication sharedApplication] setIdleTimerDisabled:YES];
Re: Power saving kicks in
Thanks Andos - that will do nicely for now. :) I assume it will be a property before the iphone exporter is released?
Re: Power saving kicks in
There is actually an option for that : it is called "Screen locking" in the frameproperties. But I just checked, it is not implemented in the runtime.
For next beta!
Be careful when using this flag, for example just set it for the game part of your application, not the menus!
Re: Power saving kicks in