-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathtemplate.yaml
105 lines (99 loc) · 2.87 KB
/
template.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
specificationVersion: 'jobtemplate-2023-09'
name: Blender Render
parameterDefinitions:
# Render Parameters
- name: BlenderSceneFile
type: PATH
objectType: FILE
dataFlow: IN
userInterface:
control: CHOOSE_INPUT_FILE
label: Blender Scene File
groupLabel: Render Parameters
fileFilters:
- label: Blender Scene Files
patterns: ["*.blend"]
- label: All Files
patterns: ["*"]
description: >
Choose the Blender scene file you want to render. Use the 'Job Attachments' tab
to add textures and other files that the job needs.
- name: Frames
type: STRING
userInterface:
control: LINE_EDIT
label: Frames
groupLabel: Render Parameters
default: 1-10
- name: OutputDir
type: PATH
objectType: DIRECTORY
dataFlow: OUT
userInterface:
control: CHOOSE_DIRECTORY
label: Output Directory
groupLabel: Render Parameters
default: "./output"
description: Choose the render output directory.
- name: OutputPattern
type: STRING
userInterface:
control: LINE_EDIT
label: Output File Pattern
groupLabel: Render Parameters
default: "output_####"
description: Enter the output filename pattern (without extension).
- name: Format
type: STRING
userInterface:
control: DROPDOWN_LIST
label: Output File Format
groupLabel: Render Parameters
description: Choose the file format to render as.
default: JPEG
allowedValues: [TGA, RAWTGA, JPEG, IRIS, IRIZ, PNG, HDR, TIFF, OPEN_EXR, OPEN_EXR_MULTILAYER, CINEON, DPX, DDS, JP2, WEBP]
# Software Environment
- name: CondaPackages
type: STRING
userInterface:
control: LINE_EDIT
label: Conda Packages
groupLabel: Software Environment
default: blender
description: >
If you have a Queue Environment that creates a Conda environment from a parameter called CondaPackages, this will
tell it to install blender.
- name: RezPackages
type: STRING
userInterface:
control: LINE_EDIT
label: Rez Packages
groupLabel: Software Environment
default: blender
description: >
If you have a Queue Environment that creates a Rez environment from a parameter called RezPackages, this will
tell it to install blender.
steps:
- name: RenderBlender
parameterSpace:
taskParameterDefinitions:
- name: Frame
type: INT
range: "{{Param.Frames}}"
script:
actions:
onRun:
command: bash
args: ['{{Task.File.Run}}']
embeddedFiles:
- name: Run
type: TEXT
data: |
# Configure the task to fail if any individual command fails.
set -xeuo pipefail
mkdir -p '{{Param.OutputDir}}'
blender --background '{{Param.BlenderSceneFile}}' \
--render-output '{{Param.OutputDir}}/{{Param.OutputPattern}}' \
--render-format {{Param.Format}} \
--use-extension 1 \
--render-frame {{Task.Param.Frame}}