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
@@ -4,86 +4,632 @@ import bpy_types
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
6
  class AddModifierMenu(bpy_types.Operator):
7
+ """ """
8
+
7
9
  bl_idname: typing.Any
10
+ """ """
11
+
12
+ bl_label: typing.Any
13
+ """ """
14
+
15
+ bl_rna: typing.Any
16
+ """ """
17
+
18
+ id_data: typing.Any
19
+ """ """
20
+
21
+ def as_keywords(self, ignore):
22
+ """
23
+
24
+ :param ignore:
25
+ """
26
+ ...
27
+
28
+ def as_pointer(self):
29
+ """ """
30
+ ...
31
+
32
+ def bl_rna_get_subclass(self):
33
+ """ """
34
+ ...
35
+
36
+ def bl_rna_get_subclass_py(self):
37
+ """ """
38
+ ...
39
+
40
+ def driver_add(self):
41
+ """ """
42
+ ...
43
+
44
+ def driver_remove(self):
45
+ """ """
46
+ ...
47
+
48
+ def get(self):
49
+ """ """
50
+ ...
51
+
52
+ def id_properties_clear(self):
53
+ """ """
54
+ ...
55
+
56
+ def id_properties_ensure(self):
57
+ """ """
58
+ ...
59
+
60
+ def id_properties_ui(self):
61
+ """ """
62
+ ...
63
+
64
+ def invoke(self, context, event):
65
+ """
66
+
67
+ :param context:
68
+ :param event:
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 poll(self, context):
113
+ """
114
+
115
+ :param context:
116
+ """
117
+ ...
118
+
119
+ def poll_message_set(self):
120
+ """ """
121
+ ...
122
+
123
+ def pop(self):
124
+ """ """
125
+ ...
126
+
127
+ def property_overridable_library_set(self):
128
+ """ """
129
+ ...
130
+
131
+ def property_unset(self):
132
+ """ """
133
+ ...
134
+
135
+ def type_recast(self):
136
+ """ """
137
+ ...
138
+
139
+ def values(self):
140
+ """ """
141
+ ...
142
+
143
+ class DATA_PT_gpencil_modifiers(bpy_types._GenericUI):
144
+ """ """
145
+
146
+ bl_context: typing.Any
147
+ """ """
148
+
8
149
  bl_label: typing.Any
150
+ """ """
151
+
152
+ bl_options: typing.Any
153
+ """ """
154
+
155
+ bl_region_type: typing.Any
156
+ """ """
157
+
9
158
  bl_rna: typing.Any
159
+ """ """
160
+
161
+ bl_space_type: typing.Any
162
+ """ """
163
+
10
164
  id_data: typing.Any
165
+ """ """
166
+
167
+ def append(self, draw_func):
168
+ """
169
+
170
+ :param draw_func:
171
+ """
172
+ ...
173
+
174
+ def as_pointer(self):
175
+ """ """
176
+ ...
177
+
178
+ def bl_rna_get_subclass(self):
179
+ """ """
180
+ ...
181
+
182
+ def bl_rna_get_subclass_py(self):
183
+ """ """
184
+ ...
185
+
186
+ def draw(self, _context):
187
+ """
188
+
189
+ :param _context:
190
+ """
191
+ ...
192
+
193
+ def driver_add(self):
194
+ """ """
195
+ ...
196
+
197
+ def driver_remove(self):
198
+ """ """
199
+ ...
200
+
201
+ def get(self):
202
+ """ """
203
+ ...
204
+
205
+ def id_properties_clear(self):
206
+ """ """
207
+ ...
208
+
209
+ def id_properties_ensure(self):
210
+ """ """
211
+ ...
212
+
213
+ def id_properties_ui(self):
214
+ """ """
215
+ ...
216
+
217
+ def is_extended(self):
218
+ """ """
219
+ ...
220
+
221
+ def is_property_hidden(self):
222
+ """ """
223
+ ...
224
+
225
+ def is_property_overridable_library(self):
226
+ """ """
227
+ ...
228
+
229
+ def is_property_readonly(self):
230
+ """ """
231
+ ...
232
+
233
+ def is_property_set(self):
234
+ """ """
235
+ ...
236
+
237
+ def items(self):
238
+ """ """
239
+ ...
240
+
241
+ def keyframe_delete(self):
242
+ """ """
243
+ ...
244
+
245
+ def keyframe_insert(self):
246
+ """ """
247
+ ...
248
+
249
+ def keys(self):
250
+ """ """
251
+ ...
252
+
253
+ def path_from_id(self):
254
+ """ """
255
+ ...
256
+
257
+ def path_resolve(self):
258
+ """ """
259
+ ...
260
+
261
+ def poll(self, context):
262
+ """
263
+
264
+ :param context:
265
+ """
266
+ ...
267
+
268
+ def pop(self):
269
+ """ """
270
+ ...
271
+
272
+ def prepend(self, draw_func):
273
+ """
274
+
275
+ :param draw_func:
276
+ """
277
+ ...
278
+
279
+ def property_overridable_library_set(self):
280
+ """ """
281
+ ...
282
+
283
+ def property_unset(self):
284
+ """ """
285
+ ...
286
+
287
+ def remove(self, draw_func):
288
+ """
289
+
290
+ :param draw_func:
291
+ """
292
+ ...
293
+
294
+ def type_recast(self):
295
+ """ """
296
+ ...
297
+
298
+ def values(self):
299
+ """ """
300
+ ...
301
+
302
+ class DATA_PT_modifiers(bpy_types._GenericUI):
303
+ """ """
304
+
305
+ bl_context: typing.Any
306
+ """ """
307
+
308
+ bl_label: typing.Any
309
+ """ """
310
+
311
+ bl_options: typing.Any
312
+ """ """
313
+
314
+ bl_region_type: typing.Any
315
+ """ """
316
+
317
+ bl_rna: typing.Any
318
+ """ """
319
+
320
+ bl_space_type: typing.Any
321
+ """ """
322
+
323
+ id_data: typing.Any
324
+ """ """
325
+
326
+ def append(self, draw_func):
327
+ """
328
+
329
+ :param draw_func:
330
+ """
331
+ ...
332
+
333
+ def as_pointer(self):
334
+ """ """
335
+ ...
336
+
337
+ def bl_rna_get_subclass(self):
338
+ """ """
339
+ ...
340
+
341
+ def bl_rna_get_subclass_py(self):
342
+ """ """
343
+ ...
344
+
345
+ def draw(self, _context):
346
+ """
347
+
348
+ :param _context:
349
+ """
350
+ ...
351
+
352
+ def driver_add(self):
353
+ """ """
354
+ ...
355
+
356
+ def driver_remove(self):
357
+ """ """
358
+ ...
359
+
360
+ def get(self):
361
+ """ """
362
+ ...
363
+
364
+ def id_properties_clear(self):
365
+ """ """
366
+ ...
11
367
 
12
- def as_keywords(self, ignore): ...
13
- def as_pointer(self): ...
14
- def bl_rna_get_subclass(self): ...
15
- def bl_rna_get_subclass_py(self): ...
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 invoke(self, context, event): ...
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 poll(self, context): ...
34
- def poll_message_set(self): ...
35
- def pop(self): ...
36
- def property_overridable_library_set(self): ...
37
- def property_unset(self): ...
38
- def type_recast(self): ...
39
- def values(self): ...
368
+ def id_properties_ensure(self):
369
+ """ """
370
+ ...
371
+
372
+ def id_properties_ui(self):
373
+ """ """
374
+ ...
375
+
376
+ def is_extended(self):
377
+ """ """
378
+ ...
379
+
380
+ def is_property_hidden(self):
381
+ """ """
382
+ ...
383
+
384
+ def is_property_overridable_library(self):
385
+ """ """
386
+ ...
387
+
388
+ def is_property_readonly(self):
389
+ """ """
390
+ ...
391
+
392
+ def is_property_set(self):
393
+ """ """
394
+ ...
395
+
396
+ def items(self):
397
+ """ """
398
+ ...
399
+
400
+ def keyframe_delete(self):
401
+ """ """
402
+ ...
403
+
404
+ def keyframe_insert(self):
405
+ """ """
406
+ ...
407
+
408
+ def keys(self):
409
+ """ """
410
+ ...
411
+
412
+ def path_from_id(self):
413
+ """ """
414
+ ...
415
+
416
+ def path_resolve(self):
417
+ """ """
418
+ ...
419
+
420
+ def poll(self, context):
421
+ """
422
+
423
+ :param context:
424
+ """
425
+ ...
426
+
427
+ def pop(self):
428
+ """ """
429
+ ...
430
+
431
+ def prepend(self, draw_func):
432
+ """
433
+
434
+ :param draw_func:
435
+ """
436
+ ...
437
+
438
+ def property_overridable_library_set(self):
439
+ """ """
440
+ ...
441
+
442
+ def property_unset(self):
443
+ """ """
444
+ ...
445
+
446
+ def remove(self, draw_func):
447
+ """
448
+
449
+ :param draw_func:
450
+ """
451
+ ...
452
+
453
+ def type_recast(self):
454
+ """ """
455
+ ...
456
+
457
+ def values(self):
458
+ """ """
459
+ ...
40
460
 
41
461
  class ModifierAddMenu:
462
+ """ """
463
+
42
464
  MODIFIER_TYPES_I18N_CONTEXT: typing.Any
465
+ """ """
466
+
43
467
  MODIFIER_TYPES_TO_ICONS: typing.Any
468
+ """ """
469
+
44
470
  MODIFIER_TYPES_TO_LABELS: typing.Any
471
+ """ """
472
+
473
+ def operator_modifier_add(self, layout, mod_type):
474
+ """
45
475
 
46
- def operator_modifier_add(self, layout, mod_type): ...
476
+ :param layout:
477
+ :param mod_type:
478
+ """
479
+ ...
47
480
 
48
481
  class ModifierButtonsPanel:
482
+ """ """
483
+
49
484
  bl_context: typing.Any
485
+ """ """
486
+
50
487
  bl_options: typing.Any
488
+ """ """
489
+
51
490
  bl_region_type: typing.Any
491
+ """ """
492
+
52
493
  bl_space_type: typing.Any
494
+ """ """
495
+
496
+ class OBJECT_MT_modifier_add(bpy_types._GenericUI):
497
+ """ """
53
498
 
54
- class OBJECT_MT_modifier_add(ModifierAddMenu, bpy_types.Menu, bpy_types._GenericUI):
55
499
  MODIFIER_TYPES_I18N_CONTEXT: typing.Any
500
+ """ """
501
+
56
502
  MODIFIER_TYPES_TO_ICONS: typing.Any
503
+ """ """
504
+
57
505
  MODIFIER_TYPES_TO_LABELS: typing.Any
506
+ """ """
507
+
58
508
  bl_label: typing.Any
509
+ """ """
510
+
59
511
  bl_options: typing.Any
512
+ """ """
513
+
60
514
  bl_rna: typing.Any
515
+ """ """
516
+
61
517
  id_data: typing.Any
518
+ """ """
519
+
520
+ def append(self, draw_func):
521
+ """
522
+
523
+ :param draw_func:
524
+ """
525
+ ...
526
+
527
+ def as_pointer(self):
528
+ """ """
529
+ ...
530
+
531
+ def bl_rna_get_subclass(self):
532
+ """ """
533
+ ...
534
+
535
+ def bl_rna_get_subclass_py(self):
536
+ """ """
537
+ ...
538
+
539
+ def draw(self, context):
540
+ """
541
+
542
+ :param context:
543
+ """
544
+ ...
545
+
546
+ def draw_collapsible(self, context, layout):
547
+ """
548
+
549
+ :param context:
550
+ :param layout:
551
+ """
552
+ ...
553
+
554
+ def draw_preset(self, _context):
555
+ """
556
+
557
+ :param _context:
558
+ """
559
+ ...
560
+
561
+ def driver_add(self):
562
+ """ """
563
+ ...
564
+
565
+ def driver_remove(self):
566
+ """ """
567
+ ...
568
+
569
+ def get(self):
570
+ """ """
571
+ ...
572
+
573
+ def id_properties_clear(self):
574
+ """ """
575
+ ...
576
+
577
+ def id_properties_ensure(self):
578
+ """ """
579
+ ...
580
+
581
+ def id_properties_ui(self):
582
+ """ """
583
+ ...
584
+
585
+ def is_extended(self):
586
+ """ """
587
+ ...
588
+
589
+ def is_property_hidden(self):
590
+ """ """
591
+ ...
592
+
593
+ def is_property_overridable_library(self):
594
+ """ """
595
+ ...
596
+
597
+ def is_property_readonly(self):
598
+ """ """
599
+ ...
600
+
601
+ def is_property_set(self):
602
+ """ """
603
+ ...
604
+
605
+ def items(self):
606
+ """ """
607
+ ...
608
+
609
+ def keyframe_delete(self):
610
+ """ """
611
+ ...
612
+
613
+ def keyframe_insert(self):
614
+ """ """
615
+ ...
616
+
617
+ def keys(self):
618
+ """ """
619
+ ...
620
+
621
+ def operator_modifier_add(self, layout, mod_type):
622
+ """
623
+
624
+ :param layout:
625
+ :param mod_type:
626
+ """
627
+ ...
628
+
629
+ def path_from_id(self):
630
+ """ """
631
+ ...
62
632
 
63
- def append(self, draw_func): ...
64
- def as_pointer(self): ...
65
- def bl_rna_get_subclass(self): ...
66
- def bl_rna_get_subclass_py(self): ...
67
- def draw(self, context): ...
68
- def draw_collapsible(self, context, layout): ...
69
- def draw_preset(self, _context): ...
70
- def driver_add(self): ...
71
- def driver_remove(self): ...
72
- def get(self): ...
73
- def id_properties_clear(self): ...
74
- def id_properties_ensure(self): ...
75
- def id_properties_ui(self): ...
76
- def is_extended(self): ...
77
- def is_property_hidden(self): ...
78
- def is_property_overridable_library(self): ...
79
- def is_property_readonly(self): ...
80
- def is_property_set(self): ...
81
- def items(self): ...
82
- def keyframe_delete(self): ...
83
- def keyframe_insert(self): ...
84
- def keys(self): ...
85
- def operator_modifier_add(self, layout, mod_type): ...
86
- def path_from_id(self): ...
87
633
  def path_menu(
88
634
  self,
89
635
  searchpaths,
@@ -94,51 +640,195 @@ class OBJECT_MT_modifier_add(ModifierAddMenu, bpy_types.Menu, bpy_types._Generic
94
640
  filter_path,
95
641
  display_name,
96
642
  add_operator,
97
- ): ...
98
- def path_resolve(self): ...
99
- def pop(self): ...
100
- def prepend(self, draw_func): ...
101
- def property_overridable_library_set(self): ...
102
- def property_unset(self): ...
103
- def remove(self, draw_func): ...
104
- def type_recast(self): ...
105
- def values(self): ...
106
-
107
- class OBJECT_MT_modifier_add_color(
108
- ModifierAddMenu, bpy_types.Menu, bpy_types._GenericUI
109
- ):
643
+ ):
644
+ """
645
+
646
+ :param searchpaths:
647
+ :param operator:
648
+ :param props_default:
649
+ :param prop_filepath:
650
+ :param filter_ext:
651
+ :param filter_path:
652
+ :param display_name:
653
+ :param add_operator:
654
+ """
655
+ ...
656
+
657
+ def path_resolve(self):
658
+ """ """
659
+ ...
660
+
661
+ def pop(self):
662
+ """ """
663
+ ...
664
+
665
+ def prepend(self, draw_func):
666
+ """
667
+
668
+ :param draw_func:
669
+ """
670
+ ...
671
+
672
+ def property_overridable_library_set(self):
673
+ """ """
674
+ ...
675
+
676
+ def property_unset(self):
677
+ """ """
678
+ ...
679
+
680
+ def remove(self, draw_func):
681
+ """
682
+
683
+ :param draw_func:
684
+ """
685
+ ...
686
+
687
+ def type_recast(self):
688
+ """ """
689
+ ...
690
+
691
+ def values(self):
692
+ """ """
693
+ ...
694
+
695
+ class OBJECT_MT_modifier_add_color(bpy_types._GenericUI):
696
+ """ """
697
+
110
698
  MODIFIER_TYPES_I18N_CONTEXT: typing.Any
699
+ """ """
700
+
111
701
  MODIFIER_TYPES_TO_ICONS: typing.Any
702
+ """ """
703
+
112
704
  MODIFIER_TYPES_TO_LABELS: typing.Any
705
+ """ """
706
+
113
707
  bl_label: typing.Any
708
+ """ """
709
+
114
710
  bl_options: typing.Any
711
+ """ """
712
+
115
713
  bl_rna: typing.Any
714
+ """ """
715
+
116
716
  id_data: typing.Any
717
+ """ """
718
+
719
+ def append(self, draw_func):
720
+ """
721
+
722
+ :param draw_func:
723
+ """
724
+ ...
725
+
726
+ def as_pointer(self):
727
+ """ """
728
+ ...
729
+
730
+ def bl_rna_get_subclass(self):
731
+ """ """
732
+ ...
733
+
734
+ def bl_rna_get_subclass_py(self):
735
+ """ """
736
+ ...
737
+
738
+ def draw(self, context):
739
+ """
740
+
741
+ :param context:
742
+ """
743
+ ...
744
+
745
+ def draw_collapsible(self, context, layout):
746
+ """
747
+
748
+ :param context:
749
+ :param layout:
750
+ """
751
+ ...
752
+
753
+ def draw_preset(self, _context):
754
+ """
755
+
756
+ :param _context:
757
+ """
758
+ ...
759
+
760
+ def driver_add(self):
761
+ """ """
762
+ ...
763
+
764
+ def driver_remove(self):
765
+ """ """
766
+ ...
767
+
768
+ def get(self):
769
+ """ """
770
+ ...
771
+
772
+ def id_properties_clear(self):
773
+ """ """
774
+ ...
775
+
776
+ def id_properties_ensure(self):
777
+ """ """
778
+ ...
779
+
780
+ def id_properties_ui(self):
781
+ """ """
782
+ ...
783
+
784
+ def is_extended(self):
785
+ """ """
786
+ ...
787
+
788
+ def is_property_hidden(self):
789
+ """ """
790
+ ...
791
+
792
+ def is_property_overridable_library(self):
793
+ """ """
794
+ ...
795
+
796
+ def is_property_readonly(self):
797
+ """ """
798
+ ...
799
+
800
+ def is_property_set(self):
801
+ """ """
802
+ ...
803
+
804
+ def items(self):
805
+ """ """
806
+ ...
807
+
808
+ def keyframe_delete(self):
809
+ """ """
810
+ ...
811
+
812
+ def keyframe_insert(self):
813
+ """ """
814
+ ...
815
+
816
+ def keys(self):
817
+ """ """
818
+ ...
819
+
820
+ def operator_modifier_add(self, layout, mod_type):
821
+ """
822
+
823
+ :param layout:
824
+ :param mod_type:
825
+ """
826
+ ...
827
+
828
+ def path_from_id(self):
829
+ """ """
830
+ ...
117
831
 
118
- def append(self, draw_func): ...
119
- def as_pointer(self): ...
120
- def bl_rna_get_subclass(self): ...
121
- def bl_rna_get_subclass_py(self): ...
122
- def draw(self, context): ...
123
- def draw_collapsible(self, context, layout): ...
124
- def draw_preset(self, _context): ...
125
- def driver_add(self): ...
126
- def driver_remove(self): ...
127
- def get(self): ...
128
- def id_properties_clear(self): ...
129
- def id_properties_ensure(self): ...
130
- def id_properties_ui(self): ...
131
- def is_extended(self): ...
132
- def is_property_hidden(self): ...
133
- def is_property_overridable_library(self): ...
134
- def is_property_readonly(self): ...
135
- def is_property_set(self): ...
136
- def items(self): ...
137
- def keyframe_delete(self): ...
138
- def keyframe_insert(self): ...
139
- def keys(self): ...
140
- def operator_modifier_add(self, layout, mod_type): ...
141
- def path_from_id(self): ...
142
832
  def path_menu(
143
833
  self,
144
834
  searchpaths,
@@ -149,51 +839,195 @@ class OBJECT_MT_modifier_add_color(
149
839
  filter_path,
150
840
  display_name,
151
841
  add_operator,
152
- ): ...
153
- def path_resolve(self): ...
154
- def pop(self): ...
155
- def prepend(self, draw_func): ...
156
- def property_overridable_library_set(self): ...
157
- def property_unset(self): ...
158
- def remove(self, draw_func): ...
159
- def type_recast(self): ...
160
- def values(self): ...
161
-
162
- class OBJECT_MT_modifier_add_deform(
163
- ModifierAddMenu, bpy_types.Menu, bpy_types._GenericUI
164
- ):
842
+ ):
843
+ """
844
+
845
+ :param searchpaths:
846
+ :param operator:
847
+ :param props_default:
848
+ :param prop_filepath:
849
+ :param filter_ext:
850
+ :param filter_path:
851
+ :param display_name:
852
+ :param add_operator:
853
+ """
854
+ ...
855
+
856
+ def path_resolve(self):
857
+ """ """
858
+ ...
859
+
860
+ def pop(self):
861
+ """ """
862
+ ...
863
+
864
+ def prepend(self, draw_func):
865
+ """
866
+
867
+ :param draw_func:
868
+ """
869
+ ...
870
+
871
+ def property_overridable_library_set(self):
872
+ """ """
873
+ ...
874
+
875
+ def property_unset(self):
876
+ """ """
877
+ ...
878
+
879
+ def remove(self, draw_func):
880
+ """
881
+
882
+ :param draw_func:
883
+ """
884
+ ...
885
+
886
+ def type_recast(self):
887
+ """ """
888
+ ...
889
+
890
+ def values(self):
891
+ """ """
892
+ ...
893
+
894
+ class OBJECT_MT_modifier_add_deform(bpy_types._GenericUI):
895
+ """ """
896
+
165
897
  MODIFIER_TYPES_I18N_CONTEXT: typing.Any
898
+ """ """
899
+
166
900
  MODIFIER_TYPES_TO_ICONS: typing.Any
901
+ """ """
902
+
167
903
  MODIFIER_TYPES_TO_LABELS: typing.Any
904
+ """ """
905
+
168
906
  bl_label: typing.Any
907
+ """ """
908
+
169
909
  bl_options: typing.Any
910
+ """ """
911
+
170
912
  bl_rna: typing.Any
913
+ """ """
914
+
171
915
  id_data: typing.Any
916
+ """ """
917
+
918
+ def append(self, draw_func):
919
+ """
920
+
921
+ :param draw_func:
922
+ """
923
+ ...
924
+
925
+ def as_pointer(self):
926
+ """ """
927
+ ...
928
+
929
+ def bl_rna_get_subclass(self):
930
+ """ """
931
+ ...
932
+
933
+ def bl_rna_get_subclass_py(self):
934
+ """ """
935
+ ...
936
+
937
+ def draw(self, context):
938
+ """
939
+
940
+ :param context:
941
+ """
942
+ ...
943
+
944
+ def draw_collapsible(self, context, layout):
945
+ """
946
+
947
+ :param context:
948
+ :param layout:
949
+ """
950
+ ...
951
+
952
+ def draw_preset(self, _context):
953
+ """
954
+
955
+ :param _context:
956
+ """
957
+ ...
958
+
959
+ def driver_add(self):
960
+ """ """
961
+ ...
962
+
963
+ def driver_remove(self):
964
+ """ """
965
+ ...
966
+
967
+ def get(self):
968
+ """ """
969
+ ...
970
+
971
+ def id_properties_clear(self):
972
+ """ """
973
+ ...
974
+
975
+ def id_properties_ensure(self):
976
+ """ """
977
+ ...
978
+
979
+ def id_properties_ui(self):
980
+ """ """
981
+ ...
982
+
983
+ def is_extended(self):
984
+ """ """
985
+ ...
986
+
987
+ def is_property_hidden(self):
988
+ """ """
989
+ ...
990
+
991
+ def is_property_overridable_library(self):
992
+ """ """
993
+ ...
994
+
995
+ def is_property_readonly(self):
996
+ """ """
997
+ ...
998
+
999
+ def is_property_set(self):
1000
+ """ """
1001
+ ...
1002
+
1003
+ def items(self):
1004
+ """ """
1005
+ ...
1006
+
1007
+ def keyframe_delete(self):
1008
+ """ """
1009
+ ...
1010
+
1011
+ def keyframe_insert(self):
1012
+ """ """
1013
+ ...
1014
+
1015
+ def keys(self):
1016
+ """ """
1017
+ ...
1018
+
1019
+ def operator_modifier_add(self, layout, mod_type):
1020
+ """
1021
+
1022
+ :param layout:
1023
+ :param mod_type:
1024
+ """
1025
+ ...
1026
+
1027
+ def path_from_id(self):
1028
+ """ """
1029
+ ...
172
1030
 
173
- def append(self, draw_func): ...
174
- def as_pointer(self): ...
175
- def bl_rna_get_subclass(self): ...
176
- def bl_rna_get_subclass_py(self): ...
177
- def draw(self, context): ...
178
- def draw_collapsible(self, context, layout): ...
179
- def draw_preset(self, _context): ...
180
- def driver_add(self): ...
181
- def driver_remove(self): ...
182
- def get(self): ...
183
- def id_properties_clear(self): ...
184
- def id_properties_ensure(self): ...
185
- def id_properties_ui(self): ...
186
- def is_extended(self): ...
187
- def is_property_hidden(self): ...
188
- def is_property_overridable_library(self): ...
189
- def is_property_readonly(self): ...
190
- def is_property_set(self): ...
191
- def items(self): ...
192
- def keyframe_delete(self): ...
193
- def keyframe_insert(self): ...
194
- def keys(self): ...
195
- def operator_modifier_add(self, layout, mod_type): ...
196
- def path_from_id(self): ...
197
1031
  def path_menu(
198
1032
  self,
199
1033
  searchpaths,
@@ -204,51 +1038,195 @@ class OBJECT_MT_modifier_add_deform(
204
1038
  filter_path,
205
1039
  display_name,
206
1040
  add_operator,
207
- ): ...
208
- def path_resolve(self): ...
209
- def pop(self): ...
210
- def prepend(self, draw_func): ...
211
- def property_overridable_library_set(self): ...
212
- def property_unset(self): ...
213
- def remove(self, draw_func): ...
214
- def type_recast(self): ...
215
- def values(self): ...
216
-
217
- class OBJECT_MT_modifier_add_edit(
218
- ModifierAddMenu, bpy_types.Menu, bpy_types._GenericUI
219
- ):
1041
+ ):
1042
+ """
1043
+
1044
+ :param searchpaths:
1045
+ :param operator:
1046
+ :param props_default:
1047
+ :param prop_filepath:
1048
+ :param filter_ext:
1049
+ :param filter_path:
1050
+ :param display_name:
1051
+ :param add_operator:
1052
+ """
1053
+ ...
1054
+
1055
+ def path_resolve(self):
1056
+ """ """
1057
+ ...
1058
+
1059
+ def pop(self):
1060
+ """ """
1061
+ ...
1062
+
1063
+ def prepend(self, draw_func):
1064
+ """
1065
+
1066
+ :param draw_func:
1067
+ """
1068
+ ...
1069
+
1070
+ def property_overridable_library_set(self):
1071
+ """ """
1072
+ ...
1073
+
1074
+ def property_unset(self):
1075
+ """ """
1076
+ ...
1077
+
1078
+ def remove(self, draw_func):
1079
+ """
1080
+
1081
+ :param draw_func:
1082
+ """
1083
+ ...
1084
+
1085
+ def type_recast(self):
1086
+ """ """
1087
+ ...
1088
+
1089
+ def values(self):
1090
+ """ """
1091
+ ...
1092
+
1093
+ class OBJECT_MT_modifier_add_edit(bpy_types._GenericUI):
1094
+ """ """
1095
+
220
1096
  MODIFIER_TYPES_I18N_CONTEXT: typing.Any
1097
+ """ """
1098
+
221
1099
  MODIFIER_TYPES_TO_ICONS: typing.Any
1100
+ """ """
1101
+
222
1102
  MODIFIER_TYPES_TO_LABELS: typing.Any
1103
+ """ """
1104
+
223
1105
  bl_label: typing.Any
1106
+ """ """
1107
+
224
1108
  bl_options: typing.Any
1109
+ """ """
1110
+
225
1111
  bl_rna: typing.Any
1112
+ """ """
1113
+
226
1114
  id_data: typing.Any
1115
+ """ """
1116
+
1117
+ def append(self, draw_func):
1118
+ """
1119
+
1120
+ :param draw_func:
1121
+ """
1122
+ ...
1123
+
1124
+ def as_pointer(self):
1125
+ """ """
1126
+ ...
1127
+
1128
+ def bl_rna_get_subclass(self):
1129
+ """ """
1130
+ ...
1131
+
1132
+ def bl_rna_get_subclass_py(self):
1133
+ """ """
1134
+ ...
1135
+
1136
+ def draw(self, context):
1137
+ """
1138
+
1139
+ :param context:
1140
+ """
1141
+ ...
1142
+
1143
+ def draw_collapsible(self, context, layout):
1144
+ """
1145
+
1146
+ :param context:
1147
+ :param layout:
1148
+ """
1149
+ ...
1150
+
1151
+ def draw_preset(self, _context):
1152
+ """
1153
+
1154
+ :param _context:
1155
+ """
1156
+ ...
1157
+
1158
+ def driver_add(self):
1159
+ """ """
1160
+ ...
1161
+
1162
+ def driver_remove(self):
1163
+ """ """
1164
+ ...
1165
+
1166
+ def get(self):
1167
+ """ """
1168
+ ...
1169
+
1170
+ def id_properties_clear(self):
1171
+ """ """
1172
+ ...
1173
+
1174
+ def id_properties_ensure(self):
1175
+ """ """
1176
+ ...
1177
+
1178
+ def id_properties_ui(self):
1179
+ """ """
1180
+ ...
1181
+
1182
+ def is_extended(self):
1183
+ """ """
1184
+ ...
1185
+
1186
+ def is_property_hidden(self):
1187
+ """ """
1188
+ ...
1189
+
1190
+ def is_property_overridable_library(self):
1191
+ """ """
1192
+ ...
1193
+
1194
+ def is_property_readonly(self):
1195
+ """ """
1196
+ ...
1197
+
1198
+ def is_property_set(self):
1199
+ """ """
1200
+ ...
1201
+
1202
+ def items(self):
1203
+ """ """
1204
+ ...
1205
+
1206
+ def keyframe_delete(self):
1207
+ """ """
1208
+ ...
1209
+
1210
+ def keyframe_insert(self):
1211
+ """ """
1212
+ ...
1213
+
1214
+ def keys(self):
1215
+ """ """
1216
+ ...
1217
+
1218
+ def operator_modifier_add(self, layout, mod_type):
1219
+ """
1220
+
1221
+ :param layout:
1222
+ :param mod_type:
1223
+ """
1224
+ ...
1225
+
1226
+ def path_from_id(self):
1227
+ """ """
1228
+ ...
227
1229
 
228
- def append(self, draw_func): ...
229
- def as_pointer(self): ...
230
- def bl_rna_get_subclass(self): ...
231
- def bl_rna_get_subclass_py(self): ...
232
- def draw(self, context): ...
233
- def draw_collapsible(self, context, layout): ...
234
- def draw_preset(self, _context): ...
235
- def driver_add(self): ...
236
- def driver_remove(self): ...
237
- def get(self): ...
238
- def id_properties_clear(self): ...
239
- def id_properties_ensure(self): ...
240
- def id_properties_ui(self): ...
241
- def is_extended(self): ...
242
- def is_property_hidden(self): ...
243
- def is_property_overridable_library(self): ...
244
- def is_property_readonly(self): ...
245
- def is_property_set(self): ...
246
- def items(self): ...
247
- def keyframe_delete(self): ...
248
- def keyframe_insert(self): ...
249
- def keys(self): ...
250
- def operator_modifier_add(self, layout, mod_type): ...
251
- def path_from_id(self): ...
252
1230
  def path_menu(
253
1231
  self,
254
1232
  searchpaths,
@@ -259,51 +1237,195 @@ class OBJECT_MT_modifier_add_edit(
259
1237
  filter_path,
260
1238
  display_name,
261
1239
  add_operator,
262
- ): ...
263
- def path_resolve(self): ...
264
- def pop(self): ...
265
- def prepend(self, draw_func): ...
266
- def property_overridable_library_set(self): ...
267
- def property_unset(self): ...
268
- def remove(self, draw_func): ...
269
- def type_recast(self): ...
270
- def values(self): ...
271
-
272
- class OBJECT_MT_modifier_add_generate(
273
- ModifierAddMenu, bpy_types.Menu, bpy_types._GenericUI
274
- ):
1240
+ ):
1241
+ """
1242
+
1243
+ :param searchpaths:
1244
+ :param operator:
1245
+ :param props_default:
1246
+ :param prop_filepath:
1247
+ :param filter_ext:
1248
+ :param filter_path:
1249
+ :param display_name:
1250
+ :param add_operator:
1251
+ """
1252
+ ...
1253
+
1254
+ def path_resolve(self):
1255
+ """ """
1256
+ ...
1257
+
1258
+ def pop(self):
1259
+ """ """
1260
+ ...
1261
+
1262
+ def prepend(self, draw_func):
1263
+ """
1264
+
1265
+ :param draw_func:
1266
+ """
1267
+ ...
1268
+
1269
+ def property_overridable_library_set(self):
1270
+ """ """
1271
+ ...
1272
+
1273
+ def property_unset(self):
1274
+ """ """
1275
+ ...
1276
+
1277
+ def remove(self, draw_func):
1278
+ """
1279
+
1280
+ :param draw_func:
1281
+ """
1282
+ ...
1283
+
1284
+ def type_recast(self):
1285
+ """ """
1286
+ ...
1287
+
1288
+ def values(self):
1289
+ """ """
1290
+ ...
1291
+
1292
+ class OBJECT_MT_modifier_add_generate(bpy_types._GenericUI):
1293
+ """ """
1294
+
275
1295
  MODIFIER_TYPES_I18N_CONTEXT: typing.Any
1296
+ """ """
1297
+
276
1298
  MODIFIER_TYPES_TO_ICONS: typing.Any
1299
+ """ """
1300
+
277
1301
  MODIFIER_TYPES_TO_LABELS: typing.Any
1302
+ """ """
1303
+
278
1304
  bl_label: typing.Any
1305
+ """ """
1306
+
279
1307
  bl_options: typing.Any
1308
+ """ """
1309
+
280
1310
  bl_rna: typing.Any
1311
+ """ """
1312
+
281
1313
  id_data: typing.Any
1314
+ """ """
1315
+
1316
+ def append(self, draw_func):
1317
+ """
1318
+
1319
+ :param draw_func:
1320
+ """
1321
+ ...
1322
+
1323
+ def as_pointer(self):
1324
+ """ """
1325
+ ...
1326
+
1327
+ def bl_rna_get_subclass(self):
1328
+ """ """
1329
+ ...
1330
+
1331
+ def bl_rna_get_subclass_py(self):
1332
+ """ """
1333
+ ...
1334
+
1335
+ def draw(self, context):
1336
+ """
1337
+
1338
+ :param context:
1339
+ """
1340
+ ...
1341
+
1342
+ def draw_collapsible(self, context, layout):
1343
+ """
1344
+
1345
+ :param context:
1346
+ :param layout:
1347
+ """
1348
+ ...
1349
+
1350
+ def draw_preset(self, _context):
1351
+ """
1352
+
1353
+ :param _context:
1354
+ """
1355
+ ...
1356
+
1357
+ def driver_add(self):
1358
+ """ """
1359
+ ...
1360
+
1361
+ def driver_remove(self):
1362
+ """ """
1363
+ ...
1364
+
1365
+ def get(self):
1366
+ """ """
1367
+ ...
1368
+
1369
+ def id_properties_clear(self):
1370
+ """ """
1371
+ ...
1372
+
1373
+ def id_properties_ensure(self):
1374
+ """ """
1375
+ ...
1376
+
1377
+ def id_properties_ui(self):
1378
+ """ """
1379
+ ...
1380
+
1381
+ def is_extended(self):
1382
+ """ """
1383
+ ...
1384
+
1385
+ def is_property_hidden(self):
1386
+ """ """
1387
+ ...
1388
+
1389
+ def is_property_overridable_library(self):
1390
+ """ """
1391
+ ...
1392
+
1393
+ def is_property_readonly(self):
1394
+ """ """
1395
+ ...
1396
+
1397
+ def is_property_set(self):
1398
+ """ """
1399
+ ...
1400
+
1401
+ def items(self):
1402
+ """ """
1403
+ ...
1404
+
1405
+ def keyframe_delete(self):
1406
+ """ """
1407
+ ...
1408
+
1409
+ def keyframe_insert(self):
1410
+ """ """
1411
+ ...
1412
+
1413
+ def keys(self):
1414
+ """ """
1415
+ ...
1416
+
1417
+ def operator_modifier_add(self, layout, mod_type):
1418
+ """
1419
+
1420
+ :param layout:
1421
+ :param mod_type:
1422
+ """
1423
+ ...
1424
+
1425
+ def path_from_id(self):
1426
+ """ """
1427
+ ...
282
1428
 
283
- def append(self, draw_func): ...
284
- def as_pointer(self): ...
285
- def bl_rna_get_subclass(self): ...
286
- def bl_rna_get_subclass_py(self): ...
287
- def draw(self, context): ...
288
- def draw_collapsible(self, context, layout): ...
289
- def draw_preset(self, _context): ...
290
- def driver_add(self): ...
291
- def driver_remove(self): ...
292
- def get(self): ...
293
- def id_properties_clear(self): ...
294
- def id_properties_ensure(self): ...
295
- def id_properties_ui(self): ...
296
- def is_extended(self): ...
297
- def is_property_hidden(self): ...
298
- def is_property_overridable_library(self): ...
299
- def is_property_readonly(self): ...
300
- def is_property_set(self): ...
301
- def items(self): ...
302
- def keyframe_delete(self): ...
303
- def keyframe_insert(self): ...
304
- def keys(self): ...
305
- def operator_modifier_add(self, layout, mod_type): ...
306
- def path_from_id(self): ...
307
1429
  def path_menu(
308
1430
  self,
309
1431
  searchpaths,
@@ -314,51 +1436,195 @@ class OBJECT_MT_modifier_add_generate(
314
1436
  filter_path,
315
1437
  display_name,
316
1438
  add_operator,
317
- ): ...
318
- def path_resolve(self): ...
319
- def pop(self): ...
320
- def prepend(self, draw_func): ...
321
- def property_overridable_library_set(self): ...
322
- def property_unset(self): ...
323
- def remove(self, draw_func): ...
324
- def type_recast(self): ...
325
- def values(self): ...
326
-
327
- class OBJECT_MT_modifier_add_physics(
328
- ModifierAddMenu, bpy_types.Menu, bpy_types._GenericUI
329
- ):
1439
+ ):
1440
+ """
1441
+
1442
+ :param searchpaths:
1443
+ :param operator:
1444
+ :param props_default:
1445
+ :param prop_filepath:
1446
+ :param filter_ext:
1447
+ :param filter_path:
1448
+ :param display_name:
1449
+ :param add_operator:
1450
+ """
1451
+ ...
1452
+
1453
+ def path_resolve(self):
1454
+ """ """
1455
+ ...
1456
+
1457
+ def pop(self):
1458
+ """ """
1459
+ ...
1460
+
1461
+ def prepend(self, draw_func):
1462
+ """
1463
+
1464
+ :param draw_func:
1465
+ """
1466
+ ...
1467
+
1468
+ def property_overridable_library_set(self):
1469
+ """ """
1470
+ ...
1471
+
1472
+ def property_unset(self):
1473
+ """ """
1474
+ ...
1475
+
1476
+ def remove(self, draw_func):
1477
+ """
1478
+
1479
+ :param draw_func:
1480
+ """
1481
+ ...
1482
+
1483
+ def type_recast(self):
1484
+ """ """
1485
+ ...
1486
+
1487
+ def values(self):
1488
+ """ """
1489
+ ...
1490
+
1491
+ class OBJECT_MT_modifier_add_physics(bpy_types._GenericUI):
1492
+ """ """
1493
+
330
1494
  MODIFIER_TYPES_I18N_CONTEXT: typing.Any
1495
+ """ """
1496
+
331
1497
  MODIFIER_TYPES_TO_ICONS: typing.Any
1498
+ """ """
1499
+
332
1500
  MODIFIER_TYPES_TO_LABELS: typing.Any
1501
+ """ """
1502
+
333
1503
  bl_label: typing.Any
1504
+ """ """
1505
+
334
1506
  bl_options: typing.Any
1507
+ """ """
1508
+
335
1509
  bl_rna: typing.Any
1510
+ """ """
1511
+
336
1512
  id_data: typing.Any
1513
+ """ """
1514
+
1515
+ def append(self, draw_func):
1516
+ """
1517
+
1518
+ :param draw_func:
1519
+ """
1520
+ ...
1521
+
1522
+ def as_pointer(self):
1523
+ """ """
1524
+ ...
1525
+
1526
+ def bl_rna_get_subclass(self):
1527
+ """ """
1528
+ ...
1529
+
1530
+ def bl_rna_get_subclass_py(self):
1531
+ """ """
1532
+ ...
1533
+
1534
+ def draw(self, context):
1535
+ """
1536
+
1537
+ :param context:
1538
+ """
1539
+ ...
1540
+
1541
+ def draw_collapsible(self, context, layout):
1542
+ """
1543
+
1544
+ :param context:
1545
+ :param layout:
1546
+ """
1547
+ ...
1548
+
1549
+ def draw_preset(self, _context):
1550
+ """
1551
+
1552
+ :param _context:
1553
+ """
1554
+ ...
1555
+
1556
+ def driver_add(self):
1557
+ """ """
1558
+ ...
1559
+
1560
+ def driver_remove(self):
1561
+ """ """
1562
+ ...
1563
+
1564
+ def get(self):
1565
+ """ """
1566
+ ...
1567
+
1568
+ def id_properties_clear(self):
1569
+ """ """
1570
+ ...
1571
+
1572
+ def id_properties_ensure(self):
1573
+ """ """
1574
+ ...
1575
+
1576
+ def id_properties_ui(self):
1577
+ """ """
1578
+ ...
1579
+
1580
+ def is_extended(self):
1581
+ """ """
1582
+ ...
1583
+
1584
+ def is_property_hidden(self):
1585
+ """ """
1586
+ ...
1587
+
1588
+ def is_property_overridable_library(self):
1589
+ """ """
1590
+ ...
1591
+
1592
+ def is_property_readonly(self):
1593
+ """ """
1594
+ ...
1595
+
1596
+ def is_property_set(self):
1597
+ """ """
1598
+ ...
1599
+
1600
+ def items(self):
1601
+ """ """
1602
+ ...
1603
+
1604
+ def keyframe_delete(self):
1605
+ """ """
1606
+ ...
1607
+
1608
+ def keyframe_insert(self):
1609
+ """ """
1610
+ ...
1611
+
1612
+ def keys(self):
1613
+ """ """
1614
+ ...
1615
+
1616
+ def operator_modifier_add(self, layout, mod_type):
1617
+ """
1618
+
1619
+ :param layout:
1620
+ :param mod_type:
1621
+ """
1622
+ ...
1623
+
1624
+ def path_from_id(self):
1625
+ """ """
1626
+ ...
337
1627
 
338
- def append(self, draw_func): ...
339
- def as_pointer(self): ...
340
- def bl_rna_get_subclass(self): ...
341
- def bl_rna_get_subclass_py(self): ...
342
- def draw(self, context): ...
343
- def draw_collapsible(self, context, layout): ...
344
- def draw_preset(self, _context): ...
345
- def driver_add(self): ...
346
- def driver_remove(self): ...
347
- def get(self): ...
348
- def id_properties_clear(self): ...
349
- def id_properties_ensure(self): ...
350
- def id_properties_ui(self): ...
351
- def is_extended(self): ...
352
- def is_property_hidden(self): ...
353
- def is_property_overridable_library(self): ...
354
- def is_property_readonly(self): ...
355
- def is_property_set(self): ...
356
- def items(self): ...
357
- def keyframe_delete(self): ...
358
- def keyframe_insert(self): ...
359
- def keys(self): ...
360
- def operator_modifier_add(self, layout, mod_type): ...
361
- def path_from_id(self): ...
362
1628
  def path_menu(
363
1629
  self,
364
1630
  searchpaths,
@@ -369,94 +1635,54 @@ class OBJECT_MT_modifier_add_physics(
369
1635
  filter_path,
370
1636
  display_name,
371
1637
  add_operator,
372
- ): ...
373
- def path_resolve(self): ...
374
- def pop(self): ...
375
- def prepend(self, draw_func): ...
376
- def property_overridable_library_set(self): ...
377
- def property_unset(self): ...
378
- def remove(self, draw_func): ...
379
- def type_recast(self): ...
380
- def values(self): ...
381
-
382
- class DATA_PT_gpencil_modifiers(
383
- ModifierButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
384
- ):
385
- bl_context: typing.Any
386
- bl_label: typing.Any
387
- bl_options: typing.Any
388
- bl_region_type: typing.Any
389
- bl_rna: typing.Any
390
- bl_space_type: typing.Any
391
- id_data: typing.Any
1638
+ ):
1639
+ """
392
1640
 
393
- def append(self, draw_func): ...
394
- def as_pointer(self): ...
395
- def bl_rna_get_subclass(self): ...
396
- def bl_rna_get_subclass_py(self): ...
397
- def draw(self, _context): ...
398
- def driver_add(self): ...
399
- def driver_remove(self): ...
400
- def get(self): ...
401
- def id_properties_clear(self): ...
402
- def id_properties_ensure(self): ...
403
- def id_properties_ui(self): ...
404
- def is_extended(self): ...
405
- def is_property_hidden(self): ...
406
- def is_property_overridable_library(self): ...
407
- def is_property_readonly(self): ...
408
- def is_property_set(self): ...
409
- def items(self): ...
410
- def keyframe_delete(self): ...
411
- def keyframe_insert(self): ...
412
- def keys(self): ...
413
- def path_from_id(self): ...
414
- def path_resolve(self): ...
415
- def poll(self, context): ...
416
- def pop(self): ...
417
- def prepend(self, draw_func): ...
418
- def property_overridable_library_set(self): ...
419
- def property_unset(self): ...
420
- def remove(self, draw_func): ...
421
- def type_recast(self): ...
422
- def values(self): ...
423
-
424
- class DATA_PT_modifiers(ModifierButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
425
- bl_context: typing.Any
426
- bl_label: typing.Any
427
- bl_options: typing.Any
428
- bl_region_type: typing.Any
429
- bl_rna: typing.Any
430
- bl_space_type: typing.Any
431
- id_data: typing.Any
1641
+ :param searchpaths:
1642
+ :param operator:
1643
+ :param props_default:
1644
+ :param prop_filepath:
1645
+ :param filter_ext:
1646
+ :param filter_path:
1647
+ :param display_name:
1648
+ :param add_operator:
1649
+ """
1650
+ ...
1651
+
1652
+ def path_resolve(self):
1653
+ """ """
1654
+ ...
1655
+
1656
+ def pop(self):
1657
+ """ """
1658
+ ...
1659
+
1660
+ def prepend(self, draw_func):
1661
+ """
1662
+
1663
+ :param draw_func:
1664
+ """
1665
+ ...
1666
+
1667
+ def property_overridable_library_set(self):
1668
+ """ """
1669
+ ...
1670
+
1671
+ def property_unset(self):
1672
+ """ """
1673
+ ...
1674
+
1675
+ def remove(self, draw_func):
1676
+ """
1677
+
1678
+ :param draw_func:
1679
+ """
1680
+ ...
1681
+
1682
+ def type_recast(self):
1683
+ """ """
1684
+ ...
432
1685
 
433
- def append(self, draw_func): ...
434
- def as_pointer(self): ...
435
- def bl_rna_get_subclass(self): ...
436
- def bl_rna_get_subclass_py(self): ...
437
- def draw(self, _context): ...
438
- def driver_add(self): ...
439
- def driver_remove(self): ...
440
- def get(self): ...
441
- def id_properties_clear(self): ...
442
- def id_properties_ensure(self): ...
443
- def id_properties_ui(self): ...
444
- def is_extended(self): ...
445
- def is_property_hidden(self): ...
446
- def is_property_overridable_library(self): ...
447
- def is_property_readonly(self): ...
448
- def is_property_set(self): ...
449
- def items(self): ...
450
- def keyframe_delete(self): ...
451
- def keyframe_insert(self): ...
452
- def keys(self): ...
453
- def path_from_id(self): ...
454
- def path_resolve(self): ...
455
- def poll(self, context): ...
456
- def pop(self): ...
457
- def prepend(self, draw_func): ...
458
- def property_overridable_library_set(self): ...
459
- def property_unset(self): ...
460
- def remove(self, draw_func): ...
461
- def type_recast(self): ...
462
- def values(self): ...
1686
+ def values(self):
1687
+ """ """
1688
+ ...