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立即移除。
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();
}
}
}