├── .gitignore ├── Example.png ├── ISSUE_TEMPLATE.md ├── LICENSE.txt ├── README.md ├── __init__.py └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | __pycache__ -------------------------------------------------------------------------------- /Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlansCodeLog/blender-debugger-for-vscode/HEAD/Example.png -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlansCodeLog/blender-debugger-for-vscode/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlansCodeLog/blender-debugger-for-vscode/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlansCodeLog/blender-debugger-for-vscode/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlansCodeLog/blender-debugger-for-vscode/HEAD/__init__.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlansCodeLog/blender-debugger-for-vscode/HEAD/test.py --------------------------------------------------------------------------------