Skip to content

Commit

Permalink
Merge pull request #4006 from ynput/feature/OP-3845_nuke-convert-to-n…
Browse files Browse the repository at this point in the history
…ew-publisher
  • Loading branch information
jakubjezek001 committed Jan 11, 2023
2 parents 7418da2 + 3c1d340 commit 38dffbc
Show file tree
Hide file tree
Showing 57 changed files with 2,535 additions and 1,789 deletions.
47 changes: 38 additions & 9 deletions openpype/hosts/nuke/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,46 @@
current_file,
work_root,
)

from .command import (
viewer_update_and_undo_stop
)

from .plugin import OpenPypeCreator
from .plugin import (
NukeCreator,
NukeWriteCreator,
NukeCreatorError,
OpenPypeCreator,
get_instance_group_node_childs,
get_colorspace_from_node
)
from .pipeline import (
install,
uninstall,
NukeHost,

ls,

list_instances,
remove_instance,
select_instance,

containerise,
parse_container,
update_container,

get_workfile_build_placeholder_plugins,
)
from .lib import (
INSTANCE_DATA_KNOB,
ROOT_DATA_KNOB,
maintained_selection,
reset_selection,
select_nodes,
get_view_process_node,
duplicate_node,
convert_knob_value_to_correct_type
convert_knob_value_to_correct_type,
get_node_data,
set_node_data,
update_node_data,
create_write_node
)

from .utils import (
colorspace_exists_on_node,
get_colorspace_list
Expand All @@ -47,23 +61,38 @@

"viewer_update_and_undo_stop",

"NukeCreator",
"NukeWriteCreator",
"NukeCreatorError",
"OpenPypeCreator",
"install",
"uninstall",
"NukeHost",
"get_instance_group_node_childs",
"get_colorspace_from_node",

"ls",

"list_instances",
"remove_instance",
"select_instance",

"containerise",
"parse_container",
"update_container",

"get_workfile_build_placeholder_plugins",

"INSTANCE_DATA_KNOB",
"ROOT_DATA_KNOB",
"maintained_selection",
"reset_selection",
"select_nodes",
"get_view_process_node",
"duplicate_node",
"convert_knob_value_to_correct_type",
"get_node_data",
"set_node_data",
"update_node_data",
"create_write_node",

"colorspace_exists_on_node",
"get_colorspace_list"
Expand Down
Loading

0 comments on commit 38dffbc

Please sign in to comment.