Category Archives: C# - Page 3

【Unity】Consoleのログをテキスト検索する

Unity標準のConsoleビューではログのテキスト検索ができないのですが、 どうしてもログからテキスト検索したいことがあったので、調べました。 Assetを使う UnityAssetStoreのエディタ拡張アセットを …

Read more »

【Unity】StandardAssetsのインポート不足時エラー

今日のエラー The name `Hoge’ does not exist in the current context 原因 StandardAssetsのインポート不足 解決 不足しているStandard …

Read more »

【Unity】値が変わった時にUnityEditorを一時停止する

概要 ObserveEveryValueChangedを使うと、値の変動を検知して処理を差し込むことができます。 今回はthisのlocalPosition.xが1になった時、実行中のUnityEditorを一時停止しま …

Read more »

【Unity】PrefabをGameObject.Instantiate(Resources.Load())で読み込もうとして、ArgumentException: The thing you want to instantiate is null.

今日のエラー prefabをロードしようとすると、返り値がNullになった。 さらにNullから参照しようとしたため、Object reference not set to an instance of an objec …

Read more »

【Unity】二次元配列の初期化でIndexOutOfRangeException

今日のエラー 二次元配列をこのような形で初期化したところ、data[1, 1]を読もうとすると IndexOutOfRangeException: Array index is out of range. となった。 コ …

Read more »