mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
- Break down the remaining Anti Air Layouts. Now each layout.miz only contains 1 layout - Added a python script which can fix the orientation of a layout - Fix layout orientation. Now all aa layouts are oriented to the north. - Add small change so that whole carrier group will be rotated correctly with the BRC closes #2215
67 lines
1.7 KiB
JSON
67 lines
1.7 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": "python",
|
|
"request": "launch",
|
|
"program": "qt_ui\\main.py",
|
|
"console": "integratedTerminal",
|
|
"env": {
|
|
"PYTHONPATH": ".;./pydcs"
|
|
},
|
|
"preLaunchTask": "Prepare Environment"
|
|
},
|
|
{
|
|
"name": "Python: Debug",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "qt_ui\\main.py",
|
|
"console": "integratedTerminal",
|
|
"env": {
|
|
"PYTHONPATH": ".;./pydcs",
|
|
"CORS_ALLOW_DEBUG_SERVER": "true"
|
|
},
|
|
"args": ["--dev"],
|
|
"preLaunchTask": "Prepare Environment"
|
|
},
|
|
{
|
|
"name": "Node: Development Server",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"cwd": "${workspaceRoot}\\client",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": [
|
|
"run", "start"
|
|
],
|
|
"env": {
|
|
"BROWSER": "none"
|
|
},
|
|
},
|
|
{
|
|
"name": "Python: Make Release",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "resources\\tools\\mkrelease.py",
|
|
"console": "integratedTerminal",
|
|
"env": {
|
|
"PYTHONPATH": ".;./pydcs"
|
|
},
|
|
"preLaunchTask": "Prepare Environment"
|
|
},
|
|
{
|
|
"name": "Fix Layout orientation",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "resources\\tools\\fix_layout_orientation.py",
|
|
"console": "integratedTerminal",
|
|
"env": {
|
|
"PYTHONPATH": ".;./pydcs"
|
|
},
|
|
"args": ["resources/layouts/anti_air/S-300_Site.miz"]
|
|
},
|
|
]
|
|
} |