-
Notifications
You must be signed in to change notification settings - Fork 1
Implementation of publishing vdb product #49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from 7 commits
694c178
daaf39e
b2248ff
f9f0f7f
1db24c2
11539f9
ef7b299
2fa72be
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,3 +9,14 @@ class CreateTyFlow(plugin.MaxCacheCreator): | |
| label = "TyFlow" | ||
| product_type = "tyflow" | ||
| icon = "gear" | ||
|
|
||
|
|
||
| class CreateTyVDB(plugin.MaxTyflowVDBCacheCreator): | ||
| """Creator plugin for TyFlow VDB.""" | ||
| identifier = "io.ayon.creators.max.vdbcache" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change means all existing instances won't be collected. |
||
| label = "VDB (TyFlow)" | ||
| product_type = "vdbcache" | ||
| icon = "gear" | ||
|
|
||
| def get_publish_families(self): | ||
| return ["vdbcache", "tyflow_vdb"] | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't that |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why
"OP Data"?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's the name of general container attributes for other product type. It would be renamed after the related PR for this issue as the backward compatibility needs to be implemented for this.