Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
revert ayon settings
Browse files Browse the repository at this point in the history
  • Loading branch information
tokejepsen committed Feb 21, 2024
1 parent 05dd980 commit c123e83
Showing 1 changed file with 3 additions and 32 deletions.
35 changes: 3 additions & 32 deletions server_addon/maya/server/settings/creators.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,6 @@ class CreateAnimationModel(BaseSettingsModel):
default_factory=list,
title="Default Products"
)
priority: int = SettingsField(
title="Farm Job Priority")
pre_roll_start_frame: int = SettingsField(title="Pre Roll Start Frame")
refresh: bool = SettingsField(
title="Refresh")
step: int = SettingsField(title="Step")
farm: bool = SettingsField(
title="Submit to the Farm")
attr: str = SettingsField(title="Attributes")
attr_prefix: str = SettingsField(title="Attributes Prefix")


class CreatePointCacheModel(BaseSettingsModel):
Expand All @@ -91,16 +81,6 @@ class CreatePointCacheModel(BaseSettingsModel):
default_factory=list,
title="Default Products"
)
priority: int = SettingsField(
title="Farm Job Priority")
pre_roll_start_frame: int = SettingsField(title="Pre Roll Start Frame")
refresh: bool = SettingsField(
title="Refresh")
step: int = SettingsField(title="Step")
farm: bool = SettingsField(
title="Submit to the Farm")
attr: str = SettingsField(title="Attributes")
attr_prefix: str = SettingsField(title="Attributes Prefix")


class CreateProxyAlembicModel(BaseSettingsModel):
Expand Down Expand Up @@ -298,15 +278,11 @@ class CreatorsModel(BaseSettingsModel):
"CreateAnimation": {
"write_color_sets": False,
"write_face_sets": False,
"include_user_defined_attributes": False,
"include_parent_hierarchy": False,
"include_user_defined_attributes": False,
"default_variants": [
"Main"
],
"step": 1.0,
"farm": False,
"priority": 50,
"refresh": False,
]
},
"CreateModel": {
"enabled": True,
Expand All @@ -325,12 +301,7 @@ class CreatorsModel(BaseSettingsModel):
"include_user_defined_attributes": False,
"default_variants": [
"Main"
],
"step": 1.0,
"include_parent_hierarchy": False,
"farm": False,
"priority": 50,
"refresh": False
]
},
"CreateProxyAlembic": {
"enabled": True,
Expand Down

0 comments on commit c123e83

Please sign in to comment.