Elin Decompiled Documentation
EA 23.102 Nightly
Loading...
Searching...
No Matches
LayerGlobalMap.cs
Go to the documentation of this file.
1
using
System;
2
3
public
class
LayerGlobalMap
:
ELayer
4
{
5
public
UIText
textName
;
6
7
public
UIText
textExplore
;
8
9
public
UIText
textTerritory
;
10
11
public
UIText
textPopu
;
12
13
public
UIText
textWealth
;
14
15
public
UIText
textRestore
;
16
17
public
UIText
textProgress
;
18
19
public
override
void
OnInit
()
20
{
21
RefreshSummary
();
22
}
23
24
public
void
RefreshSummary
()
25
{
26
textName
.
SetText
(
ELayer
.
world
.
Name
+ Environment.NewLine +
"<size=18> ("
+
ELayer
.
pc
.
currentZone
.
Region
.
Name
+
")</size>"
);
27
textExplore
.
SetText
(
"0%"
);
28
textTerritory
.
SetText
(
ELayer
.
Home
.
CountTerritories
().ToString() ??
""
);
29
textRestore
.
SetText
(
"1 (0/20)"
);
30
textWealth
.
SetText
(
ELayer
.
Home
.
CountWealth
().ToString() ??
""
);
31
textPopu
.
SetText
(
ELayer
.
Home
.
CountMembers
().ToString() ??
""
);
32
textProgress
.
SetText
(
"_progress"
.lang(
ELayer
.
player
.
stats
.
days
.ToString() ??
""
,
ELayer
.
player
.
stats
.
sieges
.ToString() ??
""
));
33
}
34
}
Chara.currentZone
Zone currentZone
Definition:
Chara.cs:240
ELayer
Definition:
ELayer.cs:4
ELayer.world
static World world
Definition:
ELayer.cs:39
ELayer.pc
static Chara pc
Definition:
ELayer.cs:15
ELayer.player
static Player player
Definition:
ELayer.cs:13
ELayer.Home
static Faction Home
Definition:
ELayer.cs:19
Faction.CountWealth
int CountWealth()
Definition:
FACTION.cs:213
Faction.CountMembers
int CountMembers()
Definition:
FACTION.cs:240
Faction.CountTerritories
int CountTerritories()
Definition:
FACTION.cs:227
LayerGlobalMap
Definition:
LayerGlobalMap.cs:4
LayerGlobalMap.textTerritory
UIText textTerritory
Definition:
LayerGlobalMap.cs:9
LayerGlobalMap.textName
UIText textName
Definition:
LayerGlobalMap.cs:5
LayerGlobalMap.textExplore
UIText textExplore
Definition:
LayerGlobalMap.cs:7
LayerGlobalMap.OnInit
override void OnInit()
Definition:
LayerGlobalMap.cs:19
LayerGlobalMap.textRestore
UIText textRestore
Definition:
LayerGlobalMap.cs:15
LayerGlobalMap.textPopu
UIText textPopu
Definition:
LayerGlobalMap.cs:11
LayerGlobalMap.RefreshSummary
void RefreshSummary()
Definition:
LayerGlobalMap.cs:24
LayerGlobalMap.textWealth
UIText textWealth
Definition:
LayerGlobalMap.cs:13
LayerGlobalMap.textProgress
UIText textProgress
Definition:
LayerGlobalMap.cs:17
Player.Stats.sieges
int sieges
Definition:
Player.cs:72
Player.Stats.days
int days
Definition:
Player.cs:68
Player.stats
Stats stats
Definition:
Player.cs:817
Spatial.Name
virtual string Name
Definition:
Spatial.cs:495
UIText
Definition:
UIText.cs:6
UIText.SetText
void SetText(string s)
Definition:
UIText.cs:159
Zone.Region
Region Region
Definition:
Zone.cs:160
Elin
LayerGlobalMap.cs
Generated by
1.9.6