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

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

Potentially problematic release.


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

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