fake-bpy-module 20240320__py3-none-any.whl → 20240322__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

Files changed (285) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +27 -11
  3. aud/__init__.pyi +130 -123
  4. bgl/__init__.pyi +1831 -216
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +19 -10
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +19 -23
  15. bl_i18n_utils/utils/__init__.pyi +81 -143
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +120 -49
  27. bl_operators/anim/__init__.pyi +903 -297
  28. bl_operators/assets/__init__.pyi +348 -123
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1262 -470
  31. bl_operators/console/__init__.pyi +542 -160
  32. bl_operators/constraint/__init__.pyi +452 -140
  33. bl_operators/file/__init__.pyi +339 -114
  34. bl_operators/freestyle/__init__.pyi +440 -132
  35. bl_operators/geometry_nodes/__init__.pyi +2131 -842
  36. bl_operators/image/__init__.pyi +330 -97
  37. bl_operators/mesh/__init__.pyi +339 -109
  38. bl_operators/node/__init__.pyi +1506 -621
  39. bl_operators/object/__init__.pyi +1828 -668
  40. bl_operators/object_align/__init__.pyi +124 -35
  41. bl_operators/object_quick_effects/__init__.pyi +470 -149
  42. bl_operators/object_randomize_transform/__init__.pyi +114 -35
  43. bl_operators/presets/__init__.pyi +3056 -1374
  44. bl_operators/rigidbody/__init__.pyi +336 -106
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +115 -33
  46. bl_operators/sequencer/__init__.pyi +579 -204
  47. bl_operators/spreadsheet/__init__.pyi +110 -38
  48. bl_operators/userpref/__init__.pyi +3201 -1236
  49. bl_operators/uvcalc_follow_active/__init__.pyi +119 -38
  50. bl_operators/uvcalc_lightmap/__init__.pyi +137 -54
  51. bl_operators/uvcalc_transform/__init__.pyi +295 -83
  52. bl_operators/vertexpaint_dirt/__init__.pyi +119 -34
  53. bl_operators/view3d/__init__.pyi +542 -184
  54. bl_operators/wm/__init__.pyi +5554 -2159
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +346 -146
  59. bl_ui/anim/__init__.pyi +107 -47
  60. bl_ui/asset_shelf/__init__.pyi +111 -33
  61. bl_ui/generic_ui_list/__init__.pyi +349 -146
  62. bl_ui/node_add_menu/__init__.pyi +138 -53
  63. bl_ui/node_add_menu_compositor/__init__.pyi +2134 -1016
  64. bl_ui/node_add_menu_geometry/__init__.pyi +5833 -2855
  65. bl_ui/node_add_menu_shader/__init__.pyi +1162 -511
  66. bl_ui/node_add_menu_texture/__init__.pyi +1008 -450
  67. bl_ui/properties_animviz/__init__.pyi +14 -12
  68. bl_ui/properties_collection/__init__.pyi +601 -218
  69. bl_ui/properties_constraint/__init__.pyi +10115 -10647
  70. bl_ui/properties_data_armature/__init__.pyi +1550 -648
  71. bl_ui/properties_data_bone/__init__.pyi +1317 -511
  72. bl_ui/properties_data_camera/__init__.pyi +1852 -719
  73. bl_ui/properties_data_curve/__init__.pyi +2015 -781
  74. bl_ui/properties_data_curves/__init__.pyi +713 -262
  75. bl_ui/properties_data_empty/__init__.pyi +252 -84
  76. bl_ui/properties_data_gpencil/__init__.pyi +2505 -1105
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1350 -594
  78. bl_ui/properties_data_lattice/__init__.pyi +374 -123
  79. bl_ui/properties_data_light/__init__.pyi +1319 -489
  80. bl_ui/properties_data_lightprobe/__init__.pyi +734 -241
  81. bl_ui/properties_data_mesh/__init__.pyi +2652 -1189
  82. bl_ui/properties_data_metaball/__init__.pyi +610 -197
  83. bl_ui/properties_data_modifier/__init__.pyi +1143 -506
  84. bl_ui/properties_data_pointcloud/__init__.pyi +670 -303
  85. bl_ui/properties_data_shaderfx/__init__.pyi +126 -36
  86. bl_ui/properties_data_speaker/__init__.pyi +618 -195
  87. bl_ui/properties_data_volume/__init__.pyi +1052 -408
  88. bl_ui/properties_freestyle/__init__.pyi +3366 -1450
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +1634 -776
  90. bl_ui/properties_mask_common/__init__.pyi +803 -371
  91. bl_ui/properties_material/__init__.pyi +2038 -831
  92. bl_ui/properties_material_gpencil/__init__.pyi +1272 -523
  93. bl_ui/properties_object/__init__.pyi +1863 -745
  94. bl_ui/properties_output/__init__.pyi +2482 -1071
  95. bl_ui/properties_paint_common/__init__.pyi +317 -424
  96. bl_ui/properties_particle/__init__.pyi +7235 -2942
  97. bl_ui/properties_physics_cloth/__init__.pyi +1903 -758
  98. bl_ui/properties_physics_common/__init__.pyi +164 -51
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +2787 -1114
  100. bl_ui/properties_physics_field/__init__.pyi +1294 -486
  101. bl_ui/properties_physics_fluid/__init__.pyi +3631 -1545
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +115 -34
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +983 -312
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +1718 -656
  105. bl_ui/properties_physics_softbody/__init__.pyi +2091 -836
  106. bl_ui/properties_render/__init__.pyi +7177 -2939
  107. bl_ui/properties_scene/__init__.pyi +1881 -760
  108. bl_ui/properties_texture/__init__.pyi +3539 -1399
  109. bl_ui/properties_view_layer/__init__.pyi +2368 -940
  110. bl_ui/properties_workspace/__init__.pyi +517 -202
  111. bl_ui/properties_world/__init__.pyi +862 -269
  112. bl_ui/space_clip/__init__.pyi +9127 -4137
  113. bl_ui/space_console/__init__.pyi +666 -286
  114. bl_ui/space_dopesheet/__init__.pyi +3287 -1504
  115. bl_ui/space_filebrowser/__init__.pyi +3958 -1935
  116. bl_ui/space_graph/__init__.pyi +2406 -1142
  117. bl_ui/space_image/__init__.pyi +9242 -4526
  118. bl_ui/space_info/__init__.pyi +664 -285
  119. bl_ui/space_nla/__init__.pyi +2014 -932
  120. bl_ui/space_node/__init__.pyi +4549 -1949
  121. bl_ui/space_outliner/__init__.pyi +1619 -745
  122. bl_ui/space_properties/__init__.pyi +340 -105
  123. bl_ui/space_sequencer/__init__.pyi +9396 -4264
  124. bl_ui/space_spreadsheet/__init__.pyi +110 -60
  125. bl_ui/space_statusbar/__init__.pyi +107 -32
  126. bl_ui/space_text/__init__.pyi +1907 -872
  127. bl_ui/space_time/__init__.pyi +812 -327
  128. bl_ui/space_toolsystem_common/__init__.pyi +203 -99
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +845 -289
  130. bl_ui/space_topbar/__init__.pyi +3131 -1437
  131. bl_ui/space_userpref/__init__.pyi +11510 -4926
  132. bl_ui/space_view3d/__init__.pyi +31358 -14417
  133. bl_ui/space_view3d_toolbar/__init__.pyi +12401 -6163
  134. bl_ui/utils/__init__.pyi +7 -16
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +253 -247
  143. bmesh/utils/__init__.pyi +54 -54
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +316 -415
  152. bpy/ops/anim/__init__.pyi +428 -566
  153. bpy/ops/armature/__init__.pyi +360 -488
  154. bpy/ops/asset/__init__.pyi +146 -183
  155. bpy/ops/boid/__init__.pyi +50 -67
  156. bpy/ops/brush/__init__.pyi +72 -96
  157. bpy/ops/buttons/__init__.pyi +128 -142
  158. bpy/ops/cachefile/__init__.pyi +124 -137
  159. bpy/ops/camera/__init__.pyi +22 -28
  160. bpy/ops/clip/__init__.pyi +768 -1005
  161. bpy/ops/cloth/__init__.pyi +10 -13
  162. bpy/ops/collection/__init__.pyi +36 -50
  163. bpy/ops/console/__init__.pyi +150 -203
  164. bpy/ops/constraint/__init__.pyi +150 -201
  165. bpy/ops/curve/__init__.pyi +474 -607
  166. bpy/ops/curves/__init__.pyi +170 -221
  167. bpy/ops/cycles/__init__.pyi +18 -26
  168. bpy/ops/dpaint/__init__.pyi +34 -46
  169. bpy/ops/ed/__init__.pyi +122 -149
  170. bpy/ops/export_anim/__init__.pyi +18 -21
  171. bpy/ops/export_mesh/__init__.pyi +26 -29
  172. bpy/ops/export_scene/__init__.pyi +307 -342
  173. bpy/ops/file/__init__.pyi +342 -436
  174. bpy/ops/fluid/__init__.pyi +88 -117
  175. bpy/ops/font/__init__.pyi +252 -311
  176. bpy/ops/geometry/__init__.pyi +86 -113
  177. bpy/ops/gizmogroup/__init__.pyi +22 -27
  178. bpy/ops/gpencil/__init__.pyi +1444 -1864
  179. bpy/ops/graph/__init__.pyi +642 -822
  180. bpy/ops/grease_pencil/__init__.pyi +426 -576
  181. bpy/ops/image/__init__.pyi +612 -733
  182. bpy/ops/import_anim/__init__.pyi +26 -29
  183. bpy/ops/import_curve/__init__.pyi +6 -9
  184. bpy/ops/import_mesh/__init__.pyi +18 -23
  185. bpy/ops/import_scene/__init__.pyi +86 -101
  186. bpy/ops/info/__init__.pyi +60 -77
  187. bpy/ops/lattice/__init__.pyi +64 -85
  188. bpy/ops/marker/__init__.pyi +106 -137
  189. bpy/ops/mask/__init__.pyi +318 -420
  190. bpy/ops/material/__init__.pyi +18 -24
  191. bpy/ops/mball/__init__.pyi +70 -93
  192. bpy/ops/mesh/__init__.pyi +1988 -2460
  193. bpy/ops/nla/__init__.pyi +331 -429
  194. bpy/ops/node/__init__.pyi +852 -1115
  195. bpy/ops/object/__init__.pyi +2420 -3081
  196. bpy/ops/outliner/__init__.pyi +498 -661
  197. bpy/ops/paint/__init__.pyi +518 -667
  198. bpy/ops/paintcurve/__init__.pyi +64 -84
  199. bpy/ops/palette/__init__.pyi +48 -66
  200. bpy/ops/particle/__init__.pyi +264 -355
  201. bpy/ops/pose/__init__.pyi +336 -438
  202. bpy/ops/poselib/__init__.pyi +70 -92
  203. bpy/ops/preferences/__init__.pyi +336 -440
  204. bpy/ops/ptcache/__init__.pyi +46 -62
  205. bpy/ops/render/__init__.pyi +114 -147
  206. bpy/ops/rigidbody/__init__.pyi +102 -135
  207. bpy/ops/scene/__init__.pyi +270 -364
  208. bpy/ops/screen/__init__.pyi +378 -477
  209. bpy/ops/script/__init__.pyi +18 -26
  210. bpy/ops/sculpt/__init__.pyi +400 -488
  211. bpy/ops/sculpt_curves/__init__.pyi +40 -53
  212. bpy/ops/sequencer/__init__.pyi +1040 -1279
  213. bpy/ops/sound/__init__.pyi +208 -226
  214. bpy/ops/spreadsheet/__init__.pyi +30 -40
  215. bpy/ops/surface/__init__.pyi +108 -126
  216. bpy/ops/text/__init__.pyi +382 -486
  217. bpy/ops/text_editor/__init__.pyi +10 -13
  218. bpy/ops/texture/__init__.pyi +26 -35
  219. bpy/ops/transform/__init__.pyi +790 -905
  220. bpy/ops/ui/__init__.pyi +216 -291
  221. bpy/ops/uilist/__init__.pyi +20 -29
  222. bpy/ops/uv/__init__.pyi +600 -742
  223. bpy/ops/view2d/__init__.pyi +156 -195
  224. bpy/ops/view3d/__init__.pyi +576 -742
  225. bpy/ops/wm/__init__.pyi +2360 -2702
  226. bpy/ops/workspace/__init__.pyi +42 -57
  227. bpy/ops/world/__init__.pyi +6 -8
  228. bpy/path/__init__.pyi +110 -81
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86358 -87091
  231. bpy/utils/__init__.pyi +242 -154
  232. bpy/utils/previews/__init__.pyi +57 -57
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/anim_utils/__init__.pyi +11 -31
  235. bpy_extras/asset_utils/__init__.pyi +4 -1
  236. bpy_extras/image_utils/__init__.pyi +2 -2
  237. bpy_extras/io_utils/__init__.pyi +30 -27
  238. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  239. bpy_extras/mesh_utils/__init__.pyi +18 -18
  240. bpy_extras/node_utils/__init__.pyi +4 -1
  241. bpy_extras/object_utils/__init__.pyi +25 -26
  242. bpy_extras/view3d_utils/__init__.pyi +33 -38
  243. bpy_restrict_state/__init__.pyi +14 -1
  244. bpy_types/__init__.pyi +3748 -1248
  245. console_python/__init__.pyi +41 -7
  246. console_shell/__init__.pyi +24 -5
  247. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240322.dist-info/RECORD +343 -0
  249. freestyle/chainingiterators/__init__.pyi +50 -52
  250. freestyle/functions/__init__.pyi +303 -207
  251. freestyle/predicates/__init__.pyi +299 -115
  252. freestyle/shaders/__init__.pyi +49 -80
  253. freestyle/types/__init__.pyi +463 -470
  254. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  255. freestyle/utils/__init__.pyi +27 -17
  256. gpu/capabilities/__init__.pyi +19 -20
  257. gpu/matrix/__init__.pyi +14 -16
  258. gpu/platform/__init__.pyi +5 -5
  259. gpu/shader/__init__.pyi +2 -5
  260. gpu/state/__init__.pyi +1 -1
  261. gpu/texture/__init__.pyi +3 -3
  262. gpu/types/__init__.pyi +54 -85
  263. gpu_extras/batch/__init__.pyi +26 -6
  264. gpu_extras/presets/__init__.pyi +51 -16
  265. graphviz_export/__init__.pyi +9 -2
  266. idprop/types/__init__.pyi +36 -12
  267. imbuf/__init__.pyi +8 -9
  268. imbuf/types/__init__.pyi +8 -15
  269. keyingsets_builtins/__init__.pyi +2520 -1085
  270. keyingsets_utils/__init__.pyi +69 -14
  271. mathutils/__init__.pyi +491 -423
  272. mathutils/bvhtree/__init__.pyi +26 -31
  273. mathutils/geometry/__init__.pyi +176 -185
  274. mathutils/kdtree/__init__.pyi +14 -17
  275. mathutils/noise/__init__.pyi +47 -48
  276. nodeitems_builtins/__init__.pyi +37 -15
  277. nodeitems_utils/__init__.pyi +45 -13
  278. rna_info/__init__.pyi +177 -76
  279. rna_keymap_ui/__init__.pyi +29 -6
  280. rna_prop_ui/__init__.pyi +56 -14
  281. rna_xml/__init__.pyi +29 -6
  282. sys_info/__init__.pyi +4 -1
  283. fake_bpy_module-20240320.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/top_level.txt +0 -0
@@ -3,94 +3,181 @@ import bpy_types
3
3
 
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
- class CONSOLE_HT_header(bpy_types.Header, bpy_types._GenericUI):
6
+ class CONSOLE_HT_header(bpy_types._GenericUI):
7
+ """ """
8
+
7
9
  bl_rna: typing.Any
10
+ """ """
11
+
8
12
  bl_space_type: typing.Any
13
+ """ """
14
+
9
15
  id_data: typing.Any
16
+ """ """
10
17
 
11
18
  def append(self, draw_func):
12
19
  """
13
20
 
14
21
  :param draw_func:
15
- :type draw_func:
16
22
  """
17
23
  ...
18
24
 
19
- def as_pointer(self): ...
20
- def bl_rna_get_subclass(self): ...
21
- def bl_rna_get_subclass_py(self): ...
25
+ def as_pointer(self):
26
+ """ """
27
+ ...
28
+
29
+ def bl_rna_get_subclass(self):
30
+ """ """
31
+ ...
32
+
33
+ def bl_rna_get_subclass_py(self):
34
+ """ """
35
+ ...
36
+
22
37
  def draw(self, context):
23
38
  """
24
39
 
25
- :param self:
26
- :type self:
27
40
  :param context:
28
- :type context:
29
- """
30
- ...
31
-
32
- def driver_add(self): ...
33
- def driver_remove(self): ...
34
- def get(self): ...
35
- def id_properties_clear(self): ...
36
- def id_properties_ensure(self): ...
37
- def id_properties_ui(self): ...
38
- def is_extended(self): ...
39
- def is_property_hidden(self): ...
40
- def is_property_overridable_library(self): ...
41
- def is_property_readonly(self): ...
42
- def is_property_set(self): ...
43
- def items(self): ...
44
- def keyframe_delete(self): ...
45
- def keyframe_insert(self): ...
46
- def keys(self): ...
47
- def path_from_id(self): ...
48
- def path_resolve(self): ...
49
- def pop(self): ...
41
+ """
42
+ ...
43
+
44
+ def driver_add(self):
45
+ """ """
46
+ ...
47
+
48
+ def driver_remove(self):
49
+ """ """
50
+ ...
51
+
52
+ def get(self):
53
+ """ """
54
+ ...
55
+
56
+ def id_properties_clear(self):
57
+ """ """
58
+ ...
59
+
60
+ def id_properties_ensure(self):
61
+ """ """
62
+ ...
63
+
64
+ def id_properties_ui(self):
65
+ """ """
66
+ ...
67
+
68
+ def is_extended(self):
69
+ """ """
70
+ ...
71
+
72
+ def is_property_hidden(self):
73
+ """ """
74
+ ...
75
+
76
+ def is_property_overridable_library(self):
77
+ """ """
78
+ ...
79
+
80
+ def is_property_readonly(self):
81
+ """ """
82
+ ...
83
+
84
+ def is_property_set(self):
85
+ """ """
86
+ ...
87
+
88
+ def items(self):
89
+ """ """
90
+ ...
91
+
92
+ def keyframe_delete(self):
93
+ """ """
94
+ ...
95
+
96
+ def keyframe_insert(self):
97
+ """ """
98
+ ...
99
+
100
+ def keys(self):
101
+ """ """
102
+ ...
103
+
104
+ def path_from_id(self):
105
+ """ """
106
+ ...
107
+
108
+ def path_resolve(self):
109
+ """ """
110
+ ...
111
+
112
+ def pop(self):
113
+ """ """
114
+ ...
115
+
50
116
  def prepend(self, draw_func):
51
117
  """
52
118
 
53
119
  :param draw_func:
54
- :type draw_func:
55
120
  """
56
121
  ...
57
122
 
58
- def property_overridable_library_set(self): ...
59
- def property_unset(self): ...
123
+ def property_overridable_library_set(self):
124
+ """ """
125
+ ...
126
+
127
+ def property_unset(self):
128
+ """ """
129
+ ...
130
+
60
131
  def remove(self, draw_func):
61
132
  """
62
133
 
63
134
  :param draw_func:
64
- :type draw_func:
65
135
  """
66
136
  ...
67
137
 
68
- def type_recast(self): ...
69
- def values(self): ...
138
+ def type_recast(self):
139
+ """ """
140
+ ...
141
+
142
+ def values(self):
143
+ """ """
144
+ ...
145
+
146
+ class CONSOLE_MT_console(bpy_types._GenericUI):
147
+ """ """
70
148
 
71
- class CONSOLE_MT_console(bpy_types.Menu, bpy_types._GenericUI):
72
149
  bl_label: typing.Any
150
+ """ """
151
+
73
152
  bl_rna: typing.Any
153
+ """ """
154
+
74
155
  id_data: typing.Any
156
+ """ """
75
157
 
76
158
  def append(self, draw_func):
77
159
  """
78
160
 
79
161
  :param draw_func:
80
- :type draw_func:
81
162
  """
82
163
  ...
83
164
 
84
- def as_pointer(self): ...
85
- def bl_rna_get_subclass(self): ...
86
- def bl_rna_get_subclass_py(self): ...
165
+ def as_pointer(self):
166
+ """ """
167
+ ...
168
+
169
+ def bl_rna_get_subclass(self):
170
+ """ """
171
+ ...
172
+
173
+ def bl_rna_get_subclass_py(self):
174
+ """ """
175
+ ...
176
+
87
177
  def draw(self, _context):
88
178
  """
89
179
 
90
- :param self:
91
- :type self:
92
180
  :param _context:
93
- :type _context:
94
181
  """
95
182
  ...
96
183
 
@@ -98,38 +185,81 @@ class CONSOLE_MT_console(bpy_types.Menu, bpy_types._GenericUI):
98
185
  """
99
186
 
100
187
  :param context:
101
- :type context:
102
188
  :param layout:
103
- :type layout:
104
189
  """
105
190
  ...
106
191
 
107
192
  def draw_preset(self, _context):
108
193
  """
109
194
 
110
- :param self:
111
- :type self:
112
195
  :param _context:
113
- :type _context:
114
- """
115
- ...
116
-
117
- def driver_add(self): ...
118
- def driver_remove(self): ...
119
- def get(self): ...
120
- def id_properties_clear(self): ...
121
- def id_properties_ensure(self): ...
122
- def id_properties_ui(self): ...
123
- def is_extended(self): ...
124
- def is_property_hidden(self): ...
125
- def is_property_overridable_library(self): ...
126
- def is_property_readonly(self): ...
127
- def is_property_set(self): ...
128
- def items(self): ...
129
- def keyframe_delete(self): ...
130
- def keyframe_insert(self): ...
131
- def keys(self): ...
132
- def path_from_id(self): ...
196
+ """
197
+ ...
198
+
199
+ def driver_add(self):
200
+ """ """
201
+ ...
202
+
203
+ def driver_remove(self):
204
+ """ """
205
+ ...
206
+
207
+ def get(self):
208
+ """ """
209
+ ...
210
+
211
+ def id_properties_clear(self):
212
+ """ """
213
+ ...
214
+
215
+ def id_properties_ensure(self):
216
+ """ """
217
+ ...
218
+
219
+ def id_properties_ui(self):
220
+ """ """
221
+ ...
222
+
223
+ def is_extended(self):
224
+ """ """
225
+ ...
226
+
227
+ def is_property_hidden(self):
228
+ """ """
229
+ ...
230
+
231
+ def is_property_overridable_library(self):
232
+ """ """
233
+ ...
234
+
235
+ def is_property_readonly(self):
236
+ """ """
237
+ ...
238
+
239
+ def is_property_set(self):
240
+ """ """
241
+ ...
242
+
243
+ def items(self):
244
+ """ """
245
+ ...
246
+
247
+ def keyframe_delete(self):
248
+ """ """
249
+ ...
250
+
251
+ def keyframe_insert(self):
252
+ """ """
253
+ ...
254
+
255
+ def keys(self):
256
+ """ """
257
+ ...
258
+
259
+ def path_from_id(self):
260
+ """ """
261
+ ...
262
+
133
263
  def path_menu(
134
264
  self,
135
265
  searchpaths,
@@ -143,73 +273,90 @@ class CONSOLE_MT_console(bpy_types.Menu, bpy_types._GenericUI):
143
273
  ):
144
274
  """
145
275
 
146
- :param self:
147
- :type self:
148
276
  :param searchpaths:
149
- :type searchpaths:
150
277
  :param operator:
151
- :type operator:
152
278
  :param props_default:
153
- :type props_default:
154
279
  :param prop_filepath:
155
- :type prop_filepath:
156
280
  :param filter_ext:
157
- :type filter_ext:
158
281
  :param filter_path:
159
- :type filter_path:
160
282
  :param display_name:
161
- :type display_name:
162
283
  :param add_operator:
163
- :type add_operator:
164
284
  """
165
285
  ...
166
286
 
167
- def path_resolve(self): ...
168
- def pop(self): ...
287
+ def path_resolve(self):
288
+ """ """
289
+ ...
290
+
291
+ def pop(self):
292
+ """ """
293
+ ...
294
+
169
295
  def prepend(self, draw_func):
170
296
  """
171
297
 
172
298
  :param draw_func:
173
- :type draw_func:
174
299
  """
175
300
  ...
176
301
 
177
- def property_overridable_library_set(self): ...
178
- def property_unset(self): ...
302
+ def property_overridable_library_set(self):
303
+ """ """
304
+ ...
305
+
306
+ def property_unset(self):
307
+ """ """
308
+ ...
309
+
179
310
  def remove(self, draw_func):
180
311
  """
181
312
 
182
313
  :param draw_func:
183
- :type draw_func:
184
314
  """
185
315
  ...
186
316
 
187
- def type_recast(self): ...
188
- def values(self): ...
317
+ def type_recast(self):
318
+ """ """
319
+ ...
320
+
321
+ def values(self):
322
+ """ """
323
+ ...
324
+
325
+ class CONSOLE_MT_context_menu(bpy_types._GenericUI):
326
+ """ """
189
327
 
190
- class CONSOLE_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
191
328
  bl_label: typing.Any
329
+ """ """
330
+
192
331
  bl_rna: typing.Any
332
+ """ """
333
+
193
334
  id_data: typing.Any
335
+ """ """
194
336
 
195
337
  def append(self, draw_func):
196
338
  """
197
339
 
198
340
  :param draw_func:
199
- :type draw_func:
200
341
  """
201
342
  ...
202
343
 
203
- def as_pointer(self): ...
204
- def bl_rna_get_subclass(self): ...
205
- def bl_rna_get_subclass_py(self): ...
344
+ def as_pointer(self):
345
+ """ """
346
+ ...
347
+
348
+ def bl_rna_get_subclass(self):
349
+ """ """
350
+ ...
351
+
352
+ def bl_rna_get_subclass_py(self):
353
+ """ """
354
+ ...
355
+
206
356
  def draw(self, _context):
207
357
  """
208
358
 
209
- :param self:
210
- :type self:
211
359
  :param _context:
212
- :type _context:
213
360
  """
214
361
  ...
215
362
 
@@ -217,38 +364,81 @@ class CONSOLE_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
217
364
  """
218
365
 
219
366
  :param context:
220
- :type context:
221
367
  :param layout:
222
- :type layout:
223
368
  """
224
369
  ...
225
370
 
226
371
  def draw_preset(self, _context):
227
372
  """
228
373
 
229
- :param self:
230
- :type self:
231
374
  :param _context:
232
- :type _context:
233
- """
234
- ...
235
-
236
- def driver_add(self): ...
237
- def driver_remove(self): ...
238
- def get(self): ...
239
- def id_properties_clear(self): ...
240
- def id_properties_ensure(self): ...
241
- def id_properties_ui(self): ...
242
- def is_extended(self): ...
243
- def is_property_hidden(self): ...
244
- def is_property_overridable_library(self): ...
245
- def is_property_readonly(self): ...
246
- def is_property_set(self): ...
247
- def items(self): ...
248
- def keyframe_delete(self): ...
249
- def keyframe_insert(self): ...
250
- def keys(self): ...
251
- def path_from_id(self): ...
375
+ """
376
+ ...
377
+
378
+ def driver_add(self):
379
+ """ """
380
+ ...
381
+
382
+ def driver_remove(self):
383
+ """ """
384
+ ...
385
+
386
+ def get(self):
387
+ """ """
388
+ ...
389
+
390
+ def id_properties_clear(self):
391
+ """ """
392
+ ...
393
+
394
+ def id_properties_ensure(self):
395
+ """ """
396
+ ...
397
+
398
+ def id_properties_ui(self):
399
+ """ """
400
+ ...
401
+
402
+ def is_extended(self):
403
+ """ """
404
+ ...
405
+
406
+ def is_property_hidden(self):
407
+ """ """
408
+ ...
409
+
410
+ def is_property_overridable_library(self):
411
+ """ """
412
+ ...
413
+
414
+ def is_property_readonly(self):
415
+ """ """
416
+ ...
417
+
418
+ def is_property_set(self):
419
+ """ """
420
+ ...
421
+
422
+ def items(self):
423
+ """ """
424
+ ...
425
+
426
+ def keyframe_delete(self):
427
+ """ """
428
+ ...
429
+
430
+ def keyframe_insert(self):
431
+ """ """
432
+ ...
433
+
434
+ def keys(self):
435
+ """ """
436
+ ...
437
+
438
+ def path_from_id(self):
439
+ """ """
440
+ ...
441
+
252
442
  def path_menu(
253
443
  self,
254
444
  searchpaths,
@@ -262,74 +452,93 @@ class CONSOLE_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
262
452
  ):
263
453
  """
264
454
 
265
- :param self:
266
- :type self:
267
455
  :param searchpaths:
268
- :type searchpaths:
269
456
  :param operator:
270
- :type operator:
271
457
  :param props_default:
272
- :type props_default:
273
458
  :param prop_filepath:
274
- :type prop_filepath:
275
459
  :param filter_ext:
276
- :type filter_ext:
277
460
  :param filter_path:
278
- :type filter_path:
279
461
  :param display_name:
280
- :type display_name:
281
462
  :param add_operator:
282
- :type add_operator:
283
463
  """
284
464
  ...
285
465
 
286
- def path_resolve(self): ...
287
- def pop(self): ...
466
+ def path_resolve(self):
467
+ """ """
468
+ ...
469
+
470
+ def pop(self):
471
+ """ """
472
+ ...
473
+
288
474
  def prepend(self, draw_func):
289
475
  """
290
476
 
291
477
  :param draw_func:
292
- :type draw_func:
293
478
  """
294
479
  ...
295
480
 
296
- def property_overridable_library_set(self): ...
297
- def property_unset(self): ...
481
+ def property_overridable_library_set(self):
482
+ """ """
483
+ ...
484
+
485
+ def property_unset(self):
486
+ """ """
487
+ ...
488
+
298
489
  def remove(self, draw_func):
299
490
  """
300
491
 
301
492
  :param draw_func:
302
- :type draw_func:
303
493
  """
304
494
  ...
305
495
 
306
- def type_recast(self): ...
307
- def values(self): ...
496
+ def type_recast(self):
497
+ """ """
498
+ ...
499
+
500
+ def values(self):
501
+ """ """
502
+ ...
503
+
504
+ class CONSOLE_MT_editor_menus(bpy_types._GenericUI):
505
+ """ """
308
506
 
309
- class CONSOLE_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
310
507
  bl_idname: typing.Any
508
+ """ """
509
+
311
510
  bl_label: typing.Any
511
+ """ """
512
+
312
513
  bl_rna: typing.Any
514
+ """ """
515
+
313
516
  id_data: typing.Any
517
+ """ """
314
518
 
315
519
  def append(self, draw_func):
316
520
  """
317
521
 
318
522
  :param draw_func:
319
- :type draw_func:
320
523
  """
321
524
  ...
322
525
 
323
- def as_pointer(self): ...
324
- def bl_rna_get_subclass(self): ...
325
- def bl_rna_get_subclass_py(self): ...
526
+ def as_pointer(self):
527
+ """ """
528
+ ...
529
+
530
+ def bl_rna_get_subclass(self):
531
+ """ """
532
+ ...
533
+
534
+ def bl_rna_get_subclass_py(self):
535
+ """ """
536
+ ...
537
+
326
538
  def draw(self, _context):
327
539
  """
328
540
 
329
- :param self:
330
- :type self:
331
541
  :param _context:
332
- :type _context:
333
542
  """
334
543
  ...
335
544
 
@@ -337,38 +546,81 @@ class CONSOLE_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
337
546
  """
338
547
 
339
548
  :param context:
340
- :type context:
341
549
  :param layout:
342
- :type layout:
343
550
  """
344
551
  ...
345
552
 
346
553
  def draw_preset(self, _context):
347
554
  """
348
555
 
349
- :param self:
350
- :type self:
351
556
  :param _context:
352
- :type _context:
353
- """
354
- ...
355
-
356
- def driver_add(self): ...
357
- def driver_remove(self): ...
358
- def get(self): ...
359
- def id_properties_clear(self): ...
360
- def id_properties_ensure(self): ...
361
- def id_properties_ui(self): ...
362
- def is_extended(self): ...
363
- def is_property_hidden(self): ...
364
- def is_property_overridable_library(self): ...
365
- def is_property_readonly(self): ...
366
- def is_property_set(self): ...
367
- def items(self): ...
368
- def keyframe_delete(self): ...
369
- def keyframe_insert(self): ...
370
- def keys(self): ...
371
- def path_from_id(self): ...
557
+ """
558
+ ...
559
+
560
+ def driver_add(self):
561
+ """ """
562
+ ...
563
+
564
+ def driver_remove(self):
565
+ """ """
566
+ ...
567
+
568
+ def get(self):
569
+ """ """
570
+ ...
571
+
572
+ def id_properties_clear(self):
573
+ """ """
574
+ ...
575
+
576
+ def id_properties_ensure(self):
577
+ """ """
578
+ ...
579
+
580
+ def id_properties_ui(self):
581
+ """ """
582
+ ...
583
+
584
+ def is_extended(self):
585
+ """ """
586
+ ...
587
+
588
+ def is_property_hidden(self):
589
+ """ """
590
+ ...
591
+
592
+ def is_property_overridable_library(self):
593
+ """ """
594
+ ...
595
+
596
+ def is_property_readonly(self):
597
+ """ """
598
+ ...
599
+
600
+ def is_property_set(self):
601
+ """ """
602
+ ...
603
+
604
+ def items(self):
605
+ """ """
606
+ ...
607
+
608
+ def keyframe_delete(self):
609
+ """ """
610
+ ...
611
+
612
+ def keyframe_insert(self):
613
+ """ """
614
+ ...
615
+
616
+ def keys(self):
617
+ """ """
618
+ ...
619
+
620
+ def path_from_id(self):
621
+ """ """
622
+ ...
623
+
372
624
  def path_menu(
373
625
  self,
374
626
  searchpaths,
@@ -382,73 +634,90 @@ class CONSOLE_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
382
634
  ):
383
635
  """
384
636
 
385
- :param self:
386
- :type self:
387
637
  :param searchpaths:
388
- :type searchpaths:
389
638
  :param operator:
390
- :type operator:
391
639
  :param props_default:
392
- :type props_default:
393
640
  :param prop_filepath:
394
- :type prop_filepath:
395
641
  :param filter_ext:
396
- :type filter_ext:
397
642
  :param filter_path:
398
- :type filter_path:
399
643
  :param display_name:
400
- :type display_name:
401
644
  :param add_operator:
402
- :type add_operator:
403
645
  """
404
646
  ...
405
647
 
406
- def path_resolve(self): ...
407
- def pop(self): ...
648
+ def path_resolve(self):
649
+ """ """
650
+ ...
651
+
652
+ def pop(self):
653
+ """ """
654
+ ...
655
+
408
656
  def prepend(self, draw_func):
409
657
  """
410
658
 
411
659
  :param draw_func:
412
- :type draw_func:
413
660
  """
414
661
  ...
415
662
 
416
- def property_overridable_library_set(self): ...
417
- def property_unset(self): ...
663
+ def property_overridable_library_set(self):
664
+ """ """
665
+ ...
666
+
667
+ def property_unset(self):
668
+ """ """
669
+ ...
670
+
418
671
  def remove(self, draw_func):
419
672
  """
420
673
 
421
674
  :param draw_func:
422
- :type draw_func:
423
675
  """
424
676
  ...
425
677
 
426
- def type_recast(self): ...
427
- def values(self): ...
678
+ def type_recast(self):
679
+ """ """
680
+ ...
681
+
682
+ def values(self):
683
+ """ """
684
+ ...
685
+
686
+ class CONSOLE_MT_language(bpy_types._GenericUI):
687
+ """ """
428
688
 
429
- class CONSOLE_MT_language(bpy_types.Menu, bpy_types._GenericUI):
430
689
  bl_label: typing.Any
690
+ """ """
691
+
431
692
  bl_rna: typing.Any
693
+ """ """
694
+
432
695
  id_data: typing.Any
696
+ """ """
433
697
 
434
698
  def append(self, draw_func):
435
699
  """
436
700
 
437
701
  :param draw_func:
438
- :type draw_func:
439
702
  """
440
703
  ...
441
704
 
442
- def as_pointer(self): ...
443
- def bl_rna_get_subclass(self): ...
444
- def bl_rna_get_subclass_py(self): ...
705
+ def as_pointer(self):
706
+ """ """
707
+ ...
708
+
709
+ def bl_rna_get_subclass(self):
710
+ """ """
711
+ ...
712
+
713
+ def bl_rna_get_subclass_py(self):
714
+ """ """
715
+ ...
716
+
445
717
  def draw(self, _context):
446
718
  """
447
719
 
448
- :param self:
449
- :type self:
450
720
  :param _context:
451
- :type _context:
452
721
  """
453
722
  ...
454
723
 
@@ -456,38 +725,81 @@ class CONSOLE_MT_language(bpy_types.Menu, bpy_types._GenericUI):
456
725
  """
457
726
 
458
727
  :param context:
459
- :type context:
460
728
  :param layout:
461
- :type layout:
462
729
  """
463
730
  ...
464
731
 
465
732
  def draw_preset(self, _context):
466
733
  """
467
734
 
468
- :param self:
469
- :type self:
470
735
  :param _context:
471
- :type _context:
472
- """
473
- ...
474
-
475
- def driver_add(self): ...
476
- def driver_remove(self): ...
477
- def get(self): ...
478
- def id_properties_clear(self): ...
479
- def id_properties_ensure(self): ...
480
- def id_properties_ui(self): ...
481
- def is_extended(self): ...
482
- def is_property_hidden(self): ...
483
- def is_property_overridable_library(self): ...
484
- def is_property_readonly(self): ...
485
- def is_property_set(self): ...
486
- def items(self): ...
487
- def keyframe_delete(self): ...
488
- def keyframe_insert(self): ...
489
- def keys(self): ...
490
- def path_from_id(self): ...
736
+ """
737
+ ...
738
+
739
+ def driver_add(self):
740
+ """ """
741
+ ...
742
+
743
+ def driver_remove(self):
744
+ """ """
745
+ ...
746
+
747
+ def get(self):
748
+ """ """
749
+ ...
750
+
751
+ def id_properties_clear(self):
752
+ """ """
753
+ ...
754
+
755
+ def id_properties_ensure(self):
756
+ """ """
757
+ ...
758
+
759
+ def id_properties_ui(self):
760
+ """ """
761
+ ...
762
+
763
+ def is_extended(self):
764
+ """ """
765
+ ...
766
+
767
+ def is_property_hidden(self):
768
+ """ """
769
+ ...
770
+
771
+ def is_property_overridable_library(self):
772
+ """ """
773
+ ...
774
+
775
+ def is_property_readonly(self):
776
+ """ """
777
+ ...
778
+
779
+ def is_property_set(self):
780
+ """ """
781
+ ...
782
+
783
+ def items(self):
784
+ """ """
785
+ ...
786
+
787
+ def keyframe_delete(self):
788
+ """ """
789
+ ...
790
+
791
+ def keyframe_insert(self):
792
+ """ """
793
+ ...
794
+
795
+ def keys(self):
796
+ """ """
797
+ ...
798
+
799
+ def path_from_id(self):
800
+ """ """
801
+ ...
802
+
491
803
  def path_menu(
492
804
  self,
493
805
  searchpaths,
@@ -501,73 +813,90 @@ class CONSOLE_MT_language(bpy_types.Menu, bpy_types._GenericUI):
501
813
  ):
502
814
  """
503
815
 
504
- :param self:
505
- :type self:
506
816
  :param searchpaths:
507
- :type searchpaths:
508
817
  :param operator:
509
- :type operator:
510
818
  :param props_default:
511
- :type props_default:
512
819
  :param prop_filepath:
513
- :type prop_filepath:
514
820
  :param filter_ext:
515
- :type filter_ext:
516
821
  :param filter_path:
517
- :type filter_path:
518
822
  :param display_name:
519
- :type display_name:
520
823
  :param add_operator:
521
- :type add_operator:
522
824
  """
523
825
  ...
524
826
 
525
- def path_resolve(self): ...
526
- def pop(self): ...
827
+ def path_resolve(self):
828
+ """ """
829
+ ...
830
+
831
+ def pop(self):
832
+ """ """
833
+ ...
834
+
527
835
  def prepend(self, draw_func):
528
836
  """
529
837
 
530
838
  :param draw_func:
531
- :type draw_func:
532
839
  """
533
840
  ...
534
841
 
535
- def property_overridable_library_set(self): ...
536
- def property_unset(self): ...
842
+ def property_overridable_library_set(self):
843
+ """ """
844
+ ...
845
+
846
+ def property_unset(self):
847
+ """ """
848
+ ...
849
+
537
850
  def remove(self, draw_func):
538
851
  """
539
852
 
540
853
  :param draw_func:
541
- :type draw_func:
542
854
  """
543
855
  ...
544
856
 
545
- def type_recast(self): ...
546
- def values(self): ...
857
+ def type_recast(self):
858
+ """ """
859
+ ...
860
+
861
+ def values(self):
862
+ """ """
863
+ ...
864
+
865
+ class CONSOLE_MT_view(bpy_types._GenericUI):
866
+ """ """
547
867
 
548
- class CONSOLE_MT_view(bpy_types.Menu, bpy_types._GenericUI):
549
868
  bl_label: typing.Any
869
+ """ """
870
+
550
871
  bl_rna: typing.Any
872
+ """ """
873
+
551
874
  id_data: typing.Any
875
+ """ """
552
876
 
553
877
  def append(self, draw_func):
554
878
  """
555
879
 
556
880
  :param draw_func:
557
- :type draw_func:
558
881
  """
559
882
  ...
560
883
 
561
- def as_pointer(self): ...
562
- def bl_rna_get_subclass(self): ...
563
- def bl_rna_get_subclass_py(self): ...
884
+ def as_pointer(self):
885
+ """ """
886
+ ...
887
+
888
+ def bl_rna_get_subclass(self):
889
+ """ """
890
+ ...
891
+
892
+ def bl_rna_get_subclass_py(self):
893
+ """ """
894
+ ...
895
+
564
896
  def draw(self, _context):
565
897
  """
566
898
 
567
- :param self:
568
- :type self:
569
899
  :param _context:
570
- :type _context:
571
900
  """
572
901
  ...
573
902
 
@@ -575,38 +904,81 @@ class CONSOLE_MT_view(bpy_types.Menu, bpy_types._GenericUI):
575
904
  """
576
905
 
577
906
  :param context:
578
- :type context:
579
907
  :param layout:
580
- :type layout:
581
908
  """
582
909
  ...
583
910
 
584
911
  def draw_preset(self, _context):
585
912
  """
586
913
 
587
- :param self:
588
- :type self:
589
914
  :param _context:
590
- :type _context:
591
- """
592
- ...
593
-
594
- def driver_add(self): ...
595
- def driver_remove(self): ...
596
- def get(self): ...
597
- def id_properties_clear(self): ...
598
- def id_properties_ensure(self): ...
599
- def id_properties_ui(self): ...
600
- def is_extended(self): ...
601
- def is_property_hidden(self): ...
602
- def is_property_overridable_library(self): ...
603
- def is_property_readonly(self): ...
604
- def is_property_set(self): ...
605
- def items(self): ...
606
- def keyframe_delete(self): ...
607
- def keyframe_insert(self): ...
608
- def keys(self): ...
609
- def path_from_id(self): ...
915
+ """
916
+ ...
917
+
918
+ def driver_add(self):
919
+ """ """
920
+ ...
921
+
922
+ def driver_remove(self):
923
+ """ """
924
+ ...
925
+
926
+ def get(self):
927
+ """ """
928
+ ...
929
+
930
+ def id_properties_clear(self):
931
+ """ """
932
+ ...
933
+
934
+ def id_properties_ensure(self):
935
+ """ """
936
+ ...
937
+
938
+ def id_properties_ui(self):
939
+ """ """
940
+ ...
941
+
942
+ def is_extended(self):
943
+ """ """
944
+ ...
945
+
946
+ def is_property_hidden(self):
947
+ """ """
948
+ ...
949
+
950
+ def is_property_overridable_library(self):
951
+ """ """
952
+ ...
953
+
954
+ def is_property_readonly(self):
955
+ """ """
956
+ ...
957
+
958
+ def is_property_set(self):
959
+ """ """
960
+ ...
961
+
962
+ def items(self):
963
+ """ """
964
+ ...
965
+
966
+ def keyframe_delete(self):
967
+ """ """
968
+ ...
969
+
970
+ def keyframe_insert(self):
971
+ """ """
972
+ ...
973
+
974
+ def keys(self):
975
+ """ """
976
+ ...
977
+
978
+ def path_from_id(self):
979
+ """ """
980
+ ...
981
+
610
982
  def path_menu(
611
983
  self,
612
984
  searchpaths,
@@ -620,48 +992,56 @@ class CONSOLE_MT_view(bpy_types.Menu, bpy_types._GenericUI):
620
992
  ):
621
993
  """
622
994
 
623
- :param self:
624
- :type self:
625
995
  :param searchpaths:
626
- :type searchpaths:
627
996
  :param operator:
628
- :type operator:
629
997
  :param props_default:
630
- :type props_default:
631
998
  :param prop_filepath:
632
- :type prop_filepath:
633
999
  :param filter_ext:
634
- :type filter_ext:
635
1000
  :param filter_path:
636
- :type filter_path:
637
1001
  :param display_name:
638
- :type display_name:
639
1002
  :param add_operator:
640
- :type add_operator:
641
1003
  """
642
1004
  ...
643
1005
 
644
- def path_resolve(self): ...
645
- def pop(self): ...
1006
+ def path_resolve(self):
1007
+ """ """
1008
+ ...
1009
+
1010
+ def pop(self):
1011
+ """ """
1012
+ ...
1013
+
646
1014
  def prepend(self, draw_func):
647
1015
  """
648
1016
 
649
1017
  :param draw_func:
650
- :type draw_func:
651
1018
  """
652
1019
  ...
653
1020
 
654
- def property_overridable_library_set(self): ...
655
- def property_unset(self): ...
1021
+ def property_overridable_library_set(self):
1022
+ """ """
1023
+ ...
1024
+
1025
+ def property_unset(self):
1026
+ """ """
1027
+ ...
1028
+
656
1029
  def remove(self, draw_func):
657
1030
  """
658
1031
 
659
1032
  :param draw_func:
660
- :type draw_func:
661
1033
  """
662
1034
  ...
663
1035
 
664
- def type_recast(self): ...
665
- def values(self): ...
1036
+ def type_recast(self):
1037
+ """ """
1038
+ ...
1039
+
1040
+ def values(self):
1041
+ """ """
1042
+ ...
1043
+
1044
+ def add_scrollback(text, text_type):
1045
+ """ """
666
1046
 
667
- def add_scrollback(text, text_type): ...
1047
+ ...