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






Your problem now sounds like a block ownership issue. Try owning everything.
the general idea is your LCD must be in the Aligner group, and include the chart name or short name in the light's Title property iirc. You'd pretty much need to scan the script for Chart names for a complete list, but many are listed above. Try text mode, debug font, though it should set that up for you automatically..
how about the other axis?
I made a working platform that needs to hover in place when i exit the cockpit. Reduces speed to zero in all directions and then hovers.
Just to be clear, with deactivated i ment a mod complettly removed the functionality of interial dampeners on my current server. no way to reactivate them, instead i was looking for scripts that could do that on their own.
The problem like I said is when it decides to shut the thrust off ('free' mode) so the solution would be to keep it from going into free mode, by eliminating that clause in the script, I mentioned it below. iirc when I tried this what you get instead is a very bouncy switch back and forth between wanting to thrust up and wanting to thrust down, that never quite settles down, but can be tuned to be very small, sort of like the problem you're wanting to solve, only ... different.
Solving both those problems would probably require both more engineering skill than I possess, and some fixes to the game itself, how it handles overrides.
But if one PB or two, I have that weird issue that sometimes propels the craft upward, like it's not the PID, but it overshoots the thrust when descending, duno how to explain this. I think it's because I changed amt = 0f; to -1, but not sure about that. (like there are many values in Custom Data that can have an effect)
what I did was
amt= 0 to amt= -2
________________________
else if (fraction <= .01) { // off. Tiny overrides cannot be achieved. Prevent builtin inertial dampening after game clips them to zero.
thrust.Enabled = true;
set from false to true
_________________________
thrustvelslop=0.1
thrustposslop=0.1
https://youtu.be/InrwXz-2dyw?si=gtEokkMAabSgtMl0
So I made the change at Line 1177 and set amt = 0f; to amt = -1f;
I am not quite sure yet if it helps, but it does something ...I suppose
also I am not so sure what
thrustvelslop=
thrustposslop=
do. It seems they have also some effect onto the stability, but couldn't figure out what it exactly does.
I have literary no idea of what I am doing. Sorry for being such a pain...