-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkspace.code-workspace
More file actions
37 lines (37 loc) · 945 Bytes
/
workspace.code-workspace
File metadata and controls
37 lines (37 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"folders": [
{
"path": "."
}
],
"launch": {
"configurations": [
{
"name": "Python: Remote Attach",
"type": "python",
"request": "attach",
"justMyCode": false,
"connect": {
"host": "localhost",
"port": 5678
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "${workspaceFolder}"
}
]
}
]
},
"settings": {
"python.pythonPath": "C:\\Program Files\\Autodesk\\3ds Max 2025\\Python\\python.exe",
"python.autoComplete.extraPaths": [
"C:\\Program Files\\Autodesk\\3ds Max 2025\\Python\\Lib\\site-packages"
],
"python.analysis.extraPaths": [
"C:\\Program Files\\Autodesk\\3ds Max 2025\\Python\\Lib\\site-packages"
],
"python.defaultInterpreterPath": "\"C:\\Program Files\\Autodesk\\3ds Max 2025\\Python\\python.exe\""
}
}