Skip to content

Commit fc9d82e

Browse files
authored
Merge pull request #44 from ynput/enhancement/41-product-base-types-add-support-to-creators
2 parents 57e936a + a992a94 commit fc9d82e

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

client/ayon_cinema4d/plugins/create/create_camera.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ class CreateCamera(plugin.Cinema4DCreator):
1212
label = "Camera"
1313
description = __doc__
1414
product_type = "camera"
15+
product_base_type = "camera"
1516
icon = "video-camera"
1617

1718
def get_instance_attr_defs(self):

client/ayon_cinema4d/plugins/create/create_pointcache.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class CreatePointcache(plugin.Cinema4DCreator):
1111
label = "Pointcache"
1212
description = __doc__
1313
product_type = "pointcache"
14+
product_base_type = "pointcache"
1415
icon = "cubes"
1516

1617
def get_instance_attr_defs(self):

client/ayon_cinema4d/plugins/create/create_redshift_proxy.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ class CreateRedshiftProxy(plugin.Cinema4DCreator):
1010
identifier = "io.ayon.creators.cinema4d.redshiftproxy"
1111
label = "Redshift Proxy"
1212
product_type = "redshiftproxy"
13+
product_base_type = "redshiftproxy"
1314
description = __doc__
1415
icon = "cubes"
1516

client/ayon_cinema4d/plugins/create/create_render.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class RenderlayerCreator(plugin.Cinema4DCreator):
2727
description = "Create a render product per Cinema4D Take."
2828
detailed_description = inspect.cleandoc(__doc__)
2929
product_type = "render"
30+
product_base_type = "render"
3031
icon = "eye"
3132

3233
_required_keys = ("creator_identifier", "productName")

client/ayon_cinema4d/plugins/create/create_review.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class CreateReview(plugin.Cinema4DCreator):
1111
label = "Review"
1212
description = __doc__
1313
product_type = "review"
14+
product_base_type = "review"
1415
icon = "video-camera"
1516

1617
def get_instance_attr_defs(self):

client/ayon_cinema4d/plugins/create/create_workfile.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ class CreateWorkfile(AutoCreator):
1414
identifier = "io.ayon.creators.cinema4d.workfile"
1515
label = "Workfile"
1616
product_type = "workfile"
17+
product_base_type = "workfile"
1718
icon = "fa5.file"
1819
default_variant = "Main"
1920

0 commit comments

Comments
 (0)