magictk/.vscode/launch.json

29 lines
890 B
JSON
Raw Permalink Normal View History

2024-03-24 18:16:29 +08:00
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python 调试",
"type": "debugpy",
"request": "launch",
"program": "debug.py",
"console": "integratedTerminal"
},
{
"name": "重新生成资源包",
"type": "debugpy",
"request": "launch",
"program": "photo2/run.py",
"console": "integratedTerminal"
2024-04-26 09:06:43 +08:00
},
{
"name": "进行packer",
"type": "debugpy",
"request": "launch",
"program": "packer/run.py",
"console": "integratedTerminal"
2024-03-24 18:16:29 +08:00
}
]
2024-03-17 16:20:21 +08:00
}