I’ve created a simple app for iphone/iPad and I’ve enabled the screen auto rotation feature, but every time I change from landscape to portrait when the app is running the app suddenly crash, mhmm weird… any thoughts ?
are you using ios5 beta?
Anyway, try adding this to AppController.mm
in function DestroySurface [void DestroySurface(EAGLSurfaceDesc* surface)]
add
UnityFinishRendering();
before line DestroySurfaceGLES(surface);
it should look like this afterwards
Yes I’m using the latest iOS5 beta, thanks! I’ll do that !!!