Hi,
I can't bind Y axe on thrust. Seems that it works only with X.
I modify the lua diff:
local diff = {
["axisDiffs"] = {
["a2004cdnil"] = {
["added"] = {
[1] = {
["key"] = "JOY_Y",
},
},
["name"] = "Thrust",
["removed"] = {
[1] = {
["key"] = "JOY_X",
},
},
},
It works on 1.5 not in 2.0.
So I change the code:
local diff = {
["axisDiffs"] = {
["name"] = "Thrust",
["removed"] = {
[1] = {
["key"] = "JOY_X",
},
},
["a2004cdnil"] = {
["added"] = {
[1] = {
["key"] = "JOY_Y",
},
},
},
If I start DCS it works (the Y on thrust) but if I enter the control mapping options or I exit the game the file is overwritten with the added section before the removed.
I must manually modify the file everytime I want to play. :(