のしメモ アプリ開発ブログ

Unityアプリとかロボットとか作ってるときに困ったこととかメモ

2016-01-01から1年間の記事一覧

bundle display nameでエラー

ArchiveしたファイルをiTuenes Connectにアップロードする際に下記のエラーがでた。 ERROR: ITMS-90129:"The bundle uses a bundle name or display name associated with an Apple app."内容としては、Appleのアプリと同じアプリ名か、表示名を使っているか…

eb initでエラー時

AWS

エラー内容 $ eb init 実行時に下記エラーが出た際の対処 ERROR: Elastic Beanstalk could not find any platforms. Ensure you have the necessary permissions to access Elastic Beanstalk. 対処法 IAMのページに遷移 https://console.aws.amazon.com/iam…

ObjectPool.csが便利

VR Samplesに入っているObjectPoolが汎用的で便利なのでメモ ObjectPoolとは、任意のPrefabを大量に生成、破棄をする際に、Instantiate&Destroyの数を最小限に抑える仕組み。 File AssetStore https://www.assetstore.unity3d.com/jp/#!/content/51519 Asset…

Enable Android Banner

AndroidのPlayerSettingにある、Enable Android Bannerってなんだろうと思い調べてみた Android TV用のアイコンで、Android TV対応しないなら設定しなくてもいいとのこと。 UI Patterns for TV | Android Developers参考 Player Settings -> Icon -> E…

Unity再生時にエラーで落ちる件を調べていたら便利なスクリプト見つけた

エラー内容 Unityで実行すると下記のようなエラーが発生し、Unityが終了してしまう問題に出くわしました。 The file 'MemoryStream' is corrupted! Remove it and launch unity again! 解決方法 調べてみるとファイルの参照が外れているのが問題みたいで、下…