mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
75 lines
2.4 KiB
JSON
75 lines
2.4 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Add missing units",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "addMissingUnits.py",
|
|
"console": "integratedTerminal",
|
|
"args": ["${input:unitType}", "${input:searchFolder}"],
|
|
"justMyCode": true
|
|
},
|
|
{
|
|
"name": "Add liveries",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "addLiveries.py",
|
|
"console": "integratedTerminal",
|
|
"args": ["${input:unitType}", "${input:searchFolder}"],
|
|
"justMyCode": true
|
|
},
|
|
{
|
|
"name": "Generate payload tables",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "generatePayloadTables.py",
|
|
"console": "integratedTerminal",
|
|
"args": ["${input:searchFolder}"],
|
|
"justMyCode": true
|
|
},
|
|
{
|
|
"name": "Add loadouts",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "addLoadouts.py",
|
|
"console": "integratedTerminal",
|
|
"args": ["${input:unitType}", "${input:searchFolder}"],
|
|
"justMyCode": true
|
|
},
|
|
{
|
|
"name": "Add ranges",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "addRanges.py",
|
|
"console": "integratedTerminal",
|
|
"args": ["${input:unitType}", "${input:searchFolder}"],
|
|
"justMyCode": true
|
|
}
|
|
],
|
|
"inputs": [
|
|
{
|
|
"id": "unitType",
|
|
"type": "command",
|
|
"command": "extension.commandvariable.promptStringRemember",
|
|
"args": {
|
|
"key": "type",
|
|
"description": "Unit type (aircraft, helicopter, groundunit, navyunit)",
|
|
"default": "aircraft"
|
|
}
|
|
},
|
|
{
|
|
"id": "searchFolder",
|
|
"type": "command",
|
|
"command": "extension.commandvariable.promptStringRemember",
|
|
"args": {
|
|
"key": "folder",
|
|
"description": "DCS folder location",
|
|
"default": "C:\\Program Files\\Eagle Dynamics\\DCS World"
|
|
}
|
|
}
|
|
]
|
|
} |