mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 17:04:54 +01:00
Add resolution overrides to creator.
This commit is contained in:
parent
0dfe3b6974
commit
d1b0c37c93
1 changed files with 4 additions and 0 deletions
|
|
@ -15,6 +15,8 @@ class CreateReview(plugin.Creator):
|
|||
keepImages = False
|
||||
isolate = False
|
||||
imagePlane = True
|
||||
resolutionWidth = 0
|
||||
resolutionHeight = 0
|
||||
transparency = [
|
||||
"preset",
|
||||
"simple",
|
||||
|
|
@ -33,6 +35,8 @@ class CreateReview(plugin.Creator):
|
|||
for key, value in animation_data.items():
|
||||
data[key] = value
|
||||
|
||||
data["resolutionWidth"] = self.resolutionWidth
|
||||
data["resolutionHeight"] = self.resolutionHeight
|
||||
data["isolate"] = self.isolate
|
||||
data["keepImages"] = self.keepImages
|
||||
data["imagePlane"] = self.imagePlane
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue