Notification System
The notification system is a flexible and easy-to-use module whose main purpose is to quickly display information to the player.
How to use
Just use Notifier.Builder
:
Initiate Builder by
Notifier.Builder.CreateNew()
Then, fill notification data
.SetText("Find key")
.SetNotificationType(Notifier.NotificationType.LEFT_PANEL)
.SetIcon("failed")
And, in finally, show notification
.ShowNotification();
Final result:
Notifier.Builder.CreateNew()
.SetText($"Find {requiredItem.publicName}")
.SetNotificationType(Notifier.NotificationType.LEFT_PANEL)
.SetIcon("failed")
.ShowNotification();
Last updated