安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题









Components.Cmps<MinionAssignablesProxy> map = Components.MinionAssignablesProxy;
foreach (MinionAssignablesProxy item in map)
{
GameObject tgo = item.GetTargetGameObject();
MinionIdentity identity = tgo.GetComponent<MinionIdentity>();
AttributeLevels level = tgo.GetComponent<AttributeLevels>();
Attributes attributes = tgo.GetComponent<MinionResume>()?.GetAttributes();
if (level != null && attributes != null)
{
Debug.Log("Minion Resumee: " + identity.name);
foreach (string name in names)
{
Debug.Log(string.Format("\t{0}:\n\t\tFrom Attributes: {1}\n\t\tFrom Levels: {2}", name, (int)attributes.GetValue(name), level.GetAttributeLevel(name).GetLevel()));
}
}
else
{
Debug.Log("Minion Resumee failed");
}
}
[11:52:39.358] [1] [INFO] Strength:
From Attributes: 4
From Levels: 0
[11:52:39.358] [1] [INFO] Caring:
From Attributes: 0
From Levels: 0
[11:52:39.358] [1] [INFO] Construction:
From Attributes: 15
From Levels: 15
[11:52:39.358] [1] [INFO] Digging:
From Attributes: 21
From Levels: 15
[11:52:39.358] [1] [INFO] Machinery:
From Attributes: 25
From Levels: 20
[11:52:39.358] [1] [INFO] Learning:
From Attributes: 7
From Levels: 0
[11:52:39.358] [1] [INFO] Cooking:
From Attributes: 0
From Levels: 0
[11:52:39.358] [1] [INFO] Botanist:
From Attributes: 0
From Levels: 0
[11:52:39.358] [1] [INFO] Art:
From Attributes: 0
From Levels: 0
[11:52:39.358] [1] [INFO] Ranching:
From Attributes: 0
From Levels: 0
[11:52:39.358] [1] [INFO] Athletics:
From Attributes: 27
From Levels: 20
[11:52:39.358] [1] [INFO] SpaceNavigation:
From Attributes: 0
From Levels: 0