ブログ@HoloLabInc

株式会社ホロラボのブログです

HoloLens の左目だけエラー画面が表示される場合の対処

HoloLens の左目だけエラー画面(Development Console)が表示される場合の対処(非表示にする)についてまとめます

再現状況

  • DebugまたはReleaseで左目だけエラー画面(Development Console)が表示される

f:id:kaorun55:20200630185523j:plain
龍さんのブログより

解決策

  • Materビルドを行う
  • 下記コードを入れる(Release, Debugでも非表示になる)
Debug.developerConsoleVisible = false;

下記のようなスクリプト(例えば DeveloperConsole.cs ) を空のGameObjectなどにはりつける。

using UnityEngine;

public class DeveloperConsole : MonoBehaviour
{
    // Start is called before the first frame update
    void Start()
    {
        Debug.developerConsoleVisible = false;
    }
}

あわせて読みたい