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








The default value of StuffEffectMultiplierDiscomfort (a property of the apparel, I think) is 0, and I don't see it being set by AIU anywhere (only the value of StuffPower_Discomfort for vanilla materials). Thus, for all apparel, the StatPart_Stuff part of the computation does not modify the discomfort. Furthermore, if the default value were changed (or values patched in for specific apparel), the discomfort would simply be increased, proportional to StuffPower_Discomfort (unless one of StuffPower_Discomfort and StuffEffectMultiplierDiscomfort was negative, but they both have 0 as their minimum values), not scaled based on the two values.
Instead, I think the StatPart_Stuff part of the formula should be replaced by something like:
So the discomfort is scaled based on StuffPower_Discomfort, which is a property of the material, but that modification is itself scaled based on StuffEffectMultiplierDiscomfort, which is a property of the apparel.
I'm very new to RimWorld C# modding, so I'm not sure if a StatPart with this formula already exists. However, it would be pretty straightforward to create a new one, since it is very similar to StatPart_Stuff. I plan on testing this out locally, but I'm curious what your thoughts are, or if I missed something in understanding how the formula works.
https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=2252798130&searchtext=leather
https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=1713884017&searchtext=leather
I actually use Simple Chains: Leather in my own mod list, so they work together. Don't know about the other mod, but AIU is designed to be pretty much be compatible with everything.