mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
apply settings in TVPaint does not expect system settings
This commit is contained in:
parent
fee3c950d3
commit
e2c60831c2
3 changed files with 3 additions and 3 deletions
|
|
@ -139,7 +139,7 @@ class CreateRenderlayer(TVPaintCreator):
|
|||
# - Mark by default instance for review
|
||||
mark_for_review = True
|
||||
|
||||
def apply_settings(self, project_settings, system_settings):
|
||||
def apply_settings(self, project_settings):
|
||||
plugin_settings = (
|
||||
project_settings["tvpaint"]["create"]["create_render_layer"]
|
||||
)
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ class TVPaintReviewCreator(TVPaintAutoCreator):
|
|||
# Settings
|
||||
active_on_create = True
|
||||
|
||||
def apply_settings(self, project_settings, system_settings):
|
||||
def apply_settings(self, project_settings):
|
||||
plugin_settings = (
|
||||
project_settings["tvpaint"]["create"]["create_review"]
|
||||
)
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ class TVPaintWorkfileCreator(TVPaintAutoCreator):
|
|||
label = "Workfile"
|
||||
icon = "fa.file-o"
|
||||
|
||||
def apply_settings(self, project_settings, system_settings):
|
||||
def apply_settings(self, project_settings):
|
||||
plugin_settings = (
|
||||
project_settings["tvpaint"]["create"]["create_workfile"]
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue