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
87 88 89 90 91 92 93 94 95 96 97 |
|
ayon_flame_install()
Registering AYON in context
Source code in client/ayon_flame/startup/AYON_in_flame.py
13 14 15 16 17 |
|
cleanup()
Cleaning up Flame framework context
Source code in client/ayon_flame/startup/AYON_in_flame.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
|
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
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
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
194 195 196 197 198 199 200 201 202 203 |
|
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
170 171 172 173 174 175 176 177 178 179 |
|
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
206 207 208 209 210 211 212 213 214 215 |
|
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
182 183 184 185 186 187 188 189 190 191 |
|
load_apps()
Load available flame_apps into Flame framework
Source code in client/ayon_flame/startup/AYON_in_flame.py
66 67 68 69 70 71 72 73 74 75 |
|
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
78 79 80 81 82 83 84 |
|
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
158 159 160 161 162 163 164 165 166 167 |
|