mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
add farm instance to the render creators
This commit is contained in:
parent
3cf5667787
commit
8e3cc04cdb
5 changed files with 10 additions and 0 deletions
|
|
@ -23,6 +23,8 @@ class CreateArnoldRop(plugin.HoudiniCreator):
|
|||
|
||||
# Add chunk size attribute
|
||||
instance_data["chunkSize"] = 1
|
||||
# Submit for job publishing
|
||||
instance_data["farm"] = True
|
||||
|
||||
instance = super(CreateArnoldRop, self).create(
|
||||
subset_name,
|
||||
|
|
|
|||
|
|
@ -20,6 +20,8 @@ class CreateKarmaROP(plugin.HoudiniCreator):
|
|||
instance_data.update({"node_type": "karma"})
|
||||
# Add chunk size attribute
|
||||
instance_data["chunkSize"] = 10
|
||||
# Submit for job publishing
|
||||
instance_data["farm"] = True
|
||||
|
||||
instance = super(CreateKarmaROP, self).create(
|
||||
subset_name,
|
||||
|
|
|
|||
|
|
@ -20,6 +20,8 @@ class CreateMantraROP(plugin.HoudiniCreator):
|
|||
instance_data.update({"node_type": "ifd"})
|
||||
# Add chunk size attribute
|
||||
instance_data["chunkSize"] = 10
|
||||
# Submit for job publishing
|
||||
instance_data["farm"] = True
|
||||
|
||||
instance = super(CreateMantraROP, self).create(
|
||||
subset_name,
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@ class CreateRedshiftROP(plugin.HoudiniCreator):
|
|||
instance_data.update({"node_type": "Redshift_ROP"})
|
||||
# Add chunk size attribute
|
||||
instance_data["chunkSize"] = 10
|
||||
# Submit for job publishing
|
||||
instance_data["farm"] = True
|
||||
|
||||
# Clear the family prefix from the subset
|
||||
subset = subset_name
|
||||
|
|
|
|||
|
|
@ -24,6 +24,8 @@ class CreateVrayROP(plugin.HoudiniCreator):
|
|||
instance_data.update({"node_type": "vray_renderer"})
|
||||
# Add chunk size attribute
|
||||
instance_data["chunkSize"] = 10
|
||||
# Submit for job publishing
|
||||
instance_data["farm"] = True
|
||||
|
||||
instance = super(CreateVrayROP, self).create(
|
||||
subset_name,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue