fake-bpy-module 20240224__py3-none-any.whl → 20240326__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 (293) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +36 -6
  3. aud/__init__.pyi +132 -125
  4. bgl/__init__.pyi +2545 -546
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +24 -2
  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 +53 -6
  15. bl_i18n_utils/utils/__init__.pyi +332 -44
  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 +171 -37
  27. bl_operators/anim/__init__.pyi +1065 -226
  28. bl_operators/assets/__init__.pyi +427 -92
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1342 -287
  31. bl_operators/console/__init__.pyi +647 -140
  32. bl_operators/constraint/__init__.pyi +524 -112
  33. bl_operators/file/__init__.pyi +396 -84
  34. bl_operators/freestyle/__init__.pyi +532 -113
  35. bl_operators/geometry_nodes/__init__.pyi +2412 -596
  36. bl_operators/image/__init__.pyi +380 -82
  37. bl_operators/mesh/__init__.pyi +401 -85
  38. bl_operators/node/__init__.pyi +1756 -384
  39. bl_operators/object/__init__.pyi +2022 -552
  40. bl_operators/object_align/__init__.pyi +145 -31
  41. bl_operators/object_quick_effects/__init__.pyi +555 -124
  42. bl_operators/object_randomize_transform/__init__.pyi +136 -32
  43. bl_operators/presets/__init__.pyi +3516 -708
  44. bl_operators/rigidbody/__init__.pyi +401 -85
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
  46. bl_operators/sequencer/__init__.pyi +731 -149
  47. bl_operators/spreadsheet/__init__.pyi +145 -30
  48. bl_operators/userpref/__init__.pyi +3416 -824
  49. bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
  50. bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
  51. bl_operators/uvcalc_transform/__init__.pyi +344 -73
  52. bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
  53. bl_operators/view3d/__init__.pyi +697 -146
  54. bl_operators/wm/__init__.pyi +6287 -1533
  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 +504 -106
  59. bl_ui/anim/__init__.pyi +164 -33
  60. bl_ui/asset_shelf/__init__.pyi +146 -31
  61. bl_ui/generic_ui_list/__init__.pyi +471 -99
  62. bl_ui/node_add_menu/__init__.pyi +196 -40
  63. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
  64. bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
  65. bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
  66. bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
  67. bl_ui/properties_animviz/__init__.pyi +32 -2
  68. bl_ui/properties_collection/__init__.pyi +787 -179
  69. bl_ui/properties_constraint/__init__.pyi +28635 -5523
  70. bl_ui/properties_data_armature/__init__.pyi +1905 -448
  71. bl_ui/properties_data_bone/__init__.pyi +1560 -336
  72. bl_ui/properties_data_camera/__init__.pyi +2269 -494
  73. bl_ui/properties_data_curve/__init__.pyi +2362 -534
  74. bl_ui/properties_data_curves/__init__.pyi +951 -203
  75. bl_ui/properties_data_empty/__init__.pyi +317 -69
  76. bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
  78. bl_ui/properties_data_lattice/__init__.pyi +472 -104
  79. bl_ui/properties_data_light/__init__.pyi +1570 -337
  80. bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
  81. bl_ui/properties_data_mesh/__init__.pyi +3205 -767
  82. bl_ui/properties_data_metaball/__init__.pyi +774 -170
  83. bl_ui/properties_data_modifier/__init__.pyi +1554 -328
  84. bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
  85. bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
  86. bl_ui/properties_data_speaker/__init__.pyi +782 -168
  87. bl_ui/properties_data_volume/__init__.pyi +1243 -281
  88. bl_ui/properties_freestyle/__init__.pyi +4071 -1030
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
  90. bl_ui/properties_mask_common/__init__.pyi +1256 -249
  91. bl_ui/properties_material/__init__.pyi +2351 -542
  92. bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
  93. bl_ui/properties_object/__init__.pyi +2179 -512
  94. bl_ui/properties_output/__init__.pyi +2956 -705
  95. bl_ui/properties_paint_common/__init__.pyi +947 -140
  96. bl_ui/properties_particle/__init__.pyi +8322 -1970
  97. bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
  98. bl_ui/properties_physics_common/__init__.pyi +200 -44
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
  100. bl_ui/properties_physics_field/__init__.pyi +1695 -364
  101. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
  105. bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
  106. bl_ui/properties_render/__init__.pyi +8312 -1933
  107. bl_ui/properties_scene/__init__.pyi +2211 -539
  108. bl_ui/properties_texture/__init__.pyi +4185 -1013
  109. bl_ui/properties_view_layer/__init__.pyi +2803 -664
  110. bl_ui/properties_workspace/__init__.pyi +626 -148
  111. bl_ui/properties_world/__init__.pyi +1092 -234
  112. bl_ui/space_clip/__init__.pyi +11475 -2805
  113. bl_ui/space_console/__init__.pyi +967 -202
  114. bl_ui/space_dopesheet/__init__.pyi +4260 -966
  115. bl_ui/space_filebrowser/__init__.pyi +4852 -1187
  116. bl_ui/space_graph/__init__.pyi +3251 -702
  117. bl_ui/space_image/__init__.pyi +12219 -2968
  118. bl_ui/space_info/__init__.pyi +964 -200
  119. bl_ui/space_nla/__init__.pyi +2756 -584
  120. bl_ui/space_node/__init__.pyi +5661 -1265
  121. bl_ui/space_outliner/__init__.pyi +2294 -478
  122. bl_ui/space_properties/__init__.pyi +417 -92
  123. bl_ui/space_sequencer/__init__.pyi +12436 -3009
  124. bl_ui/space_spreadsheet/__init__.pyi +184 -36
  125. bl_ui/space_statusbar/__init__.pyi +135 -30
  126. bl_ui/space_text/__init__.pyi +2556 -542
  127. bl_ui/space_time/__init__.pyi +1151 -243
  128. bl_ui/space_toolsystem_common/__init__.pyi +368 -66
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
  130. bl_ui/space_topbar/__init__.pyi +4214 -887
  131. bl_ui/space_userpref/__init__.pyi +13920 -3468
  132. bl_ui/space_view3d/__init__.pyi +43701 -10599
  133. bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
  134. bl_ui/utils/__init__.pyi +42 -4
  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 +268 -262
  143. bmesh/utils/__init__.pyi +55 -55
  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 +350 -305
  152. bpy/ops/anim/__init__.pyi +464 -426
  153. bpy/ops/armature/__init__.pyi +392 -360
  154. bpy/ops/asset/__init__.pyi +166 -129
  155. bpy/ops/boid/__init__.pyi +64 -37
  156. bpy/ops/brush/__init__.pyi +78 -72
  157. bpy/ops/buttons/__init__.pyi +136 -122
  158. bpy/ops/cachefile/__init__.pyi +128 -123
  159. bpy/ops/camera/__init__.pyi +22 -24
  160. bpy/ops/clip/__init__.pyi +844 -735
  161. bpy/ops/cloth/__init__.pyi +10 -11
  162. bpy/ops/collection/__init__.pyi +38 -38
  163. bpy/ops/console/__init__.pyi +170 -141
  164. bpy/ops/constraint/__init__.pyi +156 -159
  165. bpy/ops/curve/__init__.pyi +518 -461
  166. bpy/ops/curves/__init__.pyi +188 -159
  167. bpy/ops/cycles/__init__.pyi +20 -18
  168. bpy/ops/dpaint/__init__.pyi +40 -30
  169. bpy/ops/ed/__init__.pyi +136 -107
  170. bpy/ops/export_anim/__init__.pyi +18 -19
  171. bpy/ops/export_mesh/__init__.pyi +26 -27
  172. bpy/ops/export_scene/__init__.pyi +313 -334
  173. bpy/ops/file/__init__.pyi +394 -304
  174. bpy/ops/fluid/__init__.pyi +114 -63
  175. bpy/ops/font/__init__.pyi +272 -245
  176. bpy/ops/geometry/__init__.pyi +92 -87
  177. bpy/ops/gizmogroup/__init__.pyi +24 -21
  178. bpy/ops/gpencil/__init__.pyi +1530 -1476
  179. bpy/ops/graph/__init__.pyi +680 -659
  180. bpy/ops/grease_pencil/__init__.pyi +510 -390
  181. bpy/ops/image/__init__.pyi +650 -603
  182. bpy/ops/import_anim/__init__.pyi +26 -27
  183. bpy/ops/import_curve/__init__.pyi +6 -7
  184. bpy/ops/import_mesh/__init__.pyi +18 -21
  185. bpy/ops/import_scene/__init__.pyi +86 -95
  186. bpy/ops/info/__init__.pyi +68 -55
  187. bpy/ops/lattice/__init__.pyi +70 -63
  188. bpy/ops/marker/__init__.pyi +110 -111
  189. bpy/ops/mask/__init__.pyi +352 -308
  190. bpy/ops/material/__init__.pyi +24 -12
  191. bpy/ops/mball/__init__.pyi +72 -75
  192. bpy/ops/mesh/__init__.pyi +2052 -2088
  193. bpy/ops/nla/__init__.pyi +369 -313
  194. bpy/ops/node/__init__.pyi +944 -805
  195. bpy/ops/object/__init__.pyi +2662 -2461
  196. bpy/ops/outliner/__init__.pyi +582 -431
  197. bpy/ops/paint/__init__.pyi +605 -516
  198. bpy/ops/paintcurve/__init__.pyi +72 -60
  199. bpy/ops/palette/__init__.pyi +54 -46
  200. bpy/ops/particle/__init__.pyi +302 -245
  201. bpy/ops/pose/__init__.pyi +366 -330
  202. bpy/ops/poselib/__init__.pyi +78 -64
  203. bpy/ops/preferences/__init__.pyi +361 -341
  204. bpy/ops/ptcache/__init__.pyi +56 -38
  205. bpy/ops/render/__init__.pyi +120 -117
  206. bpy/ops/rigidbody/__init__.pyi +114 -97
  207. bpy/ops/scene/__init__.pyi +302 -240
  208. bpy/ops/screen/__init__.pyi +414 -363
  209. bpy/ops/script/__init__.pyi +20 -18
  210. bpy/ops/sculpt/__init__.pyi +414 -452
  211. bpy/ops/sculpt_curves/__init__.pyi +42 -43
  212. bpy/ops/sequencer/__init__.pyi +1094 -1053
  213. bpy/ops/sound/__init__.pyi +214 -206
  214. bpy/ops/spreadsheet/__init__.pyi +34 -28
  215. bpy/ops/surface/__init__.pyi +108 -114
  216. bpy/ops/text/__init__.pyi +432 -350
  217. bpy/ops/text_editor/__init__.pyi +10 -11
  218. bpy/ops/texture/__init__.pyi +32 -21
  219. bpy/ops/transform/__init__.pyi +801 -854
  220. bpy/ops/ui/__init__.pyi +254 -185
  221. bpy/ops/uilist/__init__.pyi +20 -23
  222. bpy/ops/uv/__init__.pyi +618 -626
  223. bpy/ops/view2d/__init__.pyi +162 -161
  224. bpy/ops/view3d/__init__.pyi +669 -658
  225. bpy/ops/wm/__init__.pyi +2433 -2415
  226. bpy/ops/workspace/__init__.pyi +54 -31
  227. bpy/ops/world/__init__.pyi +8 -4
  228. bpy/path/__init__.pyi +111 -68
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86789 -85719
  231. bpy/utils/__init__.pyi +265 -123
  232. bpy/utils/previews/__init__.pyi +103 -17
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/__init__.pyi +0 -4
  235. bpy_extras/anim_utils/__init__.pyi +11 -46
  236. bpy_extras/asset_utils/__init__.pyi +3 -12
  237. bpy_extras/id_map_utils/__init__.pyi +0 -2
  238. bpy_extras/image_utils/__init__.pyi +2 -2
  239. bpy_extras/io_utils/__init__.pyi +30 -27
  240. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  241. bpy_extras/mesh_utils/__init__.pyi +18 -18
  242. bpy_extras/node_utils/__init__.pyi +4 -3
  243. bpy_extras/object_utils/__init__.pyi +25 -26
  244. bpy_extras/view3d_utils/__init__.pyi +33 -38
  245. bpy_restrict_state/__init__.pyi +14 -1
  246. bpy_types/__init__.pyi +3873 -997
  247. console_python/__init__.pyi +41 -7
  248. console_shell/__init__.pyi +24 -5
  249. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  250. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  251. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  252. freestyle/chainingiterators/__init__.pyi +50 -52
  253. freestyle/functions/__init__.pyi +303 -207
  254. freestyle/predicates/__init__.pyi +299 -115
  255. freestyle/shaders/__init__.pyi +49 -80
  256. freestyle/types/__init__.pyi +465 -472
  257. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  258. freestyle/utils/__init__.pyi +28 -18
  259. gpu/capabilities/__init__.pyi +27 -19
  260. gpu/matrix/__init__.pyi +14 -16
  261. gpu/platform/__init__.pyi +5 -5
  262. gpu/shader/__init__.pyi +2 -5
  263. gpu/state/__init__.pyi +1 -1
  264. gpu/texture/__init__.pyi +3 -3
  265. gpu/types/__init__.pyi +54 -85
  266. gpu_extras/batch/__init__.pyi +27 -5
  267. gpu_extras/presets/__init__.pyi +52 -14
  268. graphviz_export/__init__.pyi +9 -2
  269. idprop/types/__init__.pyi +36 -12
  270. imbuf/__init__.pyi +8 -9
  271. imbuf/types/__init__.pyi +8 -15
  272. keyingsets_builtins/__init__.pyi +3149 -701
  273. keyingsets_utils/__init__.pyi +69 -14
  274. mathutils/__init__.pyi +502 -427
  275. mathutils/bvhtree/__init__.pyi +28 -32
  276. mathutils/geometry/__init__.pyi +177 -186
  277. mathutils/kdtree/__init__.pyi +16 -18
  278. mathutils/noise/__init__.pyi +47 -48
  279. nodeitems_builtins/__init__.pyi +50 -10
  280. nodeitems_utils/__init__.pyi +58 -10
  281. rna_info/__init__.pyi +230 -26
  282. rna_keymap_ui/__init__.pyi +29 -6
  283. rna_prop_ui/__init__.pyi +69 -12
  284. rna_xml/__init__.pyi +29 -6
  285. sys_info/__init__.pyi +4 -1
  286. bpy_extras/bmesh_utils/__init__.pyi +0 -6
  287. bpy_extras/extensions/__init__.pyi +0 -4
  288. bpy_extras/extensions/junction_module/__init__.pyi +0 -12
  289. bpy_extras/node_shader_utils/__init__.pyi +0 -131
  290. bpy_extras/wm_utils/__init__.pyi +0 -4
  291. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
  292. fake_bpy_module-20240224.dist-info/RECORD +0 -349
  293. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
@@ -3,69 +3,263 @@ import bpy_types
3
3
 
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
- class OUTLINER_HT_header(bpy_types.Header, bpy_types._GenericUI):
6
+ class OUTLINER_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
+ """ """
17
+
18
+ def append(self, draw_func):
19
+ """
20
+
21
+ :param draw_func:
22
+ """
23
+ ...
24
+
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
+
37
+ def draw(self, context):
38
+ """
39
+
40
+ :param context:
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
+
116
+ def prepend(self, draw_func):
117
+ """
118
+
119
+ :param draw_func:
120
+ """
121
+ ...
122
+
123
+ def property_overridable_library_set(self):
124
+ """ """
125
+ ...
126
+
127
+ def property_unset(self):
128
+ """ """
129
+ ...
130
+
131
+ def remove(self, draw_func):
132
+ """
133
+
134
+ :param draw_func:
135
+ """
136
+ ...
137
+
138
+ def type_recast(self):
139
+ """ """
140
+ ...
141
+
142
+ def values(self):
143
+ """ """
144
+ ...
145
+
146
+ class OUTLINER_MT_asset(bpy_types._GenericUI):
147
+ """ """
10
148
 
11
- def append(self, draw_func): ...
12
- def as_pointer(self): ...
13
- def bl_rna_get_subclass(self): ...
14
- def bl_rna_get_subclass_py(self): ...
15
- def draw(self, context): ...
16
- def driver_add(self): ...
17
- def driver_remove(self): ...
18
- def get(self): ...
19
- def id_properties_clear(self): ...
20
- def id_properties_ensure(self): ...
21
- def id_properties_ui(self): ...
22
- def is_extended(self): ...
23
- def is_property_hidden(self): ...
24
- def is_property_overridable_library(self): ...
25
- def is_property_readonly(self): ...
26
- def is_property_set(self): ...
27
- def items(self): ...
28
- def keyframe_delete(self): ...
29
- def keyframe_insert(self): ...
30
- def keys(self): ...
31
- def path_from_id(self): ...
32
- def path_resolve(self): ...
33
- def pop(self): ...
34
- def prepend(self, draw_func): ...
35
- def property_overridable_library_set(self): ...
36
- def property_unset(self): ...
37
- def remove(self, draw_func): ...
38
- def type_recast(self): ...
39
- def values(self): ...
40
-
41
- class OUTLINER_MT_asset(bpy_types.Menu, bpy_types._GenericUI):
42
149
  bl_label: typing.Any
150
+ """ """
151
+
43
152
  bl_rna: typing.Any
153
+ """ """
154
+
44
155
  id_data: typing.Any
156
+ """ """
157
+
158
+ def append(self, draw_func):
159
+ """
160
+
161
+ :param draw_func:
162
+ """
163
+ ...
164
+
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
+
177
+ def draw(self, _context):
178
+ """
179
+
180
+ :param _context:
181
+ """
182
+ ...
183
+
184
+ def draw_collapsible(self, context, layout):
185
+ """
186
+
187
+ :param context:
188
+ :param layout:
189
+ """
190
+ ...
191
+
192
+ def draw_preset(self, _context):
193
+ """
194
+
195
+ :param _context:
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
+ ...
45
262
 
46
- def append(self, draw_func): ...
47
- def as_pointer(self): ...
48
- def bl_rna_get_subclass(self): ...
49
- def bl_rna_get_subclass_py(self): ...
50
- def draw(self, _context): ...
51
- def draw_collapsible(self, context, layout): ...
52
- def draw_preset(self, _context): ...
53
- def driver_add(self): ...
54
- def driver_remove(self): ...
55
- def get(self): ...
56
- def id_properties_clear(self): ...
57
- def id_properties_ensure(self): ...
58
- def id_properties_ui(self): ...
59
- def is_extended(self): ...
60
- def is_property_hidden(self): ...
61
- def is_property_overridable_library(self): ...
62
- def is_property_readonly(self): ...
63
- def is_property_set(self): ...
64
- def items(self): ...
65
- def keyframe_delete(self): ...
66
- def keyframe_insert(self): ...
67
- def keys(self): ...
68
- def path_from_id(self): ...
69
263
  def path_menu(
70
264
  self,
71
265
  searchpaths,
@@ -76,45 +270,182 @@ class OUTLINER_MT_asset(bpy_types.Menu, bpy_types._GenericUI):
76
270
  filter_path,
77
271
  display_name,
78
272
  add_operator,
79
- ): ...
80
- def path_resolve(self): ...
81
- def poll(self, context): ...
82
- def pop(self): ...
83
- def prepend(self, draw_func): ...
84
- def property_overridable_library_set(self): ...
85
- def property_unset(self): ...
86
- def remove(self, draw_func): ...
87
- def type_recast(self): ...
88
- def values(self): ...
89
-
90
- class OUTLINER_MT_collection(bpy_types.Menu, bpy_types._GenericUI):
273
+ ):
274
+ """
275
+
276
+ :param searchpaths:
277
+ :param operator:
278
+ :param props_default:
279
+ :param prop_filepath:
280
+ :param filter_ext:
281
+ :param filter_path:
282
+ :param display_name:
283
+ :param add_operator:
284
+ """
285
+ ...
286
+
287
+ def path_resolve(self):
288
+ """ """
289
+ ...
290
+
291
+ def poll(self, context):
292
+ """
293
+
294
+ :param context:
295
+ """
296
+ ...
297
+
298
+ def pop(self):
299
+ """ """
300
+ ...
301
+
302
+ def prepend(self, draw_func):
303
+ """
304
+
305
+ :param draw_func:
306
+ """
307
+ ...
308
+
309
+ def property_overridable_library_set(self):
310
+ """ """
311
+ ...
312
+
313
+ def property_unset(self):
314
+ """ """
315
+ ...
316
+
317
+ def remove(self, draw_func):
318
+ """
319
+
320
+ :param draw_func:
321
+ """
322
+ ...
323
+
324
+ def type_recast(self):
325
+ """ """
326
+ ...
327
+
328
+ def values(self):
329
+ """ """
330
+ ...
331
+
332
+ class OUTLINER_MT_collection(bpy_types._GenericUI):
333
+ """ """
334
+
91
335
  bl_label: typing.Any
336
+ """ """
337
+
92
338
  bl_rna: typing.Any
339
+ """ """
340
+
93
341
  id_data: typing.Any
342
+ """ """
343
+
344
+ def append(self, draw_func):
345
+ """
346
+
347
+ :param draw_func:
348
+ """
349
+ ...
350
+
351
+ def as_pointer(self):
352
+ """ """
353
+ ...
354
+
355
+ def bl_rna_get_subclass(self):
356
+ """ """
357
+ ...
358
+
359
+ def bl_rna_get_subclass_py(self):
360
+ """ """
361
+ ...
362
+
363
+ def draw(self, context):
364
+ """
365
+
366
+ :param context:
367
+ """
368
+ ...
369
+
370
+ def draw_collapsible(self, context, layout):
371
+ """
372
+
373
+ :param context:
374
+ :param layout:
375
+ """
376
+ ...
377
+
378
+ def draw_preset(self, _context):
379
+ """
380
+
381
+ :param _context:
382
+ """
383
+ ...
384
+
385
+ def driver_add(self):
386
+ """ """
387
+ ...
388
+
389
+ def driver_remove(self):
390
+ """ """
391
+ ...
392
+
393
+ def get(self):
394
+ """ """
395
+ ...
396
+
397
+ def id_properties_clear(self):
398
+ """ """
399
+ ...
400
+
401
+ def id_properties_ensure(self):
402
+ """ """
403
+ ...
404
+
405
+ def id_properties_ui(self):
406
+ """ """
407
+ ...
408
+
409
+ def is_extended(self):
410
+ """ """
411
+ ...
412
+
413
+ def is_property_hidden(self):
414
+ """ """
415
+ ...
416
+
417
+ def is_property_overridable_library(self):
418
+ """ """
419
+ ...
420
+
421
+ def is_property_readonly(self):
422
+ """ """
423
+ ...
424
+
425
+ def is_property_set(self):
426
+ """ """
427
+ ...
428
+
429
+ def items(self):
430
+ """ """
431
+ ...
432
+
433
+ def keyframe_delete(self):
434
+ """ """
435
+ ...
436
+
437
+ def keyframe_insert(self):
438
+ """ """
439
+ ...
440
+
441
+ def keys(self):
442
+ """ """
443
+ ...
444
+
445
+ def path_from_id(self):
446
+ """ """
447
+ ...
94
448
 
95
- def append(self, draw_func): ...
96
- def as_pointer(self): ...
97
- def bl_rna_get_subclass(self): ...
98
- def bl_rna_get_subclass_py(self): ...
99
- def draw(self, context): ...
100
- def draw_collapsible(self, context, layout): ...
101
- def draw_preset(self, _context): ...
102
- def driver_add(self): ...
103
- def driver_remove(self): ...
104
- def get(self): ...
105
- def id_properties_clear(self): ...
106
- def id_properties_ensure(self): ...
107
- def id_properties_ui(self): ...
108
- def is_extended(self): ...
109
- def is_property_hidden(self): ...
110
- def is_property_overridable_library(self): ...
111
- def is_property_readonly(self): ...
112
- def is_property_set(self): ...
113
- def items(self): ...
114
- def keyframe_delete(self): ...
115
- def keyframe_insert(self): ...
116
- def keys(self): ...
117
- def path_from_id(self): ...
118
449
  def path_menu(
119
450
  self,
120
451
  searchpaths,
@@ -125,45 +456,183 @@ class OUTLINER_MT_collection(bpy_types.Menu, bpy_types._GenericUI):
125
456
  filter_path,
126
457
  display_name,
127
458
  add_operator,
128
- ): ...
129
- def path_resolve(self): ...
130
- def pop(self): ...
131
- def prepend(self, draw_func): ...
132
- def property_overridable_library_set(self): ...
133
- def property_unset(self): ...
134
- def remove(self, draw_func): ...
135
- def type_recast(self): ...
136
- def values(self): ...
137
-
138
- class OUTLINER_MT_collection_new(bpy_types.Menu, bpy_types._GenericUI):
459
+ ):
460
+ """
461
+
462
+ :param searchpaths:
463
+ :param operator:
464
+ :param props_default:
465
+ :param prop_filepath:
466
+ :param filter_ext:
467
+ :param filter_path:
468
+ :param display_name:
469
+ :param add_operator:
470
+ """
471
+ ...
472
+
473
+ def path_resolve(self):
474
+ """ """
475
+ ...
476
+
477
+ def pop(self):
478
+ """ """
479
+ ...
480
+
481
+ def prepend(self, draw_func):
482
+ """
483
+
484
+ :param draw_func:
485
+ """
486
+ ...
487
+
488
+ def property_overridable_library_set(self):
489
+ """ """
490
+ ...
491
+
492
+ def property_unset(self):
493
+ """ """
494
+ ...
495
+
496
+ def remove(self, draw_func):
497
+ """
498
+
499
+ :param draw_func:
500
+ """
501
+ ...
502
+
503
+ def type_recast(self):
504
+ """ """
505
+ ...
506
+
507
+ def values(self):
508
+ """ """
509
+ ...
510
+
511
+ class OUTLINER_MT_collection_new(bpy_types._GenericUI):
512
+ """ """
513
+
139
514
  bl_label: typing.Any
515
+ """ """
516
+
140
517
  bl_rna: typing.Any
518
+ """ """
519
+
141
520
  id_data: typing.Any
521
+ """ """
522
+
523
+ def append(self, draw_func):
524
+ """
525
+
526
+ :param draw_func:
527
+ """
528
+ ...
529
+
530
+ def as_pointer(self):
531
+ """ """
532
+ ...
533
+
534
+ def bl_rna_get_subclass(self):
535
+ """ """
536
+ ...
537
+
538
+ def bl_rna_get_subclass_py(self):
539
+ """ """
540
+ ...
541
+
542
+ def draw(self, context):
543
+ """
544
+
545
+ :param context:
546
+ """
547
+ ...
548
+
549
+ def draw_collapsible(self, context, layout):
550
+ """
551
+
552
+ :param context:
553
+ :param layout:
554
+ """
555
+ ...
556
+
557
+ def draw_preset(self, _context):
558
+ """
559
+
560
+ :param _context:
561
+ """
562
+ ...
563
+
564
+ def draw_without_context_menu(self, _context, layout):
565
+ """
566
+
567
+ :param _context:
568
+ :param layout:
569
+ """
570
+ ...
571
+
572
+ def driver_add(self):
573
+ """ """
574
+ ...
575
+
576
+ def driver_remove(self):
577
+ """ """
578
+ ...
579
+
580
+ def get(self):
581
+ """ """
582
+ ...
583
+
584
+ def id_properties_clear(self):
585
+ """ """
586
+ ...
587
+
588
+ def id_properties_ensure(self):
589
+ """ """
590
+ ...
591
+
592
+ def id_properties_ui(self):
593
+ """ """
594
+ ...
595
+
596
+ def is_extended(self):
597
+ """ """
598
+ ...
599
+
600
+ def is_property_hidden(self):
601
+ """ """
602
+ ...
603
+
604
+ def is_property_overridable_library(self):
605
+ """ """
606
+ ...
607
+
608
+ def is_property_readonly(self):
609
+ """ """
610
+ ...
611
+
612
+ def is_property_set(self):
613
+ """ """
614
+ ...
615
+
616
+ def items(self):
617
+ """ """
618
+ ...
619
+
620
+ def keyframe_delete(self):
621
+ """ """
622
+ ...
623
+
624
+ def keyframe_insert(self):
625
+ """ """
626
+ ...
627
+
628
+ def keys(self):
629
+ """ """
630
+ ...
631
+
632
+ def path_from_id(self):
633
+ """ """
634
+ ...
142
635
 
143
- def append(self, draw_func): ...
144
- def as_pointer(self): ...
145
- def bl_rna_get_subclass(self): ...
146
- def bl_rna_get_subclass_py(self): ...
147
- def draw(self, context): ...
148
- def draw_collapsible(self, context, layout): ...
149
- def draw_preset(self, _context): ...
150
- def draw_without_context_menu(self, _context, layout): ...
151
- def driver_add(self): ...
152
- def driver_remove(self): ...
153
- def get(self): ...
154
- def id_properties_clear(self): ...
155
- def id_properties_ensure(self): ...
156
- def id_properties_ui(self): ...
157
- def is_extended(self): ...
158
- def is_property_hidden(self): ...
159
- def is_property_overridable_library(self): ...
160
- def is_property_readonly(self): ...
161
- def is_property_set(self): ...
162
- def items(self): ...
163
- def keyframe_delete(self): ...
164
- def keyframe_insert(self): ...
165
- def keys(self): ...
166
- def path_from_id(self): ...
167
636
  def path_menu(
168
637
  self,
169
638
  searchpaths,
@@ -174,44 +643,175 @@ class OUTLINER_MT_collection_new(bpy_types.Menu, bpy_types._GenericUI):
174
643
  filter_path,
175
644
  display_name,
176
645
  add_operator,
177
- ): ...
178
- def path_resolve(self): ...
179
- def pop(self): ...
180
- def prepend(self, draw_func): ...
181
- def property_overridable_library_set(self): ...
182
- def property_unset(self): ...
183
- def remove(self, draw_func): ...
184
- def type_recast(self): ...
185
- def values(self): ...
186
-
187
- class OUTLINER_MT_collection_view_layer(bpy_types.Menu, bpy_types._GenericUI):
646
+ ):
647
+ """
648
+
649
+ :param searchpaths:
650
+ :param operator:
651
+ :param props_default:
652
+ :param prop_filepath:
653
+ :param filter_ext:
654
+ :param filter_path:
655
+ :param display_name:
656
+ :param add_operator:
657
+ """
658
+ ...
659
+
660
+ def path_resolve(self):
661
+ """ """
662
+ ...
663
+
664
+ def pop(self):
665
+ """ """
666
+ ...
667
+
668
+ def prepend(self, draw_func):
669
+ """
670
+
671
+ :param draw_func:
672
+ """
673
+ ...
674
+
675
+ def property_overridable_library_set(self):
676
+ """ """
677
+ ...
678
+
679
+ def property_unset(self):
680
+ """ """
681
+ ...
682
+
683
+ def remove(self, draw_func):
684
+ """
685
+
686
+ :param draw_func:
687
+ """
688
+ ...
689
+
690
+ def type_recast(self):
691
+ """ """
692
+ ...
693
+
694
+ def values(self):
695
+ """ """
696
+ ...
697
+
698
+ class OUTLINER_MT_collection_view_layer(bpy_types._GenericUI):
699
+ """ """
700
+
188
701
  bl_label: typing.Any
702
+ """ """
703
+
189
704
  bl_rna: typing.Any
705
+ """ """
706
+
190
707
  id_data: typing.Any
708
+ """ """
709
+
710
+ def append(self, draw_func):
711
+ """
712
+
713
+ :param draw_func:
714
+ """
715
+ ...
716
+
717
+ def as_pointer(self):
718
+ """ """
719
+ ...
720
+
721
+ def bl_rna_get_subclass(self):
722
+ """ """
723
+ ...
724
+
725
+ def bl_rna_get_subclass_py(self):
726
+ """ """
727
+ ...
728
+
729
+ def draw(self, context):
730
+ """
731
+
732
+ :param context:
733
+ """
734
+ ...
735
+
736
+ def draw_collapsible(self, context, layout):
737
+ """
738
+
739
+ :param context:
740
+ :param layout:
741
+ """
742
+ ...
743
+
744
+ def draw_preset(self, _context):
745
+ """
746
+
747
+ :param _context:
748
+ """
749
+ ...
750
+
751
+ def driver_add(self):
752
+ """ """
753
+ ...
754
+
755
+ def driver_remove(self):
756
+ """ """
757
+ ...
758
+
759
+ def get(self):
760
+ """ """
761
+ ...
762
+
763
+ def id_properties_clear(self):
764
+ """ """
765
+ ...
766
+
767
+ def id_properties_ensure(self):
768
+ """ """
769
+ ...
770
+
771
+ def id_properties_ui(self):
772
+ """ """
773
+ ...
774
+
775
+ def is_extended(self):
776
+ """ """
777
+ ...
778
+
779
+ def is_property_hidden(self):
780
+ """ """
781
+ ...
782
+
783
+ def is_property_overridable_library(self):
784
+ """ """
785
+ ...
786
+
787
+ def is_property_readonly(self):
788
+ """ """
789
+ ...
790
+
791
+ def is_property_set(self):
792
+ """ """
793
+ ...
794
+
795
+ def items(self):
796
+ """ """
797
+ ...
798
+
799
+ def keyframe_delete(self):
800
+ """ """
801
+ ...
802
+
803
+ def keyframe_insert(self):
804
+ """ """
805
+ ...
806
+
807
+ def keys(self):
808
+ """ """
809
+ ...
810
+
811
+ def path_from_id(self):
812
+ """ """
813
+ ...
191
814
 
192
- def append(self, draw_func): ...
193
- def as_pointer(self): ...
194
- def bl_rna_get_subclass(self): ...
195
- def bl_rna_get_subclass_py(self): ...
196
- def draw(self, context): ...
197
- def draw_collapsible(self, context, layout): ...
198
- def draw_preset(self, _context): ...
199
- def driver_add(self): ...
200
- def driver_remove(self): ...
201
- def get(self): ...
202
- def id_properties_clear(self): ...
203
- def id_properties_ensure(self): ...
204
- def id_properties_ui(self): ...
205
- def is_extended(self): ...
206
- def is_property_hidden(self): ...
207
- def is_property_overridable_library(self): ...
208
- def is_property_readonly(self): ...
209
- def is_property_set(self): ...
210
- def items(self): ...
211
- def keyframe_delete(self): ...
212
- def keyframe_insert(self): ...
213
- def keys(self): ...
214
- def path_from_id(self): ...
215
815
  def path_menu(
216
816
  self,
217
817
  searchpaths,
@@ -222,44 +822,175 @@ class OUTLINER_MT_collection_view_layer(bpy_types.Menu, bpy_types._GenericUI):
222
822
  filter_path,
223
823
  display_name,
224
824
  add_operator,
225
- ): ...
226
- def path_resolve(self): ...
227
- def pop(self): ...
228
- def prepend(self, draw_func): ...
229
- def property_overridable_library_set(self): ...
230
- def property_unset(self): ...
231
- def remove(self, draw_func): ...
232
- def type_recast(self): ...
233
- def values(self): ...
234
-
235
- class OUTLINER_MT_collection_visibility(bpy_types.Menu, bpy_types._GenericUI):
825
+ ):
826
+ """
827
+
828
+ :param searchpaths:
829
+ :param operator:
830
+ :param props_default:
831
+ :param prop_filepath:
832
+ :param filter_ext:
833
+ :param filter_path:
834
+ :param display_name:
835
+ :param add_operator:
836
+ """
837
+ ...
838
+
839
+ def path_resolve(self):
840
+ """ """
841
+ ...
842
+
843
+ def pop(self):
844
+ """ """
845
+ ...
846
+
847
+ def prepend(self, draw_func):
848
+ """
849
+
850
+ :param draw_func:
851
+ """
852
+ ...
853
+
854
+ def property_overridable_library_set(self):
855
+ """ """
856
+ ...
857
+
858
+ def property_unset(self):
859
+ """ """
860
+ ...
861
+
862
+ def remove(self, draw_func):
863
+ """
864
+
865
+ :param draw_func:
866
+ """
867
+ ...
868
+
869
+ def type_recast(self):
870
+ """ """
871
+ ...
872
+
873
+ def values(self):
874
+ """ """
875
+ ...
876
+
877
+ class OUTLINER_MT_collection_visibility(bpy_types._GenericUI):
878
+ """ """
879
+
236
880
  bl_label: typing.Any
881
+ """ """
882
+
237
883
  bl_rna: typing.Any
884
+ """ """
885
+
238
886
  id_data: typing.Any
887
+ """ """
888
+
889
+ def append(self, draw_func):
890
+ """
891
+
892
+ :param draw_func:
893
+ """
894
+ ...
895
+
896
+ def as_pointer(self):
897
+ """ """
898
+ ...
899
+
900
+ def bl_rna_get_subclass(self):
901
+ """ """
902
+ ...
903
+
904
+ def bl_rna_get_subclass_py(self):
905
+ """ """
906
+ ...
907
+
908
+ def draw(self, _context):
909
+ """
910
+
911
+ :param _context:
912
+ """
913
+ ...
914
+
915
+ def draw_collapsible(self, context, layout):
916
+ """
917
+
918
+ :param context:
919
+ :param layout:
920
+ """
921
+ ...
922
+
923
+ def draw_preset(self, _context):
924
+ """
925
+
926
+ :param _context:
927
+ """
928
+ ...
929
+
930
+ def driver_add(self):
931
+ """ """
932
+ ...
933
+
934
+ def driver_remove(self):
935
+ """ """
936
+ ...
937
+
938
+ def get(self):
939
+ """ """
940
+ ...
941
+
942
+ def id_properties_clear(self):
943
+ """ """
944
+ ...
945
+
946
+ def id_properties_ensure(self):
947
+ """ """
948
+ ...
949
+
950
+ def id_properties_ui(self):
951
+ """ """
952
+ ...
953
+
954
+ def is_extended(self):
955
+ """ """
956
+ ...
957
+
958
+ def is_property_hidden(self):
959
+ """ """
960
+ ...
961
+
962
+ def is_property_overridable_library(self):
963
+ """ """
964
+ ...
965
+
966
+ def is_property_readonly(self):
967
+ """ """
968
+ ...
969
+
970
+ def is_property_set(self):
971
+ """ """
972
+ ...
973
+
974
+ def items(self):
975
+ """ """
976
+ ...
977
+
978
+ def keyframe_delete(self):
979
+ """ """
980
+ ...
981
+
982
+ def keyframe_insert(self):
983
+ """ """
984
+ ...
985
+
986
+ def keys(self):
987
+ """ """
988
+ ...
989
+
990
+ def path_from_id(self):
991
+ """ """
992
+ ...
239
993
 
240
- def append(self, draw_func): ...
241
- def as_pointer(self): ...
242
- def bl_rna_get_subclass(self): ...
243
- def bl_rna_get_subclass_py(self): ...
244
- def draw(self, _context): ...
245
- def draw_collapsible(self, context, layout): ...
246
- def draw_preset(self, _context): ...
247
- def driver_add(self): ...
248
- def driver_remove(self): ...
249
- def get(self): ...
250
- def id_properties_clear(self): ...
251
- def id_properties_ensure(self): ...
252
- def id_properties_ui(self): ...
253
- def is_extended(self): ...
254
- def is_property_hidden(self): ...
255
- def is_property_overridable_library(self): ...
256
- def is_property_readonly(self): ...
257
- def is_property_set(self): ...
258
- def items(self): ...
259
- def keyframe_delete(self): ...
260
- def keyframe_insert(self): ...
261
- def keys(self): ...
262
- def path_from_id(self): ...
263
994
  def path_menu(
264
995
  self,
265
996
  searchpaths,
@@ -270,48 +1001,185 @@ class OUTLINER_MT_collection_visibility(bpy_types.Menu, bpy_types._GenericUI):
270
1001
  filter_path,
271
1002
  display_name,
272
1003
  add_operator,
273
- ): ...
274
- def path_resolve(self): ...
275
- def pop(self): ...
276
- def prepend(self, draw_func): ...
277
- def property_overridable_library_set(self): ...
278
- def property_unset(self): ...
279
- def remove(self, draw_func): ...
280
- def type_recast(self): ...
281
- def values(self): ...
282
-
283
- class OUTLINER_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
1004
+ ):
1005
+ """
1006
+
1007
+ :param searchpaths:
1008
+ :param operator:
1009
+ :param props_default:
1010
+ :param prop_filepath:
1011
+ :param filter_ext:
1012
+ :param filter_path:
1013
+ :param display_name:
1014
+ :param add_operator:
1015
+ """
1016
+ ...
1017
+
1018
+ def path_resolve(self):
1019
+ """ """
1020
+ ...
1021
+
1022
+ def pop(self):
1023
+ """ """
1024
+ ...
1025
+
1026
+ def prepend(self, draw_func):
1027
+ """
1028
+
1029
+ :param draw_func:
1030
+ """
1031
+ ...
1032
+
1033
+ def property_overridable_library_set(self):
1034
+ """ """
1035
+ ...
1036
+
1037
+ def property_unset(self):
1038
+ """ """
1039
+ ...
1040
+
1041
+ def remove(self, draw_func):
1042
+ """
1043
+
1044
+ :param draw_func:
1045
+ """
1046
+ ...
1047
+
1048
+ def type_recast(self):
1049
+ """ """
1050
+ ...
1051
+
1052
+ def values(self):
1053
+ """ """
1054
+ ...
1055
+
1056
+ class OUTLINER_MT_context_menu(bpy_types._GenericUI):
1057
+ """ """
1058
+
284
1059
  bl_label: typing.Any
1060
+ """ """
1061
+
285
1062
  bl_rna: typing.Any
1063
+ """ """
1064
+
286
1065
  id_data: typing.Any
1066
+ """ """
287
1067
 
288
- def append(self, draw_func): ...
289
- def as_pointer(self): ...
290
- def bl_rna_get_subclass(self): ...
291
- def bl_rna_get_subclass_py(self): ...
292
- def draw(self, context): ...
293
- def draw_collapsible(self, context, layout): ...
294
- def draw_common_operators(self, layout): ...
295
- def draw_preset(self, _context): ...
296
- def driver_add(self): ...
297
- def driver_remove(self): ...
298
- def get(self): ...
299
- def id_properties_clear(self): ...
300
- def id_properties_ensure(self): ...
301
- def id_properties_ui(self): ...
302
- def is_extended(self): ...
303
- def is_property_hidden(self): ...
304
- def is_property_overridable_library(self): ...
305
- def is_property_readonly(self): ...
306
- def is_property_set(self): ...
307
- def items(self): ...
308
- def keyframe_delete(self): ...
309
- def keyframe_insert(self): ...
310
- def keys(self): ...
311
- def path_from_id(self): ...
312
- def path_menu(
313
- self,
314
- searchpaths,
1068
+ def append(self, draw_func):
1069
+ """
1070
+
1071
+ :param draw_func:
1072
+ """
1073
+ ...
1074
+
1075
+ def as_pointer(self):
1076
+ """ """
1077
+ ...
1078
+
1079
+ def bl_rna_get_subclass(self):
1080
+ """ """
1081
+ ...
1082
+
1083
+ def bl_rna_get_subclass_py(self):
1084
+ """ """
1085
+ ...
1086
+
1087
+ def draw(self, context):
1088
+ """
1089
+
1090
+ :param context:
1091
+ """
1092
+ ...
1093
+
1094
+ def draw_collapsible(self, context, layout):
1095
+ """
1096
+
1097
+ :param context:
1098
+ :param layout:
1099
+ """
1100
+ ...
1101
+
1102
+ def draw_common_operators(self, layout):
1103
+ """
1104
+
1105
+ :param layout:
1106
+ """
1107
+ ...
1108
+
1109
+ def draw_preset(self, _context):
1110
+ """
1111
+
1112
+ :param _context:
1113
+ """
1114
+ ...
1115
+
1116
+ def driver_add(self):
1117
+ """ """
1118
+ ...
1119
+
1120
+ def driver_remove(self):
1121
+ """ """
1122
+ ...
1123
+
1124
+ def get(self):
1125
+ """ """
1126
+ ...
1127
+
1128
+ def id_properties_clear(self):
1129
+ """ """
1130
+ ...
1131
+
1132
+ def id_properties_ensure(self):
1133
+ """ """
1134
+ ...
1135
+
1136
+ def id_properties_ui(self):
1137
+ """ """
1138
+ ...
1139
+
1140
+ def is_extended(self):
1141
+ """ """
1142
+ ...
1143
+
1144
+ def is_property_hidden(self):
1145
+ """ """
1146
+ ...
1147
+
1148
+ def is_property_overridable_library(self):
1149
+ """ """
1150
+ ...
1151
+
1152
+ def is_property_readonly(self):
1153
+ """ """
1154
+ ...
1155
+
1156
+ def is_property_set(self):
1157
+ """ """
1158
+ ...
1159
+
1160
+ def items(self):
1161
+ """ """
1162
+ ...
1163
+
1164
+ def keyframe_delete(self):
1165
+ """ """
1166
+ ...
1167
+
1168
+ def keyframe_insert(self):
1169
+ """ """
1170
+ ...
1171
+
1172
+ def keys(self):
1173
+ """ """
1174
+ ...
1175
+
1176
+ def path_from_id(self):
1177
+ """ """
1178
+ ...
1179
+
1180
+ def path_menu(
1181
+ self,
1182
+ searchpaths,
315
1183
  operator,
316
1184
  props_default,
317
1185
  prop_filepath,
@@ -319,44 +1187,175 @@ class OUTLINER_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
319
1187
  filter_path,
320
1188
  display_name,
321
1189
  add_operator,
322
- ): ...
323
- def path_resolve(self): ...
324
- def pop(self): ...
325
- def prepend(self, draw_func): ...
326
- def property_overridable_library_set(self): ...
327
- def property_unset(self): ...
328
- def remove(self, draw_func): ...
329
- def type_recast(self): ...
330
- def values(self): ...
331
-
332
- class OUTLINER_MT_context_menu_view(bpy_types.Menu, bpy_types._GenericUI):
1190
+ ):
1191
+ """
1192
+
1193
+ :param searchpaths:
1194
+ :param operator:
1195
+ :param props_default:
1196
+ :param prop_filepath:
1197
+ :param filter_ext:
1198
+ :param filter_path:
1199
+ :param display_name:
1200
+ :param add_operator:
1201
+ """
1202
+ ...
1203
+
1204
+ def path_resolve(self):
1205
+ """ """
1206
+ ...
1207
+
1208
+ def pop(self):
1209
+ """ """
1210
+ ...
1211
+
1212
+ def prepend(self, draw_func):
1213
+ """
1214
+
1215
+ :param draw_func:
1216
+ """
1217
+ ...
1218
+
1219
+ def property_overridable_library_set(self):
1220
+ """ """
1221
+ ...
1222
+
1223
+ def property_unset(self):
1224
+ """ """
1225
+ ...
1226
+
1227
+ def remove(self, draw_func):
1228
+ """
1229
+
1230
+ :param draw_func:
1231
+ """
1232
+ ...
1233
+
1234
+ def type_recast(self):
1235
+ """ """
1236
+ ...
1237
+
1238
+ def values(self):
1239
+ """ """
1240
+ ...
1241
+
1242
+ class OUTLINER_MT_context_menu_view(bpy_types._GenericUI):
1243
+ """ """
1244
+
333
1245
  bl_label: typing.Any
1246
+ """ """
1247
+
334
1248
  bl_rna: typing.Any
1249
+ """ """
1250
+
335
1251
  id_data: typing.Any
1252
+ """ """
1253
+
1254
+ def append(self, draw_func):
1255
+ """
1256
+
1257
+ :param draw_func:
1258
+ """
1259
+ ...
1260
+
1261
+ def as_pointer(self):
1262
+ """ """
1263
+ ...
1264
+
1265
+ def bl_rna_get_subclass(self):
1266
+ """ """
1267
+ ...
1268
+
1269
+ def bl_rna_get_subclass_py(self):
1270
+ """ """
1271
+ ...
1272
+
1273
+ def draw(self, _context):
1274
+ """
1275
+
1276
+ :param _context:
1277
+ """
1278
+ ...
1279
+
1280
+ def draw_collapsible(self, context, layout):
1281
+ """
1282
+
1283
+ :param context:
1284
+ :param layout:
1285
+ """
1286
+ ...
1287
+
1288
+ def draw_preset(self, _context):
1289
+ """
1290
+
1291
+ :param _context:
1292
+ """
1293
+ ...
1294
+
1295
+ def driver_add(self):
1296
+ """ """
1297
+ ...
1298
+
1299
+ def driver_remove(self):
1300
+ """ """
1301
+ ...
1302
+
1303
+ def get(self):
1304
+ """ """
1305
+ ...
1306
+
1307
+ def id_properties_clear(self):
1308
+ """ """
1309
+ ...
1310
+
1311
+ def id_properties_ensure(self):
1312
+ """ """
1313
+ ...
1314
+
1315
+ def id_properties_ui(self):
1316
+ """ """
1317
+ ...
1318
+
1319
+ def is_extended(self):
1320
+ """ """
1321
+ ...
1322
+
1323
+ def is_property_hidden(self):
1324
+ """ """
1325
+ ...
1326
+
1327
+ def is_property_overridable_library(self):
1328
+ """ """
1329
+ ...
1330
+
1331
+ def is_property_readonly(self):
1332
+ """ """
1333
+ ...
1334
+
1335
+ def is_property_set(self):
1336
+ """ """
1337
+ ...
1338
+
1339
+ def items(self):
1340
+ """ """
1341
+ ...
1342
+
1343
+ def keyframe_delete(self):
1344
+ """ """
1345
+ ...
1346
+
1347
+ def keyframe_insert(self):
1348
+ """ """
1349
+ ...
1350
+
1351
+ def keys(self):
1352
+ """ """
1353
+ ...
1354
+
1355
+ def path_from_id(self):
1356
+ """ """
1357
+ ...
336
1358
 
337
- def append(self, draw_func): ...
338
- def as_pointer(self): ...
339
- def bl_rna_get_subclass(self): ...
340
- def bl_rna_get_subclass_py(self): ...
341
- def draw(self, _context): ...
342
- def draw_collapsible(self, context, layout): ...
343
- def draw_preset(self, _context): ...
344
- def driver_add(self): ...
345
- def driver_remove(self): ...
346
- def get(self): ...
347
- def id_properties_clear(self): ...
348
- def id_properties_ensure(self): ...
349
- def id_properties_ui(self): ...
350
- def is_extended(self): ...
351
- def is_property_hidden(self): ...
352
- def is_property_overridable_library(self): ...
353
- def is_property_readonly(self): ...
354
- def is_property_set(self): ...
355
- def items(self): ...
356
- def keyframe_delete(self): ...
357
- def keyframe_insert(self): ...
358
- def keys(self): ...
359
- def path_from_id(self): ...
360
1359
  def path_menu(
361
1360
  self,
362
1361
  searchpaths,
@@ -367,44 +1366,175 @@ class OUTLINER_MT_context_menu_view(bpy_types.Menu, bpy_types._GenericUI):
367
1366
  filter_path,
368
1367
  display_name,
369
1368
  add_operator,
370
- ): ...
371
- def path_resolve(self): ...
372
- def pop(self): ...
373
- def prepend(self, draw_func): ...
374
- def property_overridable_library_set(self): ...
375
- def property_unset(self): ...
376
- def remove(self, draw_func): ...
377
- def type_recast(self): ...
378
- def values(self): ...
379
-
380
- class OUTLINER_MT_edit_datablocks(bpy_types.Menu, bpy_types._GenericUI):
1369
+ ):
1370
+ """
1371
+
1372
+ :param searchpaths:
1373
+ :param operator:
1374
+ :param props_default:
1375
+ :param prop_filepath:
1376
+ :param filter_ext:
1377
+ :param filter_path:
1378
+ :param display_name:
1379
+ :param add_operator:
1380
+ """
1381
+ ...
1382
+
1383
+ def path_resolve(self):
1384
+ """ """
1385
+ ...
1386
+
1387
+ def pop(self):
1388
+ """ """
1389
+ ...
1390
+
1391
+ def prepend(self, draw_func):
1392
+ """
1393
+
1394
+ :param draw_func:
1395
+ """
1396
+ ...
1397
+
1398
+ def property_overridable_library_set(self):
1399
+ """ """
1400
+ ...
1401
+
1402
+ def property_unset(self):
1403
+ """ """
1404
+ ...
1405
+
1406
+ def remove(self, draw_func):
1407
+ """
1408
+
1409
+ :param draw_func:
1410
+ """
1411
+ ...
1412
+
1413
+ def type_recast(self):
1414
+ """ """
1415
+ ...
1416
+
1417
+ def values(self):
1418
+ """ """
1419
+ ...
1420
+
1421
+ class OUTLINER_MT_edit_datablocks(bpy_types._GenericUI):
1422
+ """ """
1423
+
381
1424
  bl_label: typing.Any
1425
+ """ """
1426
+
382
1427
  bl_rna: typing.Any
1428
+ """ """
1429
+
383
1430
  id_data: typing.Any
1431
+ """ """
1432
+
1433
+ def append(self, draw_func):
1434
+ """
1435
+
1436
+ :param draw_func:
1437
+ """
1438
+ ...
1439
+
1440
+ def as_pointer(self):
1441
+ """ """
1442
+ ...
1443
+
1444
+ def bl_rna_get_subclass(self):
1445
+ """ """
1446
+ ...
1447
+
1448
+ def bl_rna_get_subclass_py(self):
1449
+ """ """
1450
+ ...
1451
+
1452
+ def draw(self, _context):
1453
+ """
1454
+
1455
+ :param _context:
1456
+ """
1457
+ ...
1458
+
1459
+ def draw_collapsible(self, context, layout):
1460
+ """
1461
+
1462
+ :param context:
1463
+ :param layout:
1464
+ """
1465
+ ...
1466
+
1467
+ def draw_preset(self, _context):
1468
+ """
1469
+
1470
+ :param _context:
1471
+ """
1472
+ ...
1473
+
1474
+ def driver_add(self):
1475
+ """ """
1476
+ ...
1477
+
1478
+ def driver_remove(self):
1479
+ """ """
1480
+ ...
1481
+
1482
+ def get(self):
1483
+ """ """
1484
+ ...
1485
+
1486
+ def id_properties_clear(self):
1487
+ """ """
1488
+ ...
1489
+
1490
+ def id_properties_ensure(self):
1491
+ """ """
1492
+ ...
1493
+
1494
+ def id_properties_ui(self):
1495
+ """ """
1496
+ ...
1497
+
1498
+ def is_extended(self):
1499
+ """ """
1500
+ ...
1501
+
1502
+ def is_property_hidden(self):
1503
+ """ """
1504
+ ...
1505
+
1506
+ def is_property_overridable_library(self):
1507
+ """ """
1508
+ ...
1509
+
1510
+ def is_property_readonly(self):
1511
+ """ """
1512
+ ...
1513
+
1514
+ def is_property_set(self):
1515
+ """ """
1516
+ ...
1517
+
1518
+ def items(self):
1519
+ """ """
1520
+ ...
1521
+
1522
+ def keyframe_delete(self):
1523
+ """ """
1524
+ ...
1525
+
1526
+ def keyframe_insert(self):
1527
+ """ """
1528
+ ...
1529
+
1530
+ def keys(self):
1531
+ """ """
1532
+ ...
1533
+
1534
+ def path_from_id(self):
1535
+ """ """
1536
+ ...
384
1537
 
385
- def append(self, draw_func): ...
386
- def as_pointer(self): ...
387
- def bl_rna_get_subclass(self): ...
388
- def bl_rna_get_subclass_py(self): ...
389
- def draw(self, _context): ...
390
- def draw_collapsible(self, context, layout): ...
391
- def draw_preset(self, _context): ...
392
- def driver_add(self): ...
393
- def driver_remove(self): ...
394
- def get(self): ...
395
- def id_properties_clear(self): ...
396
- def id_properties_ensure(self): ...
397
- def id_properties_ui(self): ...
398
- def is_extended(self): ...
399
- def is_property_hidden(self): ...
400
- def is_property_overridable_library(self): ...
401
- def is_property_readonly(self): ...
402
- def is_property_set(self): ...
403
- def items(self): ...
404
- def keyframe_delete(self): ...
405
- def keyframe_insert(self): ...
406
- def keys(self): ...
407
- def path_from_id(self): ...
408
1538
  def path_menu(
409
1539
  self,
410
1540
  searchpaths,
@@ -415,45 +1545,178 @@ class OUTLINER_MT_edit_datablocks(bpy_types.Menu, bpy_types._GenericUI):
415
1545
  filter_path,
416
1546
  display_name,
417
1547
  add_operator,
418
- ): ...
419
- def path_resolve(self): ...
420
- def pop(self): ...
421
- def prepend(self, draw_func): ...
422
- def property_overridable_library_set(self): ...
423
- def property_unset(self): ...
424
- def remove(self, draw_func): ...
425
- def type_recast(self): ...
426
- def values(self): ...
427
-
428
- class OUTLINER_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
1548
+ ):
1549
+ """
1550
+
1551
+ :param searchpaths:
1552
+ :param operator:
1553
+ :param props_default:
1554
+ :param prop_filepath:
1555
+ :param filter_ext:
1556
+ :param filter_path:
1557
+ :param display_name:
1558
+ :param add_operator:
1559
+ """
1560
+ ...
1561
+
1562
+ def path_resolve(self):
1563
+ """ """
1564
+ ...
1565
+
1566
+ def pop(self):
1567
+ """ """
1568
+ ...
1569
+
1570
+ def prepend(self, draw_func):
1571
+ """
1572
+
1573
+ :param draw_func:
1574
+ """
1575
+ ...
1576
+
1577
+ def property_overridable_library_set(self):
1578
+ """ """
1579
+ ...
1580
+
1581
+ def property_unset(self):
1582
+ """ """
1583
+ ...
1584
+
1585
+ def remove(self, draw_func):
1586
+ """
1587
+
1588
+ :param draw_func:
1589
+ """
1590
+ ...
1591
+
1592
+ def type_recast(self):
1593
+ """ """
1594
+ ...
1595
+
1596
+ def values(self):
1597
+ """ """
1598
+ ...
1599
+
1600
+ class OUTLINER_MT_editor_menus(bpy_types._GenericUI):
1601
+ """ """
1602
+
429
1603
  bl_idname: typing.Any
1604
+ """ """
1605
+
430
1606
  bl_label: typing.Any
1607
+ """ """
1608
+
431
1609
  bl_rna: typing.Any
1610
+ """ """
1611
+
432
1612
  id_data: typing.Any
1613
+ """ """
1614
+
1615
+ def append(self, draw_func):
1616
+ """
1617
+
1618
+ :param draw_func:
1619
+ """
1620
+ ...
1621
+
1622
+ def as_pointer(self):
1623
+ """ """
1624
+ ...
1625
+
1626
+ def bl_rna_get_subclass(self):
1627
+ """ """
1628
+ ...
1629
+
1630
+ def bl_rna_get_subclass_py(self):
1631
+ """ """
1632
+ ...
1633
+
1634
+ def draw(self, context):
1635
+ """
1636
+
1637
+ :param context:
1638
+ """
1639
+ ...
1640
+
1641
+ def draw_collapsible(self, context, layout):
1642
+ """
1643
+
1644
+ :param context:
1645
+ :param layout:
1646
+ """
1647
+ ...
1648
+
1649
+ def draw_preset(self, _context):
1650
+ """
1651
+
1652
+ :param _context:
1653
+ """
1654
+ ...
1655
+
1656
+ def driver_add(self):
1657
+ """ """
1658
+ ...
1659
+
1660
+ def driver_remove(self):
1661
+ """ """
1662
+ ...
1663
+
1664
+ def get(self):
1665
+ """ """
1666
+ ...
1667
+
1668
+ def id_properties_clear(self):
1669
+ """ """
1670
+ ...
1671
+
1672
+ def id_properties_ensure(self):
1673
+ """ """
1674
+ ...
1675
+
1676
+ def id_properties_ui(self):
1677
+ """ """
1678
+ ...
1679
+
1680
+ def is_extended(self):
1681
+ """ """
1682
+ ...
1683
+
1684
+ def is_property_hidden(self):
1685
+ """ """
1686
+ ...
1687
+
1688
+ def is_property_overridable_library(self):
1689
+ """ """
1690
+ ...
1691
+
1692
+ def is_property_readonly(self):
1693
+ """ """
1694
+ ...
1695
+
1696
+ def is_property_set(self):
1697
+ """ """
1698
+ ...
1699
+
1700
+ def items(self):
1701
+ """ """
1702
+ ...
1703
+
1704
+ def keyframe_delete(self):
1705
+ """ """
1706
+ ...
1707
+
1708
+ def keyframe_insert(self):
1709
+ """ """
1710
+ ...
1711
+
1712
+ def keys(self):
1713
+ """ """
1714
+ ...
1715
+
1716
+ def path_from_id(self):
1717
+ """ """
1718
+ ...
433
1719
 
434
- def append(self, draw_func): ...
435
- def as_pointer(self): ...
436
- def bl_rna_get_subclass(self): ...
437
- def bl_rna_get_subclass_py(self): ...
438
- def draw(self, context): ...
439
- def draw_collapsible(self, context, layout): ...
440
- def draw_preset(self, _context): ...
441
- def driver_add(self): ...
442
- def driver_remove(self): ...
443
- def get(self): ...
444
- def id_properties_clear(self): ...
445
- def id_properties_ensure(self): ...
446
- def id_properties_ui(self): ...
447
- def is_extended(self): ...
448
- def is_property_hidden(self): ...
449
- def is_property_overridable_library(self): ...
450
- def is_property_readonly(self): ...
451
- def is_property_set(self): ...
452
- def items(self): ...
453
- def keyframe_delete(self): ...
454
- def keyframe_insert(self): ...
455
- def keys(self): ...
456
- def path_from_id(self): ...
457
1720
  def path_menu(
458
1721
  self,
459
1722
  searchpaths,
@@ -464,44 +1727,175 @@ class OUTLINER_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
464
1727
  filter_path,
465
1728
  display_name,
466
1729
  add_operator,
467
- ): ...
468
- def path_resolve(self): ...
469
- def pop(self): ...
470
- def prepend(self, draw_func): ...
471
- def property_overridable_library_set(self): ...
472
- def property_unset(self): ...
473
- def remove(self, draw_func): ...
474
- def type_recast(self): ...
475
- def values(self): ...
476
-
477
- class OUTLINER_MT_liboverride(bpy_types.Menu, bpy_types._GenericUI):
1730
+ ):
1731
+ """
1732
+
1733
+ :param searchpaths:
1734
+ :param operator:
1735
+ :param props_default:
1736
+ :param prop_filepath:
1737
+ :param filter_ext:
1738
+ :param filter_path:
1739
+ :param display_name:
1740
+ :param add_operator:
1741
+ """
1742
+ ...
1743
+
1744
+ def path_resolve(self):
1745
+ """ """
1746
+ ...
1747
+
1748
+ def pop(self):
1749
+ """ """
1750
+ ...
1751
+
1752
+ def prepend(self, draw_func):
1753
+ """
1754
+
1755
+ :param draw_func:
1756
+ """
1757
+ ...
1758
+
1759
+ def property_overridable_library_set(self):
1760
+ """ """
1761
+ ...
1762
+
1763
+ def property_unset(self):
1764
+ """ """
1765
+ ...
1766
+
1767
+ def remove(self, draw_func):
1768
+ """
1769
+
1770
+ :param draw_func:
1771
+ """
1772
+ ...
1773
+
1774
+ def type_recast(self):
1775
+ """ """
1776
+ ...
1777
+
1778
+ def values(self):
1779
+ """ """
1780
+ ...
1781
+
1782
+ class OUTLINER_MT_liboverride(bpy_types._GenericUI):
1783
+ """ """
1784
+
478
1785
  bl_label: typing.Any
1786
+ """ """
1787
+
479
1788
  bl_rna: typing.Any
1789
+ """ """
1790
+
480
1791
  id_data: typing.Any
1792
+ """ """
1793
+
1794
+ def append(self, draw_func):
1795
+ """
1796
+
1797
+ :param draw_func:
1798
+ """
1799
+ ...
1800
+
1801
+ def as_pointer(self):
1802
+ """ """
1803
+ ...
1804
+
1805
+ def bl_rna_get_subclass(self):
1806
+ """ """
1807
+ ...
1808
+
1809
+ def bl_rna_get_subclass_py(self):
1810
+ """ """
1811
+ ...
1812
+
1813
+ def draw(self, _context):
1814
+ """
1815
+
1816
+ :param _context:
1817
+ """
1818
+ ...
1819
+
1820
+ def draw_collapsible(self, context, layout):
1821
+ """
1822
+
1823
+ :param context:
1824
+ :param layout:
1825
+ """
1826
+ ...
1827
+
1828
+ def draw_preset(self, _context):
1829
+ """
1830
+
1831
+ :param _context:
1832
+ """
1833
+ ...
1834
+
1835
+ def driver_add(self):
1836
+ """ """
1837
+ ...
1838
+
1839
+ def driver_remove(self):
1840
+ """ """
1841
+ ...
1842
+
1843
+ def get(self):
1844
+ """ """
1845
+ ...
1846
+
1847
+ def id_properties_clear(self):
1848
+ """ """
1849
+ ...
1850
+
1851
+ def id_properties_ensure(self):
1852
+ """ """
1853
+ ...
1854
+
1855
+ def id_properties_ui(self):
1856
+ """ """
1857
+ ...
1858
+
1859
+ def is_extended(self):
1860
+ """ """
1861
+ ...
1862
+
1863
+ def is_property_hidden(self):
1864
+ """ """
1865
+ ...
1866
+
1867
+ def is_property_overridable_library(self):
1868
+ """ """
1869
+ ...
1870
+
1871
+ def is_property_readonly(self):
1872
+ """ """
1873
+ ...
1874
+
1875
+ def is_property_set(self):
1876
+ """ """
1877
+ ...
1878
+
1879
+ def items(self):
1880
+ """ """
1881
+ ...
1882
+
1883
+ def keyframe_delete(self):
1884
+ """ """
1885
+ ...
1886
+
1887
+ def keyframe_insert(self):
1888
+ """ """
1889
+ ...
1890
+
1891
+ def keys(self):
1892
+ """ """
1893
+ ...
1894
+
1895
+ def path_from_id(self):
1896
+ """ """
1897
+ ...
481
1898
 
482
- def append(self, draw_func): ...
483
- def as_pointer(self): ...
484
- def bl_rna_get_subclass(self): ...
485
- def bl_rna_get_subclass_py(self): ...
486
- def draw(self, _context): ...
487
- def draw_collapsible(self, context, layout): ...
488
- def draw_preset(self, _context): ...
489
- def driver_add(self): ...
490
- def driver_remove(self): ...
491
- def get(self): ...
492
- def id_properties_clear(self): ...
493
- def id_properties_ensure(self): ...
494
- def id_properties_ui(self): ...
495
- def is_extended(self): ...
496
- def is_property_hidden(self): ...
497
- def is_property_overridable_library(self): ...
498
- def is_property_readonly(self): ...
499
- def is_property_set(self): ...
500
- def items(self): ...
501
- def keyframe_delete(self): ...
502
- def keyframe_insert(self): ...
503
- def keys(self): ...
504
- def path_from_id(self): ...
505
1899
  def path_menu(
506
1900
  self,
507
1901
  searchpaths,
@@ -512,45 +1906,182 @@ class OUTLINER_MT_liboverride(bpy_types.Menu, bpy_types._GenericUI):
512
1906
  filter_path,
513
1907
  display_name,
514
1908
  add_operator,
515
- ): ...
516
- def path_resolve(self): ...
517
- def poll(self, context): ...
518
- def pop(self): ...
519
- def prepend(self, draw_func): ...
520
- def property_overridable_library_set(self): ...
521
- def property_unset(self): ...
522
- def remove(self, draw_func): ...
523
- def type_recast(self): ...
524
- def values(self): ...
525
-
526
- class OUTLINER_MT_object(bpy_types.Menu, bpy_types._GenericUI):
1909
+ ):
1910
+ """
1911
+
1912
+ :param searchpaths:
1913
+ :param operator:
1914
+ :param props_default:
1915
+ :param prop_filepath:
1916
+ :param filter_ext:
1917
+ :param filter_path:
1918
+ :param display_name:
1919
+ :param add_operator:
1920
+ """
1921
+ ...
1922
+
1923
+ def path_resolve(self):
1924
+ """ """
1925
+ ...
1926
+
1927
+ def poll(self, context):
1928
+ """
1929
+
1930
+ :param context:
1931
+ """
1932
+ ...
1933
+
1934
+ def pop(self):
1935
+ """ """
1936
+ ...
1937
+
1938
+ def prepend(self, draw_func):
1939
+ """
1940
+
1941
+ :param draw_func:
1942
+ """
1943
+ ...
1944
+
1945
+ def property_overridable_library_set(self):
1946
+ """ """
1947
+ ...
1948
+
1949
+ def property_unset(self):
1950
+ """ """
1951
+ ...
1952
+
1953
+ def remove(self, draw_func):
1954
+ """
1955
+
1956
+ :param draw_func:
1957
+ """
1958
+ ...
1959
+
1960
+ def type_recast(self):
1961
+ """ """
1962
+ ...
1963
+
1964
+ def values(self):
1965
+ """ """
1966
+ ...
1967
+
1968
+ class OUTLINER_MT_object(bpy_types._GenericUI):
1969
+ """ """
1970
+
527
1971
  bl_label: typing.Any
1972
+ """ """
1973
+
528
1974
  bl_rna: typing.Any
1975
+ """ """
1976
+
529
1977
  id_data: typing.Any
1978
+ """ """
1979
+
1980
+ def append(self, draw_func):
1981
+ """
1982
+
1983
+ :param draw_func:
1984
+ """
1985
+ ...
1986
+
1987
+ def as_pointer(self):
1988
+ """ """
1989
+ ...
1990
+
1991
+ def bl_rna_get_subclass(self):
1992
+ """ """
1993
+ ...
1994
+
1995
+ def bl_rna_get_subclass_py(self):
1996
+ """ """
1997
+ ...
1998
+
1999
+ def draw(self, context):
2000
+ """
2001
+
2002
+ :param context:
2003
+ """
2004
+ ...
2005
+
2006
+ def draw_collapsible(self, context, layout):
2007
+ """
2008
+
2009
+ :param context:
2010
+ :param layout:
2011
+ """
2012
+ ...
2013
+
2014
+ def draw_preset(self, _context):
2015
+ """
2016
+
2017
+ :param _context:
2018
+ """
2019
+ ...
2020
+
2021
+ def driver_add(self):
2022
+ """ """
2023
+ ...
2024
+
2025
+ def driver_remove(self):
2026
+ """ """
2027
+ ...
2028
+
2029
+ def get(self):
2030
+ """ """
2031
+ ...
2032
+
2033
+ def id_properties_clear(self):
2034
+ """ """
2035
+ ...
2036
+
2037
+ def id_properties_ensure(self):
2038
+ """ """
2039
+ ...
2040
+
2041
+ def id_properties_ui(self):
2042
+ """ """
2043
+ ...
2044
+
2045
+ def is_extended(self):
2046
+ """ """
2047
+ ...
2048
+
2049
+ def is_property_hidden(self):
2050
+ """ """
2051
+ ...
2052
+
2053
+ def is_property_overridable_library(self):
2054
+ """ """
2055
+ ...
2056
+
2057
+ def is_property_readonly(self):
2058
+ """ """
2059
+ ...
2060
+
2061
+ def is_property_set(self):
2062
+ """ """
2063
+ ...
2064
+
2065
+ def items(self):
2066
+ """ """
2067
+ ...
2068
+
2069
+ def keyframe_delete(self):
2070
+ """ """
2071
+ ...
2072
+
2073
+ def keyframe_insert(self):
2074
+ """ """
2075
+ ...
2076
+
2077
+ def keys(self):
2078
+ """ """
2079
+ ...
2080
+
2081
+ def path_from_id(self):
2082
+ """ """
2083
+ ...
530
2084
 
531
- def append(self, draw_func): ...
532
- def as_pointer(self): ...
533
- def bl_rna_get_subclass(self): ...
534
- def bl_rna_get_subclass_py(self): ...
535
- def draw(self, context): ...
536
- def draw_collapsible(self, context, layout): ...
537
- def draw_preset(self, _context): ...
538
- def driver_add(self): ...
539
- def driver_remove(self): ...
540
- def get(self): ...
541
- def id_properties_clear(self): ...
542
- def id_properties_ensure(self): ...
543
- def id_properties_ui(self): ...
544
- def is_extended(self): ...
545
- def is_property_hidden(self): ...
546
- def is_property_overridable_library(self): ...
547
- def is_property_readonly(self): ...
548
- def is_property_set(self): ...
549
- def items(self): ...
550
- def keyframe_delete(self): ...
551
- def keyframe_insert(self): ...
552
- def keys(self): ...
553
- def path_from_id(self): ...
554
2085
  def path_menu(
555
2086
  self,
556
2087
  searchpaths,
@@ -561,44 +2092,175 @@ class OUTLINER_MT_object(bpy_types.Menu, bpy_types._GenericUI):
561
2092
  filter_path,
562
2093
  display_name,
563
2094
  add_operator,
564
- ): ...
565
- def path_resolve(self): ...
566
- def pop(self): ...
567
- def prepend(self, draw_func): ...
568
- def property_overridable_library_set(self): ...
569
- def property_unset(self): ...
570
- def remove(self, draw_func): ...
571
- def type_recast(self): ...
572
- def values(self): ...
573
-
574
- class OUTLINER_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
2095
+ ):
2096
+ """
2097
+
2098
+ :param searchpaths:
2099
+ :param operator:
2100
+ :param props_default:
2101
+ :param prop_filepath:
2102
+ :param filter_ext:
2103
+ :param filter_path:
2104
+ :param display_name:
2105
+ :param add_operator:
2106
+ """
2107
+ ...
2108
+
2109
+ def path_resolve(self):
2110
+ """ """
2111
+ ...
2112
+
2113
+ def pop(self):
2114
+ """ """
2115
+ ...
2116
+
2117
+ def prepend(self, draw_func):
2118
+ """
2119
+
2120
+ :param draw_func:
2121
+ """
2122
+ ...
2123
+
2124
+ def property_overridable_library_set(self):
2125
+ """ """
2126
+ ...
2127
+
2128
+ def property_unset(self):
2129
+ """ """
2130
+ ...
2131
+
2132
+ def remove(self, draw_func):
2133
+ """
2134
+
2135
+ :param draw_func:
2136
+ """
2137
+ ...
2138
+
2139
+ def type_recast(self):
2140
+ """ """
2141
+ ...
2142
+
2143
+ def values(self):
2144
+ """ """
2145
+ ...
2146
+
2147
+ class OUTLINER_MT_view_pie(bpy_types._GenericUI):
2148
+ """ """
2149
+
575
2150
  bl_label: typing.Any
2151
+ """ """
2152
+
576
2153
  bl_rna: typing.Any
2154
+ """ """
2155
+
577
2156
  id_data: typing.Any
2157
+ """ """
2158
+
2159
+ def append(self, draw_func):
2160
+ """
2161
+
2162
+ :param draw_func:
2163
+ """
2164
+ ...
2165
+
2166
+ def as_pointer(self):
2167
+ """ """
2168
+ ...
2169
+
2170
+ def bl_rna_get_subclass(self):
2171
+ """ """
2172
+ ...
2173
+
2174
+ def bl_rna_get_subclass_py(self):
2175
+ """ """
2176
+ ...
2177
+
2178
+ def draw(self, _context):
2179
+ """
2180
+
2181
+ :param _context:
2182
+ """
2183
+ ...
2184
+
2185
+ def draw_collapsible(self, context, layout):
2186
+ """
2187
+
2188
+ :param context:
2189
+ :param layout:
2190
+ """
2191
+ ...
2192
+
2193
+ def draw_preset(self, _context):
2194
+ """
2195
+
2196
+ :param _context:
2197
+ """
2198
+ ...
2199
+
2200
+ def driver_add(self):
2201
+ """ """
2202
+ ...
2203
+
2204
+ def driver_remove(self):
2205
+ """ """
2206
+ ...
2207
+
2208
+ def get(self):
2209
+ """ """
2210
+ ...
2211
+
2212
+ def id_properties_clear(self):
2213
+ """ """
2214
+ ...
2215
+
2216
+ def id_properties_ensure(self):
2217
+ """ """
2218
+ ...
2219
+
2220
+ def id_properties_ui(self):
2221
+ """ """
2222
+ ...
2223
+
2224
+ def is_extended(self):
2225
+ """ """
2226
+ ...
2227
+
2228
+ def is_property_hidden(self):
2229
+ """ """
2230
+ ...
2231
+
2232
+ def is_property_overridable_library(self):
2233
+ """ """
2234
+ ...
2235
+
2236
+ def is_property_readonly(self):
2237
+ """ """
2238
+ ...
2239
+
2240
+ def is_property_set(self):
2241
+ """ """
2242
+ ...
2243
+
2244
+ def items(self):
2245
+ """ """
2246
+ ...
2247
+
2248
+ def keyframe_delete(self):
2249
+ """ """
2250
+ ...
2251
+
2252
+ def keyframe_insert(self):
2253
+ """ """
2254
+ ...
2255
+
2256
+ def keys(self):
2257
+ """ """
2258
+ ...
2259
+
2260
+ def path_from_id(self):
2261
+ """ """
2262
+ ...
578
2263
 
579
- def append(self, draw_func): ...
580
- def as_pointer(self): ...
581
- def bl_rna_get_subclass(self): ...
582
- def bl_rna_get_subclass_py(self): ...
583
- def draw(self, _context): ...
584
- def draw_collapsible(self, context, layout): ...
585
- def draw_preset(self, _context): ...
586
- def driver_add(self): ...
587
- def driver_remove(self): ...
588
- def get(self): ...
589
- def id_properties_clear(self): ...
590
- def id_properties_ensure(self): ...
591
- def id_properties_ui(self): ...
592
- def is_extended(self): ...
593
- def is_property_hidden(self): ...
594
- def is_property_overridable_library(self): ...
595
- def is_property_readonly(self): ...
596
- def is_property_set(self): ...
597
- def items(self): ...
598
- def keyframe_delete(self): ...
599
- def keyframe_insert(self): ...
600
- def keys(self): ...
601
- def path_from_id(self): ...
602
2264
  def path_menu(
603
2265
  self,
604
2266
  searchpaths,
@@ -609,51 +2271,205 @@ class OUTLINER_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
609
2271
  filter_path,
610
2272
  display_name,
611
2273
  add_operator,
612
- ): ...
613
- def path_resolve(self): ...
614
- def pop(self): ...
615
- def prepend(self, draw_func): ...
616
- def property_overridable_library_set(self): ...
617
- def property_unset(self): ...
618
- def remove(self, draw_func): ...
619
- def type_recast(self): ...
620
- def values(self): ...
621
-
622
- class OUTLINER_PT_filter(bpy_types.Panel, bpy_types._GenericUI):
2274
+ ):
2275
+ """
2276
+
2277
+ :param searchpaths:
2278
+ :param operator:
2279
+ :param props_default:
2280
+ :param prop_filepath:
2281
+ :param filter_ext:
2282
+ :param filter_path:
2283
+ :param display_name:
2284
+ :param add_operator:
2285
+ """
2286
+ ...
2287
+
2288
+ def path_resolve(self):
2289
+ """ """
2290
+ ...
2291
+
2292
+ def pop(self):
2293
+ """ """
2294
+ ...
2295
+
2296
+ def prepend(self, draw_func):
2297
+ """
2298
+
2299
+ :param draw_func:
2300
+ """
2301
+ ...
2302
+
2303
+ def property_overridable_library_set(self):
2304
+ """ """
2305
+ ...
2306
+
2307
+ def property_unset(self):
2308
+ """ """
2309
+ ...
2310
+
2311
+ def remove(self, draw_func):
2312
+ """
2313
+
2314
+ :param draw_func:
2315
+ """
2316
+ ...
2317
+
2318
+ def type_recast(self):
2319
+ """ """
2320
+ ...
2321
+
2322
+ def values(self):
2323
+ """ """
2324
+ ...
2325
+
2326
+ class OUTLINER_PT_filter(bpy_types._GenericUI):
2327
+ """ """
2328
+
623
2329
  bl_label: typing.Any
2330
+ """ """
2331
+
624
2332
  bl_region_type: typing.Any
2333
+ """ """
2334
+
625
2335
  bl_rna: typing.Any
2336
+ """ """
2337
+
626
2338
  bl_space_type: typing.Any
2339
+ """ """
2340
+
627
2341
  id_data: typing.Any
2342
+ """ """
2343
+
2344
+ def append(self, draw_func):
2345
+ """
2346
+
2347
+ :param draw_func:
2348
+ """
2349
+ ...
2350
+
2351
+ def as_pointer(self):
2352
+ """ """
2353
+ ...
2354
+
2355
+ def bl_rna_get_subclass(self):
2356
+ """ """
2357
+ ...
2358
+
2359
+ def bl_rna_get_subclass_py(self):
2360
+ """ """
2361
+ ...
2362
+
2363
+ def draw(self, context):
2364
+ """
2365
+
2366
+ :param context:
2367
+ """
2368
+ ...
2369
+
2370
+ def driver_add(self):
2371
+ """ """
2372
+ ...
2373
+
2374
+ def driver_remove(self):
2375
+ """ """
2376
+ ...
2377
+
2378
+ def get(self):
2379
+ """ """
2380
+ ...
2381
+
2382
+ def id_properties_clear(self):
2383
+ """ """
2384
+ ...
2385
+
2386
+ def id_properties_ensure(self):
2387
+ """ """
2388
+ ...
2389
+
2390
+ def id_properties_ui(self):
2391
+ """ """
2392
+ ...
2393
+
2394
+ def is_extended(self):
2395
+ """ """
2396
+ ...
2397
+
2398
+ def is_property_hidden(self):
2399
+ """ """
2400
+ ...
2401
+
2402
+ def is_property_overridable_library(self):
2403
+ """ """
2404
+ ...
2405
+
2406
+ def is_property_readonly(self):
2407
+ """ """
2408
+ ...
2409
+
2410
+ def is_property_set(self):
2411
+ """ """
2412
+ ...
2413
+
2414
+ def items(self):
2415
+ """ """
2416
+ ...
2417
+
2418
+ def keyframe_delete(self):
2419
+ """ """
2420
+ ...
2421
+
2422
+ def keyframe_insert(self):
2423
+ """ """
2424
+ ...
2425
+
2426
+ def keys(self):
2427
+ """ """
2428
+ ...
2429
+
2430
+ def path_from_id(self):
2431
+ """ """
2432
+ ...
2433
+
2434
+ def path_resolve(self):
2435
+ """ """
2436
+ ...
2437
+
2438
+ def pop(self):
2439
+ """ """
2440
+ ...
2441
+
2442
+ def prepend(self, draw_func):
2443
+ """
2444
+
2445
+ :param draw_func:
2446
+ """
2447
+ ...
2448
+
2449
+ def property_overridable_library_set(self):
2450
+ """ """
2451
+ ...
2452
+
2453
+ def property_unset(self):
2454
+ """ """
2455
+ ...
2456
+
2457
+ def remove(self, draw_func):
2458
+ """
2459
+
2460
+ :param draw_func:
2461
+ """
2462
+ ...
2463
+
2464
+ def type_recast(self):
2465
+ """ """
2466
+ ...
2467
+
2468
+ def values(self):
2469
+ """ """
2470
+ ...
2471
+
2472
+ def has_selected_ids_in_context(context):
2473
+ """ """
628
2474
 
629
- def append(self, draw_func): ...
630
- def as_pointer(self): ...
631
- def bl_rna_get_subclass(self): ...
632
- def bl_rna_get_subclass_py(self): ...
633
- def draw(self, context): ...
634
- def driver_add(self): ...
635
- def driver_remove(self): ...
636
- def get(self): ...
637
- def id_properties_clear(self): ...
638
- def id_properties_ensure(self): ...
639
- def id_properties_ui(self): ...
640
- def is_extended(self): ...
641
- def is_property_hidden(self): ...
642
- def is_property_overridable_library(self): ...
643
- def is_property_readonly(self): ...
644
- def is_property_set(self): ...
645
- def items(self): ...
646
- def keyframe_delete(self): ...
647
- def keyframe_insert(self): ...
648
- def keys(self): ...
649
- def path_from_id(self): ...
650
- def path_resolve(self): ...
651
- def pop(self): ...
652
- def prepend(self, draw_func): ...
653
- def property_overridable_library_set(self): ...
654
- def property_unset(self): ...
655
- def remove(self, draw_func): ...
656
- def type_recast(self): ...
657
- def values(self): ...
658
-
659
- def has_selected_ids_in_context(context): ...
2475
+ ...