From dae6257f881ca5044cdc6d708b1bb2eb6dede547 Mon Sep 17 00:00:00 2001 From: Ondrej Samohel Date: Wed, 21 Jun 2023 16:48:11 +0200 Subject: [PATCH] :bug: handle legacy pointcache instance conversion --- openpype/hosts/houdini/plugins/create/convert_legacy.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openpype/hosts/houdini/plugins/create/convert_legacy.py b/openpype/hosts/houdini/plugins/create/convert_legacy.py index e549c9dc26..86103e3369 100644 --- a/openpype/hosts/houdini/plugins/create/convert_legacy.py +++ b/openpype/hosts/houdini/plugins/create/convert_legacy.py @@ -69,6 +69,8 @@ class HoudiniLegacyConvertor(SubsetConvertorPlugin): "creator_identifier": self.family_to_id[family], "instance_node": subset.path() } + if family == "pointcache": + data["families"] = ["abc"] self.log.info("Converting {} to {}".format( subset.path(), self.family_to_id[family])) imprint(subset, data)