|
| dialog_type = attr.ib(default=None, init=False) |
|
| f = attr.ib(default=None, repr=False) |
|
| parent_tpl = attr.ib(default=None, repr=False) |
|
| current_node = cv.ContextVar("current_node", default=None) |
|
| id = attr.ib(default=None, kw_only=True) |
|
| name = attr.ib(default=None, kw_only=True) |
|
| runtime_flags = attr.ib(default=0, kw_only=True) |
|
| deps = attr.ib(default=attr.Factory(list), repr=False, kw_only=True, init=False) |
|
| description = attr.ib(default="", kw_only=True) |
|
| exception = attr.ib(init=False, default=None, repr=False) |
|
| can_skip = attr.ib(default=True, init=False) |
|
| hide = attr.ib(default=False, init=False) |
|
| t_start = attr.ib(init=False, default=None, repr=False) |
|
| t_end = attr.ib(init=False, default=None, repr=False) |
|
| running_checkpoint |
|
| serial_number = attr.ib(init=False) |
|
◆ __attrs_post_init__()
def lib.nodes.dialogs.Dialog.__attrs_post_init__ |
( |
|
self, |
|
|
|
dialog_type |
|
) |
| |
◆ execute_plugin()
def lib.nodes.dialogs.Dialog.execute_plugin |
( |
|
self, |
|
|
|
plugin_method |
|
) |
| |
Convenience method to handle synchronous or asynchronous plugins.
- Parameters
-
plugin_method | coroutine or methods to be executed |
◆ dialog_type
lib.nodes.dialogs.Dialog.dialog_type = attr.ib(default=None, init=False) |
|
static |
The documentation for this class was generated from the following file: