Skip to content

create_review

Creator plugin for creating workfiles.

CreateReview

Bases: HarmonyAutoCreator

Review auto-creator.

It requires ayon+settings://harmony/create/CreateReview to be enabled. This creator produces instance of review product type, artist does not need create any instance manually if they have a Top/Display node in the scene.

Source code in client/ayon_harmony/plugins/create/create_review.py
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
class CreateReview(HarmonyAutoCreator):
    """Review auto-creator.

    It requires `ayon+settings://harmony/create/CreateReview` to be enabled.
    This creator produces instance of `review` product type, artist does not
    need create any instance manually if they have a `Top/Display` node
    in the scene.
    """
    identifier = "io.ayon.creators.harmony.review"
    label = "Review"
    product_type = "review"
    product_base_type = "review"
    icon = "ei.video"

    default_variants = ["Main"]
    active_on_create = True

    # Placeholder node name for where we store the review data.
    # This does not create an actual Harmony node, but just uses this name
    # as key in the AYON Harmony scene data.
    _node_name = "__review__"