fake-bpy-module 20240210__py3-none-any.whl → 20240326__py3-none-any.whl

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

Potentially problematic release.


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

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