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








to achieve your desired result, set "thrustModifierAbove" lower, and "thrustModifierBelow" higher
I feel like it'd be handy to have this value and then the "maxRotorRPM" and "dampenersModifier" values in the manual, because they all pretty dramatically change the feel and appearance of the thruster functionality. Really great for personal preference or trying to build different ships with different characteristics of handling and flight feedback.
Lowering the two I mentioned in particular really make things look and feel smoother in flight. I recorded a flight of it.
https://www.youtube.com/watch?v=V-XiOpbmaSg
1) Change the thrustModiferAbove and thrustModiferBelow from constants to variables.
2) Create two sets of constants one for gravity and one for space for example:
public const double thrustModifierAboveSpace = 0.01;
public const double thrustModifierBelowSpace = 0.9;
public const double thrustModifierAboveGrav = 0.1;
public const double thrustModifierBelowGrav = 0.1;
3) Change the block to setup gravity to this :
// setup gravity
float gravLength = (float)worldGrav.Length();
if(gravLength < gravCutoff) {
gravLength = zeroGAcceleration;
thrustModifierAbove = thrustModifierAboveSpace;
thrustModifierBelow = thrustModifierBelowSpace;
}
else {
thrustModifierAbove = thrustModifierAboveGrav;
thrustModifierBelow = thrustModifierBelowGrav;
}
4) Provide access to this value to nacelles class.
When I use a ship in space it is able to fly forward fine (it points in the right direction and then uses the thruster) but, when I try to go any other direction the rotor (and the thruster on it) just starts spinning wildly in circles and then switches the direction that it is spinning now and then.
I have tryed changing the thrust modifer and also tryed moving the center of mass.