We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nodes settings in color management section expects the admins to know the class of the creator plugins. ayon+settings://nuke/imageio/nodes
ayon+settings://nuke/imageio/nodes
IMO, this is hard.
Reuse the names/labels that admins/nuke artists are familiar with.
where the setting shows a drop down menu and select the creators
I've replaced these lines with
def nuke_creator_plugins_enum(): return [ {"value": "CreateWritePrerender", "label": "Prerender (write)"}, {"value": "CreateCamera", "label": "Camera (3d)"}, {"value": "CreateGizmo", "label": "Gizmo (group)"}, {"value": "CreateWriteImage", "label": "Image (write)"}, {"value": "CreateModel", "label": "Model (3d)"}, {"value": "CreateBackdrop", "label": "Nukenodes (backdrop)"}, {"value": "CreateWriteRender", "label": "Render (write)"}, {"value": "CreateSource", "label": "Source (read)"}, ] class NodesModel(BaseSettingsModel): _layout = "expanded" plugins: list[str] = SettingsField( default_factory=list, title="Used in plugins", enum_resolver=nuke_creator_plugins_enum ) nuke_node_class: str = SettingsField( title="Nuke Node Class", )
No response
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Is there an existing issue for this?
Please describe the feature you have in mind and explain what the current shortcomings are?
Nodes settings in color management section expects the admins to know the class of the creator plugins.
ayon+settings://nuke/imageio/nodes
IMO, this is hard.
Suggested implementation?
Reuse the names/labels that admins/nuke artists are familiar with.
where the setting shows a drop down menu and select the creators
To achieve the result in my screenshot
I've replaced these lines with
Describe alternatives you've considered:
No response
The text was updated successfully, but these errors were encountered: