EditorWindow
- autoRepaintOnSceneChange
- BeginWindows
- Close
- EndWindows
- focusedWindow
- FocusWindowIfItsOpen.<T>
- FocusWindowIfItsOpen
- Focus
- GetWindow.<T>
- GetWindowWithRect.<T>
- GetWindowWithRect
- GetWindow
- mouseOverWindow
- OnDestroy
- OnFocus
- OnGUI
- OnHierarchyChange
- OnInspectorUpdate
- OnLostFocus
- OnProjectChange
- OnSelectionChange
- position
- RemoveNotification
- Repaint
- SendEvent
- ShowAuxWindow
- ShowNotification
- ShowPopup
- ShowTab
- ShowUtility
- Show
- Update
- wantsMouseMove
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.
通知消息经过一段时间后逐渐消失。这个函数会立即删除它。
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