EditorWindow.RemoveNotification

切换到手册
public void RemoveNotification ();

描述

停止显示通知消息。

通知消息会在一段时间后自动消失。该函数可立即删除通知消息。

\ 在编辑器窗口中显示通知。

// Simple example that shows a notification message
// that the user has typed.

using UnityEditor; using UnityEngine; using System.Collections;

public class Example : EditorWindow { string notification = "This is a Notification";

[MenuItem("Example/Example6")] static void InitWindow() { Example window = (Example)GetWindow(typeof(Example)); window.Show(); }

void OnGUI() { notification = EditorGUILayout.TextField(notification);

if (GUILayout.Button("Show Notification")) { this.ShowNotification(new GUIContent(notification)); }

if (GUILayout.Button("Remove Notification")) { this.RemoveNotification(); } } }