EditorWindow.ShowNotification 显示通知

function ShowNotification (notification : GUIContent) : void

Description描述

Show a notification message.

显示一个通知消息。

Displays notification message on the window. Unlike message boxes or log messages notification will fade out automatically after some time. Call RemoveNotification to remove it immediately

在窗口上显示通知消息,不像消息盒或日志消息通知经过一段时间会自动淡出。调用RemoveNotification立即移除。

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:18

本脚本参考基于Unity 3.4.1f5

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