Fusion: Tweak integration implementation#2
Closed
BigRoy wants to merge 5 commits intocolorbleed_before_fusionfrom
Closed
Fusion: Tweak integration implementation#2BigRoy wants to merge 5 commits intocolorbleed_before_fusionfrom
BigRoy wants to merge 5 commits intocolorbleed_before_fusionfrom
Conversation
- OpenPype menu is now available in top-level menu - No scripts are copied to the local Fusion folders, instead Fusion Master Prefs are used - Thus also removes the need for FUSION_UTILITY_SCRIPTS_DIR in settings. - Fixed issue with DLL conflict for Qt library with Fusion's own dlls in starting OpenPype menu.
…s currently thinks its operating
BigRoy
commented
Feb 6, 2022
| families = ["animation", | ||
| "camera", | ||
| "imagesequence", | ||
| "render" |
BigRoy
commented
Feb 6, 2022
| families = ["animation", | ||
| "camera", | ||
| "imagesequence", | ||
| "render" |
BigRoy
commented
Feb 6, 2022
| f'{os.environ["FUSION16_PYTHON36_HOME"]}') | ||
|
|
||
| import subprocess | ||
| subprocess.Popen(["pip", "install", "PySide2"]) |
Owner
Author
There was a problem hiding this comment.
Warning: This can install into e.g. OpenPype .venv due to not explicitly enough installing into the correct python.
A fix was implemented here: 3d5fd09
Owner
Author
|
Closing this in favor of ynput#2769 which contains this and much more. |
BigRoy
pushed a commit
that referenced
this pull request
Mar 7, 2023
Fusion: New Publisher tweaks to PR
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Brief description
Draft integration tweaks for Fusion integration.
renderfamily with the loadersFUSION16_PYTHON36_HOMEcan contain a "list of paths" to allow using 'local' Python if it exists, or maybe fall back to e.g. a Python on a network share.Example setting for environment for Fusion in Admin Settings:
{ "FUSION16_PYTHON36_HOME": { "windows": "{LOCALAPPDATA}/Programs/Python/Python36;{NETWORKSHARE}/bin/windows/python36", "darwin": "~/Library/Python/3.6/bin", "linux": "/opt/Python/3.6/bin" }, "PYTHONPATH": [ "{FUSION16_PYTHON36_HOME}/Lib/site-packages", "{VIRTUAL_ENV}/Lib/site-packages", "{PYTHONPATH}" ], "PATH": [ "{FUSION16_PYTHON36_HOME}", "{FUSION16_PYTHON36_HOME}/Scripts", "{PATH}" ], "OPENPYPE_LOG_NO_COLORS": "Yes", "REACTOR": "path/to/Reactor/" }