Skip to content

Instantly share code, notes, and snippets.

@Syy9
Created July 28, 2018 06:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Syy9/7c30d4d9f0f17ead4d61ff79d26b3824 to your computer and use it in GitHub Desktop.
Save Syy9/7c30d4d9f0f17ead4d61ff79d26b3824 to your computer and use it in GitHub Desktop.
How to Show Notification in UnityEditor
using UnityEngine;
using UnityEditor;
public static class ShowNotification
{
public static void Show(EditorWindow window,string message)
{
window.ShowNotification(new GUIContent(message));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment