Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_NotificationConfig.c
Go to the documentation of this file.
1[BaseContainerProps(configRoot: true)]
3{
4 [Attribute(desc: "Notification Color array. Each enum can have it's own color")]
5 protected ref array<ref SCR_NotificationDisplayColor> m_aNotificationDisplayColor;
6
7 [Attribute(desc: "List of Widgetnames for Sticky notifications.")]
8 protected ref array<string> m_aStickyNotifications;
9
10 [Attribute(desc: "List of notifications that can be assigned to the SCR_NotificationsComponent and be called via static functions within the same component")]
11 protected ref array<ref SCR_NotificationDisplayData> m_aNotificationDisplayData;
12
18 int GetNotificationData(out notnull array<ref SCR_NotificationDisplayData> data)
19 {
20 data.Clear();
21
23 data.Insert(notification);
24
25 return m_aNotificationDisplayData.Count();
26 }
27
28 array<string> GetStickyNotifications()
29 {
31 }
32
33 array<ref SCR_NotificationDisplayColor> GetNotificationDisplayColor()
34 {
36 }
37};
SCR_AIAnimation_Loitering BaseContainerProps
Commanding menu commanding element class.
Get all prefabs that have the spawner data
UI Textures DeployMenu Briefing conflict_HintBanner_1_UI desc
ref array< ref SCR_NotificationDisplayData > m_aNotificationDisplayData
int GetNotificationData(out notnull array< ref SCR_NotificationDisplayData > data)
array< ref SCR_NotificationDisplayColor > GetNotificationDisplayColor()
ref array< string > m_aStickyNotifications
array< string > GetStickyNotifications()
ref array< ref SCR_NotificationDisplayColor > m_aNotificationDisplayColor
SCR_FieldOfViewSettings Attribute