通知メッセージを表示します
ウィンドウに通知メッセージが表示されます。メッセージボックスやログとは異なりメッセージの通知はしばらくしたら自動的がフェードアウトされます。
それをすぐに削除するには RemoveNotification を呼びます。
"エディターウィンドウで通知を表示します。"
// Simple example that shows a notification message // with what the user has typed. class ShowRemoveNotification extends EditorWindow { var notification : String = "This is a Notification"; @MenuItem("Example/Notification usage") static function Initialize() { var window : ShowRemoveNotification = EditorWindow.GetWindow(ShowRemoveNotification); window.Show(); } function OnGUI() { notification = EditorGUILayout.TextField(notification); if(GUILayout.Button("Show Notification")){ this.ShowNotification(GUIContent(notification)); } if(GUILayout.Button("Remove Notification")) { this.RemoveNotification(); } } }