Game Center through OF support - how to jump to Game Center without restarting game?

Game Center through OF support - how to jump to Game Center without leaving game? Is any of you solved this problem? OF panel is easy available from game but GC suspended my game. Native GC implementation in other games look more like OF. Did someone resolve this problem to make OF Game Center looks more native? [import]uid: 12704 topic_id: 18208 reply_id: 318208[/import]

bump… anyone? [import]uid: 12704 topic_id: 18208 reply_id: 69606[/import]

As far as I am aware without having true GC integration without going through OF this won’t be possible.

I was thinking that if there was an accessible web API for GC we might be able to fake it but it looks like there isn’t one - http://stackoverflow.com/questions/4055936/is-there-any-web-api-for-apples-game-center - not that I actually expected there to be one but figured it was worth a check.

[import]uid: 5833 topic_id: 18208 reply_id: 69616[/import]

Thank you Graham

That was I afraid of… Still not found good way to implement GC through OF because when I put
code like this:
[lua]local gcButton = function()
local gcUrl = “gamecenter:”
system.openURL ( gcUrl )
end[/lua]
it back to game menu or just restart the game. This spoils user experience on game does GC implementation useless.

BTW. Should have some free time soon so will send you my idea about increase preformance in Lime trough zones and tile culling.
Best regards [import]uid: 12704 topic_id: 18208 reply_id: 69620[/import]

You can set it so your game doesn’t restart when you suspend it, that way when you return to the game it will be where you left it.

Add this in build.settings;

[lua]UIApplicationExitsOnSuspend = true[/lua]

Peach :slight_smile:

[import]uid: 52491 topic_id: 18208 reply_id: 69641[/import]