fake-bpy-module 20240321__py3-none-any.whl → 20240324__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (285) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +27 -11
  3. aud/__init__.pyi +130 -123
  4. bgl/__init__.pyi +1831 -216
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +19 -10
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +19 -23
  15. bl_i18n_utils/utils/__init__.pyi +81 -143
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +120 -49
  27. bl_operators/anim/__init__.pyi +903 -297
  28. bl_operators/assets/__init__.pyi +348 -123
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1262 -470
  31. bl_operators/console/__init__.pyi +542 -160
  32. bl_operators/constraint/__init__.pyi +452 -140
  33. bl_operators/file/__init__.pyi +339 -114
  34. bl_operators/freestyle/__init__.pyi +440 -132
  35. bl_operators/geometry_nodes/__init__.pyi +2131 -842
  36. bl_operators/image/__init__.pyi +330 -97
  37. bl_operators/mesh/__init__.pyi +339 -109
  38. bl_operators/node/__init__.pyi +1506 -621
  39. bl_operators/object/__init__.pyi +1828 -668
  40. bl_operators/object_align/__init__.pyi +124 -35
  41. bl_operators/object_quick_effects/__init__.pyi +470 -149
  42. bl_operators/object_randomize_transform/__init__.pyi +114 -35
  43. bl_operators/presets/__init__.pyi +3056 -1374
  44. bl_operators/rigidbody/__init__.pyi +336 -106
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +115 -33
  46. bl_operators/sequencer/__init__.pyi +579 -204
  47. bl_operators/spreadsheet/__init__.pyi +110 -38
  48. bl_operators/userpref/__init__.pyi +3201 -1236
  49. bl_operators/uvcalc_follow_active/__init__.pyi +119 -38
  50. bl_operators/uvcalc_lightmap/__init__.pyi +137 -54
  51. bl_operators/uvcalc_transform/__init__.pyi +295 -83
  52. bl_operators/vertexpaint_dirt/__init__.pyi +119 -34
  53. bl_operators/view3d/__init__.pyi +542 -184
  54. bl_operators/wm/__init__.pyi +5554 -2159
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +346 -146
  59. bl_ui/anim/__init__.pyi +107 -47
  60. bl_ui/asset_shelf/__init__.pyi +111 -33
  61. bl_ui/generic_ui_list/__init__.pyi +349 -146
  62. bl_ui/node_add_menu/__init__.pyi +138 -53
  63. bl_ui/node_add_menu_compositor/__init__.pyi +2134 -1016
  64. bl_ui/node_add_menu_geometry/__init__.pyi +5833 -2855
  65. bl_ui/node_add_menu_shader/__init__.pyi +1162 -511
  66. bl_ui/node_add_menu_texture/__init__.pyi +1008 -450
  67. bl_ui/properties_animviz/__init__.pyi +14 -12
  68. bl_ui/properties_collection/__init__.pyi +601 -218
  69. bl_ui/properties_constraint/__init__.pyi +10115 -10647
  70. bl_ui/properties_data_armature/__init__.pyi +1550 -648
  71. bl_ui/properties_data_bone/__init__.pyi +1317 -511
  72. bl_ui/properties_data_camera/__init__.pyi +1852 -719
  73. bl_ui/properties_data_curve/__init__.pyi +2015 -781
  74. bl_ui/properties_data_curves/__init__.pyi +713 -262
  75. bl_ui/properties_data_empty/__init__.pyi +252 -84
  76. bl_ui/properties_data_gpencil/__init__.pyi +2505 -1105
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1350 -594
  78. bl_ui/properties_data_lattice/__init__.pyi +374 -123
  79. bl_ui/properties_data_light/__init__.pyi +1319 -489
  80. bl_ui/properties_data_lightprobe/__init__.pyi +734 -241
  81. bl_ui/properties_data_mesh/__init__.pyi +2652 -1189
  82. bl_ui/properties_data_metaball/__init__.pyi +610 -197
  83. bl_ui/properties_data_modifier/__init__.pyi +1143 -506
  84. bl_ui/properties_data_pointcloud/__init__.pyi +670 -303
  85. bl_ui/properties_data_shaderfx/__init__.pyi +126 -36
  86. bl_ui/properties_data_speaker/__init__.pyi +618 -195
  87. bl_ui/properties_data_volume/__init__.pyi +1052 -408
  88. bl_ui/properties_freestyle/__init__.pyi +3366 -1450
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +1634 -776
  90. bl_ui/properties_mask_common/__init__.pyi +803 -371
  91. bl_ui/properties_material/__init__.pyi +2038 -831
  92. bl_ui/properties_material_gpencil/__init__.pyi +1272 -523
  93. bl_ui/properties_object/__init__.pyi +1863 -745
  94. bl_ui/properties_output/__init__.pyi +2482 -1071
  95. bl_ui/properties_paint_common/__init__.pyi +317 -424
  96. bl_ui/properties_particle/__init__.pyi +7235 -2942
  97. bl_ui/properties_physics_cloth/__init__.pyi +1903 -758
  98. bl_ui/properties_physics_common/__init__.pyi +164 -51
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +2787 -1114
  100. bl_ui/properties_physics_field/__init__.pyi +1294 -486
  101. bl_ui/properties_physics_fluid/__init__.pyi +3631 -1545
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +115 -34
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +983 -312
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +1718 -656
  105. bl_ui/properties_physics_softbody/__init__.pyi +2091 -836
  106. bl_ui/properties_render/__init__.pyi +7177 -2939
  107. bl_ui/properties_scene/__init__.pyi +1881 -760
  108. bl_ui/properties_texture/__init__.pyi +3539 -1399
  109. bl_ui/properties_view_layer/__init__.pyi +2368 -940
  110. bl_ui/properties_workspace/__init__.pyi +517 -202
  111. bl_ui/properties_world/__init__.pyi +862 -269
  112. bl_ui/space_clip/__init__.pyi +9127 -4137
  113. bl_ui/space_console/__init__.pyi +666 -286
  114. bl_ui/space_dopesheet/__init__.pyi +3287 -1504
  115. bl_ui/space_filebrowser/__init__.pyi +3958 -1935
  116. bl_ui/space_graph/__init__.pyi +2406 -1142
  117. bl_ui/space_image/__init__.pyi +9242 -4526
  118. bl_ui/space_info/__init__.pyi +664 -285
  119. bl_ui/space_nla/__init__.pyi +2014 -932
  120. bl_ui/space_node/__init__.pyi +4549 -1949
  121. bl_ui/space_outliner/__init__.pyi +1619 -745
  122. bl_ui/space_properties/__init__.pyi +340 -105
  123. bl_ui/space_sequencer/__init__.pyi +9396 -4264
  124. bl_ui/space_spreadsheet/__init__.pyi +110 -60
  125. bl_ui/space_statusbar/__init__.pyi +107 -32
  126. bl_ui/space_text/__init__.pyi +1907 -872
  127. bl_ui/space_time/__init__.pyi +812 -327
  128. bl_ui/space_toolsystem_common/__init__.pyi +203 -99
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +845 -289
  130. bl_ui/space_topbar/__init__.pyi +3131 -1437
  131. bl_ui/space_userpref/__init__.pyi +11510 -4926
  132. bl_ui/space_view3d/__init__.pyi +31358 -14417
  133. bl_ui/space_view3d_toolbar/__init__.pyi +12401 -6163
  134. bl_ui/utils/__init__.pyi +7 -16
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +253 -247
  143. bmesh/utils/__init__.pyi +54 -54
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +316 -415
  152. bpy/ops/anim/__init__.pyi +428 -566
  153. bpy/ops/armature/__init__.pyi +360 -488
  154. bpy/ops/asset/__init__.pyi +146 -183
  155. bpy/ops/boid/__init__.pyi +50 -67
  156. bpy/ops/brush/__init__.pyi +72 -96
  157. bpy/ops/buttons/__init__.pyi +128 -142
  158. bpy/ops/cachefile/__init__.pyi +124 -137
  159. bpy/ops/camera/__init__.pyi +22 -28
  160. bpy/ops/clip/__init__.pyi +768 -1005
  161. bpy/ops/cloth/__init__.pyi +10 -13
  162. bpy/ops/collection/__init__.pyi +36 -50
  163. bpy/ops/console/__init__.pyi +150 -203
  164. bpy/ops/constraint/__init__.pyi +150 -201
  165. bpy/ops/curve/__init__.pyi +474 -607
  166. bpy/ops/curves/__init__.pyi +170 -221
  167. bpy/ops/cycles/__init__.pyi +18 -26
  168. bpy/ops/dpaint/__init__.pyi +34 -46
  169. bpy/ops/ed/__init__.pyi +122 -149
  170. bpy/ops/export_anim/__init__.pyi +18 -21
  171. bpy/ops/export_mesh/__init__.pyi +26 -29
  172. bpy/ops/export_scene/__init__.pyi +307 -342
  173. bpy/ops/file/__init__.pyi +342 -436
  174. bpy/ops/fluid/__init__.pyi +88 -117
  175. bpy/ops/font/__init__.pyi +252 -311
  176. bpy/ops/geometry/__init__.pyi +86 -113
  177. bpy/ops/gizmogroup/__init__.pyi +22 -27
  178. bpy/ops/gpencil/__init__.pyi +1444 -1864
  179. bpy/ops/graph/__init__.pyi +646 -823
  180. bpy/ops/grease_pencil/__init__.pyi +426 -576
  181. bpy/ops/image/__init__.pyi +612 -733
  182. bpy/ops/import_anim/__init__.pyi +26 -29
  183. bpy/ops/import_curve/__init__.pyi +6 -9
  184. bpy/ops/import_mesh/__init__.pyi +18 -23
  185. bpy/ops/import_scene/__init__.pyi +86 -101
  186. bpy/ops/info/__init__.pyi +60 -77
  187. bpy/ops/lattice/__init__.pyi +64 -85
  188. bpy/ops/marker/__init__.pyi +106 -137
  189. bpy/ops/mask/__init__.pyi +318 -420
  190. bpy/ops/material/__init__.pyi +18 -24
  191. bpy/ops/mball/__init__.pyi +70 -93
  192. bpy/ops/mesh/__init__.pyi +1988 -2460
  193. bpy/ops/nla/__init__.pyi +331 -429
  194. bpy/ops/node/__init__.pyi +852 -1115
  195. bpy/ops/object/__init__.pyi +2420 -3081
  196. bpy/ops/outliner/__init__.pyi +498 -661
  197. bpy/ops/paint/__init__.pyi +518 -667
  198. bpy/ops/paintcurve/__init__.pyi +64 -84
  199. bpy/ops/palette/__init__.pyi +48 -66
  200. bpy/ops/particle/__init__.pyi +264 -355
  201. bpy/ops/pose/__init__.pyi +336 -438
  202. bpy/ops/poselib/__init__.pyi +70 -92
  203. bpy/ops/preferences/__init__.pyi +336 -440
  204. bpy/ops/ptcache/__init__.pyi +46 -62
  205. bpy/ops/render/__init__.pyi +114 -147
  206. bpy/ops/rigidbody/__init__.pyi +102 -135
  207. bpy/ops/scene/__init__.pyi +270 -364
  208. bpy/ops/screen/__init__.pyi +378 -477
  209. bpy/ops/script/__init__.pyi +18 -26
  210. bpy/ops/sculpt/__init__.pyi +400 -488
  211. bpy/ops/sculpt_curves/__init__.pyi +40 -53
  212. bpy/ops/sequencer/__init__.pyi +1040 -1279
  213. bpy/ops/sound/__init__.pyi +208 -226
  214. bpy/ops/spreadsheet/__init__.pyi +30 -40
  215. bpy/ops/surface/__init__.pyi +108 -126
  216. bpy/ops/text/__init__.pyi +382 -486
  217. bpy/ops/text_editor/__init__.pyi +10 -13
  218. bpy/ops/texture/__init__.pyi +26 -35
  219. bpy/ops/transform/__init__.pyi +790 -905
  220. bpy/ops/ui/__init__.pyi +216 -291
  221. bpy/ops/uilist/__init__.pyi +20 -29
  222. bpy/ops/uv/__init__.pyi +600 -742
  223. bpy/ops/view2d/__init__.pyi +156 -195
  224. bpy/ops/view3d/__init__.pyi +576 -742
  225. bpy/ops/wm/__init__.pyi +2360 -2702
  226. bpy/ops/workspace/__init__.pyi +42 -57
  227. bpy/ops/world/__init__.pyi +6 -8
  228. bpy/path/__init__.pyi +110 -81
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86446 -87424
  231. bpy/utils/__init__.pyi +242 -154
  232. bpy/utils/previews/__init__.pyi +57 -57
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/anim_utils/__init__.pyi +11 -31
  235. bpy_extras/asset_utils/__init__.pyi +4 -1
  236. bpy_extras/image_utils/__init__.pyi +2 -2
  237. bpy_extras/io_utils/__init__.pyi +30 -27
  238. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  239. bpy_extras/mesh_utils/__init__.pyi +18 -18
  240. bpy_extras/node_utils/__init__.pyi +4 -1
  241. bpy_extras/object_utils/__init__.pyi +25 -26
  242. bpy_extras/view3d_utils/__init__.pyi +33 -38
  243. bpy_restrict_state/__init__.pyi +14 -1
  244. bpy_types/__init__.pyi +3748 -1248
  245. console_python/__init__.pyi +41 -7
  246. console_shell/__init__.pyi +24 -5
  247. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240324.dist-info/RECORD +343 -0
  249. freestyle/chainingiterators/__init__.pyi +50 -52
  250. freestyle/functions/__init__.pyi +303 -207
  251. freestyle/predicates/__init__.pyi +299 -115
  252. freestyle/shaders/__init__.pyi +49 -80
  253. freestyle/types/__init__.pyi +463 -470
  254. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  255. freestyle/utils/__init__.pyi +27 -17
  256. gpu/capabilities/__init__.pyi +19 -20
  257. gpu/matrix/__init__.pyi +14 -16
  258. gpu/platform/__init__.pyi +5 -5
  259. gpu/shader/__init__.pyi +2 -5
  260. gpu/state/__init__.pyi +1 -1
  261. gpu/texture/__init__.pyi +3 -3
  262. gpu/types/__init__.pyi +54 -85
  263. gpu_extras/batch/__init__.pyi +26 -6
  264. gpu_extras/presets/__init__.pyi +51 -16
  265. graphviz_export/__init__.pyi +9 -2
  266. idprop/types/__init__.pyi +36 -12
  267. imbuf/__init__.pyi +8 -9
  268. imbuf/types/__init__.pyi +8 -15
  269. keyingsets_builtins/__init__.pyi +2520 -1085
  270. keyingsets_utils/__init__.pyi +69 -14
  271. mathutils/__init__.pyi +491 -423
  272. mathutils/bvhtree/__init__.pyi +26 -31
  273. mathutils/geometry/__init__.pyi +176 -185
  274. mathutils/kdtree/__init__.pyi +14 -17
  275. mathutils/noise/__init__.pyi +47 -48
  276. nodeitems_builtins/__init__.pyi +37 -15
  277. nodeitems_utils/__init__.pyi +45 -13
  278. rna_info/__init__.pyi +177 -76
  279. rna_keymap_ui/__init__.pyi +29 -6
  280. rna_prop_ui/__init__.pyi +56 -14
  281. rna_xml/__init__.pyi +29 -6
  282. sys_info/__init__.pyi +4 -1
  283. fake_bpy_module-20240321.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/top_level.txt +0 -0
@@ -4,115 +4,542 @@ 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
+
8
12
  bl_label: typing.Any
13
+ """ """
14
+
9
15
  bl_rna: typing.Any
16
+ """ """
17
+
10
18
  id_data: typing.Any
19
+ """ """
11
20
 
12
21
  def as_keywords(self, ignore):
13
22
  """
14
23
 
15
- :param self:
16
- :type self:
17
24
  :param ignore:
18
- :type ignore:
19
25
  """
20
26
  ...
21
27
 
22
- def as_pointer(self): ...
23
- def bl_rna_get_subclass(self): ...
24
- def bl_rna_get_subclass_py(self): ...
25
- def driver_add(self): ...
26
- def driver_remove(self): ...
27
- def get(self): ...
28
- def id_properties_clear(self): ...
29
- def id_properties_ensure(self): ...
30
- def id_properties_ui(self): ...
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
+
31
64
  def invoke(self, context, event):
32
65
  """
33
66
 
34
- :param self:
35
- :type self:
36
67
  :param context:
37
- :type context:
38
68
  :param event:
39
- :type event:
40
69
  """
41
70
  ...
42
71
 
43
- def is_property_hidden(self): ...
44
- def is_property_overridable_library(self): ...
45
- def is_property_readonly(self): ...
46
- def is_property_set(self): ...
47
- def items(self): ...
48
- def keyframe_delete(self): ...
49
- def keyframe_insert(self): ...
50
- def keys(self): ...
51
- def path_from_id(self): ...
52
- def path_resolve(self): ...
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
+
149
+ bl_label: typing.Any
150
+ """ """
151
+
152
+ bl_options: typing.Any
153
+ """ """
154
+
155
+ bl_region_type: typing.Any
156
+ """ """
157
+
158
+ bl_rna: typing.Any
159
+ """ """
160
+
161
+ bl_space_type: typing.Any
162
+ """ """
163
+
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
+ ...
367
+
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
+
53
420
  def poll(self, context):
54
421
  """
55
422
 
56
423
  :param context:
57
- :type context:
58
424
  """
59
425
  ...
60
426
 
61
- def poll_message_set(self): ...
62
- def pop(self): ...
63
- def property_overridable_library_set(self): ...
64
- def property_unset(self): ...
65
- def type_recast(self): ...
66
- def values(self): ...
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
+ ...
67
460
 
68
461
  class ModifierAddMenu:
462
+ """ """
463
+
69
464
  MODIFIER_TYPES_I18N_CONTEXT: typing.Any
465
+ """ """
466
+
70
467
  MODIFIER_TYPES_TO_ICONS: typing.Any
468
+ """ """
469
+
71
470
  MODIFIER_TYPES_TO_LABELS: typing.Any
471
+ """ """
72
472
 
73
473
  def operator_modifier_add(self, layout, mod_type):
74
474
  """
75
475
 
76
476
  :param layout:
77
- :type layout:
78
477
  :param mod_type:
79
- :type mod_type:
80
478
  """
81
479
  ...
82
480
 
83
481
  class ModifierButtonsPanel:
482
+ """ """
483
+
84
484
  bl_context: typing.Any
485
+ """ """
486
+
85
487
  bl_options: typing.Any
488
+ """ """
489
+
86
490
  bl_region_type: typing.Any
491
+ """ """
492
+
87
493
  bl_space_type: typing.Any
494
+ """ """
495
+
496
+ class OBJECT_MT_modifier_add(bpy_types._GenericUI):
497
+ """ """
88
498
 
89
- class OBJECT_MT_modifier_add(ModifierAddMenu, bpy_types.Menu, bpy_types._GenericUI):
90
499
  MODIFIER_TYPES_I18N_CONTEXT: typing.Any
500
+ """ """
501
+
91
502
  MODIFIER_TYPES_TO_ICONS: typing.Any
503
+ """ """
504
+
92
505
  MODIFIER_TYPES_TO_LABELS: typing.Any
506
+ """ """
507
+
93
508
  bl_label: typing.Any
509
+ """ """
510
+
94
511
  bl_options: typing.Any
512
+ """ """
513
+
95
514
  bl_rna: typing.Any
515
+ """ """
516
+
96
517
  id_data: typing.Any
518
+ """ """
97
519
 
98
520
  def append(self, draw_func):
99
521
  """
100
522
 
101
523
  :param draw_func:
102
- :type draw_func:
103
524
  """
104
525
  ...
105
526
 
106
- def as_pointer(self): ...
107
- def bl_rna_get_subclass(self): ...
108
- def bl_rna_get_subclass_py(self): ...
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
+
109
539
  def draw(self, context):
110
540
  """
111
541
 
112
- :param self:
113
- :type self:
114
542
  :param context:
115
- :type context:
116
543
  """
117
544
  ...
118
545
 
@@ -120,48 +547,89 @@ class OBJECT_MT_modifier_add(ModifierAddMenu, bpy_types.Menu, bpy_types._Generic
120
547
  """
121
548
 
122
549
  :param context:
123
- :type context:
124
550
  :param layout:
125
- :type layout:
126
551
  """
127
552
  ...
128
553
 
129
554
  def draw_preset(self, _context):
130
555
  """
131
556
 
132
- :param self:
133
- :type self:
134
557
  :param _context:
135
- :type _context:
136
- """
137
- ...
138
-
139
- def driver_add(self): ...
140
- def driver_remove(self): ...
141
- def get(self): ...
142
- def id_properties_clear(self): ...
143
- def id_properties_ensure(self): ...
144
- def id_properties_ui(self): ...
145
- def is_extended(self): ...
146
- def is_property_hidden(self): ...
147
- def is_property_overridable_library(self): ...
148
- def is_property_readonly(self): ...
149
- def is_property_set(self): ...
150
- def items(self): ...
151
- def keyframe_delete(self): ...
152
- def keyframe_insert(self): ...
153
- def keys(self): ...
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
+
154
621
  def operator_modifier_add(self, layout, mod_type):
155
622
  """
156
623
 
157
624
  :param layout:
158
- :type layout:
159
625
  :param mod_type:
160
- :type mod_type:
161
626
  """
162
627
  ...
163
628
 
164
- def path_from_id(self): ...
629
+ def path_from_id(self):
630
+ """ """
631
+ ...
632
+
165
633
  def path_menu(
166
634
  self,
167
635
  searchpaths,
@@ -175,79 +643,102 @@ class OBJECT_MT_modifier_add(ModifierAddMenu, bpy_types.Menu, bpy_types._Generic
175
643
  ):
176
644
  """
177
645
 
178
- :param self:
179
- :type self:
180
646
  :param searchpaths:
181
- :type searchpaths:
182
647
  :param operator:
183
- :type operator:
184
648
  :param props_default:
185
- :type props_default:
186
649
  :param prop_filepath:
187
- :type prop_filepath:
188
650
  :param filter_ext:
189
- :type filter_ext:
190
651
  :param filter_path:
191
- :type filter_path:
192
652
  :param display_name:
193
- :type display_name:
194
653
  :param add_operator:
195
- :type add_operator:
196
654
  """
197
655
  ...
198
656
 
199
- def path_resolve(self): ...
200
- def pop(self): ...
657
+ def path_resolve(self):
658
+ """ """
659
+ ...
660
+
661
+ def pop(self):
662
+ """ """
663
+ ...
664
+
201
665
  def prepend(self, draw_func):
202
666
  """
203
667
 
204
668
  :param draw_func:
205
- :type draw_func:
206
669
  """
207
670
  ...
208
671
 
209
- def property_overridable_library_set(self): ...
210
- def property_unset(self): ...
672
+ def property_overridable_library_set(self):
673
+ """ """
674
+ ...
675
+
676
+ def property_unset(self):
677
+ """ """
678
+ ...
679
+
211
680
  def remove(self, draw_func):
212
681
  """
213
682
 
214
683
  :param draw_func:
215
- :type draw_func:
216
684
  """
217
685
  ...
218
686
 
219
- def type_recast(self): ...
220
- def values(self): ...
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
+ """ """
221
697
 
222
- class OBJECT_MT_modifier_add_color(
223
- ModifierAddMenu, bpy_types.Menu, bpy_types._GenericUI
224
- ):
225
698
  MODIFIER_TYPES_I18N_CONTEXT: typing.Any
699
+ """ """
700
+
226
701
  MODIFIER_TYPES_TO_ICONS: typing.Any
702
+ """ """
703
+
227
704
  MODIFIER_TYPES_TO_LABELS: typing.Any
705
+ """ """
706
+
228
707
  bl_label: typing.Any
708
+ """ """
709
+
229
710
  bl_options: typing.Any
711
+ """ """
712
+
230
713
  bl_rna: typing.Any
714
+ """ """
715
+
231
716
  id_data: typing.Any
717
+ """ """
232
718
 
233
719
  def append(self, draw_func):
234
720
  """
235
721
 
236
722
  :param draw_func:
237
- :type draw_func:
238
723
  """
239
724
  ...
240
725
 
241
- def as_pointer(self): ...
242
- def bl_rna_get_subclass(self): ...
243
- def bl_rna_get_subclass_py(self): ...
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
+
244
738
  def draw(self, context):
245
739
  """
246
740
 
247
- :param self:
248
- :type self:
249
741
  :param context:
250
- :type context:
251
742
  """
252
743
  ...
253
744
 
@@ -255,48 +746,89 @@ class OBJECT_MT_modifier_add_color(
255
746
  """
256
747
 
257
748
  :param context:
258
- :type context:
259
749
  :param layout:
260
- :type layout:
261
750
  """
262
751
  ...
263
752
 
264
753
  def draw_preset(self, _context):
265
754
  """
266
755
 
267
- :param self:
268
- :type self:
269
756
  :param _context:
270
- :type _context:
271
- """
272
- ...
273
-
274
- def driver_add(self): ...
275
- def driver_remove(self): ...
276
- def get(self): ...
277
- def id_properties_clear(self): ...
278
- def id_properties_ensure(self): ...
279
- def id_properties_ui(self): ...
280
- def is_extended(self): ...
281
- def is_property_hidden(self): ...
282
- def is_property_overridable_library(self): ...
283
- def is_property_readonly(self): ...
284
- def is_property_set(self): ...
285
- def items(self): ...
286
- def keyframe_delete(self): ...
287
- def keyframe_insert(self): ...
288
- def keys(self): ...
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
+
289
820
  def operator_modifier_add(self, layout, mod_type):
290
821
  """
291
822
 
292
823
  :param layout:
293
- :type layout:
294
824
  :param mod_type:
295
- :type mod_type:
296
825
  """
297
826
  ...
298
827
 
299
- def path_from_id(self): ...
828
+ def path_from_id(self):
829
+ """ """
830
+ ...
831
+
300
832
  def path_menu(
301
833
  self,
302
834
  searchpaths,
@@ -310,79 +842,102 @@ class OBJECT_MT_modifier_add_color(
310
842
  ):
311
843
  """
312
844
 
313
- :param self:
314
- :type self:
315
845
  :param searchpaths:
316
- :type searchpaths:
317
846
  :param operator:
318
- :type operator:
319
847
  :param props_default:
320
- :type props_default:
321
848
  :param prop_filepath:
322
- :type prop_filepath:
323
849
  :param filter_ext:
324
- :type filter_ext:
325
850
  :param filter_path:
326
- :type filter_path:
327
851
  :param display_name:
328
- :type display_name:
329
852
  :param add_operator:
330
- :type add_operator:
331
853
  """
332
854
  ...
333
855
 
334
- def path_resolve(self): ...
335
- def pop(self): ...
856
+ def path_resolve(self):
857
+ """ """
858
+ ...
859
+
860
+ def pop(self):
861
+ """ """
862
+ ...
863
+
336
864
  def prepend(self, draw_func):
337
865
  """
338
866
 
339
867
  :param draw_func:
340
- :type draw_func:
341
868
  """
342
869
  ...
343
870
 
344
- def property_overridable_library_set(self): ...
345
- def property_unset(self): ...
871
+ def property_overridable_library_set(self):
872
+ """ """
873
+ ...
874
+
875
+ def property_unset(self):
876
+ """ """
877
+ ...
878
+
346
879
  def remove(self, draw_func):
347
880
  """
348
881
 
349
882
  :param draw_func:
350
- :type draw_func:
351
883
  """
352
884
  ...
353
885
 
354
- def type_recast(self): ...
355
- def values(self): ...
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
+ """ """
356
896
 
357
- class OBJECT_MT_modifier_add_deform(
358
- ModifierAddMenu, bpy_types.Menu, bpy_types._GenericUI
359
- ):
360
897
  MODIFIER_TYPES_I18N_CONTEXT: typing.Any
898
+ """ """
899
+
361
900
  MODIFIER_TYPES_TO_ICONS: typing.Any
901
+ """ """
902
+
362
903
  MODIFIER_TYPES_TO_LABELS: typing.Any
904
+ """ """
905
+
363
906
  bl_label: typing.Any
907
+ """ """
908
+
364
909
  bl_options: typing.Any
910
+ """ """
911
+
365
912
  bl_rna: typing.Any
913
+ """ """
914
+
366
915
  id_data: typing.Any
916
+ """ """
367
917
 
368
918
  def append(self, draw_func):
369
919
  """
370
920
 
371
921
  :param draw_func:
372
- :type draw_func:
373
922
  """
374
923
  ...
375
924
 
376
- def as_pointer(self): ...
377
- def bl_rna_get_subclass(self): ...
378
- def bl_rna_get_subclass_py(self): ...
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
+
379
937
  def draw(self, context):
380
938
  """
381
939
 
382
- :param self:
383
- :type self:
384
940
  :param context:
385
- :type context:
386
941
  """
387
942
  ...
388
943
 
@@ -390,48 +945,89 @@ class OBJECT_MT_modifier_add_deform(
390
945
  """
391
946
 
392
947
  :param context:
393
- :type context:
394
948
  :param layout:
395
- :type layout:
396
949
  """
397
950
  ...
398
951
 
399
- def draw_preset(self, _context):
400
- """
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
+ ...
401
1018
 
402
- :param self:
403
- :type self:
404
- :param _context:
405
- :type _context:
406
- """
407
- ...
408
-
409
- def driver_add(self): ...
410
- def driver_remove(self): ...
411
- def get(self): ...
412
- def id_properties_clear(self): ...
413
- def id_properties_ensure(self): ...
414
- def id_properties_ui(self): ...
415
- def is_extended(self): ...
416
- def is_property_hidden(self): ...
417
- def is_property_overridable_library(self): ...
418
- def is_property_readonly(self): ...
419
- def is_property_set(self): ...
420
- def items(self): ...
421
- def keyframe_delete(self): ...
422
- def keyframe_insert(self): ...
423
- def keys(self): ...
424
1019
  def operator_modifier_add(self, layout, mod_type):
425
1020
  """
426
1021
 
427
1022
  :param layout:
428
- :type layout:
429
1023
  :param mod_type:
430
- :type mod_type:
431
1024
  """
432
1025
  ...
433
1026
 
434
- def path_from_id(self): ...
1027
+ def path_from_id(self):
1028
+ """ """
1029
+ ...
1030
+
435
1031
  def path_menu(
436
1032
  self,
437
1033
  searchpaths,
@@ -445,79 +1041,102 @@ class OBJECT_MT_modifier_add_deform(
445
1041
  ):
446
1042
  """
447
1043
 
448
- :param self:
449
- :type self:
450
1044
  :param searchpaths:
451
- :type searchpaths:
452
1045
  :param operator:
453
- :type operator:
454
1046
  :param props_default:
455
- :type props_default:
456
1047
  :param prop_filepath:
457
- :type prop_filepath:
458
1048
  :param filter_ext:
459
- :type filter_ext:
460
1049
  :param filter_path:
461
- :type filter_path:
462
1050
  :param display_name:
463
- :type display_name:
464
1051
  :param add_operator:
465
- :type add_operator:
466
1052
  """
467
1053
  ...
468
1054
 
469
- def path_resolve(self): ...
470
- def pop(self): ...
1055
+ def path_resolve(self):
1056
+ """ """
1057
+ ...
1058
+
1059
+ def pop(self):
1060
+ """ """
1061
+ ...
1062
+
471
1063
  def prepend(self, draw_func):
472
1064
  """
473
1065
 
474
1066
  :param draw_func:
475
- :type draw_func:
476
1067
  """
477
1068
  ...
478
1069
 
479
- def property_overridable_library_set(self): ...
480
- def property_unset(self): ...
1070
+ def property_overridable_library_set(self):
1071
+ """ """
1072
+ ...
1073
+
1074
+ def property_unset(self):
1075
+ """ """
1076
+ ...
1077
+
481
1078
  def remove(self, draw_func):
482
1079
  """
483
1080
 
484
1081
  :param draw_func:
485
- :type draw_func:
486
1082
  """
487
1083
  ...
488
1084
 
489
- def type_recast(self): ...
490
- def values(self): ...
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
+ """ """
491
1095
 
492
- class OBJECT_MT_modifier_add_edit(
493
- ModifierAddMenu, bpy_types.Menu, bpy_types._GenericUI
494
- ):
495
1096
  MODIFIER_TYPES_I18N_CONTEXT: typing.Any
1097
+ """ """
1098
+
496
1099
  MODIFIER_TYPES_TO_ICONS: typing.Any
1100
+ """ """
1101
+
497
1102
  MODIFIER_TYPES_TO_LABELS: typing.Any
1103
+ """ """
1104
+
498
1105
  bl_label: typing.Any
1106
+ """ """
1107
+
499
1108
  bl_options: typing.Any
1109
+ """ """
1110
+
500
1111
  bl_rna: typing.Any
1112
+ """ """
1113
+
501
1114
  id_data: typing.Any
1115
+ """ """
502
1116
 
503
1117
  def append(self, draw_func):
504
1118
  """
505
1119
 
506
1120
  :param draw_func:
507
- :type draw_func:
508
1121
  """
509
1122
  ...
510
1123
 
511
- def as_pointer(self): ...
512
- def bl_rna_get_subclass(self): ...
513
- def bl_rna_get_subclass_py(self): ...
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
+
514
1136
  def draw(self, context):
515
1137
  """
516
1138
 
517
- :param self:
518
- :type self:
519
1139
  :param context:
520
- :type context:
521
1140
  """
522
1141
  ...
523
1142
 
@@ -525,48 +1144,89 @@ class OBJECT_MT_modifier_add_edit(
525
1144
  """
526
1145
 
527
1146
  :param context:
528
- :type context:
529
1147
  :param layout:
530
- :type layout:
531
1148
  """
532
1149
  ...
533
1150
 
534
1151
  def draw_preset(self, _context):
535
1152
  """
536
1153
 
537
- :param self:
538
- :type self:
539
1154
  :param _context:
540
- :type _context:
541
- """
542
- ...
543
-
544
- def driver_add(self): ...
545
- def driver_remove(self): ...
546
- def get(self): ...
547
- def id_properties_clear(self): ...
548
- def id_properties_ensure(self): ...
549
- def id_properties_ui(self): ...
550
- def is_extended(self): ...
551
- def is_property_hidden(self): ...
552
- def is_property_overridable_library(self): ...
553
- def is_property_readonly(self): ...
554
- def is_property_set(self): ...
555
- def items(self): ...
556
- def keyframe_delete(self): ...
557
- def keyframe_insert(self): ...
558
- def keys(self): ...
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
+
559
1218
  def operator_modifier_add(self, layout, mod_type):
560
1219
  """
561
1220
 
562
1221
  :param layout:
563
- :type layout:
564
1222
  :param mod_type:
565
- :type mod_type:
566
1223
  """
567
1224
  ...
568
1225
 
569
- def path_from_id(self): ...
1226
+ def path_from_id(self):
1227
+ """ """
1228
+ ...
1229
+
570
1230
  def path_menu(
571
1231
  self,
572
1232
  searchpaths,
@@ -580,79 +1240,102 @@ class OBJECT_MT_modifier_add_edit(
580
1240
  ):
581
1241
  """
582
1242
 
583
- :param self:
584
- :type self:
585
1243
  :param searchpaths:
586
- :type searchpaths:
587
1244
  :param operator:
588
- :type operator:
589
1245
  :param props_default:
590
- :type props_default:
591
1246
  :param prop_filepath:
592
- :type prop_filepath:
593
1247
  :param filter_ext:
594
- :type filter_ext:
595
1248
  :param filter_path:
596
- :type filter_path:
597
1249
  :param display_name:
598
- :type display_name:
599
1250
  :param add_operator:
600
- :type add_operator:
601
1251
  """
602
1252
  ...
603
1253
 
604
- def path_resolve(self): ...
605
- def pop(self): ...
1254
+ def path_resolve(self):
1255
+ """ """
1256
+ ...
1257
+
1258
+ def pop(self):
1259
+ """ """
1260
+ ...
1261
+
606
1262
  def prepend(self, draw_func):
607
1263
  """
608
1264
 
609
1265
  :param draw_func:
610
- :type draw_func:
611
1266
  """
612
1267
  ...
613
1268
 
614
- def property_overridable_library_set(self): ...
615
- def property_unset(self): ...
1269
+ def property_overridable_library_set(self):
1270
+ """ """
1271
+ ...
1272
+
1273
+ def property_unset(self):
1274
+ """ """
1275
+ ...
1276
+
616
1277
  def remove(self, draw_func):
617
1278
  """
618
1279
 
619
1280
  :param draw_func:
620
- :type draw_func:
621
1281
  """
622
1282
  ...
623
1283
 
624
- def type_recast(self): ...
625
- def values(self): ...
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
+ """ """
626
1294
 
627
- class OBJECT_MT_modifier_add_generate(
628
- ModifierAddMenu, bpy_types.Menu, bpy_types._GenericUI
629
- ):
630
1295
  MODIFIER_TYPES_I18N_CONTEXT: typing.Any
1296
+ """ """
1297
+
631
1298
  MODIFIER_TYPES_TO_ICONS: typing.Any
1299
+ """ """
1300
+
632
1301
  MODIFIER_TYPES_TO_LABELS: typing.Any
1302
+ """ """
1303
+
633
1304
  bl_label: typing.Any
1305
+ """ """
1306
+
634
1307
  bl_options: typing.Any
1308
+ """ """
1309
+
635
1310
  bl_rna: typing.Any
1311
+ """ """
1312
+
636
1313
  id_data: typing.Any
1314
+ """ """
637
1315
 
638
1316
  def append(self, draw_func):
639
1317
  """
640
1318
 
641
1319
  :param draw_func:
642
- :type draw_func:
643
1320
  """
644
1321
  ...
645
1322
 
646
- def as_pointer(self): ...
647
- def bl_rna_get_subclass(self): ...
648
- def bl_rna_get_subclass_py(self): ...
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
+
649
1335
  def draw(self, context):
650
1336
  """
651
1337
 
652
- :param self:
653
- :type self:
654
1338
  :param context:
655
- :type context:
656
1339
  """
657
1340
  ...
658
1341
 
@@ -660,48 +1343,89 @@ class OBJECT_MT_modifier_add_generate(
660
1343
  """
661
1344
 
662
1345
  :param context:
663
- :type context:
664
1346
  :param layout:
665
- :type layout:
666
1347
  """
667
1348
  ...
668
1349
 
669
1350
  def draw_preset(self, _context):
670
1351
  """
671
1352
 
672
- :param self:
673
- :type self:
674
1353
  :param _context:
675
- :type _context:
676
- """
677
- ...
678
-
679
- def driver_add(self): ...
680
- def driver_remove(self): ...
681
- def get(self): ...
682
- def id_properties_clear(self): ...
683
- def id_properties_ensure(self): ...
684
- def id_properties_ui(self): ...
685
- def is_extended(self): ...
686
- def is_property_hidden(self): ...
687
- def is_property_overridable_library(self): ...
688
- def is_property_readonly(self): ...
689
- def is_property_set(self): ...
690
- def items(self): ...
691
- def keyframe_delete(self): ...
692
- def keyframe_insert(self): ...
693
- def keys(self): ...
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
+
694
1417
  def operator_modifier_add(self, layout, mod_type):
695
1418
  """
696
1419
 
697
1420
  :param layout:
698
- :type layout:
699
1421
  :param mod_type:
700
- :type mod_type:
701
1422
  """
702
1423
  ...
703
1424
 
704
- def path_from_id(self): ...
1425
+ def path_from_id(self):
1426
+ """ """
1427
+ ...
1428
+
705
1429
  def path_menu(
706
1430
  self,
707
1431
  searchpaths,
@@ -715,79 +1439,102 @@ class OBJECT_MT_modifier_add_generate(
715
1439
  ):
716
1440
  """
717
1441
 
718
- :param self:
719
- :type self:
720
1442
  :param searchpaths:
721
- :type searchpaths:
722
1443
  :param operator:
723
- :type operator:
724
1444
  :param props_default:
725
- :type props_default:
726
1445
  :param prop_filepath:
727
- :type prop_filepath:
728
1446
  :param filter_ext:
729
- :type filter_ext:
730
1447
  :param filter_path:
731
- :type filter_path:
732
1448
  :param display_name:
733
- :type display_name:
734
1449
  :param add_operator:
735
- :type add_operator:
736
1450
  """
737
1451
  ...
738
1452
 
739
- def path_resolve(self): ...
740
- def pop(self): ...
1453
+ def path_resolve(self):
1454
+ """ """
1455
+ ...
1456
+
1457
+ def pop(self):
1458
+ """ """
1459
+ ...
1460
+
741
1461
  def prepend(self, draw_func):
742
1462
  """
743
1463
 
744
1464
  :param draw_func:
745
- :type draw_func:
746
1465
  """
747
1466
  ...
748
1467
 
749
- def property_overridable_library_set(self): ...
750
- def property_unset(self): ...
1468
+ def property_overridable_library_set(self):
1469
+ """ """
1470
+ ...
1471
+
1472
+ def property_unset(self):
1473
+ """ """
1474
+ ...
1475
+
751
1476
  def remove(self, draw_func):
752
1477
  """
753
1478
 
754
1479
  :param draw_func:
755
- :type draw_func:
756
1480
  """
757
1481
  ...
758
1482
 
759
- def type_recast(self): ...
760
- def values(self): ...
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
+ """ """
761
1493
 
762
- class OBJECT_MT_modifier_add_physics(
763
- ModifierAddMenu, bpy_types.Menu, bpy_types._GenericUI
764
- ):
765
1494
  MODIFIER_TYPES_I18N_CONTEXT: typing.Any
1495
+ """ """
1496
+
766
1497
  MODIFIER_TYPES_TO_ICONS: typing.Any
1498
+ """ """
1499
+
767
1500
  MODIFIER_TYPES_TO_LABELS: typing.Any
1501
+ """ """
1502
+
768
1503
  bl_label: typing.Any
1504
+ """ """
1505
+
769
1506
  bl_options: typing.Any
1507
+ """ """
1508
+
770
1509
  bl_rna: typing.Any
1510
+ """ """
1511
+
771
1512
  id_data: typing.Any
1513
+ """ """
772
1514
 
773
1515
  def append(self, draw_func):
774
1516
  """
775
1517
 
776
1518
  :param draw_func:
777
- :type draw_func:
778
1519
  """
779
1520
  ...
780
1521
 
781
- def as_pointer(self): ...
782
- def bl_rna_get_subclass(self): ...
783
- def bl_rna_get_subclass_py(self): ...
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
+
784
1534
  def draw(self, context):
785
1535
  """
786
1536
 
787
- :param self:
788
- :type self:
789
1537
  :param context:
790
- :type context:
791
1538
  """
792
1539
  ...
793
1540
 
@@ -795,48 +1542,89 @@ class OBJECT_MT_modifier_add_physics(
795
1542
  """
796
1543
 
797
1544
  :param context:
798
- :type context:
799
1545
  :param layout:
800
- :type layout:
801
1546
  """
802
1547
  ...
803
1548
 
804
1549
  def draw_preset(self, _context):
805
1550
  """
806
1551
 
807
- :param self:
808
- :type self:
809
1552
  :param _context:
810
- :type _context:
811
- """
812
- ...
813
-
814
- def driver_add(self): ...
815
- def driver_remove(self): ...
816
- def get(self): ...
817
- def id_properties_clear(self): ...
818
- def id_properties_ensure(self): ...
819
- def id_properties_ui(self): ...
820
- def is_extended(self): ...
821
- def is_property_hidden(self): ...
822
- def is_property_overridable_library(self): ...
823
- def is_property_readonly(self): ...
824
- def is_property_set(self): ...
825
- def items(self): ...
826
- def keyframe_delete(self): ...
827
- def keyframe_insert(self): ...
828
- def keys(self): ...
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
+
829
1616
  def operator_modifier_add(self, layout, mod_type):
830
1617
  """
831
1618
 
832
1619
  :param layout:
833
- :type layout:
834
1620
  :param mod_type:
835
- :type mod_type:
836
1621
  """
837
1622
  ...
838
1623
 
839
- def path_from_id(self): ...
1624
+ def path_from_id(self):
1625
+ """ """
1626
+ ...
1627
+
840
1628
  def path_menu(
841
1629
  self,
842
1630
  searchpaths,
@@ -850,202 +1638,51 @@ class OBJECT_MT_modifier_add_physics(
850
1638
  ):
851
1639
  """
852
1640
 
853
- :param self:
854
- :type self:
855
1641
  :param searchpaths:
856
- :type searchpaths:
857
1642
  :param operator:
858
- :type operator:
859
1643
  :param props_default:
860
- :type props_default:
861
1644
  :param prop_filepath:
862
- :type prop_filepath:
863
1645
  :param filter_ext:
864
- :type filter_ext:
865
1646
  :param filter_path:
866
- :type filter_path:
867
1647
  :param display_name:
868
- :type display_name:
869
1648
  :param add_operator:
870
- :type add_operator:
871
1649
  """
872
1650
  ...
873
1651
 
874
- def path_resolve(self): ...
875
- def pop(self): ...
876
- def prepend(self, draw_func):
877
- """
878
-
879
- :param draw_func:
880
- :type draw_func:
881
- """
1652
+ def path_resolve(self):
1653
+ """ """
882
1654
  ...
883
1655
 
884
- def property_overridable_library_set(self): ...
885
- def property_unset(self): ...
886
- def remove(self, draw_func):
887
- """
888
-
889
- :param draw_func:
890
- :type draw_func:
891
- """
1656
+ def pop(self):
1657
+ """ """
892
1658
  ...
893
1659
 
894
- def type_recast(self): ...
895
- def values(self): ...
896
-
897
- class DATA_PT_gpencil_modifiers(
898
- ModifierButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
899
- ):
900
- bl_context: typing.Any
901
- bl_label: typing.Any
902
- bl_options: typing.Any
903
- bl_region_type: typing.Any
904
- bl_rna: typing.Any
905
- bl_space_type: typing.Any
906
- id_data: typing.Any
907
-
908
- def append(self, draw_func):
1660
+ def prepend(self, draw_func):
909
1661
  """
910
1662
 
911
1663
  :param draw_func:
912
- :type draw_func:
913
1664
  """
914
1665
  ...
915
1666
 
916
- def as_pointer(self): ...
917
- def bl_rna_get_subclass(self): ...
918
- def bl_rna_get_subclass_py(self): ...
919
- def draw(self, _context):
920
- """
921
-
922
- :param self:
923
- :type self:
924
- :param _context:
925
- :type _context:
926
- """
927
- ...
928
-
929
- def driver_add(self): ...
930
- def driver_remove(self): ...
931
- def get(self): ...
932
- def id_properties_clear(self): ...
933
- def id_properties_ensure(self): ...
934
- def id_properties_ui(self): ...
935
- def is_extended(self): ...
936
- def is_property_hidden(self): ...
937
- def is_property_overridable_library(self): ...
938
- def is_property_readonly(self): ...
939
- def is_property_set(self): ...
940
- def items(self): ...
941
- def keyframe_delete(self): ...
942
- def keyframe_insert(self): ...
943
- def keys(self): ...
944
- def path_from_id(self): ...
945
- def path_resolve(self): ...
946
- def poll(self, context):
947
- """
948
-
949
- :param context:
950
- :type context:
951
- """
1667
+ def property_overridable_library_set(self):
1668
+ """ """
952
1669
  ...
953
1670
 
954
- def pop(self): ...
955
- def prepend(self, draw_func):
956
- """
957
-
958
- :param draw_func:
959
- :type draw_func:
960
- """
1671
+ def property_unset(self):
1672
+ """ """
961
1673
  ...
962
1674
 
963
- def property_overridable_library_set(self): ...
964
- def property_unset(self): ...
965
1675
  def remove(self, draw_func):
966
1676
  """
967
1677
 
968
1678
  :param draw_func:
969
- :type draw_func:
970
- """
971
- ...
972
-
973
- def type_recast(self): ...
974
- def values(self): ...
975
-
976
- class DATA_PT_modifiers(ModifierButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
977
- bl_context: typing.Any
978
- bl_label: typing.Any
979
- bl_options: typing.Any
980
- bl_region_type: typing.Any
981
- bl_rna: typing.Any
982
- bl_space_type: typing.Any
983
- id_data: typing.Any
984
-
985
- def append(self, draw_func):
986
- """
987
-
988
- :param draw_func:
989
- :type draw_func:
990
- """
991
- ...
992
-
993
- def as_pointer(self): ...
994
- def bl_rna_get_subclass(self): ...
995
- def bl_rna_get_subclass_py(self): ...
996
- def draw(self, _context):
997
- """
998
-
999
- :param self:
1000
- :type self:
1001
- :param _context:
1002
- :type _context:
1003
- """
1004
- ...
1005
-
1006
- def driver_add(self): ...
1007
- def driver_remove(self): ...
1008
- def get(self): ...
1009
- def id_properties_clear(self): ...
1010
- def id_properties_ensure(self): ...
1011
- def id_properties_ui(self): ...
1012
- def is_extended(self): ...
1013
- def is_property_hidden(self): ...
1014
- def is_property_overridable_library(self): ...
1015
- def is_property_readonly(self): ...
1016
- def is_property_set(self): ...
1017
- def items(self): ...
1018
- def keyframe_delete(self): ...
1019
- def keyframe_insert(self): ...
1020
- def keys(self): ...
1021
- def path_from_id(self): ...
1022
- def path_resolve(self): ...
1023
- def poll(self, context):
1024
- """
1025
-
1026
- :param context:
1027
- :type context:
1028
1679
  """
1029
1680
  ...
1030
1681
 
1031
- def pop(self): ...
1032
- def prepend(self, draw_func):
1033
- """
1034
-
1035
- :param draw_func:
1036
- :type draw_func:
1037
- """
1682
+ def type_recast(self):
1683
+ """ """
1038
1684
  ...
1039
1685
 
1040
- def property_overridable_library_set(self): ...
1041
- def property_unset(self): ...
1042
- def remove(self, draw_func):
1043
- """
1044
-
1045
- :param draw_func:
1046
- :type draw_func:
1047
- """
1686
+ def values(self):
1687
+ """ """
1048
1688
  ...
1049
-
1050
- def type_recast(self): ...
1051
- def values(self): ...