mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
♻️ move data classes to new style
This commit is contained in:
parent
62141d4927
commit
de3bdbddab
1 changed files with 4 additions and 4 deletions
|
|
@ -37,7 +37,7 @@ from openpype_modules.deadline.abstract_submit_deadline import DeadlineJobInfo
|
||||||
|
|
||||||
|
|
||||||
@attr.s
|
@attr.s
|
||||||
class MayaPluginInfo:
|
class MayaPluginInfo():
|
||||||
SceneFile = attr.ib(default=None) # Input
|
SceneFile = attr.ib(default=None) # Input
|
||||||
OutputFilePath = attr.ib(default=None) # Output directory and filename
|
OutputFilePath = attr.ib(default=None) # Output directory and filename
|
||||||
OutputFilePrefix = attr.ib(default=None)
|
OutputFilePrefix = attr.ib(default=None)
|
||||||
|
|
@ -50,7 +50,7 @@ class MayaPluginInfo:
|
||||||
|
|
||||||
|
|
||||||
@attr.s
|
@attr.s
|
||||||
class PythonPluginInfo:
|
class PythonPluginInfo():
|
||||||
ScriptFile = attr.ib()
|
ScriptFile = attr.ib()
|
||||||
Version = attr.ib(default="3.6")
|
Version = attr.ib(default="3.6")
|
||||||
Arguments = attr.ib(default=None)
|
Arguments = attr.ib(default=None)
|
||||||
|
|
@ -58,7 +58,7 @@ class PythonPluginInfo:
|
||||||
|
|
||||||
|
|
||||||
@attr.s
|
@attr.s
|
||||||
class VRayPluginInfo:
|
class VRayPluginInfo():
|
||||||
InputFilename = attr.ib(default=None) # Input
|
InputFilename = attr.ib(default=None) # Input
|
||||||
SeparateFilesPerFrame = attr.ib(default=None)
|
SeparateFilesPerFrame = attr.ib(default=None)
|
||||||
VRayEngine = attr.ib(default="V-Ray")
|
VRayEngine = attr.ib(default="V-Ray")
|
||||||
|
|
@ -69,7 +69,7 @@ class VRayPluginInfo:
|
||||||
|
|
||||||
|
|
||||||
@attr.s
|
@attr.s
|
||||||
class ArnoldPluginInfo:
|
class ArnoldPluginInfo():
|
||||||
ArnoldFile = attr.ib(default=None)
|
ArnoldFile = attr.ib(default=None)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue