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

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

Potentially problematic release.


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

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