Cocos2d-x 縦画面対応


縦画面対応

cocosコマンドにより作成したプロジェクトは、標準で横画面の表示となっています。


iOS向けの設定

Xcode上の設定において「General」→「Device Orientation」の「Portrait」にチェックに入れください。これでiOS端末において縦画面のアプリを作成することができます。


Android向けの設定

「Android Manifest.xml」を編集します。「proj.android」フォルダーにあります。Activityの設定を行なっている「android:screenOrientation="landscapep"を"portrait"に変更します。これでAndroid端末において縦画面のアプリを作成することができます。

        <activity android:name="org.cocos2dx.cpp.AppActivity"

                  android:label="@string/app_name"

                  android:screenOrientation="portrait" ← 修正箇所

                  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

                  android:configChanges="orientation"


 

目 次