small changes

This commit is contained in:
iLLiCiTiT 2021-06-16 19:24:27 +02:00
parent 2f7aef8d1c
commit ccd90bf770
3 changed files with 4 additions and 8 deletions

View file

@ -1 +0,0 @@

View file

@ -8,8 +8,6 @@ class InstanceData(collections.OrderedDict):
Question:
Make sence to have this ordered???
- not sure how to achieve that when data are loaded from workfile
Add creator metadata key on initialization?
Add plugin metadata key on initialization?
Shouldn't have each instance identifier?
- use current "id" value as "type" and use "id" for identifier
- current "id" value make sence only in few hosts
@ -90,9 +88,10 @@ class BaseCreator:
implementation
"""
instance = InstanceData(
self.family, subset_name, instance_data
)
# instance = InstanceData(
# self.family, subset_name, instance_data
# )
pass
def get_default_variants(self):
"""Default variant values for UI tooltips.

View file

@ -2,8 +2,6 @@ from openpype.api import (
Logger
)
import pyblish.api
log = Logger.get_logger(__name__)