mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
Introduces cargo weight and draw argument properties to units across backend, frontend, and Python API. Adds related commands, data extraction, and registration logic, enabling setting and reading of cargo weight and custom draw arguments for units. Includes new API examples and updates to interfaces, data types, and Lua backend for full feature integration.
56 lines
1.8 KiB
JSON
56 lines
1.8 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": "Python: Main",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/main.py",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false,
|
|
},
|
|
{
|
|
"name": "Example voice control",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "example_voice_control.py",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false,
|
|
},
|
|
{
|
|
"name": "Example disembarked infantry",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "example_disembarked_infantry.py",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false,
|
|
},
|
|
{
|
|
"name": "Example set cargo weight",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "example_set_cargo_weight.py",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false,
|
|
},
|
|
{
|
|
"name": "Example draw argument",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "example_draw_argument.py",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false,
|
|
},
|
|
{
|
|
"name": "Example precise movement",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "example_precise_movement.py",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false,
|
|
}
|
|
]
|
|
} |