Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ private void Start()
persistentNotification = notificationManager._SendNotification("This is Persistent!", NotificationType.Error, 0);

// Dismiss the persistent notification after 30 seconds
SendCustomEventDelayedSeconds(nameof(DismissPersistentNotification), 30f);
SendCustomEventDelayedSeconds(nameof(_DismissPersistentNotification), 30f);
}

public void DismissPersistentNotification()
public void _DismissPersistentNotification()
{
if (persistentNotification != null)
{
Expand Down