Skip to content

【Unity】シーンと連動して開閉するウィンドウ

License

Notifications You must be signed in to change notification settings

wataru-ito/SceneWindow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SceneWindow

【Unity】シーンと連動して自動で開閉するウィンドウ

特定のシーンでの編集をアシストするツールに。メニューもスッキリ。

インストール

パッケージファイル

使い方

EditorWindow に SceneWindow.Open 属性をつけるだけ

using UnityEditor;
using SceneWindowSystem;

// Hogeシーンを開くと自動で開くウィンドウ
[SceneWindow.Open("Hoge")]
public class SampleWindow : EditorWindow
{
	void OnGUI()
	{
		EditorGUILayout.LabelField("SampleWindow");
	}
}

About

【Unity】シーンと連動して開閉するウィンドウ

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages