Add plugin for exporting RED and BLUE threat circles to LotATC.

Implemented as a plugin because LotATC needs actual lat/lon, and the only APIs for those are in lua.

Fixes https://github.com/Khopa/dcs_liberation/issues/956.
This commit is contained in:
Ronny Röhricht
2021-04-17 09:55:06 +02:00
committed by GitHub
parent 923459c88b
commit 2f53edd775
5 changed files with 402 additions and 9 deletions

View File

@@ -0,0 +1,33 @@
{
"nameInUI": "LotATC Export",
"defaultValue": false,
"specificOptions": [
{
"nameInUI": "Export RED AA",
"mnemonic": "exportRedAA",
"defaultValue": true
},
{
"nameInUI": "Export BLUE AA",
"mnemonic": "exportBlueAA",
"defaultValue": false
},
{
"nameInUI": "Export AA Symbols",
"mnemonic": "exportSymbols",
"defaultValue": true
}
],
"scriptsWorkOrders": [
{
"file": "LotAtcExport.lua",
"mnemonic": "LotAtcExport-script"
}
],
"configurationWorkOrders": [
{
"file": "LotAtcExport-config.lua",
"mnemonic": "LotAtcExport-config"
}
]
}