forked from EpicGamesExt/BlenderTools
-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved addons and added VSCode setting and app launcher scripts
- Loading branch information
1 parent
2a1df4d
commit 0b375cf
Showing
127 changed files
with
614 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# GITHUB_USERNAME= | ||
# GITHUB_TOKEN= | ||
# BLENDER_EXE_PATH= | ||
# UNREAL_EXE_PATH= | ||
# UNREAL_PROJECT_PATH= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "Run Active Python File", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "${file}", | ||
"console": "integratedTerminal", | ||
"envFile": "${workspaceFolder}/.env", | ||
"justMyCode": false | ||
}, | ||
{ | ||
"name": "Python Debugger: Attach Blender", | ||
"type": "debugpy", | ||
"request": "attach", | ||
"connect": { | ||
"host": "localhost", | ||
"port": 5678 | ||
} | ||
}, | ||
{ | ||
"name": "Python Debugger: Attach Unreal", | ||
"type": "debugpy", | ||
"request": "attach", | ||
"connect": { | ||
"host": "localhost", | ||
"port": 5679 | ||
} | ||
}, | ||
{ | ||
"name": "Run All Tests", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "${workspaceFolder}/tests/run_tests.py", | ||
"console": "integratedTerminal", | ||
"envFile": "${workspaceFolder}/.env", | ||
"cwd": "${workspaceFolder}/tests", | ||
"justMyCode": false, | ||
"env": { | ||
"DOCKER_ENVIRONMENT": "${input:docker-environment}" | ||
} | ||
}, | ||
{ | ||
"name": "Run Specific Tests", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "${workspaceFolder}/tests/run_tests.py", | ||
"console": "integratedTerminal", | ||
"envFile": "${workspaceFolder}/.env", | ||
"cwd": "${workspaceFolder}/tests", | ||
"justMyCode": false, | ||
"env": { | ||
"EXCLUSIVE_TEST_FILES": "${input:test-file}", | ||
"EXCLUSIVE_TESTS": "${input:test-name}", | ||
"DOCKER_ENVIRONMENT": "${input:docker-environment}" | ||
} | ||
}, | ||
], | ||
"inputs": [ | ||
{ | ||
"id": "test-file", | ||
"type": "pickString", | ||
"default": "test_send2ue_core.py", | ||
"options": [ | ||
"test_send2ue_core.py", | ||
"test_send2ue_cubes.py", | ||
"test_send2ue_extension_affixes.py", | ||
"test_send2ue_extension_combine_assets.py", | ||
"test_send2ue_extension_create_post_import_assets_for_groom.py", | ||
"test_send2ue_extension_example.py", | ||
"test_send2ue_extension_instance_assets.py", | ||
"test_send2ue_extension_use_collections_as_folders.py", | ||
"test_send2ue_extension_use_immediate_parent_name.py", | ||
"test_send2ue_mannequins.py", | ||
"test_ue2rigify_core.py", | ||
"test_ue2rigify_mannequins.py" | ||
], | ||
"description": "Which test file to run" | ||
}, | ||
{ | ||
"id": "docker-environment", | ||
"type": "pickString", | ||
"default": "", | ||
"options": [ | ||
"no", | ||
"yes" | ||
], | ||
"description": "Run in docker environment?" | ||
}, | ||
{ | ||
"id": "test-name", | ||
"type": "promptString", | ||
"description": "The name of the specific test to run" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
PYTHONPATH=';./.venv/Lib/site-packages' | ||
PYTHONUNBUFFERED=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
{ | ||
"files.eol": "\n", | ||
"python.pythonPath": "${workspaceFolder}/.venv/Lib/site-packages", | ||
"python.terminal.activateEnvironment": true, | ||
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/Scripts/python.exe", | ||
"python.envFile": "${workspaceFolder}/.vscode/python.env", | ||
"python.analysis.typeCheckingMode": "basic", | ||
"python.testing.unittestEnabled": false, | ||
"python.testing.pytestEnabled": true, | ||
"python.languageServer": "Pylance", | ||
"editor.tabCompletion": "on", | ||
// "python.analysis.disabled": ["unresolved-import"], | ||
"python.autoComplete.extraPaths": [ | ||
"${workspaceFolder}/admin/packages" | ||
], | ||
"python.analysis.extraPaths": [ | ||
"${workspaceFolder}/admin/packages" | ||
], | ||
"cSpell.ignorePaths": [ | ||
"${workspaceFolder}/.venv", | ||
"${workspaceFolder}/.linux-venv", | ||
"${workspaceFolder}/.py3.10-venv", | ||
"${workspaceFolder}/.unreal-venv", | ||
"${workspaceFolder}/build", | ||
"${workspaceFolder}/scratches", | ||
"${workspaceFolder}/reports" | ||
], | ||
"cSpell.words": [ | ||
"autoexec", | ||
"compileshaders", | ||
"debugpy", | ||
"dotenv", | ||
"epicgames", | ||
"everytime", | ||
"eyeshell", | ||
"fcurve", | ||
"fcurves", | ||
"fontawesome", | ||
"forcelogflush", | ||
"idname", | ||
"inlinehilite", | ||
"kwargs", | ||
"levelno", | ||
"linenums", | ||
"LODS", | ||
"mathutils", | ||
"mikepenz", | ||
"Mkdocs", | ||
"mklink", | ||
"noloadstartuppackages", | ||
"nopause", | ||
"nosplash", | ||
"nullrhi", | ||
"nytimes", | ||
"outliner", | ||
"POLYHAMMER", | ||
"pygments", | ||
"Pylance", | ||
"pymdownx", | ||
"pytest", | ||
"PYTHONUNBUFFERED", | ||
"quickstart", | ||
"retarget", | ||
"retargeting", | ||
"Rigify", | ||
"runas", | ||
"skincache", | ||
"staticmethod", | ||
"superfences", | ||
"teleporting", | ||
"termynal", | ||
"TOPBAR", | ||
"Unregisters", | ||
"uproject", | ||
"venv" | ||
], | ||
"editor.rulers": [ | ||
80, | ||
120 | ||
], | ||
"jupyter.notebookFileRoot": "${workspaceFolder}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "launch blender", | ||
"command": "python ${workspaceFolder}/scripts/launch.py blender ${input:blender-version} ${input:blender-debug}", | ||
"type": "shell", | ||
"group": { | ||
"kind": "build" | ||
}, | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "shared", | ||
"focus": true | ||
} | ||
}, | ||
{ | ||
"label": "launch unreal", | ||
"command": "python ${workspaceFolder}/scripts/launch.py unreal ${input:unreal-version} ${input:unreal-debug}", | ||
"type": "shell", | ||
"group": { | ||
"kind": "build" | ||
}, | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "shared", | ||
"focus": true | ||
} | ||
}, | ||
{ | ||
"label": "Serve Docs", | ||
"command": "mkdocs serve", | ||
"type": "shell", | ||
"group": { | ||
"kind": "build" | ||
}, | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "shared", | ||
"focus": true | ||
} | ||
} | ||
], | ||
"inputs": [ | ||
{ | ||
"id": "blender-version", | ||
"type": "pickString", | ||
"default": "4.1", | ||
"options": [ | ||
"3.6", | ||
"4.0", | ||
"4.1", | ||
"4.2", | ||
], | ||
"description": "What blender version to launch" | ||
}, | ||
{ | ||
"id": "blender-debug", | ||
"type": "pickString", | ||
"default": "no", | ||
"options": [ | ||
"no", | ||
"yes" | ||
], | ||
"description": "Should use debugger?" | ||
}, | ||
{ | ||
"id": "unreal-version", | ||
"type": "pickString", | ||
"default": "5.4", | ||
"options": [ | ||
"5.3", | ||
"5.4" | ||
], | ||
"description": "What unreal version to launch" | ||
}, | ||
{ | ||
"id": "unreal-debug", | ||
"type": "pickString", | ||
"default": "no", | ||
"options": [ | ||
"no", | ||
"yes" | ||
], | ||
"description": "Should use debugger?" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.