From c07dc2da863a097a6395b40a11d754ba0de055fa Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Mon, 19 Jul 2021 14:00:29 +0200 Subject: [PATCH] added id attribute to CreateInstance --- openpype/pipeline/create/creator_plugins.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openpype/pipeline/create/creator_plugins.py b/openpype/pipeline/create/creator_plugins.py index cf21b188cb..3604d9cd12 100644 --- a/openpype/pipeline/create/creator_plugins.py +++ b/openpype/pipeline/create/creator_plugins.py @@ -285,6 +285,10 @@ class CreatedInstance: if not self._data.get("uuid"): self._data["uuid"] = str(uuid4()) + @property + def id(self): + return self._data["uuid"] + @property def data(self): return self._data