Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_PreviewRichText.c
Go to the documentation of this file.
1class SCR_PreviewRichText : SCR_InfoDisplayExtended
2{
4
5 //------------------------------------------------------------------------------------------------
6 override void DisplayUpdate(IEntity owner, float timeSlice)
7 {
8 }
9
10 //------------------------------------------------------------------------------------------------
11 override bool DisplayStartDrawInit(IEntity owner)
12 {
13 return true;
14 }
15
16 //------------------------------------------------------------------------------------------------
17 override void DisplayStartDraw(IEntity owner)
18 {
19 /*
20 m_wGlowText = TextWidget.Cast(m_wRoot.FindAnyWidget("14 RobotoCondensed_Regular-96-16"));
21 m_wGlowText.SetShadow(24, 0xFFFFFFFF);
22
23 m_wGlowText = TextWidget.Cast(m_wRoot.FindAnyWidget("14 RobotoCondensed_Regular-64-32"));
24 m_wGlowText.SetShadow(24, 0xFFFFFFFF);
25
26 m_wGlowText = TextWidget.Cast(m_wRoot.FindAnyWidget("14 RobotoCondensed_Regular-64-16"));
27 m_wGlowText.SetShadow(24, 0xFFFFFFFF);
28
29 m_wGlowText = TextWidget.Cast(m_wRoot.FindAnyWidget("14 RobotoCondensed_Regular-64-24"));
30 m_wGlowText.SetShadow(24, 0xFFFFFFFF);
31 */
32
33 /*
34 m_wGlowText = TextWidget.Cast(m_wRoot.FindAnyWidget("14 RobotoCondensed_Regular-96-16"));
35 m_wGlowText.SetShadow(32, 0xFF000000, 0.5);
36
37 m_wGlowText = TextWidget.Cast(m_wRoot.FindAnyWidget("14 RobotoCondensed_Regular-64-32"));
38 m_wGlowText.SetShadow(32, 0xFF000000, 0.5);
39
40 m_wGlowText = TextWidget.Cast(m_wRoot.FindAnyWidget("14 RobotoCondensed_Regular-64-16"));
41 m_wGlowText.SetShadow(32, 0xFF000000, 0.5);
42
43 m_wGlowText = TextWidget.Cast(m_wRoot.FindAnyWidget("14 RobotoCondensed_Regular-64-24"));
44 m_wGlowText.SetShadow(32, 0xFF000000, 0.5);
45 */
46 }
47
48 //------------------------------------------------------------------------------------------------
49 override void DisplayStopDraw(IEntity owner)
50 {
51 }
52};
override bool DisplayStartDrawInit(IEntity owner)
override void DisplayStopDraw(IEntity owner)
override void DisplayUpdate(IEntity owner, float timeSlice)
override void DisplayStartDraw(IEntity owner)