Ultimate In-Game Notifications Help

Sending notifications

Use this function whenever you want to send a notification from within your code

Title only

NotificationManager.instance.SendNotification(string title);

Title and subtitle

NotificationManager.instance.SendNotification(string title, string subtitle);

Title, subtitle, and a custom icon

NotificationManager.instance.SendNotification(string title, string subtitle, sprite icon);

Title, subtitle, icon, and a custom audio clip

NotificationManager.instance.SendNotification(string title, string subtitle, sprite icon, AudioClip audioClip);
Last modified: 03 November 2023