Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
HUDManagerComponent.c
Go to the documentation of this file.
1 /*
2 ===========================================
3 Do not modify, this script is generated
4 ===========================================
5 */
6 
12 class HUDManagerComponentClass: SCR_BaseHUDComponentClass
13 {
14 }
15 
16 class HUDManagerComponent: SCR_BaseHUDComponent
17 {
18  proto external bool IsHUDEnabled();
19  proto external bool EnableHUD(bool state);
20  proto external bool StartDrawing(BaseInfoDisplay display);
21  proto external void StopDrawing(BaseInfoDisplay display);
22  proto external int GetInfoDisplaysDrawn(out notnull array<BaseInfoDisplay> outInfoDisplays, bool getAllShown = false);
23 
24  // callbacks
25 
30  event protected void OnInit(IEntity owner);
31  event protected void OnUpdate(IEntity owner);
32  event protected void OnControlledEntityChanged(IEntity from, IEntity to);
33 }
34 
StartDrawing
proto external bool StartDrawing(BaseInfoDisplay display)
HUDManagerComponentClass
Definition: HUDManagerComponent.c:12
StopDrawing
proto external void StopDrawing(BaseInfoDisplay display)
OnControlledEntityChanged
event protected void OnControlledEntityChanged(IEntity from, IEntity to)
Runs every time the controlled entity has been changed.
Definition: SCR_ItemPlacementComponent.c:113
OnInit
event protected void OnInit(IEntity owner)
Definition: SCR_CharacterCommandHandler_Tests.c:523
EnableHUD
proto external bool EnableHUD(bool state)
OnUpdate
event protected void OnUpdate(IEntity owner)
BaseInfoDisplay
Definition: BaseInfoDisplay.c:12
IsHUDEnabled
HUDManagerComponentClass SCR_BaseHUDComponentClass IsHUDEnabled()
GetInfoDisplaysDrawn
proto external int GetInfoDisplaysDrawn(out notnull array< BaseInfoDisplay > outInfoDisplays, bool getAllShown=false)