api
FusionHost
Bases: HostBase
, IWorkfileHost
, ILoadHost
, IPublishHost
Source code in client/ayon_fusion/api/pipeline.py
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 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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
|
install()
Install fusion-specific functionality of AYON.
This is where you install menus and register families, data and loaders into fusion.
It is called automatically when installing via ayon_core.pipeline.install_host(ayon_fusion.api)
See the Maya equivalent for inspiration on how to implement this.
Source code in client/ayon_fusion/api/pipeline.py
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 106 107 108 109 110 111 112 113 114 |
|
comp_lock_and_undo_chunk(comp, undo_queue_name='Script CMD', keep_undo=True)
Lock comp and open an undo chunk during the context
Source code in client/ayon_fusion/api/lib.py
301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
|
get_bmd_library()
Get bmd library
Source code in client/ayon_fusion/api/lib.py
287 288 289 290 |
|
get_current_comp()
Get current comp in this session
Source code in client/ayon_fusion/api/lib.py
293 294 295 296 297 298 |
|
imprint_container(tool, name, namespace, context, loader=None)
Imprint a Loader with metadata
Containerisation enables a tracking of version, author and origin for loaded assets.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tool | object | The node in Fusion to imprint as container, usually a Loader. | 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 loader used to produce this container. | None |
Returns:
Type | Description |
---|---|
None |
Source code in client/ayon_fusion/api/pipeline.py
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 |
|
ls()
List containers from active Fusion scene
This is the host-equivalent of api.ls(), but instead of listing assets on disk, it lists assets already loaded in Fusion; once loaded they are called 'containers'
Yields:
Name | Type | Description |
---|---|---|
dict | container |
Source code in client/ayon_fusion/api/pipeline.py
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 |
|
maintained_selection(comp=None)
Reset comp selection from before the context after the context
Source code in client/ayon_fusion/api/lib.py
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
|
parse_container(tool)
Returns imprinted container data of a tool
This reads the imprinted data from imprint_container
.
Source code in client/ayon_fusion/api/pipeline.py
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 |
|
set_current_context_framerange(task_entity=None)
Set Comp's frame range based on current task.
Source code in client/ayon_fusion/api/lib.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
|
update_frame_range(start, end, comp=None, set_render_range=True, handle_start=0, handle_end=0)
Set Fusion comp's start and end frame range
Parameters:
Name | Type | Description | Default |
---|---|---|---|
start | (float, int) | start frame | required |
end | (float, int) | end frame | required |
comp | (object, Optional) | comp object from fusion | None |
set_render_range | (bool, Optional) | When True this will also set the composition's render start and end frame. | True |
handle_start | (float, int, Optional) | frame handles before start frame | 0 |
handle_end | (float, int, Optional) | frame handles after end frame | 0 |
Returns:
Type | Description |
---|---|
None |
Source code in client/ayon_fusion/api/lib.py
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 |
|