mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
make sure shader is always true if it is not in the instance.data
This commit is contained in:
parent
819664cf05
commit
4265c92cea
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ class ExtractMayaSceneRaw(plugin.MayaExtractorPlugin, AYONPyblishPluginMixin):
|
|||
"preserve_references"
|
||||
],
|
||||
constructionHistory=True,
|
||||
shader=True if instance.data.get("shader", False) else False,
|
||||
shader=True if instance.data.get("shader", True) else False,
|
||||
constraints=True,
|
||||
expressions=True)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue