0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

シーンをロードしたとき、GameObjectのInspectorを表示し続けたかった。

Last updated at Posted at 2019-06-20

#はじめに

デバッグのなどで、図のSphereの Inspector を表示し続けたいと思ったとします。
SceneLoad_20190621_1.JPG

そこに、以下のコードでシーンを読み込んだとします。
SceneManager.LoadScene("MainScene");

すると、下図の状態になります。
SphereのInspectorを表示するためには、MainSceneを開きGameObjectを選択する必要があります。
(階層が深くなれば深くなるほどしんどい。。。)

SceneLoad_20190621_2.JPG

しんどかったので、簡易的なやり方ですが、Hierarchy の検索欄にSphereを指定しておいて、、、
SceneLoad_20190621_3.JPG

シーンをロードすると、検索欄の文字列は残ったままなので、Sphereを選択することが楽になります。

SceneLoad_20190621_4.JPG

~2020年2月4日更新~
こちらの記事に任意のオブジェクトを選択する方法が紹介されていました。

Selection.activeGameObject = デバッグで確認したいオブジェクト;

Awake、OnEnable、OnDisable 内に記述することで、シーンロード後に自動でオブジェクトで選択された状態になります。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?