mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 21:32:15 +01:00
added renderglobals controller
This commit is contained in:
parent
6fc1ec413b
commit
8d3935b09c
1 changed files with 6 additions and 1 deletions
|
|
@ -14,6 +14,11 @@ class CreateRenderGlobals(avalon.maya.Creator):
|
|||
|
||||
# We won't be publishing this one
|
||||
self.data["id"] = "avalon.renderglobals"
|
||||
|
||||
# We don't need subset or asset attributes
|
||||
self.data.pop("subset", None)
|
||||
self.data.pop("asset", None)
|
||||
|
||||
data = OrderedDict(**self.data)
|
||||
|
||||
data["suspendPublishJob"] = False
|
||||
|
|
@ -35,4 +40,4 @@ class CreateRenderGlobals(avalon.maya.Creator):
|
|||
if exists:
|
||||
return cmds.warning("%s already exists." % exists[0])
|
||||
|
||||
super(CreateRenderGlobals, self).process()
|
||||
super(CreateRenderGlobals, self).process()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue