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




C:\Program Files (x86)\Steam\steamapps\common\dont_starve\data\DLC0002\scripts\prefabs\icepack.lua
Here the code before and after:
Before:
inst.components.container.widgetanimbank = "ui_icepack_2x3"
inst.components.container.widgetanimbuild = "ui_icepack_2x3"
After:
inst.components.container.widgetanimbank = "ui_backpack_2x4"
inst.components.container.widgetanimbuild = "ui_backpack_2x4"
Will this makes the Insulated Pack have 8 slots?
I ask it because unfortunately i have no clue what i'm doing :(
On the same directory;
C:\Program Files (x86)\Steam\steamapps\common\dont_starve\data\DLC0002\scripts\prefabs\icepack.lua
Before
for y = 0, 2 do
table.insert(slotpos, Vector3(-162, -y*75 + 75 ,0))
table.insert(slotpos, Vector3(-162 +75, -y*75 + 75 ,0))
end
After
for y = 0, 3 do
table.insert(slotpos, Vector3(-162, -y*75 + 114 ,0))
table.insert(slotpos, Vector3(-162 +75, -y*75 + 114 ,0))
end
You'll need to change too the other code or else the insulated pack slots will looks glitchy.
same directory;
C:\Program Files (x86)\Steam\steamapps\common\dont_starve\data\DLC0002\scripts\prefabs\icepack.lua
Before:
inst.components.container.widgetanimbank = "ui_icepack_2x3"
inst.components.container.widgetanimbuild = "ui_icepack_2x3"
After:
inst.components.container.widgetanimbank = "ui_backpack_2x4"
inst.components.container.widgetanimbuild = "ui_backpack_2x4"
I leave here my discoveries so that if someonelse want to do the same changes and see this post he'll know how.
THIS?