mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
nuke load mov outputs from settings
This commit is contained in:
parent
650d630813
commit
68002362e4
1 changed files with 3 additions and 2 deletions
|
|
@ -4,7 +4,7 @@ import contextlib
|
|||
|
||||
from avalon import api, io
|
||||
from pype.hosts.nuke import presets
|
||||
from pype.api import config
|
||||
from pype.api import project_settings
|
||||
|
||||
|
||||
@contextlib.contextmanager
|
||||
|
|
@ -73,7 +73,8 @@ def add_review_presets_config():
|
|||
"families": list(),
|
||||
"representations": list()
|
||||
}
|
||||
review_presets = config.get_presets()["plugins"]["global"]["publish"].get(
|
||||
settings = project_settings(io.Session["AVALON_PROJECT"])
|
||||
review_presets = settings["global"]["publish"].get(
|
||||
"ExtractReview", {})
|
||||
|
||||
outputs = review_presets.get("outputs", {})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue