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

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

Potentially problematic release.


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

Files changed (293) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +36 -6
  3. aud/__init__.pyi +132 -125
  4. bgl/__init__.pyi +2545 -546
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +24 -2
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +53 -6
  15. bl_i18n_utils/utils/__init__.pyi +332 -44
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +171 -37
  27. bl_operators/anim/__init__.pyi +1065 -226
  28. bl_operators/assets/__init__.pyi +427 -92
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1342 -287
  31. bl_operators/console/__init__.pyi +647 -140
  32. bl_operators/constraint/__init__.pyi +524 -112
  33. bl_operators/file/__init__.pyi +396 -84
  34. bl_operators/freestyle/__init__.pyi +532 -113
  35. bl_operators/geometry_nodes/__init__.pyi +2412 -596
  36. bl_operators/image/__init__.pyi +380 -82
  37. bl_operators/mesh/__init__.pyi +401 -85
  38. bl_operators/node/__init__.pyi +1756 -384
  39. bl_operators/object/__init__.pyi +2022 -552
  40. bl_operators/object_align/__init__.pyi +145 -31
  41. bl_operators/object_quick_effects/__init__.pyi +555 -124
  42. bl_operators/object_randomize_transform/__init__.pyi +136 -32
  43. bl_operators/presets/__init__.pyi +3516 -708
  44. bl_operators/rigidbody/__init__.pyi +401 -85
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
  46. bl_operators/sequencer/__init__.pyi +731 -149
  47. bl_operators/spreadsheet/__init__.pyi +145 -30
  48. bl_operators/userpref/__init__.pyi +3416 -824
  49. bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
  50. bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
  51. bl_operators/uvcalc_transform/__init__.pyi +344 -73
  52. bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
  53. bl_operators/view3d/__init__.pyi +697 -146
  54. bl_operators/wm/__init__.pyi +6287 -1533
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +504 -106
  59. bl_ui/anim/__init__.pyi +164 -33
  60. bl_ui/asset_shelf/__init__.pyi +146 -31
  61. bl_ui/generic_ui_list/__init__.pyi +471 -99
  62. bl_ui/node_add_menu/__init__.pyi +196 -40
  63. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
  64. bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
  65. bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
  66. bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
  67. bl_ui/properties_animviz/__init__.pyi +32 -2
  68. bl_ui/properties_collection/__init__.pyi +787 -179
  69. bl_ui/properties_constraint/__init__.pyi +28635 -5523
  70. bl_ui/properties_data_armature/__init__.pyi +1905 -448
  71. bl_ui/properties_data_bone/__init__.pyi +1560 -336
  72. bl_ui/properties_data_camera/__init__.pyi +2269 -494
  73. bl_ui/properties_data_curve/__init__.pyi +2362 -534
  74. bl_ui/properties_data_curves/__init__.pyi +951 -203
  75. bl_ui/properties_data_empty/__init__.pyi +317 -69
  76. bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
  78. bl_ui/properties_data_lattice/__init__.pyi +472 -104
  79. bl_ui/properties_data_light/__init__.pyi +1570 -337
  80. bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
  81. bl_ui/properties_data_mesh/__init__.pyi +3205 -767
  82. bl_ui/properties_data_metaball/__init__.pyi +774 -170
  83. bl_ui/properties_data_modifier/__init__.pyi +1554 -328
  84. bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
  85. bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
  86. bl_ui/properties_data_speaker/__init__.pyi +782 -168
  87. bl_ui/properties_data_volume/__init__.pyi +1243 -281
  88. bl_ui/properties_freestyle/__init__.pyi +4071 -1030
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
  90. bl_ui/properties_mask_common/__init__.pyi +1256 -249
  91. bl_ui/properties_material/__init__.pyi +2351 -542
  92. bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
  93. bl_ui/properties_object/__init__.pyi +2179 -512
  94. bl_ui/properties_output/__init__.pyi +2956 -705
  95. bl_ui/properties_paint_common/__init__.pyi +947 -140
  96. bl_ui/properties_particle/__init__.pyi +8322 -1970
  97. bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
  98. bl_ui/properties_physics_common/__init__.pyi +200 -44
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
  100. bl_ui/properties_physics_field/__init__.pyi +1695 -364
  101. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
  105. bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
  106. bl_ui/properties_render/__init__.pyi +8312 -1933
  107. bl_ui/properties_scene/__init__.pyi +2211 -539
  108. bl_ui/properties_texture/__init__.pyi +4185 -1013
  109. bl_ui/properties_view_layer/__init__.pyi +2803 -664
  110. bl_ui/properties_workspace/__init__.pyi +626 -148
  111. bl_ui/properties_world/__init__.pyi +1092 -234
  112. bl_ui/space_clip/__init__.pyi +11475 -2805
  113. bl_ui/space_console/__init__.pyi +967 -202
  114. bl_ui/space_dopesheet/__init__.pyi +4260 -966
  115. bl_ui/space_filebrowser/__init__.pyi +4852 -1187
  116. bl_ui/space_graph/__init__.pyi +3251 -702
  117. bl_ui/space_image/__init__.pyi +12219 -2968
  118. bl_ui/space_info/__init__.pyi +964 -200
  119. bl_ui/space_nla/__init__.pyi +2756 -584
  120. bl_ui/space_node/__init__.pyi +5661 -1265
  121. bl_ui/space_outliner/__init__.pyi +2294 -478
  122. bl_ui/space_properties/__init__.pyi +417 -92
  123. bl_ui/space_sequencer/__init__.pyi +12436 -3009
  124. bl_ui/space_spreadsheet/__init__.pyi +184 -36
  125. bl_ui/space_statusbar/__init__.pyi +135 -30
  126. bl_ui/space_text/__init__.pyi +2556 -542
  127. bl_ui/space_time/__init__.pyi +1151 -243
  128. bl_ui/space_toolsystem_common/__init__.pyi +368 -66
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
  130. bl_ui/space_topbar/__init__.pyi +4214 -887
  131. bl_ui/space_userpref/__init__.pyi +13920 -3468
  132. bl_ui/space_view3d/__init__.pyi +43701 -10599
  133. bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
  134. bl_ui/utils/__init__.pyi +42 -4
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +268 -262
  143. bmesh/utils/__init__.pyi +55 -55
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +350 -305
  152. bpy/ops/anim/__init__.pyi +464 -426
  153. bpy/ops/armature/__init__.pyi +392 -360
  154. bpy/ops/asset/__init__.pyi +166 -129
  155. bpy/ops/boid/__init__.pyi +64 -37
  156. bpy/ops/brush/__init__.pyi +78 -72
  157. bpy/ops/buttons/__init__.pyi +136 -122
  158. bpy/ops/cachefile/__init__.pyi +128 -123
  159. bpy/ops/camera/__init__.pyi +22 -24
  160. bpy/ops/clip/__init__.pyi +844 -735
  161. bpy/ops/cloth/__init__.pyi +10 -11
  162. bpy/ops/collection/__init__.pyi +38 -38
  163. bpy/ops/console/__init__.pyi +170 -141
  164. bpy/ops/constraint/__init__.pyi +156 -159
  165. bpy/ops/curve/__init__.pyi +518 -461
  166. bpy/ops/curves/__init__.pyi +188 -159
  167. bpy/ops/cycles/__init__.pyi +20 -18
  168. bpy/ops/dpaint/__init__.pyi +40 -30
  169. bpy/ops/ed/__init__.pyi +136 -107
  170. bpy/ops/export_anim/__init__.pyi +18 -19
  171. bpy/ops/export_mesh/__init__.pyi +26 -27
  172. bpy/ops/export_scene/__init__.pyi +313 -334
  173. bpy/ops/file/__init__.pyi +394 -304
  174. bpy/ops/fluid/__init__.pyi +114 -63
  175. bpy/ops/font/__init__.pyi +272 -245
  176. bpy/ops/geometry/__init__.pyi +92 -87
  177. bpy/ops/gizmogroup/__init__.pyi +24 -21
  178. bpy/ops/gpencil/__init__.pyi +1530 -1476
  179. bpy/ops/graph/__init__.pyi +680 -659
  180. bpy/ops/grease_pencil/__init__.pyi +510 -390
  181. bpy/ops/image/__init__.pyi +650 -603
  182. bpy/ops/import_anim/__init__.pyi +26 -27
  183. bpy/ops/import_curve/__init__.pyi +6 -7
  184. bpy/ops/import_mesh/__init__.pyi +18 -21
  185. bpy/ops/import_scene/__init__.pyi +86 -95
  186. bpy/ops/info/__init__.pyi +68 -55
  187. bpy/ops/lattice/__init__.pyi +70 -63
  188. bpy/ops/marker/__init__.pyi +110 -111
  189. bpy/ops/mask/__init__.pyi +352 -308
  190. bpy/ops/material/__init__.pyi +24 -12
  191. bpy/ops/mball/__init__.pyi +72 -75
  192. bpy/ops/mesh/__init__.pyi +2052 -2088
  193. bpy/ops/nla/__init__.pyi +369 -313
  194. bpy/ops/node/__init__.pyi +944 -805
  195. bpy/ops/object/__init__.pyi +2662 -2461
  196. bpy/ops/outliner/__init__.pyi +582 -431
  197. bpy/ops/paint/__init__.pyi +605 -516
  198. bpy/ops/paintcurve/__init__.pyi +72 -60
  199. bpy/ops/palette/__init__.pyi +54 -46
  200. bpy/ops/particle/__init__.pyi +302 -245
  201. bpy/ops/pose/__init__.pyi +366 -330
  202. bpy/ops/poselib/__init__.pyi +78 -64
  203. bpy/ops/preferences/__init__.pyi +361 -341
  204. bpy/ops/ptcache/__init__.pyi +56 -38
  205. bpy/ops/render/__init__.pyi +120 -117
  206. bpy/ops/rigidbody/__init__.pyi +114 -97
  207. bpy/ops/scene/__init__.pyi +302 -240
  208. bpy/ops/screen/__init__.pyi +414 -363
  209. bpy/ops/script/__init__.pyi +20 -18
  210. bpy/ops/sculpt/__init__.pyi +414 -452
  211. bpy/ops/sculpt_curves/__init__.pyi +42 -43
  212. bpy/ops/sequencer/__init__.pyi +1094 -1053
  213. bpy/ops/sound/__init__.pyi +214 -206
  214. bpy/ops/spreadsheet/__init__.pyi +34 -28
  215. bpy/ops/surface/__init__.pyi +108 -114
  216. bpy/ops/text/__init__.pyi +432 -350
  217. bpy/ops/text_editor/__init__.pyi +10 -11
  218. bpy/ops/texture/__init__.pyi +32 -21
  219. bpy/ops/transform/__init__.pyi +801 -854
  220. bpy/ops/ui/__init__.pyi +254 -185
  221. bpy/ops/uilist/__init__.pyi +20 -23
  222. bpy/ops/uv/__init__.pyi +618 -626
  223. bpy/ops/view2d/__init__.pyi +162 -161
  224. bpy/ops/view3d/__init__.pyi +669 -658
  225. bpy/ops/wm/__init__.pyi +2433 -2415
  226. bpy/ops/workspace/__init__.pyi +54 -31
  227. bpy/ops/world/__init__.pyi +8 -4
  228. bpy/path/__init__.pyi +111 -68
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86789 -85719
  231. bpy/utils/__init__.pyi +265 -123
  232. bpy/utils/previews/__init__.pyi +103 -17
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/__init__.pyi +0 -4
  235. bpy_extras/anim_utils/__init__.pyi +11 -46
  236. bpy_extras/asset_utils/__init__.pyi +3 -12
  237. bpy_extras/id_map_utils/__init__.pyi +0 -2
  238. bpy_extras/image_utils/__init__.pyi +2 -2
  239. bpy_extras/io_utils/__init__.pyi +30 -27
  240. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  241. bpy_extras/mesh_utils/__init__.pyi +18 -18
  242. bpy_extras/node_utils/__init__.pyi +4 -3
  243. bpy_extras/object_utils/__init__.pyi +25 -26
  244. bpy_extras/view3d_utils/__init__.pyi +33 -38
  245. bpy_restrict_state/__init__.pyi +14 -1
  246. bpy_types/__init__.pyi +3873 -997
  247. console_python/__init__.pyi +41 -7
  248. console_shell/__init__.pyi +24 -5
  249. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  250. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  251. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  252. freestyle/chainingiterators/__init__.pyi +50 -52
  253. freestyle/functions/__init__.pyi +303 -207
  254. freestyle/predicates/__init__.pyi +299 -115
  255. freestyle/shaders/__init__.pyi +49 -80
  256. freestyle/types/__init__.pyi +465 -472
  257. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  258. freestyle/utils/__init__.pyi +28 -18
  259. gpu/capabilities/__init__.pyi +27 -19
  260. gpu/matrix/__init__.pyi +14 -16
  261. gpu/platform/__init__.pyi +5 -5
  262. gpu/shader/__init__.pyi +2 -5
  263. gpu/state/__init__.pyi +1 -1
  264. gpu/texture/__init__.pyi +3 -3
  265. gpu/types/__init__.pyi +54 -85
  266. gpu_extras/batch/__init__.pyi +27 -5
  267. gpu_extras/presets/__init__.pyi +52 -14
  268. graphviz_export/__init__.pyi +9 -2
  269. idprop/types/__init__.pyi +36 -12
  270. imbuf/__init__.pyi +8 -9
  271. imbuf/types/__init__.pyi +8 -15
  272. keyingsets_builtins/__init__.pyi +3149 -701
  273. keyingsets_utils/__init__.pyi +69 -14
  274. mathutils/__init__.pyi +502 -427
  275. mathutils/bvhtree/__init__.pyi +28 -32
  276. mathutils/geometry/__init__.pyi +177 -186
  277. mathutils/kdtree/__init__.pyi +16 -18
  278. mathutils/noise/__init__.pyi +47 -48
  279. nodeitems_builtins/__init__.pyi +50 -10
  280. nodeitems_utils/__init__.pyi +58 -10
  281. rna_info/__init__.pyi +230 -26
  282. rna_keymap_ui/__init__.pyi +29 -6
  283. rna_prop_ui/__init__.pyi +69 -12
  284. rna_xml/__init__.pyi +29 -6
  285. sys_info/__init__.pyi +4 -1
  286. bpy_extras/bmesh_utils/__init__.pyi +0 -6
  287. bpy_extras/extensions/__init__.pyi +0 -4
  288. bpy_extras/extensions/junction_module/__init__.pyi +0 -12
  289. bpy_extras/node_shader_utils/__init__.pyi +0 -131
  290. bpy_extras/wm_utils/__init__.pyi +0 -4
  291. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
  292. fake_bpy_module-20240224.dist-info/RECORD +0 -349
  293. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
@@ -3,671 +3,2523 @@ import bpy_types
3
3
 
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
- class PhysicButtonsPanel:
7
- bl_context: typing.Any
8
- bl_region_type: typing.Any
9
- bl_space_type: typing.Any
6
+ class PHYSICS_PT_softbody(bpy_types._GenericUI):
7
+ """ """
10
8
 
11
- def poll(self, context): ...
12
-
13
- class PHYSICS_PT_softbody(PhysicButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
14
9
  COMPAT_ENGINES: typing.Any
15
- bl_context: typing.Any
16
- bl_label: typing.Any
17
- bl_region_type: typing.Any
18
- bl_rna: typing.Any
19
- bl_space_type: typing.Any
20
- id_data: typing.Any
10
+ """ """
21
11
 
22
- def append(self, draw_func): ...
23
- def as_pointer(self): ...
24
- def bl_rna_get_subclass(self): ...
25
- def bl_rna_get_subclass_py(self): ...
26
- def draw(self, context): ...
27
- def driver_add(self): ...
28
- def driver_remove(self): ...
29
- def get(self): ...
30
- def id_properties_clear(self): ...
31
- def id_properties_ensure(self): ...
32
- def id_properties_ui(self): ...
33
- def is_extended(self): ...
34
- def is_property_hidden(self): ...
35
- def is_property_overridable_library(self): ...
36
- def is_property_readonly(self): ...
37
- def is_property_set(self): ...
38
- def items(self): ...
39
- def keyframe_delete(self): ...
40
- def keyframe_insert(self): ...
41
- def keys(self): ...
42
- def path_from_id(self): ...
43
- def path_resolve(self): ...
44
- def poll(self, context): ...
45
- def pop(self): ...
46
- def prepend(self, draw_func): ...
47
- def property_overridable_library_set(self): ...
48
- def property_unset(self): ...
49
- def remove(self, draw_func): ...
50
- def type_recast(self): ...
51
- def values(self): ...
52
-
53
- class PHYSICS_PT_softbody_cache(
54
- PhysicButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
55
- ):
56
- COMPAT_ENGINES: typing.Any
57
12
  bl_context: typing.Any
58
- bl_label: typing.Any
59
- bl_options: typing.Any
60
- bl_parent_id: typing.Any
61
- bl_region_type: typing.Any
62
- bl_rna: typing.Any
63
- bl_space_type: typing.Any
64
- id_data: typing.Any
13
+ """ """
65
14
 
66
- def append(self, draw_func): ...
67
- def as_pointer(self): ...
68
- def bl_rna_get_subclass(self): ...
69
- def bl_rna_get_subclass_py(self): ...
70
- def draw(self, context): ...
71
- def driver_add(self): ...
72
- def driver_remove(self): ...
73
- def get(self): ...
74
- def id_properties_clear(self): ...
75
- def id_properties_ensure(self): ...
76
- def id_properties_ui(self): ...
77
- def is_extended(self): ...
78
- def is_property_hidden(self): ...
79
- def is_property_overridable_library(self): ...
80
- def is_property_readonly(self): ...
81
- def is_property_set(self): ...
82
- def items(self): ...
83
- def keyframe_delete(self): ...
84
- def keyframe_insert(self): ...
85
- def keys(self): ...
86
- def path_from_id(self): ...
87
- def path_resolve(self): ...
88
- def poll(self, context): ...
89
- def pop(self): ...
90
- def prepend(self, draw_func): ...
91
- def property_overridable_library_set(self): ...
92
- def property_unset(self): ...
93
- def remove(self, draw_func): ...
94
- def type_recast(self): ...
95
- def values(self): ...
96
-
97
- class PHYSICS_PT_softbody_collision(
98
- PhysicButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
99
- ):
100
- COMPAT_ENGINES: typing.Any
101
- bl_context: typing.Any
102
15
  bl_label: typing.Any
103
- bl_options: typing.Any
104
- bl_parent_id: typing.Any
16
+ """ """
17
+
105
18
  bl_region_type: typing.Any
19
+ """ """
20
+
106
21
  bl_rna: typing.Any
22
+ """ """
23
+
107
24
  bl_space_type: typing.Any
25
+ """ """
26
+
108
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
+ """ """
109
167
 
110
- def append(self, draw_func): ...
111
- def as_pointer(self): ...
112
- def bl_rna_get_subclass(self): ...
113
- def bl_rna_get_subclass_py(self): ...
114
- def draw(self, context): ...
115
- def draw_header(self, context): ...
116
- def driver_add(self): ...
117
- def driver_remove(self): ...
118
- def get(self): ...
119
- def id_properties_clear(self): ...
120
- def id_properties_ensure(self): ...
121
- def id_properties_ui(self): ...
122
- def is_extended(self): ...
123
- def is_property_hidden(self): ...
124
- def is_property_overridable_library(self): ...
125
- def is_property_readonly(self): ...
126
- def is_property_set(self): ...
127
- def items(self): ...
128
- def keyframe_delete(self): ...
129
- def keyframe_insert(self): ...
130
- def keys(self): ...
131
- def path_from_id(self): ...
132
- def path_resolve(self): ...
133
- def poll(self, context): ...
134
- def pop(self): ...
135
- def prepend(self, draw_func): ...
136
- def property_overridable_library_set(self): ...
137
- def property_unset(self): ...
138
- def remove(self, draw_func): ...
139
- def type_recast(self): ...
140
- def values(self): ...
141
-
142
- class PHYSICS_PT_softbody_edge(
143
- PhysicButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
144
- ):
145
168
  COMPAT_ENGINES: typing.Any
169
+ """ """
170
+
146
171
  bl_context: typing.Any
172
+ """ """
173
+
147
174
  bl_label: typing.Any
175
+ """ """
176
+
148
177
  bl_options: typing.Any
178
+ """ """
179
+
149
180
  bl_parent_id: typing.Any
181
+ """ """
182
+
150
183
  bl_region_type: typing.Any
184
+ """ """
185
+
151
186
  bl_rna: typing.Any
187
+ """ """
188
+
152
189
  bl_space_type: typing.Any
190
+ """ """
191
+
153
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
+ """ """
154
332
 
155
- def append(self, draw_func): ...
156
- def as_pointer(self): ...
157
- def bl_rna_get_subclass(self): ...
158
- def bl_rna_get_subclass_py(self): ...
159
- def draw(self, context): ...
160
- def draw_header(self, context): ...
161
- def driver_add(self): ...
162
- def driver_remove(self): ...
163
- def get(self): ...
164
- def id_properties_clear(self): ...
165
- def id_properties_ensure(self): ...
166
- def id_properties_ui(self): ...
167
- def is_extended(self): ...
168
- def is_property_hidden(self): ...
169
- def is_property_overridable_library(self): ...
170
- def is_property_readonly(self): ...
171
- def is_property_set(self): ...
172
- def items(self): ...
173
- def keyframe_delete(self): ...
174
- def keyframe_insert(self): ...
175
- def keys(self): ...
176
- def path_from_id(self): ...
177
- def path_resolve(self): ...
178
- def poll(self, context): ...
179
- def pop(self): ...
180
- def prepend(self, draw_func): ...
181
- def property_overridable_library_set(self): ...
182
- def property_unset(self): ...
183
- def remove(self, draw_func): ...
184
- def type_recast(self): ...
185
- def values(self): ...
186
-
187
- class PHYSICS_PT_softbody_edge_aerodynamics(
188
- PhysicButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
189
- ):
190
333
  COMPAT_ENGINES: typing.Any
334
+ """ """
335
+
191
336
  bl_context: typing.Any
337
+ """ """
338
+
192
339
  bl_label: typing.Any
340
+ """ """
341
+
193
342
  bl_options: typing.Any
343
+ """ """
344
+
194
345
  bl_parent_id: typing.Any
346
+ """ """
347
+
195
348
  bl_region_type: typing.Any
349
+ """ """
350
+
196
351
  bl_rna: typing.Any
352
+ """ """
353
+
197
354
  bl_space_type: typing.Any
355
+ """ """
356
+
198
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
+ """ """
199
504
 
200
- def append(self, draw_func): ...
201
- def as_pointer(self): ...
202
- def bl_rna_get_subclass(self): ...
203
- def bl_rna_get_subclass_py(self): ...
204
- def draw(self, context): ...
205
- def driver_add(self): ...
206
- def driver_remove(self): ...
207
- def get(self): ...
208
- def id_properties_clear(self): ...
209
- def id_properties_ensure(self): ...
210
- def id_properties_ui(self): ...
211
- def is_extended(self): ...
212
- def is_property_hidden(self): ...
213
- def is_property_overridable_library(self): ...
214
- def is_property_readonly(self): ...
215
- def is_property_set(self): ...
216
- def items(self): ...
217
- def keyframe_delete(self): ...
218
- def keyframe_insert(self): ...
219
- def keys(self): ...
220
- def path_from_id(self): ...
221
- def path_resolve(self): ...
222
- def poll(self, context): ...
223
- def pop(self): ...
224
- def prepend(self, draw_func): ...
225
- def property_overridable_library_set(self): ...
226
- def property_unset(self): ...
227
- def remove(self, draw_func): ...
228
- def type_recast(self): ...
229
- def values(self): ...
230
-
231
- class PHYSICS_PT_softbody_edge_stiffness(
232
- PhysicButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
233
- ):
234
505
  COMPAT_ENGINES: typing.Any
506
+ """ """
507
+
235
508
  bl_context: typing.Any
509
+ """ """
510
+
236
511
  bl_label: typing.Any
512
+ """ """
513
+
237
514
  bl_options: typing.Any
515
+ """ """
516
+
238
517
  bl_parent_id: typing.Any
518
+ """ """
519
+
239
520
  bl_region_type: typing.Any
521
+ """ """
522
+
240
523
  bl_rna: typing.Any
524
+ """ """
525
+
241
526
  bl_space_type: typing.Any
527
+ """ """
528
+
242
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
+ """ """
243
676
 
244
- def append(self, draw_func): ...
245
- def as_pointer(self): ...
246
- def bl_rna_get_subclass(self): ...
247
- def bl_rna_get_subclass_py(self): ...
248
- def draw(self, context): ...
249
- def draw_header(self, context): ...
250
- def driver_add(self): ...
251
- def driver_remove(self): ...
252
- def get(self): ...
253
- def id_properties_clear(self): ...
254
- def id_properties_ensure(self): ...
255
- def id_properties_ui(self): ...
256
- def is_extended(self): ...
257
- def is_property_hidden(self): ...
258
- def is_property_overridable_library(self): ...
259
- def is_property_readonly(self): ...
260
- def is_property_set(self): ...
261
- def items(self): ...
262
- def keyframe_delete(self): ...
263
- def keyframe_insert(self): ...
264
- def keys(self): ...
265
- def path_from_id(self): ...
266
- def path_resolve(self): ...
267
- def poll(self, context): ...
268
- def pop(self): ...
269
- def prepend(self, draw_func): ...
270
- def property_overridable_library_set(self): ...
271
- def property_unset(self): ...
272
- def remove(self, draw_func): ...
273
- def type_recast(self): ...
274
- def values(self): ...
275
-
276
- class PHYSICS_PT_softbody_field_weights(
277
- PhysicButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
278
- ):
279
677
  COMPAT_ENGINES: typing.Any
678
+ """ """
679
+
280
680
  bl_context: typing.Any
681
+ """ """
682
+
281
683
  bl_label: typing.Any
684
+ """ """
685
+
282
686
  bl_options: typing.Any
687
+ """ """
688
+
283
689
  bl_parent_id: typing.Any
690
+ """ """
691
+
284
692
  bl_region_type: typing.Any
693
+ """ """
694
+
285
695
  bl_rna: typing.Any
696
+ """ """
697
+
286
698
  bl_space_type: typing.Any
699
+ """ """
700
+
287
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
+ """ """
288
841
 
289
- def append(self, draw_func): ...
290
- def as_pointer(self): ...
291
- def bl_rna_get_subclass(self): ...
292
- def bl_rna_get_subclass_py(self): ...
293
- def draw(self, context): ...
294
- def driver_add(self): ...
295
- def driver_remove(self): ...
296
- def get(self): ...
297
- def id_properties_clear(self): ...
298
- def id_properties_ensure(self): ...
299
- def id_properties_ui(self): ...
300
- def is_extended(self): ...
301
- def is_property_hidden(self): ...
302
- def is_property_overridable_library(self): ...
303
- def is_property_readonly(self): ...
304
- def is_property_set(self): ...
305
- def items(self): ...
306
- def keyframe_delete(self): ...
307
- def keyframe_insert(self): ...
308
- def keys(self): ...
309
- def path_from_id(self): ...
310
- def path_resolve(self): ...
311
- def poll(self, context): ...
312
- def pop(self): ...
313
- def prepend(self, draw_func): ...
314
- def property_overridable_library_set(self): ...
315
- def property_unset(self): ...
316
- def remove(self, draw_func): ...
317
- def type_recast(self): ...
318
- def values(self): ...
319
-
320
- class PHYSICS_PT_softbody_goal(
321
- PhysicButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
322
- ):
323
842
  COMPAT_ENGINES: typing.Any
843
+ """ """
844
+
324
845
  bl_context: typing.Any
846
+ """ """
847
+
325
848
  bl_label: typing.Any
849
+ """ """
850
+
326
851
  bl_options: typing.Any
852
+ """ """
853
+
327
854
  bl_parent_id: typing.Any
855
+ """ """
856
+
328
857
  bl_region_type: typing.Any
858
+ """ """
859
+
329
860
  bl_rna: typing.Any
861
+ """ """
862
+
330
863
  bl_space_type: typing.Any
864
+ """ """
865
+
331
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
+ """ """
332
1028
 
333
- def append(self, draw_func): ...
334
- def as_pointer(self): ...
335
- def bl_rna_get_subclass(self): ...
336
- def bl_rna_get_subclass_py(self): ...
337
- def draw(self, context): ...
338
- def draw_header(self, context): ...
339
- def driver_add(self): ...
340
- def driver_remove(self): ...
341
- def get(self): ...
342
- def id_properties_clear(self): ...
343
- def id_properties_ensure(self): ...
344
- def id_properties_ui(self): ...
345
- def is_extended(self): ...
346
- def is_property_hidden(self): ...
347
- def is_property_overridable_library(self): ...
348
- def is_property_readonly(self): ...
349
- def is_property_set(self): ...
350
- def items(self): ...
351
- def keyframe_delete(self): ...
352
- def keyframe_insert(self): ...
353
- def keys(self): ...
354
- def path_from_id(self): ...
355
- def path_resolve(self): ...
356
- def poll(self, context): ...
357
- def pop(self): ...
358
- def prepend(self, draw_func): ...
359
- def property_overridable_library_set(self): ...
360
- def property_unset(self): ...
361
- def remove(self, draw_func): ...
362
- def type_recast(self): ...
363
- def values(self): ...
364
-
365
- class PHYSICS_PT_softbody_goal_settings(
366
- PhysicButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
367
- ):
368
- COMPAT_ENGINES: typing.Any
369
- bl_context: typing.Any
370
- bl_label: typing.Any
371
- bl_options: typing.Any
372
- bl_parent_id: typing.Any
373
1029
  bl_region_type: typing.Any
1030
+ """ """
1031
+
374
1032
  bl_rna: typing.Any
1033
+ """ """
1034
+
375
1035
  bl_space_type: typing.Any
1036
+ """ """
1037
+
376
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
+ """ """
377
1178
 
378
- def append(self, draw_func): ...
379
- def as_pointer(self): ...
380
- def bl_rna_get_subclass(self): ...
381
- def bl_rna_get_subclass_py(self): ...
382
- def draw(self, context): ...
383
- def driver_add(self): ...
384
- def driver_remove(self): ...
385
- def get(self): ...
386
- def id_properties_clear(self): ...
387
- def id_properties_ensure(self): ...
388
- def id_properties_ui(self): ...
389
- def is_extended(self): ...
390
- def is_property_hidden(self): ...
391
- def is_property_overridable_library(self): ...
392
- def is_property_readonly(self): ...
393
- def is_property_set(self): ...
394
- def items(self): ...
395
- def keyframe_delete(self): ...
396
- def keyframe_insert(self): ...
397
- def keys(self): ...
398
- def path_from_id(self): ...
399
- def path_resolve(self): ...
400
- def poll(self, context): ...
401
- def pop(self): ...
402
- def prepend(self, draw_func): ...
403
- def property_overridable_library_set(self): ...
404
- def property_unset(self): ...
405
- def remove(self, draw_func): ...
406
- def type_recast(self): ...
407
- def values(self): ...
408
-
409
- class PHYSICS_PT_softbody_goal_strengths(
410
- PhysicButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
411
- ):
412
1179
  COMPAT_ENGINES: typing.Any
1180
+ """ """
1181
+
413
1182
  bl_context: typing.Any
1183
+ """ """
1184
+
414
1185
  bl_label: typing.Any
1186
+ """ """
1187
+
415
1188
  bl_options: typing.Any
1189
+ """ """
1190
+
416
1191
  bl_parent_id: typing.Any
1192
+ """ """
1193
+
417
1194
  bl_region_type: typing.Any
1195
+ """ """
1196
+
418
1197
  bl_rna: typing.Any
1198
+ """ """
1199
+
419
1200
  bl_space_type: typing.Any
1201
+ """ """
1202
+
420
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
+ """ """
421
1350
 
422
- def append(self, draw_func): ...
423
- def as_pointer(self): ...
424
- def bl_rna_get_subclass(self): ...
425
- def bl_rna_get_subclass_py(self): ...
426
- def draw(self, context): ...
427
- def driver_add(self): ...
428
- def driver_remove(self): ...
429
- def get(self): ...
430
- def id_properties_clear(self): ...
431
- def id_properties_ensure(self): ...
432
- def id_properties_ui(self): ...
433
- def is_extended(self): ...
434
- def is_property_hidden(self): ...
435
- def is_property_overridable_library(self): ...
436
- def is_property_readonly(self): ...
437
- def is_property_set(self): ...
438
- def items(self): ...
439
- def keyframe_delete(self): ...
440
- def keyframe_insert(self): ...
441
- def keys(self): ...
442
- def path_from_id(self): ...
443
- def path_resolve(self): ...
444
- def poll(self, context): ...
445
- def pop(self): ...
446
- def prepend(self, draw_func): ...
447
- def property_overridable_library_set(self): ...
448
- def property_unset(self): ...
449
- def remove(self, draw_func): ...
450
- def type_recast(self): ...
451
- def values(self): ...
452
-
453
- class PHYSICS_PT_softbody_object(
454
- PhysicButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
455
- ):
456
1351
  COMPAT_ENGINES: typing.Any
1352
+ """ """
1353
+
457
1354
  bl_context: typing.Any
1355
+ """ """
1356
+
458
1357
  bl_label: typing.Any
1358
+ """ """
1359
+
459
1360
  bl_options: typing.Any
1361
+ """ """
1362
+
460
1363
  bl_parent_id: typing.Any
1364
+ """ """
1365
+
461
1366
  bl_region_type: typing.Any
1367
+ """ """
1368
+
462
1369
  bl_rna: typing.Any
1370
+ """ """
1371
+
463
1372
  bl_space_type: typing.Any
1373
+ """ """
1374
+
464
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
+ """ """
465
1515
 
466
- def append(self, draw_func): ...
467
- def as_pointer(self): ...
468
- def bl_rna_get_subclass(self): ...
469
- def bl_rna_get_subclass_py(self): ...
470
- def draw(self, context): ...
471
- def driver_add(self): ...
472
- def driver_remove(self): ...
473
- def get(self): ...
474
- def id_properties_clear(self): ...
475
- def id_properties_ensure(self): ...
476
- def id_properties_ui(self): ...
477
- def is_extended(self): ...
478
- def is_property_hidden(self): ...
479
- def is_property_overridable_library(self): ...
480
- def is_property_readonly(self): ...
481
- def is_property_set(self): ...
482
- def items(self): ...
483
- def keyframe_delete(self): ...
484
- def keyframe_insert(self): ...
485
- def keys(self): ...
486
- def path_from_id(self): ...
487
- def path_resolve(self): ...
488
- def poll(self, context): ...
489
- def pop(self): ...
490
- def prepend(self, draw_func): ...
491
- def property_overridable_library_set(self): ...
492
- def property_unset(self): ...
493
- def remove(self, draw_func): ...
494
- def type_recast(self): ...
495
- def values(self): ...
496
-
497
- class PHYSICS_PT_softbody_simulation(
498
- PhysicButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
499
- ):
500
1516
  COMPAT_ENGINES: typing.Any
1517
+ """ """
1518
+
501
1519
  bl_context: typing.Any
1520
+ """ """
1521
+
502
1522
  bl_label: typing.Any
1523
+ """ """
1524
+
503
1525
  bl_options: typing.Any
1526
+ """ """
1527
+
504
1528
  bl_parent_id: typing.Any
1529
+ """ """
1530
+
505
1531
  bl_region_type: typing.Any
1532
+ """ """
1533
+
506
1534
  bl_rna: typing.Any
1535
+ """ """
1536
+
507
1537
  bl_space_type: typing.Any
1538
+ """ """
1539
+
508
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
+ """ """
509
1680
 
510
- def append(self, draw_func): ...
511
- def as_pointer(self): ...
512
- def bl_rna_get_subclass(self): ...
513
- def bl_rna_get_subclass_py(self): ...
514
- def draw(self, context): ...
515
- def driver_add(self): ...
516
- def driver_remove(self): ...
517
- def get(self): ...
518
- def id_properties_clear(self): ...
519
- def id_properties_ensure(self): ...
520
- def id_properties_ui(self): ...
521
- def is_extended(self): ...
522
- def is_property_hidden(self): ...
523
- def is_property_overridable_library(self): ...
524
- def is_property_readonly(self): ...
525
- def is_property_set(self): ...
526
- def items(self): ...
527
- def keyframe_delete(self): ...
528
- def keyframe_insert(self): ...
529
- def keys(self): ...
530
- def path_from_id(self): ...
531
- def path_resolve(self): ...
532
- def poll(self, context): ...
533
- def pop(self): ...
534
- def prepend(self, draw_func): ...
535
- def property_overridable_library_set(self): ...
536
- def property_unset(self): ...
537
- def remove(self, draw_func): ...
538
- def type_recast(self): ...
539
- def values(self): ...
540
-
541
- class PHYSICS_PT_softbody_solver(
542
- PhysicButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
543
- ):
544
1681
  COMPAT_ENGINES: typing.Any
1682
+ """ """
1683
+
545
1684
  bl_context: typing.Any
1685
+ """ """
1686
+
546
1687
  bl_label: typing.Any
1688
+ """ """
1689
+
547
1690
  bl_options: typing.Any
1691
+ """ """
1692
+
548
1693
  bl_parent_id: typing.Any
1694
+ """ """
1695
+
549
1696
  bl_region_type: typing.Any
1697
+ """ """
1698
+
550
1699
  bl_rna: typing.Any
1700
+ """ """
1701
+
551
1702
  bl_space_type: typing.Any
1703
+ """ """
1704
+
552
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
+ """ """
553
1845
 
554
- def append(self, draw_func): ...
555
- def as_pointer(self): ...
556
- def bl_rna_get_subclass(self): ...
557
- def bl_rna_get_subclass_py(self): ...
558
- def draw(self, context): ...
559
- def driver_add(self): ...
560
- def driver_remove(self): ...
561
- def get(self): ...
562
- def id_properties_clear(self): ...
563
- def id_properties_ensure(self): ...
564
- def id_properties_ui(self): ...
565
- def is_extended(self): ...
566
- def is_property_hidden(self): ...
567
- def is_property_overridable_library(self): ...
568
- def is_property_readonly(self): ...
569
- def is_property_set(self): ...
570
- def items(self): ...
571
- def keyframe_delete(self): ...
572
- def keyframe_insert(self): ...
573
- def keys(self): ...
574
- def path_from_id(self): ...
575
- def path_resolve(self): ...
576
- def poll(self, context): ...
577
- def pop(self): ...
578
- def prepend(self, draw_func): ...
579
- def property_overridable_library_set(self): ...
580
- def property_unset(self): ...
581
- def remove(self, draw_func): ...
582
- def type_recast(self): ...
583
- def values(self): ...
584
-
585
- class PHYSICS_PT_softbody_solver_diagnostics(
586
- PhysicButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
587
- ):
588
1846
  COMPAT_ENGINES: typing.Any
1847
+ """ """
1848
+
589
1849
  bl_context: typing.Any
1850
+ """ """
1851
+
590
1852
  bl_label: typing.Any
1853
+ """ """
1854
+
591
1855
  bl_options: typing.Any
1856
+ """ """
1857
+
592
1858
  bl_parent_id: typing.Any
1859
+ """ """
1860
+
593
1861
  bl_region_type: typing.Any
1862
+ """ """
1863
+
594
1864
  bl_rna: typing.Any
1865
+ """ """
1866
+
595
1867
  bl_space_type: typing.Any
1868
+ """ """
1869
+
596
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
+ """ """
597
2010
 
598
- def append(self, draw_func): ...
599
- def as_pointer(self): ...
600
- def bl_rna_get_subclass(self): ...
601
- def bl_rna_get_subclass_py(self): ...
602
- def draw(self, context): ...
603
- def driver_add(self): ...
604
- def driver_remove(self): ...
605
- def get(self): ...
606
- def id_properties_clear(self): ...
607
- def id_properties_ensure(self): ...
608
- def id_properties_ui(self): ...
609
- def is_extended(self): ...
610
- def is_property_hidden(self): ...
611
- def is_property_overridable_library(self): ...
612
- def is_property_readonly(self): ...
613
- def is_property_set(self): ...
614
- def items(self): ...
615
- def keyframe_delete(self): ...
616
- def keyframe_insert(self): ...
617
- def keys(self): ...
618
- def path_from_id(self): ...
619
- def path_resolve(self): ...
620
- def poll(self, context): ...
621
- def pop(self): ...
622
- def prepend(self, draw_func): ...
623
- def property_overridable_library_set(self): ...
624
- def property_unset(self): ...
625
- def remove(self, draw_func): ...
626
- def type_recast(self): ...
627
- def values(self): ...
628
-
629
- class PHYSICS_PT_softbody_solver_helpers(
630
- PhysicButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
631
- ):
632
2011
  COMPAT_ENGINES: typing.Any
2012
+ """ """
2013
+
633
2014
  bl_context: typing.Any
2015
+ """ """
2016
+
634
2017
  bl_label: typing.Any
2018
+ """ """
2019
+
635
2020
  bl_options: typing.Any
2021
+ """ """
2022
+
636
2023
  bl_parent_id: typing.Any
2024
+ """ """
2025
+
637
2026
  bl_region_type: typing.Any
2027
+ """ """
2028
+
638
2029
  bl_rna: typing.Any
2030
+ """ """
2031
+
639
2032
  bl_space_type: typing.Any
2033
+ """ """
2034
+
640
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
+ """ """
641
2524
 
642
- def append(self, draw_func): ...
643
- def as_pointer(self): ...
644
- def bl_rna_get_subclass(self): ...
645
- def bl_rna_get_subclass_py(self): ...
646
- def draw(self, context): ...
647
- def driver_add(self): ...
648
- def driver_remove(self): ...
649
- def get(self): ...
650
- def id_properties_clear(self): ...
651
- def id_properties_ensure(self): ...
652
- def id_properties_ui(self): ...
653
- def is_extended(self): ...
654
- def is_property_hidden(self): ...
655
- def is_property_overridable_library(self): ...
656
- def is_property_readonly(self): ...
657
- def is_property_set(self): ...
658
- def items(self): ...
659
- def keyframe_delete(self): ...
660
- def keyframe_insert(self): ...
661
- def keys(self): ...
662
- def path_from_id(self): ...
663
- def path_resolve(self): ...
664
- def poll(self, context): ...
665
- def pop(self): ...
666
- def prepend(self, draw_func): ...
667
- def property_overridable_library_set(self): ...
668
- def property_unset(self): ...
669
- def remove(self, draw_func): ...
670
- def type_recast(self): ...
671
- def values(self): ...
672
-
673
- def softbody_panel_enabled(md): ...
2525
+ ...