fake-bpy-module 20240721__py3-none-any.whl → 20240723__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.
- bl_operators/bone_selection_sets/__init__.pyi +6 -18
- bl_operators/node/__init__.pyi +2 -4
- bl_operators/presets/__init__.pyi +2 -5
- bl_operators/wm/__init__.pyi +4 -5
- bl_ui/__init__.pyi +3 -4
- bl_ui/anim/__init__.pyi +1 -2
- bl_ui/asset_shelf/__init__.pyi +1 -2
- bl_ui/node_add_menu/__init__.pyi +1 -2
- bl_ui/node_add_menu_compositor/__init__.pyi +18 -19
- bl_ui/node_add_menu_geometry/__init__.pyi +50 -53
- bl_ui/node_add_menu_shader/__init__.pyi +10 -11
- bl_ui/node_add_menu_texture/__init__.pyi +9 -10
- bl_ui/properties_collection/__init__.pyi +6 -18
- bl_ui/properties_constraint/__init__.pyi +79 -142
- bl_ui/properties_data_armature/__init__.pyi +17 -32
- bl_ui/properties_data_bone/__init__.pyi +10 -15
- bl_ui/properties_data_camera/__init__.pyi +14 -29
- bl_ui/properties_data_curve/__init__.pyi +15 -40
- bl_ui/properties_data_curves/__init__.pyi +6 -9
- bl_ui/properties_data_empty/__init__.pyi +2 -3
- bl_ui/properties_data_gpencil/__init__.pyi +23 -37
- bl_ui/properties_data_grease_pencil/__init__.pyi +14 -36
- bl_ui/properties_data_lattice/__init__.pyi +3 -4
- bl_ui/properties_data_light/__init__.pyi +12 -23
- bl_ui/properties_data_lightprobe/__init__.pyi +13 -36
- bl_ui/properties_data_mesh/__init__.pyi +20 -27
- bl_ui/properties_data_metaball/__init__.pyi +5 -8
- bl_ui/properties_data_modifier/__init__.pyi +9 -24
- bl_ui/properties_data_pointcloud/__init__.pyi +5 -10
- bl_ui/properties_data_shaderfx/__init__.pyi +1 -2
- bl_ui/properties_data_speaker/__init__.pyi +5 -6
- bl_ui/properties_data_volume/__init__.pyi +8 -13
- bl_ui/properties_freestyle/__init__.pyi +26 -112
- bl_ui/properties_grease_pencil_common/__init__.pyi +15 -16
- bl_ui/properties_mask_common/__init__.pyi +7 -8
- bl_ui/properties_material/__init__.pyi +16 -40
- bl_ui/properties_material_gpencil/__init__.pyi +10 -28
- bl_ui/properties_object/__init__.pyi +14 -25
- bl_ui/properties_output/__init__.pyi +18 -45
- bl_ui/properties_paint_common/__init__.pyi +9 -10
- bl_ui/properties_particle/__init__.pyi +52 -134
- bl_ui/properties_physics_cloth/__init__.pyi +14 -35
- bl_ui/properties_physics_common/__init__.pyi +1 -2
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +22 -61
- bl_ui/properties_physics_field/__init__.pyi +10 -27
- bl_ui/properties_physics_fluid/__init__.pyi +28 -51
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +1 -2
- bl_ui/properties_physics_rigidbody/__init__.pyi +8 -17
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +13 -14
- bl_ui/properties_physics_softbody/__init__.pyi +15 -44
- bl_ui/properties_render/__init__.pyi +55 -146
- bl_ui/properties_scene/__init__.pyi +15 -28
- bl_ui/properties_texture/__init__.pyi +26 -70
- bl_ui/properties_view_layer/__init__.pyi +49 -80
- bl_ui/properties_workspace/__init__.pyi +4 -8
- bl_ui/properties_world/__init__.pyi +10 -17
- bl_ui/space_clip/__init__.pyi +72 -116
- bl_ui/space_console/__init__.pyi +6 -7
- bl_ui/space_dopesheet/__init__.pyi +39 -56
- bl_ui/space_filebrowser/__init__.pyi +29 -44
- bl_ui/space_graph/__init__.pyi +20 -23
- bl_ui/space_image/__init__.pyi +69 -134
- bl_ui/space_info/__init__.pyi +6 -7
- bl_ui/space_nla/__init__.pyi +17 -26
- bl_ui/space_node/__init__.pyi +28 -35
- bl_ui/space_outliner/__init__.pyi +14 -15
- bl_ui/space_properties/__init__.pyi +3 -4
- bl_ui/space_sequencer/__init__.pyi +80 -134
- bl_ui/space_spreadsheet/__init__.pyi +1 -2
- bl_ui/space_statusbar/__init__.pyi +1 -2
- bl_ui/space_text/__init__.pyi +16 -17
- bl_ui/space_time/__init__.pyi +7 -12
- bl_ui/space_toolsystem_common/__init__.pyi +1 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -13
- bl_ui/space_topbar/__init__.pyi +26 -27
- bl_ui/space_userpref/__init__.pyi +91 -196
- bl_ui/space_view3d/__init__.pyi +279 -342
- bl_ui/space_view3d_toolbar/__init__.pyi +613 -897
- bl_ui/temp_anim_layers/__init__.pyi +1 -2
- bpy/ops/sequencer/__init__.pyi +1 -1
- bpy/types/__init__.pyi +29718 -29418
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240723.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240723.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240723.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- nodeitems_builtins/__init__.pyi +4 -4
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240723.dist-info}/top_level.txt +0 -0
|
@@ -2,14 +2,11 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
|
-
import bpy_types
|
|
6
5
|
|
|
7
6
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
8
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
8
|
|
|
10
|
-
class PHYSICS_PT_rigid_body(
|
|
11
|
-
bpy.types.Panel, PHYSICS_PT_rigidbody_panel, bpy_types._GenericUI
|
|
12
|
-
):
|
|
9
|
+
class PHYSICS_PT_rigid_body(PHYSICS_PT_rigidbody_panel, bpy.types.Panel):
|
|
13
10
|
COMPAT_ENGINES: typing.Any
|
|
14
11
|
bl_context: typing.Any
|
|
15
12
|
bl_label: typing.Any
|
|
@@ -49,9 +46,7 @@ class PHYSICS_PT_rigid_body(
|
|
|
49
46
|
"""
|
|
50
47
|
...
|
|
51
48
|
|
|
52
|
-
class PHYSICS_PT_rigid_body_collisions(
|
|
53
|
-
bpy.types.Panel, PHYSICS_PT_rigidbody_panel, bpy_types._GenericUI
|
|
54
|
-
):
|
|
49
|
+
class PHYSICS_PT_rigid_body_collisions(PHYSICS_PT_rigidbody_panel, bpy.types.Panel):
|
|
55
50
|
COMPAT_ENGINES: typing.Any
|
|
56
51
|
bl_context: typing.Any
|
|
57
52
|
bl_label: typing.Any
|
|
@@ -93,7 +88,7 @@ class PHYSICS_PT_rigid_body_collisions(
|
|
|
93
88
|
...
|
|
94
89
|
|
|
95
90
|
class PHYSICS_PT_rigid_body_collisions_collections(
|
|
96
|
-
bpy.types.Panel
|
|
91
|
+
PHYSICS_PT_rigidbody_panel, bpy.types.Panel
|
|
97
92
|
):
|
|
98
93
|
COMPAT_ENGINES: typing.Any
|
|
99
94
|
bl_context: typing.Any
|
|
@@ -137,7 +132,7 @@ class PHYSICS_PT_rigid_body_collisions_collections(
|
|
|
137
132
|
...
|
|
138
133
|
|
|
139
134
|
class PHYSICS_PT_rigid_body_collisions_sensitivity(
|
|
140
|
-
bpy.types.Panel
|
|
135
|
+
PHYSICS_PT_rigidbody_panel, bpy.types.Panel
|
|
141
136
|
):
|
|
142
137
|
COMPAT_ENGINES: typing.Any
|
|
143
138
|
bl_context: typing.Any
|
|
@@ -181,7 +176,7 @@ class PHYSICS_PT_rigid_body_collisions_sensitivity(
|
|
|
181
176
|
...
|
|
182
177
|
|
|
183
178
|
class PHYSICS_PT_rigid_body_collisions_surface(
|
|
184
|
-
bpy.types.Panel
|
|
179
|
+
PHYSICS_PT_rigidbody_panel, bpy.types.Panel
|
|
185
180
|
):
|
|
186
181
|
COMPAT_ENGINES: typing.Any
|
|
187
182
|
bl_context: typing.Any
|
|
@@ -224,9 +219,7 @@ class PHYSICS_PT_rigid_body_collisions_surface(
|
|
|
224
219
|
"""
|
|
225
220
|
...
|
|
226
221
|
|
|
227
|
-
class PHYSICS_PT_rigid_body_dynamics(
|
|
228
|
-
bpy.types.Panel, PHYSICS_PT_rigidbody_panel, bpy_types._GenericUI
|
|
229
|
-
):
|
|
222
|
+
class PHYSICS_PT_rigid_body_dynamics(PHYSICS_PT_rigidbody_panel, bpy.types.Panel):
|
|
230
223
|
COMPAT_ENGINES: typing.Any
|
|
231
224
|
bl_context: typing.Any
|
|
232
225
|
bl_label: typing.Any
|
|
@@ -269,7 +262,7 @@ class PHYSICS_PT_rigid_body_dynamics(
|
|
|
269
262
|
...
|
|
270
263
|
|
|
271
264
|
class PHYSICS_PT_rigid_body_dynamics_deactivation(
|
|
272
|
-
bpy.types.Panel
|
|
265
|
+
PHYSICS_PT_rigidbody_panel, bpy.types.Panel
|
|
273
266
|
):
|
|
274
267
|
COMPAT_ENGINES: typing.Any
|
|
275
268
|
bl_context: typing.Any
|
|
@@ -319,9 +312,7 @@ class PHYSICS_PT_rigid_body_dynamics_deactivation(
|
|
|
319
312
|
"""
|
|
320
313
|
...
|
|
321
314
|
|
|
322
|
-
class PHYSICS_PT_rigid_body_settings(
|
|
323
|
-
bpy.types.Panel, PHYSICS_PT_rigidbody_panel, bpy_types._GenericUI
|
|
324
|
-
):
|
|
315
|
+
class PHYSICS_PT_rigid_body_settings(PHYSICS_PT_rigidbody_panel, bpy.types.Panel):
|
|
325
316
|
COMPAT_ENGINES: typing.Any
|
|
326
317
|
bl_context: typing.Any
|
|
327
318
|
bl_label: typing.Any
|
|
@@ -2,13 +2,12 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
|
-
import bpy_types
|
|
6
5
|
|
|
7
6
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
8
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
8
|
|
|
10
9
|
class PHYSICS_PT_rigid_body_constraint(
|
|
11
|
-
bpy.types.Panel
|
|
10
|
+
PHYSICS_PT_rigidbody_constraint_panel, bpy.types.Panel
|
|
12
11
|
):
|
|
13
12
|
COMPAT_ENGINES: typing.Any
|
|
14
13
|
bl_context: typing.Any
|
|
@@ -50,7 +49,7 @@ class PHYSICS_PT_rigid_body_constraint(
|
|
|
50
49
|
...
|
|
51
50
|
|
|
52
51
|
class PHYSICS_PT_rigid_body_constraint_limits(
|
|
53
|
-
bpy.types.Panel
|
|
52
|
+
PHYSICS_PT_rigidbody_constraint_panel, bpy.types.Panel
|
|
54
53
|
):
|
|
55
54
|
COMPAT_ENGINES: typing.Any
|
|
56
55
|
bl_context: typing.Any
|
|
@@ -93,7 +92,7 @@ class PHYSICS_PT_rigid_body_constraint_limits(
|
|
|
93
92
|
...
|
|
94
93
|
|
|
95
94
|
class PHYSICS_PT_rigid_body_constraint_limits_angular(
|
|
96
|
-
bpy.types.Panel
|
|
95
|
+
PHYSICS_PT_rigidbody_constraint_panel, bpy.types.Panel
|
|
97
96
|
):
|
|
98
97
|
COMPAT_ENGINES: typing.Any
|
|
99
98
|
bl_context: typing.Any
|
|
@@ -136,7 +135,7 @@ class PHYSICS_PT_rigid_body_constraint_limits_angular(
|
|
|
136
135
|
...
|
|
137
136
|
|
|
138
137
|
class PHYSICS_PT_rigid_body_constraint_limits_linear(
|
|
139
|
-
bpy.types.Panel
|
|
138
|
+
PHYSICS_PT_rigidbody_constraint_panel, bpy.types.Panel
|
|
140
139
|
):
|
|
141
140
|
COMPAT_ENGINES: typing.Any
|
|
142
141
|
bl_context: typing.Any
|
|
@@ -179,7 +178,7 @@ class PHYSICS_PT_rigid_body_constraint_limits_linear(
|
|
|
179
178
|
...
|
|
180
179
|
|
|
181
180
|
class PHYSICS_PT_rigid_body_constraint_motor(
|
|
182
|
-
bpy.types.Panel
|
|
181
|
+
PHYSICS_PT_rigidbody_constraint_panel, bpy.types.Panel
|
|
183
182
|
):
|
|
184
183
|
COMPAT_ENGINES: typing.Any
|
|
185
184
|
bl_context: typing.Any
|
|
@@ -222,7 +221,7 @@ class PHYSICS_PT_rigid_body_constraint_motor(
|
|
|
222
221
|
...
|
|
223
222
|
|
|
224
223
|
class PHYSICS_PT_rigid_body_constraint_motor_angular(
|
|
225
|
-
bpy.types.Panel
|
|
224
|
+
PHYSICS_PT_rigidbody_constraint_panel, bpy.types.Panel
|
|
226
225
|
):
|
|
227
226
|
COMPAT_ENGINES: typing.Any
|
|
228
227
|
bl_context: typing.Any
|
|
@@ -272,7 +271,7 @@ class PHYSICS_PT_rigid_body_constraint_motor_angular(
|
|
|
272
271
|
...
|
|
273
272
|
|
|
274
273
|
class PHYSICS_PT_rigid_body_constraint_motor_linear(
|
|
275
|
-
bpy.types.Panel
|
|
274
|
+
PHYSICS_PT_rigidbody_constraint_panel, bpy.types.Panel
|
|
276
275
|
):
|
|
277
276
|
COMPAT_ENGINES: typing.Any
|
|
278
277
|
bl_context: typing.Any
|
|
@@ -322,7 +321,7 @@ class PHYSICS_PT_rigid_body_constraint_motor_linear(
|
|
|
322
321
|
...
|
|
323
322
|
|
|
324
323
|
class PHYSICS_PT_rigid_body_constraint_objects(
|
|
325
|
-
bpy.types.Panel
|
|
324
|
+
PHYSICS_PT_rigidbody_constraint_panel, bpy.types.Panel
|
|
326
325
|
):
|
|
327
326
|
COMPAT_ENGINES: typing.Any
|
|
328
327
|
bl_context: typing.Any
|
|
@@ -365,7 +364,7 @@ class PHYSICS_PT_rigid_body_constraint_objects(
|
|
|
365
364
|
...
|
|
366
365
|
|
|
367
366
|
class PHYSICS_PT_rigid_body_constraint_override_iterations(
|
|
368
|
-
bpy.types.Panel
|
|
367
|
+
PHYSICS_PT_rigidbody_constraint_panel, bpy.types.Panel
|
|
369
368
|
):
|
|
370
369
|
COMPAT_ENGINES: typing.Any
|
|
371
370
|
bl_context: typing.Any
|
|
@@ -415,7 +414,7 @@ class PHYSICS_PT_rigid_body_constraint_override_iterations(
|
|
|
415
414
|
...
|
|
416
415
|
|
|
417
416
|
class PHYSICS_PT_rigid_body_constraint_settings(
|
|
418
|
-
bpy.types.Panel
|
|
417
|
+
PHYSICS_PT_rigidbody_constraint_panel, bpy.types.Panel
|
|
419
418
|
):
|
|
420
419
|
COMPAT_ENGINES: typing.Any
|
|
421
420
|
bl_context: typing.Any
|
|
@@ -458,7 +457,7 @@ class PHYSICS_PT_rigid_body_constraint_settings(
|
|
|
458
457
|
...
|
|
459
458
|
|
|
460
459
|
class PHYSICS_PT_rigid_body_constraint_springs(
|
|
461
|
-
bpy.types.Panel
|
|
460
|
+
PHYSICS_PT_rigidbody_constraint_panel, bpy.types.Panel
|
|
462
461
|
):
|
|
463
462
|
COMPAT_ENGINES: typing.Any
|
|
464
463
|
bl_context: typing.Any
|
|
@@ -501,7 +500,7 @@ class PHYSICS_PT_rigid_body_constraint_springs(
|
|
|
501
500
|
...
|
|
502
501
|
|
|
503
502
|
class PHYSICS_PT_rigid_body_constraint_springs_angular(
|
|
504
|
-
bpy.types.Panel
|
|
503
|
+
PHYSICS_PT_rigidbody_constraint_panel, bpy.types.Panel
|
|
505
504
|
):
|
|
506
505
|
COMPAT_ENGINES: typing.Any
|
|
507
506
|
bl_context: typing.Any
|
|
@@ -544,7 +543,7 @@ class PHYSICS_PT_rigid_body_constraint_springs_angular(
|
|
|
544
543
|
...
|
|
545
544
|
|
|
546
545
|
class PHYSICS_PT_rigid_body_constraint_springs_linear(
|
|
547
|
-
bpy.types.Panel
|
|
546
|
+
PHYSICS_PT_rigidbody_constraint_panel, bpy.types.Panel
|
|
548
547
|
):
|
|
549
548
|
COMPAT_ENGINES: typing.Any
|
|
550
549
|
bl_context: typing.Any
|
|
@@ -2,12 +2,11 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
|
-
import bpy_types
|
|
6
5
|
|
|
7
6
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
8
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
8
|
|
|
10
|
-
class PHYSICS_PT_softbody(bpy.types.Panel
|
|
9
|
+
class PHYSICS_PT_softbody(PhysicButtonsPanel, bpy.types.Panel):
|
|
11
10
|
COMPAT_ENGINES: typing.Any
|
|
12
11
|
bl_context: typing.Any
|
|
13
12
|
bl_label: typing.Any
|
|
@@ -39,9 +38,7 @@ class PHYSICS_PT_softbody(bpy.types.Panel, PhysicButtonsPanel, bpy_types._Generi
|
|
|
39
38
|
"""
|
|
40
39
|
...
|
|
41
40
|
|
|
42
|
-
class PHYSICS_PT_softbody_cache(
|
|
43
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
44
|
-
):
|
|
41
|
+
class PHYSICS_PT_softbody_cache(PhysicButtonsPanel, bpy.types.Panel):
|
|
45
42
|
COMPAT_ENGINES: typing.Any
|
|
46
43
|
bl_context: typing.Any
|
|
47
44
|
bl_label: typing.Any
|
|
@@ -75,9 +72,7 @@ class PHYSICS_PT_softbody_cache(
|
|
|
75
72
|
"""
|
|
76
73
|
...
|
|
77
74
|
|
|
78
|
-
class PHYSICS_PT_softbody_collision(
|
|
79
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
80
|
-
):
|
|
75
|
+
class PHYSICS_PT_softbody_collision(PhysicButtonsPanel, bpy.types.Panel):
|
|
81
76
|
COMPAT_ENGINES: typing.Any
|
|
82
77
|
bl_context: typing.Any
|
|
83
78
|
bl_label: typing.Any
|
|
@@ -118,9 +113,7 @@ class PHYSICS_PT_softbody_collision(
|
|
|
118
113
|
"""
|
|
119
114
|
...
|
|
120
115
|
|
|
121
|
-
class PHYSICS_PT_softbody_edge(
|
|
122
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
123
|
-
):
|
|
116
|
+
class PHYSICS_PT_softbody_edge(PhysicButtonsPanel, bpy.types.Panel):
|
|
124
117
|
COMPAT_ENGINES: typing.Any
|
|
125
118
|
bl_context: typing.Any
|
|
126
119
|
bl_label: typing.Any
|
|
@@ -161,9 +154,7 @@ class PHYSICS_PT_softbody_edge(
|
|
|
161
154
|
"""
|
|
162
155
|
...
|
|
163
156
|
|
|
164
|
-
class PHYSICS_PT_softbody_edge_aerodynamics(
|
|
165
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
166
|
-
):
|
|
157
|
+
class PHYSICS_PT_softbody_edge_aerodynamics(PhysicButtonsPanel, bpy.types.Panel):
|
|
167
158
|
COMPAT_ENGINES: typing.Any
|
|
168
159
|
bl_context: typing.Any
|
|
169
160
|
bl_label: typing.Any
|
|
@@ -197,9 +188,7 @@ class PHYSICS_PT_softbody_edge_aerodynamics(
|
|
|
197
188
|
"""
|
|
198
189
|
...
|
|
199
190
|
|
|
200
|
-
class PHYSICS_PT_softbody_edge_stiffness(
|
|
201
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
202
|
-
):
|
|
191
|
+
class PHYSICS_PT_softbody_edge_stiffness(PhysicButtonsPanel, bpy.types.Panel):
|
|
203
192
|
COMPAT_ENGINES: typing.Any
|
|
204
193
|
bl_context: typing.Any
|
|
205
194
|
bl_label: typing.Any
|
|
@@ -240,9 +229,7 @@ class PHYSICS_PT_softbody_edge_stiffness(
|
|
|
240
229
|
"""
|
|
241
230
|
...
|
|
242
231
|
|
|
243
|
-
class PHYSICS_PT_softbody_field_weights(
|
|
244
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
245
|
-
):
|
|
232
|
+
class PHYSICS_PT_softbody_field_weights(PhysicButtonsPanel, bpy.types.Panel):
|
|
246
233
|
COMPAT_ENGINES: typing.Any
|
|
247
234
|
bl_context: typing.Any
|
|
248
235
|
bl_label: typing.Any
|
|
@@ -276,9 +263,7 @@ class PHYSICS_PT_softbody_field_weights(
|
|
|
276
263
|
"""
|
|
277
264
|
...
|
|
278
265
|
|
|
279
|
-
class PHYSICS_PT_softbody_goal(
|
|
280
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
281
|
-
):
|
|
266
|
+
class PHYSICS_PT_softbody_goal(PhysicButtonsPanel, bpy.types.Panel):
|
|
282
267
|
COMPAT_ENGINES: typing.Any
|
|
283
268
|
bl_context: typing.Any
|
|
284
269
|
bl_label: typing.Any
|
|
@@ -319,9 +304,7 @@ class PHYSICS_PT_softbody_goal(
|
|
|
319
304
|
"""
|
|
320
305
|
...
|
|
321
306
|
|
|
322
|
-
class PHYSICS_PT_softbody_goal_settings(
|
|
323
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
324
|
-
):
|
|
307
|
+
class PHYSICS_PT_softbody_goal_settings(PhysicButtonsPanel, bpy.types.Panel):
|
|
325
308
|
COMPAT_ENGINES: typing.Any
|
|
326
309
|
bl_context: typing.Any
|
|
327
310
|
bl_label: typing.Any
|
|
@@ -355,9 +338,7 @@ class PHYSICS_PT_softbody_goal_settings(
|
|
|
355
338
|
"""
|
|
356
339
|
...
|
|
357
340
|
|
|
358
|
-
class PHYSICS_PT_softbody_goal_strengths(
|
|
359
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
360
|
-
):
|
|
341
|
+
class PHYSICS_PT_softbody_goal_strengths(PhysicButtonsPanel, bpy.types.Panel):
|
|
361
342
|
COMPAT_ENGINES: typing.Any
|
|
362
343
|
bl_context: typing.Any
|
|
363
344
|
bl_label: typing.Any
|
|
@@ -391,9 +372,7 @@ class PHYSICS_PT_softbody_goal_strengths(
|
|
|
391
372
|
"""
|
|
392
373
|
...
|
|
393
374
|
|
|
394
|
-
class PHYSICS_PT_softbody_object(
|
|
395
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
396
|
-
):
|
|
375
|
+
class PHYSICS_PT_softbody_object(PhysicButtonsPanel, bpy.types.Panel):
|
|
397
376
|
COMPAT_ENGINES: typing.Any
|
|
398
377
|
bl_context: typing.Any
|
|
399
378
|
bl_label: typing.Any
|
|
@@ -427,9 +406,7 @@ class PHYSICS_PT_softbody_object(
|
|
|
427
406
|
"""
|
|
428
407
|
...
|
|
429
408
|
|
|
430
|
-
class PHYSICS_PT_softbody_simulation(
|
|
431
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
432
|
-
):
|
|
409
|
+
class PHYSICS_PT_softbody_simulation(PhysicButtonsPanel, bpy.types.Panel):
|
|
433
410
|
COMPAT_ENGINES: typing.Any
|
|
434
411
|
bl_context: typing.Any
|
|
435
412
|
bl_label: typing.Any
|
|
@@ -463,9 +440,7 @@ class PHYSICS_PT_softbody_simulation(
|
|
|
463
440
|
"""
|
|
464
441
|
...
|
|
465
442
|
|
|
466
|
-
class PHYSICS_PT_softbody_solver(
|
|
467
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
468
|
-
):
|
|
443
|
+
class PHYSICS_PT_softbody_solver(PhysicButtonsPanel, bpy.types.Panel):
|
|
469
444
|
COMPAT_ENGINES: typing.Any
|
|
470
445
|
bl_context: typing.Any
|
|
471
446
|
bl_label: typing.Any
|
|
@@ -499,9 +474,7 @@ class PHYSICS_PT_softbody_solver(
|
|
|
499
474
|
"""
|
|
500
475
|
...
|
|
501
476
|
|
|
502
|
-
class PHYSICS_PT_softbody_solver_diagnostics(
|
|
503
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
504
|
-
):
|
|
477
|
+
class PHYSICS_PT_softbody_solver_diagnostics(PhysicButtonsPanel, bpy.types.Panel):
|
|
505
478
|
COMPAT_ENGINES: typing.Any
|
|
506
479
|
bl_context: typing.Any
|
|
507
480
|
bl_label: typing.Any
|
|
@@ -535,9 +508,7 @@ class PHYSICS_PT_softbody_solver_diagnostics(
|
|
|
535
508
|
"""
|
|
536
509
|
...
|
|
537
510
|
|
|
538
|
-
class PHYSICS_PT_softbody_solver_helpers(
|
|
539
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
540
|
-
):
|
|
511
|
+
class PHYSICS_PT_softbody_solver_helpers(PhysicButtonsPanel, bpy.types.Panel):
|
|
541
512
|
COMPAT_ENGINES: typing.Any
|
|
542
513
|
bl_context: typing.Any
|
|
543
514
|
bl_label: typing.Any
|