安裝 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(越南文)
Українська(烏克蘭文)
回報翻譯問題
I only used share_inertia_tensor because it's true whereas I couldn't guarantee that with the hp_extend. I'm sure adding a new variable near line 380 equal to true would have been the way to go but this is simpler for somebody to recreate.
My edit to lines 957 to 971:
if (vp_count > 0)
{
if (share_inertia_tensor)
{
rot_speed = (float)(rot_speed / ((v_stage * vp_step_length) + excess_meters));
}
else
{
rot_speed = (float)(rot_speed / (excess_meters + (vp_stage_count - v_stage) * vp_step_length));
}
}
else
{
rot_speed = (float)(rot_speed / excess_meters);
}
My edit to lines 1100 to 1115:
if (vp_count > 0)
{
if (share_inertia_tensor)
{
rot_speed = (float)(rot_speed / (excess_meters + v_stage * vp_step_length));
}
else
{
rot_speed = (float)(rot_speed / (excess_meters + (vp_stage_count - v_stage) * vp_step_length));
}
}
else
{
rot_speed = (float)(rot_speed / excess_meters);
}
rotor.Enabled = true;
Remove (hp_count * piston_length) from lines 961, 965, 1104, 1108. So that it doesn't think the arm is way longer than it really is when it does it's velocity calculations for the drill head.