This commit is contained in:
Jakub Jezek 2023-11-30 14:39:26 +01:00
parent 4c9adaf2e8
commit 8449f0468f
No known key found for this signature in database
GPG key ID: 730D7C02726179A7

View file

@ -32,21 +32,21 @@ DEFAULT_SCRIPTSMENU_SETTINGS = {
"type": "action",
"sourcetype": "python",
"title": "Ayon Nuke Docs",
"command": "import webbrowser;webbrowser.open(url='https://ayon.ynput.io/docs/addon_nuke_artist')",
"command": "import webbrowser;webbrowser.open(url='https://ayon.ynput.io/docs/addon_nuke_artist')", # noqa
"tooltip": "Open the Ayon Nuke user doc page"
},
{
"type": "action",
"sourcetype": "python",
"title": "Set Frame Start (Read Node)",
"command": "from openpype.hosts.nuke.startup.frame_setting_for_read_nodes import main;main();",
"command": "from openpype.hosts.nuke.startup.frame_setting_for_read_nodes import main;main();", # noqa
"tooltip": "Set frame start for read node(s)"
},
{
"type": "action",
"sourcetype": "python",
"title": "Set non publish output for Write Node",
"command": "from openpype.hosts.nuke.startup.custom_write_node import main;main();",
"command": "from openpype.hosts.nuke.startup.custom_write_node import main;main();", # noqa
"tooltip": "Open the OpenPype Nuke user doc page"
}
]