0

everyplay インターフェイスを終了すると、Unity レンダリング ウィンドウ全体が左に約 25% 移動することがあります。

everyplay インターフェイスを 2 回閉じたときにのみ発生するようです。

4

1 に答える 1

2

最新の 1.0.8 SDK では、Unity プラグインのネイティブ コード レベルが変更されました。コメント アウトしてみてください。

/* Force orientation check, orientation could have changed while Unity was paused */
UIInterfaceOrientation orientIOS = UnityGetGLViewController().interfaceOrientation;
ScreenOrientation orientation = ConvertToUnityScreenOrientation(orientIOS, 0);
UnitySetScreenOrientation(orientation);

あなたのプロジェクト Assets/Plugins/iOS/EveryplayUnity.mm から、それなしでよりうまく機能するかどうかを確認してください。

于 2013-02-06T11:27:29.473 に答える