EditorWindow.RemoveNotification 移除通知

function ShowNotification (notification : GUIContent) : void

Description描述

Stop showing notification message.

停止显示通知消息。

Notification message fades away automatically after some time. This function will remove it immediately.

通知消息经过一段时间后逐渐消失。这个函数会立即删除它。

EditorWindow.ShowNotification 显示通知

Show a notification in an editor window.
在编辑器窗口显示一个通知。

// 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();
		}
	}
}
最后修改:2011年6月20日 Monday 12:22

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。