mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 17:04:54 +01:00
settings.maya Rename Alembic settings
This commit attempts to better name and label the Alembic settings, used in the creation and extraction of Alembic pointcaches.
This commit is contained in:
parent
8c999fbea9
commit
8e284aaa4d
3 changed files with 24 additions and 24 deletions
|
|
@ -559,12 +559,12 @@
|
|||
"CreateAnimation": {
|
||||
"default_variants": [],
|
||||
"step": 1.0,
|
||||
"abc_boolean_args": [
|
||||
"abc_export_flags": [
|
||||
"writeColorSets",
|
||||
"worldSpace",
|
||||
"writeNormals"
|
||||
],
|
||||
"abc_args_overrides": [
|
||||
"abc_export_overrides": [
|
||||
"step",
|
||||
"includeParentHierarchy",
|
||||
"writeNormals",
|
||||
|
|
@ -598,13 +598,13 @@
|
|||
"Main"
|
||||
],
|
||||
"step": 1.0,
|
||||
"abc_boolean_args": [
|
||||
"abc_export_flags": [
|
||||
"selection",
|
||||
"uvWrite",
|
||||
"writeCreases",
|
||||
"writeVisibility"
|
||||
],
|
||||
"abc_args_overrides": [
|
||||
"abc_export_overrides": [
|
||||
"attr",
|
||||
"attrPrefix",
|
||||
"step",
|
||||
|
|
|
|||
|
|
@ -160,9 +160,9 @@
|
|||
},
|
||||
{
|
||||
"type": "enum",
|
||||
"key": "abc_boolean_args",
|
||||
"key": "abc_export_flags",
|
||||
"multiselection": true,
|
||||
"label": "Alembic Boolean Args",
|
||||
"label": "Export Flags (.abc)",
|
||||
"enum_items": [
|
||||
{"autoSubd": "autoSubd"},
|
||||
{"dontSkipUnwrittenFrames": "dontSkipUnwrittenFrames"},
|
||||
|
|
@ -186,9 +186,9 @@
|
|||
},
|
||||
{
|
||||
"type": "enum",
|
||||
"key": "abc_args_overrides",
|
||||
"key": "abc_export_overrides",
|
||||
"multiselection": true,
|
||||
"label": "Alembic Arguments Overrides:\nChoose which arguments\nthe user can modify.",
|
||||
"label": "Export Overrides (.abc)",
|
||||
"enum_items": [
|
||||
{"attr": "attr"},
|
||||
{"attrPrefix": "attrPrefix"},
|
||||
|
|
@ -319,9 +319,9 @@
|
|||
},
|
||||
{
|
||||
"type": "enum",
|
||||
"key": "abc_boolean_args",
|
||||
"key": "abc_export_flags",
|
||||
"multiselection": true,
|
||||
"label": "Alembic Boolean Args",
|
||||
"label": "Export Flags (.abc)",
|
||||
"enum_items": [
|
||||
{"autoSubd": "autoSubd"},
|
||||
{"dontSkipUnwrittenFrames": "dontSkipUnwrittenFrames"},
|
||||
|
|
@ -345,9 +345,9 @@
|
|||
},
|
||||
{
|
||||
"type": "enum",
|
||||
"key": "abc_args_overrides",
|
||||
"key": "abc_export_overrides",
|
||||
"multiselection": true,
|
||||
"label": "Alembic Arguments Overrides:\nChoose which arguments\nthe user can modify.",
|
||||
"label": "Export Overrides (.abc)",
|
||||
"enum_items": [
|
||||
{"attr": "attr"},
|
||||
{"attrPrefix": "attrPrefix"},
|
||||
|
|
|
|||
|
|
@ -150,15 +150,15 @@ class CreateAnimationModel(BaseSettingsModel):
|
|||
enum_resolver=alembic_data_formats,
|
||||
title="Data Format",
|
||||
)
|
||||
abc_boolean_args: list[str] = SettingsField(
|
||||
abc_export_flags: list[str] = SettingsField(
|
||||
default_factory=list,
|
||||
enum_resolver=alembic_booleans_enum,
|
||||
title="Alembic Boolean Args",
|
||||
title="Export Flags (.abc)",
|
||||
)
|
||||
abc_args_overrides: list[str] = SettingsField(
|
||||
abc_export_overrides: list[str] = SettingsField(
|
||||
default_factory=list,
|
||||
enum_resolver=alembic_arguments_enum,
|
||||
title="Alembic Arguments Overrides",
|
||||
title="Export Overrides (.abc)",
|
||||
)
|
||||
|
||||
|
||||
|
|
@ -187,15 +187,15 @@ class CreatePointCacheModel(BaseSettingsModel):
|
|||
enum_resolver=alembic_data_formats,
|
||||
title="Data Format",
|
||||
)
|
||||
abc_boolean_args: list[str] = SettingsField(
|
||||
abc_export_flags: list[str] = SettingsField(
|
||||
default_factory=list,
|
||||
enum_resolver=alembic_booleans_enum,
|
||||
title="Alembic Boolean Args",
|
||||
title="Export Flags (.abc)",
|
||||
)
|
||||
abc_args_overrides: list[str] = SettingsField(
|
||||
abc_export_overrides: list[str] = SettingsField(
|
||||
default_factory=list,
|
||||
enum_resolver=alembic_arguments_enum,
|
||||
title="Alembic Arguments Overrides",
|
||||
title="Export Overrides (.abc)",
|
||||
)
|
||||
|
||||
|
||||
|
|
@ -399,13 +399,13 @@ DEFAULT_CREATORS_SETTINGS = {
|
|||
"Main"
|
||||
],
|
||||
"step": 1.0,
|
||||
"abc_boolean_args": [
|
||||
"abc_export_flags": [
|
||||
"writeColorSets",
|
||||
"visibleOnly",
|
||||
"worldSpace",
|
||||
"writeNormals"
|
||||
],
|
||||
"abc_args_overrides": [
|
||||
"abc_export_overrides": [
|
||||
"step",
|
||||
"includeParentHierarchy",
|
||||
"writeNormals",
|
||||
|
|
@ -439,13 +439,13 @@ DEFAULT_CREATORS_SETTINGS = {
|
|||
"Main"
|
||||
],
|
||||
"step": 1.0,
|
||||
"abc_boolean_args": [
|
||||
"abc_export_flags": [
|
||||
"selection",
|
||||
"uvWrite",
|
||||
"writeCreases",
|
||||
"writeVisibility"
|
||||
],
|
||||
"abc_args_overrides": [
|
||||
"abc_export_overrides": [
|
||||
"attr",
|
||||
"attrPrefix",
|
||||
"step",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue