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