安装 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(越南语)
Українська(乌克兰语)
报告翻译问题
Question: The thunder librarey this mod uses comes with some weapons and ammo. Can this Heli use any of them?
i cant do anything is this a problem or just the mods im using
happened in military research facility
How hard would it be to code the helicopter to accept multidirectional pitch/yaw controls? It seems it only responds to one arrow key at a time and will ignore any other arrow key input until you let go of the first one. Led to some whacky flying until I realized what was happening. Would be awesome for a future update. If it's just not possible, I understand, but it would be neat to have. Let me/us know if you can!
keyboard it flys great with a controller i cant find a way to operate it any way other than up at current.
Wow great job
This fixed it for me
If you want to apply the temporary fix yourself, you need to edit the HeliMove.lua inside the WarThunderVehicleLibrary:
42\media\lua\client\HeliAbility
Comment out the following two lines:
Line 383: Vehicle:setZombiesDontAttack(true)
Line 387: Vehicle:setZombiesDontAttack(false)
by adding -- so that part of the code should look like this:
...
if curr_z > 1 then
Vehicle:getPartById(GasTankType):setContainerContentAmount(
Vehicle:getPartById(GasTankType):getContainerContentAmount() - 0.03 * fpsMultiplier * GasMultiples)
--Vehicle:setZombiesDontAttack(true)
else
Vehicle:getPartById(GasTankType):setContainerContentAmount(
Vehicle:getPartById(GasTankType):getContainerContentAmount() - 0.01 * fpsMultiplier * GasMultiples)
--Vehicle:setZombiesDontAttack(false)
end
...