AYON_in_flame
app_initialized(parent=None)
Inicialization of Framework
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
parent | obj | Parent object. Defaults to None. | None |
Source code in client/ayon_flame/startup/AYON_in_flame.py
101 102 103 104 105 106 107 108 109 110 111 | |
ayon_flame_install()
Registering AYON in context
Source code in client/ayon_flame/startup/AYON_in_flame.py
27 28 29 30 31 | |
cleanup()
Cleaning up Flame framework context
Source code in client/ayon_flame/startup/AYON_in_flame.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | |
exception_handler(exctype, value, _traceback)
Exception handler for improving UX
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
exctype | str | type of exception | required |
value | str | exception value | required |
tb | str | traceback to show | required |
Source code in client/ayon_flame/startup/AYON_in_flame.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | |
get_batch_custom_ui_actions()
Hook to create submenu in batch
Returns:
| Name | Type | Description |
|---|---|---|
list | menu object |
Source code in client/ayon_flame/startup/AYON_in_flame.py
212 213 214 215 216 217 218 219 220 221 | |
get_main_menu_custom_ui_actions()
Hook to create submenu in start menu
Returns:
| Name | Type | Description |
|---|---|---|
list | menu object |
Source code in client/ayon_flame/startup/AYON_in_flame.py
188 189 190 191 192 193 194 195 196 197 | |
get_media_panel_custom_ui_actions()
Hook to create submenu in desktop
Returns:
| Name | Type | Description |
|---|---|---|
list | menu object |
Source code in client/ayon_flame/startup/AYON_in_flame.py
224 225 226 227 228 229 230 231 232 233 | |
get_timeline_custom_ui_actions()
Hook to create submenu in timeline
Returns:
| Name | Type | Description |
|---|---|---|
list | menu object |
Source code in client/ayon_flame/startup/AYON_in_flame.py
200 201 202 203 204 205 206 207 208 209 | |
load_apps()
Load available flame_apps into Flame framework
Source code in client/ayon_flame/startup/AYON_in_flame.py
80 81 82 83 84 85 86 87 88 89 | |
project_changed_dict(info)
Hook for project change action
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
info | str | info text | required |
Source code in client/ayon_flame/startup/AYON_in_flame.py
92 93 94 95 96 97 98 | |
project_saved(project_name, save_time, is_auto_save)
Hook to activate when project is saved
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
project_name | str | name of project | required |
save_time | str | time when it was saved | required |
is_auto_save | bool | autosave is on or off | required |
Source code in client/ayon_flame/startup/AYON_in_flame.py
176 177 178 179 180 181 182 183 184 185 | |