DayZ Scripts
v1.21.156300 ยท Jun 20, 2023
Loading...
Searching...
No Matches
ChernarusMap_Open.c
Go to the documentation of this file.
1
class
ChernarusMap
extends
ItemMap
2
{
3
override
void
SetActions
()
4
{
5
super.SetActions();
6
7
AddAction
(
ActionUnfoldMap
);
8
}
9
10
override
bool
GetActionWidgetOverride
(out
typename
name
)
11
{
12
if
( GetMapStateAnimation() )
//is map in the 'opened' state
13
{
14
name
=
ActionFoldMap
;
15
return
true
;
16
}
17
return
false
;
18
}
19
}
20
class
ChernarusMap_Open
extends
ItemMap
{}
//unused
ActionUnfoldMap
ActionUnfoldMapCB ActionBaseCB ActionUnfoldMap()
Definition
ActionUnfoldMap.c:168
AddAction
void AddAction(typename actionName)
Definition
AdvancedCommunication.c:220
name
string name
Definition
PluginDayZInfectedDebug.c:32
ActionFoldMap
Definition
ActionFoldMap.c:4
ItemMap
Definition
ChernarusMap_Open.c:2
ItemMap::GetActionWidgetOverride
override bool GetActionWidgetOverride(out typename name)
Definition
ChernarusMap_Open.c:10
ItemMap::SetActions
override void SetActions()
Definition
ChernarusMap_Open.c:3