Skip to content

FOperatingSystemNotificationSettings

#include <OperatingSystemSimulator/Public/Core/OperatingSystem.h>
---
config:
  class:
    hideEmptyMembersBox: true
---
classDiagram
  class FOperatingSystemNotificationSettings {
    +bEnableNotifications : uint8
    +bPlayNotificationSound : uint8
    +ToastNotificationTime : uint8
    +NotificationSoundDefault : TSoftObjectPtr< USoundBase >
    +NotificationSoundWarning : TSoftObjectPtr< USoundBase >
    +NotificationSoundError : TSoftObjectPtr< USoundBase >
    +FOperatingSystemNotificationSettings()
  }
struct FOperatingSystemNotificationSettings

Defined in OperatingSystem.h:36 Structure representing the settings for operating system notifications.

ReturnNameDescription
uint8bEnableNotificationsEnable notifications in Operating System.
uint8bPlayNotificationSoundShould we play a sound when a notification is received?
uint8ToastNotificationTimeHow long the toast notification should display on screen. Toast notifications are implemented in UMG and this has no effect if you have not done that.
TSoftObjectPtr< USoundBase >NotificationSoundDefaultDefault sound to play.
TSoftObjectPtr< USoundBase >NotificationSoundWarningWarning sound to play if notification is a warning.
TSoftObjectPtr< USoundBase >NotificationSoundErrorError sound to play if notification is an error.

uint8 bEnableNotifications

Defined in OperatingSystem.h:42 Enable notifications in Operating System.


uint8 bPlayNotificationSound

Defined in OperatingSystem.h:46 Should we play a sound when a notification is received?


uint8 ToastNotificationTime

Defined in OperatingSystem.h:50 How long the toast notification should display on screen. Toast notifications are implemented in UMG and this has no effect if you have not done that.


TSoftObjectPtr< USoundBase > NotificationSoundDefault

Defined in OperatingSystem.h:54 Default sound to play.


TSoftObjectPtr< USoundBase > NotificationSoundWarning

Defined in OperatingSystem.h:58 Warning sound to play if notification is a warning.


TSoftObjectPtr< USoundBase > NotificationSoundError

Defined in OperatingSystem.h:62 Error sound to play if notification is an error.

ReturnNameDescription
FOperatingSystemNotificationSettings inlineDefault constructor

inline

inline FOperatingSystemNotificationSettings()

Defined in OperatingSystem.h:65 Default constructor