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








It seemed to work when I hacked it into this mod's code.
When you draw something to the screen in the mirror dimension you need to invert the X value in some way. I tried a bunch of different things, but this was the only value I found that was consistent in all room types. I assume it has something to do with how the mirroring is implemented.
In the mirror dimension, instead of using the X value directly, you subtract it like so:
An example from your code would be changing this from
to
I haven't tried with all of your settings, so this might need to be tweaked a little.
All of this appears to be needed if you're within MC_POST_RENDER.
I noticed some of your code uses MC_POST_EFFECT_RENDER which doesn't seem to need this workaround. It positions things correctly, but mirrored, if in the mirror dimension. That might be something else to explore.
On line 400 there's this:
On the next line, add this: