pipeline
Basic avalon integration
HieroHost
Bases: HostBase
, IWorkfileHost
, ILoadHost
, IPublishHost
Source code in client/ayon_hiero/api/pipeline.py
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 |
|
install()
Installing all requirements for hiero host
Source code in client/ayon_hiero/api/pipeline.py
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
|
containerise(track_item, name, namespace, context, loader=None, data=None)
Bundle Hiero's object into an assembly and imprint it with metadata
Containerisation enables a tracking of version, author and origin for loaded assets.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
track_item | TrackItem | object to imprint as container | required |
name | str | Name of resulting assembly | required |
namespace | str | Namespace under which to host container | required |
context | dict | Asset information | required |
loader | str | Name of node used to produce this container. | None |
Returns:
Name | Type | Description |
---|---|---|
track_item | TrackItem | containerised object |
Source code in client/ayon_hiero/api/pipeline.py
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
launch_workfiles_app(*args)
Wrapping function for workfiles launcher
Source code in client/ayon_hiero/api/pipeline.py
286 287 288 289 290 291 292 |
|
ls()
List available containers.
This function is used by the Container Manager in Nuke. You'll need to implement a for-loop that then yields one Container at a time.
See the container.json
schema for details on how it should look, and the Maya equivalent, which is in avalon.maya.pipeline
Source code in client/ayon_hiero/api/pipeline.py
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
|
maintained_selection()
Maintain selection during context
Example
with maintained_selection(): ... for track_item in track_items: ... < do some stuff >
Source code in client/ayon_hiero/api/pipeline.py
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 |
|
parse_container(item, validate=True)
Return container data from track_item's pype tag.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item | TrackItem or VideoTrack | A containerised track item. | required |
validate | bool)[optional] | validating with avalon scheme | True |
Returns:
Name | Type | Description |
---|---|---|
dict | The container schema data for input containerized track item. |
Source code in client/ayon_hiero/api/pipeline.py
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
|
publish(parent)
Shorthand to publish from within host
Source code in client/ayon_hiero/api/pipeline.py
295 296 297 |
|
reload_config()
Attempt to reload pipeline at run-time.
CAUTION: This is primarily for development and debugging purposes.
Source code in client/ayon_hiero/api/pipeline.py
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 |
|
reset_selection()
Deselect all selected nodes
Source code in client/ayon_hiero/api/pipeline.py
323 324 325 326 327 |
|
update_container(item, data=None)
Update container data to input track_item or track's AYON tag.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item | TrackItem or VideoTrack | A containerised track item. | required |
data | dict)[optional] | dictionery with data to be updated | None |
Returns:
Name | Type | Description |
---|---|---|
bool | True if container was updated correctly |
Source code in client/ayon_hiero/api/pipeline.py
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 |
|