Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions client/ayon_harmony/plugins/create/create_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ class CreateTemplate(plugin.HarmonyCreator):

identifier = "io.ayon.creators.harmony.template"
label = "Template"
product_type = "harmony.template"
product_base_type = "harmony.template"
product_type = "harmonyTemplate"
product_base_type = "harmonyTemplate"
icon = "cubes"

def product_impl(self, name, instance_data: dict, pre_create_data: dict):
Expand Down
2 changes: 1 addition & 1 deletion client/ayon_harmony/plugins/load/load_palette.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class LinkPaletteLoader(load.LoaderPlugin):
"""

label = "Link Palette"
product_types = {"palette", "harmony.palette"}
product_types = {"palette", "harmonyPalette"}
representations = {"plt"}
icon = "link"

Expand Down
2 changes: 1 addition & 1 deletion client/ayon_harmony/plugins/load/load_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class TemplateLoader(harmony.BackdropBaseLoader):
"""Load Harmony template as Backdrop container."""

product_types = {"harmony.template"}
product_types = {"harmonyTemplate"}
representations = {"tpl"}
label = "Load Template"
icon = "gift"
Expand Down
2 changes: 1 addition & 1 deletion client/ayon_harmony/plugins/publish/collect_instances.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class CollectInstances(pyblish.api.InstancePlugin):

product_type_mapping = {
"render": [],
"harmony.template": [],
"harmonyTemplate": [],
"palette": ["palette"]
}
pair_media = True
Expand Down
2 changes: 1 addition & 1 deletion client/ayon_harmony/plugins/publish/collect_palettes.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def process(self, context):

folder_path = context.data["folderPath"]

product_type = "harmony.palette"
product_type = "harmonyPalette"
for name, palette_id in palettes.items():
instance = context.create_instance(name)
instance.data.update({
Expand Down
2 changes: 1 addition & 1 deletion client/ayon_harmony/plugins/publish/extract_palette.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ExtractPalette(publish.Extractor):

label = "Extract Palette"
hosts = ["harmony"]
families = ["harmony.palette"]
families = ["harmonyPalette"]

def process(self, instance):
"""Plugin entry point."""
Expand Down
2 changes: 1 addition & 1 deletion client/ayon_harmony/plugins/publish/extract_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class ExtractTemplate(publish.Extractor):

label = "Extract Template"
hosts = ["harmony"]
families = ["harmony.template"]
families = ["harmonyTemplate"]

def process(self, instance):
"""Plugin entry point."""
Expand Down