安装 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(越南语)
Українська(乌克兰语)
报告翻译问题












Only the Nautilus faction come there, and cause a bug to the IconLookup. thisUnitInfo.PortraitIndex & thisUnitInfo.IconAtlas are nil.
The explorer unit is override by the specific Nautilus unit, the Adventurer, or un upgrade, dunno.
It seems it causes the issue here
It only concerns the civilopedia sponsor diplay. So to avoid malfunction, i prefer to neutralize this code.
It has zero side effect to the gameplay. I check all the others factions here. No issue at all, not concerned by this code
local textureOffset, textureSheet = IconLookup( thisUnitInfo.PortraitIndex, buttonSize, thisUnitInfo.IconAtlas ); -- !!!!!!!
if textureOffset == nil then
textureSheet = defaultErrorTextureSheet;
textureOffset = nullOffset;
end
local unitCategory = CategoryUnits;
local unitEntryID = thisUnitInfo.ID;
UpdateSmallButton( buttonAdded, thisUnitInstance.UniqueUnitImage, thisUnitInstance.UniqueUnitButton, textureSheet, textureOffset, unitCategory, Locale.ConvertTextKey( thisUnitInfo.Description ), unitEntryID);
buttonAdded = buttonAdded + 1;
]]
Edit the CivilopediaScreen.lua file in base dir game, or in the (RT) Social Engineering - A Culture and Virtue Overhaul MOD if you use it.
Find the line 4278 and comment the code block like this (i added some explanations, SealingSatyr is my dev nickname) :
\Lua\CivilopediaScreen.lua:4278: Cannot find key - IconAtlas
Runtime Error: Assets\UI\IconSupport.lua:34: operator < is not supported for nil < number
stack traceback:
Assets\UI\IconSupport.lua:34: in function 'IconLookup'
RT. I only have these errors with this faction. All the others works fine.
There is no display in the civilopedia Sponsor view.