AYON: Addons creation enhancements (#5356)

* updated nuke settings

* added addon version to zip filename

* fix Pattern type hint

* added ignored subdirs for openpype

* added titles to addons

* type hint fix - again

* modified settings conversion

* updated aftereffects settings

* updated blender settings

* updated clockify settings

* updated core settings

* updated deadline settings

* updated harmo settings

* updated kistsu settings

* updated maya settings

* updated muster settings

* updated royal render settings

* updated timers manager settings

* updated traypublisher settings

* implemented conversion of rr paths

* formatting fix
This commit is contained in:
Jakub Trllo 2023-07-28 11:51:23 +02:00 committed by GitHub
parent 6deace97d6
commit b43cac0b51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
41 changed files with 341 additions and 246 deletions

View file

@ -25,6 +25,14 @@ class BlenderSettings(BaseSettingsModel):
default_factory=UnitScaleSettingsModel,
title="Set Unit Scale"
)
set_resolution_startup: bool = Field(
True,
title="Set Resolution on Startup"
)
set_frames_startup: bool = Field(
True,
title="Set Start/End Frames and FPS on Startup"
)
imageio: BlenderImageIOModel = Field(
default_factory=BlenderImageIOModel,
title="Color Management (ImageIO)"
@ -45,6 +53,8 @@ DEFAULT_VALUES = {
"apply_on_opening": False,
"base_file_unit_scale": 0.01
},
"set_frames_startup": True,
"set_resolution_startup": True,
"publish": DEFAULT_BLENDER_PUBLISH_SETTINGS,
"workfile_builder": {
"create_first_version": False,

View file

@ -94,6 +94,10 @@ class PublishPuginsModel(BaseSettingsModel):
default_factory=ValidatePluginModel,
title="Extract Camera"
)
ExtractCameraABC: ValidatePluginModel = Field(
default_factory=ValidatePluginModel,
title="Extract Camera as ABC"
)
ExtractLayout: ValidatePluginModel = Field(
default_factory=ValidatePluginModel,
title="Extract Layout"
@ -143,7 +147,8 @@ DEFAULT_BLENDER_PUBLISH_SETTINGS = {
"camera",
"rig",
"action",
"layout"
"layout",
"blendScene"
]
},
"ExtractFBX": {
@ -171,6 +176,11 @@ DEFAULT_BLENDER_PUBLISH_SETTINGS = {
"optional": True,
"active": True
},
"ExtractCameraABC": {
"enabled": True,
"optional": True,
"active": True
},
"ExtractLayout": {
"enabled": True,
"optional": True,