mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
Support auto null node in LOPs
This commit is contained in:
parent
96b1b3e19d
commit
3cbeda17a8
1 changed files with 3 additions and 1 deletions
|
|
@ -20,6 +20,7 @@ from openpype.resources import get_openpype_icon_filepath
|
|||
import hou
|
||||
import stateutils
|
||||
import soptoolutils
|
||||
import loptoolutils
|
||||
import cop2toolutils
|
||||
|
||||
|
||||
|
|
@ -88,7 +89,8 @@ def create_interactive(creator_identifier, **kwargs):
|
|||
|
||||
tool_fn = {
|
||||
hou.sopNodeTypeCategory(): soptoolutils.genericTool,
|
||||
hou.cop2NodeTypeCategory(): cop2toolutils.genericTool
|
||||
hou.cop2NodeTypeCategory(): cop2toolutils.genericTool,
|
||||
hou.lopNodeTypeCategory(): loptoolutils.genericTool
|
||||
}.get(pwd.childTypeCategory())
|
||||
|
||||
if tool_fn is not None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue