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,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 BONE_PT_bActionConstraint(
|
|
11
|
-
|
|
10
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
12
11
|
):
|
|
13
12
|
bl_context: typing.Any
|
|
14
13
|
bl_label: typing.Any
|
|
@@ -42,10 +41,7 @@ class BONE_PT_bActionConstraint(
|
|
|
42
41
|
...
|
|
43
42
|
|
|
44
43
|
class BONE_PT_bActionConstraint_action(
|
|
45
|
-
bpy.types.Panel
|
|
46
|
-
BoneConstraintPanel,
|
|
47
|
-
ConstraintButtonsSubPanel,
|
|
48
|
-
bpy_types._GenericUI,
|
|
44
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, bpy.types.Panel
|
|
49
45
|
):
|
|
50
46
|
bl_context: typing.Any
|
|
51
47
|
bl_label: typing.Any
|
|
@@ -79,10 +75,7 @@ class BONE_PT_bActionConstraint_action(
|
|
|
79
75
|
...
|
|
80
76
|
|
|
81
77
|
class BONE_PT_bActionConstraint_target(
|
|
82
|
-
bpy.types.Panel
|
|
83
|
-
BoneConstraintPanel,
|
|
84
|
-
ConstraintButtonsSubPanel,
|
|
85
|
-
bpy_types._GenericUI,
|
|
78
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, bpy.types.Panel
|
|
86
79
|
):
|
|
87
80
|
bl_context: typing.Any
|
|
88
81
|
bl_label: typing.Any
|
|
@@ -116,7 +109,7 @@ class BONE_PT_bActionConstraint_target(
|
|
|
116
109
|
...
|
|
117
110
|
|
|
118
111
|
class BONE_PT_bArmatureConstraint(
|
|
119
|
-
|
|
112
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
120
113
|
):
|
|
121
114
|
bl_context: typing.Any
|
|
122
115
|
bl_label: typing.Any
|
|
@@ -150,10 +143,7 @@ class BONE_PT_bArmatureConstraint(
|
|
|
150
143
|
...
|
|
151
144
|
|
|
152
145
|
class BONE_PT_bArmatureConstraint_bones(
|
|
153
|
-
bpy.types.Panel
|
|
154
|
-
BoneConstraintPanel,
|
|
155
|
-
ConstraintButtonsSubPanel,
|
|
156
|
-
bpy_types._GenericUI,
|
|
146
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, bpy.types.Panel
|
|
157
147
|
):
|
|
158
148
|
bl_context: typing.Any
|
|
159
149
|
bl_label: typing.Any
|
|
@@ -187,7 +177,7 @@ class BONE_PT_bArmatureConstraint_bones(
|
|
|
187
177
|
...
|
|
188
178
|
|
|
189
179
|
class BONE_PT_bCameraSolverConstraint(
|
|
190
|
-
|
|
180
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
191
181
|
):
|
|
192
182
|
bl_context: typing.Any
|
|
193
183
|
bl_label: typing.Any
|
|
@@ -221,7 +211,7 @@ class BONE_PT_bCameraSolverConstraint(
|
|
|
221
211
|
...
|
|
222
212
|
|
|
223
213
|
class BONE_PT_bChildOfConstraint(
|
|
224
|
-
|
|
214
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
225
215
|
):
|
|
226
216
|
bl_context: typing.Any
|
|
227
217
|
bl_label: typing.Any
|
|
@@ -255,7 +245,7 @@ class BONE_PT_bChildOfConstraint(
|
|
|
255
245
|
...
|
|
256
246
|
|
|
257
247
|
class BONE_PT_bClampToConstraint(
|
|
258
|
-
|
|
248
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
259
249
|
):
|
|
260
250
|
bl_context: typing.Any
|
|
261
251
|
bl_label: typing.Any
|
|
@@ -289,7 +279,7 @@ class BONE_PT_bClampToConstraint(
|
|
|
289
279
|
...
|
|
290
280
|
|
|
291
281
|
class BONE_PT_bDampTrackConstraint(
|
|
292
|
-
|
|
282
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
293
283
|
):
|
|
294
284
|
bl_context: typing.Any
|
|
295
285
|
bl_label: typing.Any
|
|
@@ -323,7 +313,7 @@ class BONE_PT_bDampTrackConstraint(
|
|
|
323
313
|
...
|
|
324
314
|
|
|
325
315
|
class BONE_PT_bDistLimitConstraint(
|
|
326
|
-
|
|
316
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
327
317
|
):
|
|
328
318
|
bl_context: typing.Any
|
|
329
319
|
bl_label: typing.Any
|
|
@@ -357,7 +347,7 @@ class BONE_PT_bDistLimitConstraint(
|
|
|
357
347
|
...
|
|
358
348
|
|
|
359
349
|
class BONE_PT_bFollowPathConstraint(
|
|
360
|
-
|
|
350
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
361
351
|
):
|
|
362
352
|
bl_context: typing.Any
|
|
363
353
|
bl_label: typing.Any
|
|
@@ -391,7 +381,7 @@ class BONE_PT_bFollowPathConstraint(
|
|
|
391
381
|
...
|
|
392
382
|
|
|
393
383
|
class BONE_PT_bFollowTrackConstraint(
|
|
394
|
-
|
|
384
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
395
385
|
):
|
|
396
386
|
bl_context: typing.Any
|
|
397
387
|
bl_label: typing.Any
|
|
@@ -425,7 +415,7 @@ class BONE_PT_bFollowTrackConstraint(
|
|
|
425
415
|
...
|
|
426
416
|
|
|
427
417
|
class BONE_PT_bKinematicConstraint(
|
|
428
|
-
|
|
418
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
429
419
|
):
|
|
430
420
|
bl_context: typing.Any
|
|
431
421
|
bl_label: typing.Any
|
|
@@ -459,7 +449,7 @@ class BONE_PT_bKinematicConstraint(
|
|
|
459
449
|
...
|
|
460
450
|
|
|
461
451
|
class BONE_PT_bLocLimitConstraint(
|
|
462
|
-
|
|
452
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
463
453
|
):
|
|
464
454
|
bl_context: typing.Any
|
|
465
455
|
bl_label: typing.Any
|
|
@@ -493,7 +483,7 @@ class BONE_PT_bLocLimitConstraint(
|
|
|
493
483
|
...
|
|
494
484
|
|
|
495
485
|
class BONE_PT_bLocateLikeConstraint(
|
|
496
|
-
|
|
486
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
497
487
|
):
|
|
498
488
|
bl_context: typing.Any
|
|
499
489
|
bl_label: typing.Any
|
|
@@ -527,7 +517,7 @@ class BONE_PT_bLocateLikeConstraint(
|
|
|
527
517
|
...
|
|
528
518
|
|
|
529
519
|
class BONE_PT_bLockTrackConstraint(
|
|
530
|
-
|
|
520
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
531
521
|
):
|
|
532
522
|
bl_context: typing.Any
|
|
533
523
|
bl_label: typing.Any
|
|
@@ -561,7 +551,7 @@ class BONE_PT_bLockTrackConstraint(
|
|
|
561
551
|
...
|
|
562
552
|
|
|
563
553
|
class BONE_PT_bMinMaxConstraint(
|
|
564
|
-
|
|
554
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
565
555
|
):
|
|
566
556
|
bl_context: typing.Any
|
|
567
557
|
bl_label: typing.Any
|
|
@@ -595,7 +585,7 @@ class BONE_PT_bMinMaxConstraint(
|
|
|
595
585
|
...
|
|
596
586
|
|
|
597
587
|
class BONE_PT_bObjectSolverConstraint(
|
|
598
|
-
|
|
588
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
599
589
|
):
|
|
600
590
|
bl_context: typing.Any
|
|
601
591
|
bl_label: typing.Any
|
|
@@ -629,7 +619,7 @@ class BONE_PT_bObjectSolverConstraint(
|
|
|
629
619
|
...
|
|
630
620
|
|
|
631
621
|
class BONE_PT_bPivotConstraint(
|
|
632
|
-
|
|
622
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
633
623
|
):
|
|
634
624
|
bl_context: typing.Any
|
|
635
625
|
bl_label: typing.Any
|
|
@@ -663,7 +653,7 @@ class BONE_PT_bPivotConstraint(
|
|
|
663
653
|
...
|
|
664
654
|
|
|
665
655
|
class BONE_PT_bPythonConstraint(
|
|
666
|
-
|
|
656
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
667
657
|
):
|
|
668
658
|
bl_context: typing.Any
|
|
669
659
|
bl_label: typing.Any
|
|
@@ -697,7 +687,7 @@ class BONE_PT_bPythonConstraint(
|
|
|
697
687
|
...
|
|
698
688
|
|
|
699
689
|
class BONE_PT_bRotLimitConstraint(
|
|
700
|
-
|
|
690
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
701
691
|
):
|
|
702
692
|
bl_context: typing.Any
|
|
703
693
|
bl_label: typing.Any
|
|
@@ -731,7 +721,7 @@ class BONE_PT_bRotLimitConstraint(
|
|
|
731
721
|
...
|
|
732
722
|
|
|
733
723
|
class BONE_PT_bRotateLikeConstraint(
|
|
734
|
-
|
|
724
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
735
725
|
):
|
|
736
726
|
bl_context: typing.Any
|
|
737
727
|
bl_label: typing.Any
|
|
@@ -765,7 +755,7 @@ class BONE_PT_bRotateLikeConstraint(
|
|
|
765
755
|
...
|
|
766
756
|
|
|
767
757
|
class BONE_PT_bSameVolumeConstraint(
|
|
768
|
-
|
|
758
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
769
759
|
):
|
|
770
760
|
bl_context: typing.Any
|
|
771
761
|
bl_label: typing.Any
|
|
@@ -799,7 +789,7 @@ class BONE_PT_bSameVolumeConstraint(
|
|
|
799
789
|
...
|
|
800
790
|
|
|
801
791
|
class BONE_PT_bShrinkwrapConstraint(
|
|
802
|
-
|
|
792
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
803
793
|
):
|
|
804
794
|
bl_context: typing.Any
|
|
805
795
|
bl_label: typing.Any
|
|
@@ -833,7 +823,7 @@ class BONE_PT_bShrinkwrapConstraint(
|
|
|
833
823
|
...
|
|
834
824
|
|
|
835
825
|
class BONE_PT_bSizeLikeConstraint(
|
|
836
|
-
|
|
826
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
837
827
|
):
|
|
838
828
|
bl_context: typing.Any
|
|
839
829
|
bl_label: typing.Any
|
|
@@ -867,7 +857,7 @@ class BONE_PT_bSizeLikeConstraint(
|
|
|
867
857
|
...
|
|
868
858
|
|
|
869
859
|
class BONE_PT_bSizeLimitConstraint(
|
|
870
|
-
|
|
860
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
871
861
|
):
|
|
872
862
|
bl_context: typing.Any
|
|
873
863
|
bl_label: typing.Any
|
|
@@ -901,7 +891,7 @@ class BONE_PT_bSizeLimitConstraint(
|
|
|
901
891
|
...
|
|
902
892
|
|
|
903
893
|
class BONE_PT_bSplineIKConstraint(
|
|
904
|
-
|
|
894
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
905
895
|
):
|
|
906
896
|
bl_context: typing.Any
|
|
907
897
|
bl_label: typing.Any
|
|
@@ -935,10 +925,7 @@ class BONE_PT_bSplineIKConstraint(
|
|
|
935
925
|
...
|
|
936
926
|
|
|
937
927
|
class BONE_PT_bSplineIKConstraint_chain_scaling(
|
|
938
|
-
bpy.types.Panel
|
|
939
|
-
BoneConstraintPanel,
|
|
940
|
-
ConstraintButtonsSubPanel,
|
|
941
|
-
bpy_types._GenericUI,
|
|
928
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, bpy.types.Panel
|
|
942
929
|
):
|
|
943
930
|
bl_context: typing.Any
|
|
944
931
|
bl_label: typing.Any
|
|
@@ -972,10 +959,7 @@ class BONE_PT_bSplineIKConstraint_chain_scaling(
|
|
|
972
959
|
...
|
|
973
960
|
|
|
974
961
|
class BONE_PT_bSplineIKConstraint_fitting(
|
|
975
|
-
bpy.types.Panel
|
|
976
|
-
BoneConstraintPanel,
|
|
977
|
-
ConstraintButtonsSubPanel,
|
|
978
|
-
bpy_types._GenericUI,
|
|
962
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, bpy.types.Panel
|
|
979
963
|
):
|
|
980
964
|
bl_context: typing.Any
|
|
981
965
|
bl_label: typing.Any
|
|
@@ -1009,7 +993,7 @@ class BONE_PT_bSplineIKConstraint_fitting(
|
|
|
1009
993
|
...
|
|
1010
994
|
|
|
1011
995
|
class BONE_PT_bStretchToConstraint(
|
|
1012
|
-
|
|
996
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
1013
997
|
):
|
|
1014
998
|
bl_context: typing.Any
|
|
1015
999
|
bl_label: typing.Any
|
|
@@ -1043,7 +1027,7 @@ class BONE_PT_bStretchToConstraint(
|
|
|
1043
1027
|
...
|
|
1044
1028
|
|
|
1045
1029
|
class BONE_PT_bTrackToConstraint(
|
|
1046
|
-
|
|
1030
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
1047
1031
|
):
|
|
1048
1032
|
bl_context: typing.Any
|
|
1049
1033
|
bl_label: typing.Any
|
|
@@ -1077,7 +1061,7 @@ class BONE_PT_bTrackToConstraint(
|
|
|
1077
1061
|
...
|
|
1078
1062
|
|
|
1079
1063
|
class BONE_PT_bTransLikeConstraint(
|
|
1080
|
-
|
|
1064
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
1081
1065
|
):
|
|
1082
1066
|
bl_context: typing.Any
|
|
1083
1067
|
bl_label: typing.Any
|
|
@@ -1111,7 +1095,7 @@ class BONE_PT_bTransLikeConstraint(
|
|
|
1111
1095
|
...
|
|
1112
1096
|
|
|
1113
1097
|
class BONE_PT_bTransformCacheConstraint(
|
|
1114
|
-
|
|
1098
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
1115
1099
|
):
|
|
1116
1100
|
bl_context: typing.Any
|
|
1117
1101
|
bl_label: typing.Any
|
|
@@ -1145,10 +1129,7 @@ class BONE_PT_bTransformCacheConstraint(
|
|
|
1145
1129
|
...
|
|
1146
1130
|
|
|
1147
1131
|
class BONE_PT_bTransformCacheConstraint_layers(
|
|
1148
|
-
bpy.types.Panel
|
|
1149
|
-
BoneConstraintPanel,
|
|
1150
|
-
ConstraintButtonsSubPanel,
|
|
1151
|
-
bpy_types._GenericUI,
|
|
1132
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, bpy.types.Panel
|
|
1152
1133
|
):
|
|
1153
1134
|
bl_context: typing.Any
|
|
1154
1135
|
bl_label: typing.Any
|
|
@@ -1182,10 +1163,7 @@ class BONE_PT_bTransformCacheConstraint_layers(
|
|
|
1182
1163
|
...
|
|
1183
1164
|
|
|
1184
1165
|
class BONE_PT_bTransformCacheConstraint_procedural(
|
|
1185
|
-
bpy.types.Panel
|
|
1186
|
-
BoneConstraintPanel,
|
|
1187
|
-
ConstraintButtonsSubPanel,
|
|
1188
|
-
bpy_types._GenericUI,
|
|
1166
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, bpy.types.Panel
|
|
1189
1167
|
):
|
|
1190
1168
|
bl_context: typing.Any
|
|
1191
1169
|
bl_label: typing.Any
|
|
@@ -1219,10 +1197,7 @@ class BONE_PT_bTransformCacheConstraint_procedural(
|
|
|
1219
1197
|
...
|
|
1220
1198
|
|
|
1221
1199
|
class BONE_PT_bTransformCacheConstraint_time(
|
|
1222
|
-
bpy.types.Panel
|
|
1223
|
-
BoneConstraintPanel,
|
|
1224
|
-
ConstraintButtonsSubPanel,
|
|
1225
|
-
bpy_types._GenericUI,
|
|
1200
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, bpy.types.Panel
|
|
1226
1201
|
):
|
|
1227
1202
|
bl_context: typing.Any
|
|
1228
1203
|
bl_label: typing.Any
|
|
@@ -1256,10 +1231,7 @@ class BONE_PT_bTransformCacheConstraint_time(
|
|
|
1256
1231
|
...
|
|
1257
1232
|
|
|
1258
1233
|
class BONE_PT_bTransformCacheConstraint_velocity(
|
|
1259
|
-
bpy.types.Panel
|
|
1260
|
-
BoneConstraintPanel,
|
|
1261
|
-
ConstraintButtonsSubPanel,
|
|
1262
|
-
bpy_types._GenericUI,
|
|
1234
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, bpy.types.Panel
|
|
1263
1235
|
):
|
|
1264
1236
|
bl_context: typing.Any
|
|
1265
1237
|
bl_label: typing.Any
|
|
@@ -1293,7 +1265,7 @@ class BONE_PT_bTransformCacheConstraint_velocity(
|
|
|
1293
1265
|
...
|
|
1294
1266
|
|
|
1295
1267
|
class BONE_PT_bTransformConstraint(
|
|
1296
|
-
|
|
1268
|
+
ConstraintButtonsPanel, BoneConstraintPanel, bpy.types.Panel
|
|
1297
1269
|
):
|
|
1298
1270
|
bl_context: typing.Any
|
|
1299
1271
|
bl_label: typing.Any
|
|
@@ -1327,10 +1299,7 @@ class BONE_PT_bTransformConstraint(
|
|
|
1327
1299
|
...
|
|
1328
1300
|
|
|
1329
1301
|
class BONE_PT_bTransformConstraint_from(
|
|
1330
|
-
bpy.types.Panel
|
|
1331
|
-
BoneConstraintPanel,
|
|
1332
|
-
ConstraintButtonsSubPanel,
|
|
1333
|
-
bpy_types._GenericUI,
|
|
1302
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, bpy.types.Panel
|
|
1334
1303
|
):
|
|
1335
1304
|
bl_context: typing.Any
|
|
1336
1305
|
bl_label: typing.Any
|
|
@@ -1364,10 +1333,7 @@ class BONE_PT_bTransformConstraint_from(
|
|
|
1364
1333
|
...
|
|
1365
1334
|
|
|
1366
1335
|
class BONE_PT_bTransformConstraint_to(
|
|
1367
|
-
bpy.types.Panel
|
|
1368
|
-
BoneConstraintPanel,
|
|
1369
|
-
ConstraintButtonsSubPanel,
|
|
1370
|
-
bpy_types._GenericUI,
|
|
1336
|
+
ConstraintButtonsSubPanel, BoneConstraintPanel, bpy.types.Panel
|
|
1371
1337
|
):
|
|
1372
1338
|
bl_context: typing.Any
|
|
1373
1339
|
bl_label: typing.Any
|
|
@@ -1400,7 +1366,7 @@ class BONE_PT_bTransformConstraint_to(
|
|
|
1400
1366
|
"""
|
|
1401
1367
|
...
|
|
1402
1368
|
|
|
1403
|
-
class BONE_PT_constraints(bpy.types.Panel
|
|
1369
|
+
class BONE_PT_constraints(BoneConstraintPanel, bpy.types.Panel):
|
|
1404
1370
|
bl_context: typing.Any
|
|
1405
1371
|
bl_label: typing.Any
|
|
1406
1372
|
bl_options: typing.Any
|
|
@@ -1795,7 +1761,7 @@ class ConstraintButtonsSubPanel:
|
|
|
1795
1761
|
...
|
|
1796
1762
|
|
|
1797
1763
|
class OBJECT_PT_bActionConstraint(
|
|
1798
|
-
|
|
1764
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
1799
1765
|
):
|
|
1800
1766
|
bl_context: typing.Any
|
|
1801
1767
|
bl_label: typing.Any
|
|
@@ -1829,10 +1795,7 @@ class OBJECT_PT_bActionConstraint(
|
|
|
1829
1795
|
...
|
|
1830
1796
|
|
|
1831
1797
|
class OBJECT_PT_bActionConstraint_action(
|
|
1832
|
-
bpy.types.Panel
|
|
1833
|
-
ObjectConstraintPanel,
|
|
1834
|
-
ConstraintButtonsSubPanel,
|
|
1835
|
-
bpy_types._GenericUI,
|
|
1798
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
1836
1799
|
):
|
|
1837
1800
|
bl_context: typing.Any
|
|
1838
1801
|
bl_label: typing.Any
|
|
@@ -1866,10 +1829,7 @@ class OBJECT_PT_bActionConstraint_action(
|
|
|
1866
1829
|
...
|
|
1867
1830
|
|
|
1868
1831
|
class OBJECT_PT_bActionConstraint_target(
|
|
1869
|
-
bpy.types.Panel
|
|
1870
|
-
ObjectConstraintPanel,
|
|
1871
|
-
ConstraintButtonsSubPanel,
|
|
1872
|
-
bpy_types._GenericUI,
|
|
1832
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
1873
1833
|
):
|
|
1874
1834
|
bl_context: typing.Any
|
|
1875
1835
|
bl_label: typing.Any
|
|
@@ -1903,7 +1863,7 @@ class OBJECT_PT_bActionConstraint_target(
|
|
|
1903
1863
|
...
|
|
1904
1864
|
|
|
1905
1865
|
class OBJECT_PT_bArmatureConstraint(
|
|
1906
|
-
|
|
1866
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
1907
1867
|
):
|
|
1908
1868
|
bl_context: typing.Any
|
|
1909
1869
|
bl_label: typing.Any
|
|
@@ -1937,10 +1897,7 @@ class OBJECT_PT_bArmatureConstraint(
|
|
|
1937
1897
|
...
|
|
1938
1898
|
|
|
1939
1899
|
class OBJECT_PT_bArmatureConstraint_bones(
|
|
1940
|
-
bpy.types.Panel
|
|
1941
|
-
ObjectConstraintPanel,
|
|
1942
|
-
ConstraintButtonsSubPanel,
|
|
1943
|
-
bpy_types._GenericUI,
|
|
1900
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
1944
1901
|
):
|
|
1945
1902
|
bl_context: typing.Any
|
|
1946
1903
|
bl_label: typing.Any
|
|
@@ -1974,7 +1931,7 @@ class OBJECT_PT_bArmatureConstraint_bones(
|
|
|
1974
1931
|
...
|
|
1975
1932
|
|
|
1976
1933
|
class OBJECT_PT_bCameraSolverConstraint(
|
|
1977
|
-
|
|
1934
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
1978
1935
|
):
|
|
1979
1936
|
bl_context: typing.Any
|
|
1980
1937
|
bl_label: typing.Any
|
|
@@ -2008,7 +1965,7 @@ class OBJECT_PT_bCameraSolverConstraint(
|
|
|
2008
1965
|
...
|
|
2009
1966
|
|
|
2010
1967
|
class OBJECT_PT_bChildOfConstraint(
|
|
2011
|
-
|
|
1968
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2012
1969
|
):
|
|
2013
1970
|
bl_context: typing.Any
|
|
2014
1971
|
bl_label: typing.Any
|
|
@@ -2042,7 +1999,7 @@ class OBJECT_PT_bChildOfConstraint(
|
|
|
2042
1999
|
...
|
|
2043
2000
|
|
|
2044
2001
|
class OBJECT_PT_bClampToConstraint(
|
|
2045
|
-
|
|
2002
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2046
2003
|
):
|
|
2047
2004
|
bl_context: typing.Any
|
|
2048
2005
|
bl_label: typing.Any
|
|
@@ -2076,7 +2033,7 @@ class OBJECT_PT_bClampToConstraint(
|
|
|
2076
2033
|
...
|
|
2077
2034
|
|
|
2078
2035
|
class OBJECT_PT_bDampTrackConstraint(
|
|
2079
|
-
|
|
2036
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2080
2037
|
):
|
|
2081
2038
|
bl_context: typing.Any
|
|
2082
2039
|
bl_label: typing.Any
|
|
@@ -2110,7 +2067,7 @@ class OBJECT_PT_bDampTrackConstraint(
|
|
|
2110
2067
|
...
|
|
2111
2068
|
|
|
2112
2069
|
class OBJECT_PT_bDistLimitConstraint(
|
|
2113
|
-
|
|
2070
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2114
2071
|
):
|
|
2115
2072
|
bl_context: typing.Any
|
|
2116
2073
|
bl_label: typing.Any
|
|
@@ -2144,7 +2101,7 @@ class OBJECT_PT_bDistLimitConstraint(
|
|
|
2144
2101
|
...
|
|
2145
2102
|
|
|
2146
2103
|
class OBJECT_PT_bFollowPathConstraint(
|
|
2147
|
-
|
|
2104
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2148
2105
|
):
|
|
2149
2106
|
bl_context: typing.Any
|
|
2150
2107
|
bl_label: typing.Any
|
|
@@ -2178,7 +2135,7 @@ class OBJECT_PT_bFollowPathConstraint(
|
|
|
2178
2135
|
...
|
|
2179
2136
|
|
|
2180
2137
|
class OBJECT_PT_bFollowTrackConstraint(
|
|
2181
|
-
|
|
2138
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2182
2139
|
):
|
|
2183
2140
|
bl_context: typing.Any
|
|
2184
2141
|
bl_label: typing.Any
|
|
@@ -2212,7 +2169,7 @@ class OBJECT_PT_bFollowTrackConstraint(
|
|
|
2212
2169
|
...
|
|
2213
2170
|
|
|
2214
2171
|
class OBJECT_PT_bKinematicConstraint(
|
|
2215
|
-
|
|
2172
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2216
2173
|
):
|
|
2217
2174
|
bl_context: typing.Any
|
|
2218
2175
|
bl_label: typing.Any
|
|
@@ -2246,7 +2203,7 @@ class OBJECT_PT_bKinematicConstraint(
|
|
|
2246
2203
|
...
|
|
2247
2204
|
|
|
2248
2205
|
class OBJECT_PT_bLocLimitConstraint(
|
|
2249
|
-
|
|
2206
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2250
2207
|
):
|
|
2251
2208
|
bl_context: typing.Any
|
|
2252
2209
|
bl_label: typing.Any
|
|
@@ -2280,7 +2237,7 @@ class OBJECT_PT_bLocLimitConstraint(
|
|
|
2280
2237
|
...
|
|
2281
2238
|
|
|
2282
2239
|
class OBJECT_PT_bLocateLikeConstraint(
|
|
2283
|
-
|
|
2240
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2284
2241
|
):
|
|
2285
2242
|
bl_context: typing.Any
|
|
2286
2243
|
bl_label: typing.Any
|
|
@@ -2314,7 +2271,7 @@ class OBJECT_PT_bLocateLikeConstraint(
|
|
|
2314
2271
|
...
|
|
2315
2272
|
|
|
2316
2273
|
class OBJECT_PT_bLockTrackConstraint(
|
|
2317
|
-
|
|
2274
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2318
2275
|
):
|
|
2319
2276
|
bl_context: typing.Any
|
|
2320
2277
|
bl_label: typing.Any
|
|
@@ -2348,7 +2305,7 @@ class OBJECT_PT_bLockTrackConstraint(
|
|
|
2348
2305
|
...
|
|
2349
2306
|
|
|
2350
2307
|
class OBJECT_PT_bMinMaxConstraint(
|
|
2351
|
-
|
|
2308
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2352
2309
|
):
|
|
2353
2310
|
bl_context: typing.Any
|
|
2354
2311
|
bl_label: typing.Any
|
|
@@ -2382,7 +2339,7 @@ class OBJECT_PT_bMinMaxConstraint(
|
|
|
2382
2339
|
...
|
|
2383
2340
|
|
|
2384
2341
|
class OBJECT_PT_bObjectSolverConstraint(
|
|
2385
|
-
|
|
2342
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2386
2343
|
):
|
|
2387
2344
|
bl_context: typing.Any
|
|
2388
2345
|
bl_label: typing.Any
|
|
@@ -2416,7 +2373,7 @@ class OBJECT_PT_bObjectSolverConstraint(
|
|
|
2416
2373
|
...
|
|
2417
2374
|
|
|
2418
2375
|
class OBJECT_PT_bPivotConstraint(
|
|
2419
|
-
|
|
2376
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2420
2377
|
):
|
|
2421
2378
|
bl_context: typing.Any
|
|
2422
2379
|
bl_label: typing.Any
|
|
@@ -2450,7 +2407,7 @@ class OBJECT_PT_bPivotConstraint(
|
|
|
2450
2407
|
...
|
|
2451
2408
|
|
|
2452
2409
|
class OBJECT_PT_bPythonConstraint(
|
|
2453
|
-
|
|
2410
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2454
2411
|
):
|
|
2455
2412
|
bl_context: typing.Any
|
|
2456
2413
|
bl_label: typing.Any
|
|
@@ -2484,7 +2441,7 @@ class OBJECT_PT_bPythonConstraint(
|
|
|
2484
2441
|
...
|
|
2485
2442
|
|
|
2486
2443
|
class OBJECT_PT_bRotLimitConstraint(
|
|
2487
|
-
|
|
2444
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2488
2445
|
):
|
|
2489
2446
|
bl_context: typing.Any
|
|
2490
2447
|
bl_label: typing.Any
|
|
@@ -2518,7 +2475,7 @@ class OBJECT_PT_bRotLimitConstraint(
|
|
|
2518
2475
|
...
|
|
2519
2476
|
|
|
2520
2477
|
class OBJECT_PT_bRotateLikeConstraint(
|
|
2521
|
-
|
|
2478
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2522
2479
|
):
|
|
2523
2480
|
bl_context: typing.Any
|
|
2524
2481
|
bl_label: typing.Any
|
|
@@ -2552,7 +2509,7 @@ class OBJECT_PT_bRotateLikeConstraint(
|
|
|
2552
2509
|
...
|
|
2553
2510
|
|
|
2554
2511
|
class OBJECT_PT_bSameVolumeConstraint(
|
|
2555
|
-
|
|
2512
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2556
2513
|
):
|
|
2557
2514
|
bl_context: typing.Any
|
|
2558
2515
|
bl_label: typing.Any
|
|
@@ -2586,7 +2543,7 @@ class OBJECT_PT_bSameVolumeConstraint(
|
|
|
2586
2543
|
...
|
|
2587
2544
|
|
|
2588
2545
|
class OBJECT_PT_bShrinkwrapConstraint(
|
|
2589
|
-
|
|
2546
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2590
2547
|
):
|
|
2591
2548
|
bl_context: typing.Any
|
|
2592
2549
|
bl_label: typing.Any
|
|
@@ -2620,7 +2577,7 @@ class OBJECT_PT_bShrinkwrapConstraint(
|
|
|
2620
2577
|
...
|
|
2621
2578
|
|
|
2622
2579
|
class OBJECT_PT_bSizeLikeConstraint(
|
|
2623
|
-
|
|
2580
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2624
2581
|
):
|
|
2625
2582
|
bl_context: typing.Any
|
|
2626
2583
|
bl_label: typing.Any
|
|
@@ -2654,7 +2611,7 @@ class OBJECT_PT_bSizeLikeConstraint(
|
|
|
2654
2611
|
...
|
|
2655
2612
|
|
|
2656
2613
|
class OBJECT_PT_bSizeLimitConstraint(
|
|
2657
|
-
|
|
2614
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2658
2615
|
):
|
|
2659
2616
|
bl_context: typing.Any
|
|
2660
2617
|
bl_label: typing.Any
|
|
@@ -2688,7 +2645,7 @@ class OBJECT_PT_bSizeLimitConstraint(
|
|
|
2688
2645
|
...
|
|
2689
2646
|
|
|
2690
2647
|
class OBJECT_PT_bStretchToConstraint(
|
|
2691
|
-
|
|
2648
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2692
2649
|
):
|
|
2693
2650
|
bl_context: typing.Any
|
|
2694
2651
|
bl_label: typing.Any
|
|
@@ -2722,7 +2679,7 @@ class OBJECT_PT_bStretchToConstraint(
|
|
|
2722
2679
|
...
|
|
2723
2680
|
|
|
2724
2681
|
class OBJECT_PT_bTrackToConstraint(
|
|
2725
|
-
|
|
2682
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2726
2683
|
):
|
|
2727
2684
|
bl_context: typing.Any
|
|
2728
2685
|
bl_label: typing.Any
|
|
@@ -2756,7 +2713,7 @@ class OBJECT_PT_bTrackToConstraint(
|
|
|
2756
2713
|
...
|
|
2757
2714
|
|
|
2758
2715
|
class OBJECT_PT_bTransLikeConstraint(
|
|
2759
|
-
|
|
2716
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2760
2717
|
):
|
|
2761
2718
|
bl_context: typing.Any
|
|
2762
2719
|
bl_label: typing.Any
|
|
@@ -2790,7 +2747,7 @@ class OBJECT_PT_bTransLikeConstraint(
|
|
|
2790
2747
|
...
|
|
2791
2748
|
|
|
2792
2749
|
class OBJECT_PT_bTransformCacheConstraint(
|
|
2793
|
-
|
|
2750
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2794
2751
|
):
|
|
2795
2752
|
bl_context: typing.Any
|
|
2796
2753
|
bl_label: typing.Any
|
|
@@ -2824,10 +2781,7 @@ class OBJECT_PT_bTransformCacheConstraint(
|
|
|
2824
2781
|
...
|
|
2825
2782
|
|
|
2826
2783
|
class OBJECT_PT_bTransformCacheConstraint_layers(
|
|
2827
|
-
bpy.types.Panel
|
|
2828
|
-
ObjectConstraintPanel,
|
|
2829
|
-
ConstraintButtonsSubPanel,
|
|
2830
|
-
bpy_types._GenericUI,
|
|
2784
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2831
2785
|
):
|
|
2832
2786
|
bl_context: typing.Any
|
|
2833
2787
|
bl_label: typing.Any
|
|
@@ -2861,10 +2815,7 @@ class OBJECT_PT_bTransformCacheConstraint_layers(
|
|
|
2861
2815
|
...
|
|
2862
2816
|
|
|
2863
2817
|
class OBJECT_PT_bTransformCacheConstraint_procedural(
|
|
2864
|
-
bpy.types.Panel
|
|
2865
|
-
ObjectConstraintPanel,
|
|
2866
|
-
ConstraintButtonsSubPanel,
|
|
2867
|
-
bpy_types._GenericUI,
|
|
2818
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2868
2819
|
):
|
|
2869
2820
|
bl_context: typing.Any
|
|
2870
2821
|
bl_label: typing.Any
|
|
@@ -2898,10 +2849,7 @@ class OBJECT_PT_bTransformCacheConstraint_procedural(
|
|
|
2898
2849
|
...
|
|
2899
2850
|
|
|
2900
2851
|
class OBJECT_PT_bTransformCacheConstraint_time(
|
|
2901
|
-
bpy.types.Panel
|
|
2902
|
-
ObjectConstraintPanel,
|
|
2903
|
-
ConstraintButtonsSubPanel,
|
|
2904
|
-
bpy_types._GenericUI,
|
|
2852
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2905
2853
|
):
|
|
2906
2854
|
bl_context: typing.Any
|
|
2907
2855
|
bl_label: typing.Any
|
|
@@ -2935,10 +2883,7 @@ class OBJECT_PT_bTransformCacheConstraint_time(
|
|
|
2935
2883
|
...
|
|
2936
2884
|
|
|
2937
2885
|
class OBJECT_PT_bTransformCacheConstraint_velocity(
|
|
2938
|
-
bpy.types.Panel
|
|
2939
|
-
ObjectConstraintPanel,
|
|
2940
|
-
ConstraintButtonsSubPanel,
|
|
2941
|
-
bpy_types._GenericUI,
|
|
2886
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2942
2887
|
):
|
|
2943
2888
|
bl_context: typing.Any
|
|
2944
2889
|
bl_label: typing.Any
|
|
@@ -2972,7 +2917,7 @@ class OBJECT_PT_bTransformCacheConstraint_velocity(
|
|
|
2972
2917
|
...
|
|
2973
2918
|
|
|
2974
2919
|
class OBJECT_PT_bTransformConstraint(
|
|
2975
|
-
|
|
2920
|
+
ConstraintButtonsPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
2976
2921
|
):
|
|
2977
2922
|
bl_context: typing.Any
|
|
2978
2923
|
bl_label: typing.Any
|
|
@@ -3006,10 +2951,7 @@ class OBJECT_PT_bTransformConstraint(
|
|
|
3006
2951
|
...
|
|
3007
2952
|
|
|
3008
2953
|
class OBJECT_PT_bTransformConstraint_destination(
|
|
3009
|
-
bpy.types.Panel
|
|
3010
|
-
ObjectConstraintPanel,
|
|
3011
|
-
ConstraintButtonsSubPanel,
|
|
3012
|
-
bpy_types._GenericUI,
|
|
2954
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
3013
2955
|
):
|
|
3014
2956
|
bl_context: typing.Any
|
|
3015
2957
|
bl_label: typing.Any
|
|
@@ -3043,10 +2985,7 @@ class OBJECT_PT_bTransformConstraint_destination(
|
|
|
3043
2985
|
...
|
|
3044
2986
|
|
|
3045
2987
|
class OBJECT_PT_bTransformConstraint_source(
|
|
3046
|
-
bpy.types.Panel
|
|
3047
|
-
ObjectConstraintPanel,
|
|
3048
|
-
ConstraintButtonsSubPanel,
|
|
3049
|
-
bpy_types._GenericUI,
|
|
2988
|
+
ConstraintButtonsSubPanel, ObjectConstraintPanel, bpy.types.Panel
|
|
3050
2989
|
):
|
|
3051
2990
|
bl_context: typing.Any
|
|
3052
2991
|
bl_label: typing.Any
|
|
@@ -3079,9 +3018,7 @@ class OBJECT_PT_bTransformConstraint_source(
|
|
|
3079
3018
|
"""
|
|
3080
3019
|
...
|
|
3081
3020
|
|
|
3082
|
-
class OBJECT_PT_constraints(
|
|
3083
|
-
bpy.types.Panel, ObjectConstraintPanel, bpy_types._GenericUI
|
|
3084
|
-
):
|
|
3021
|
+
class OBJECT_PT_constraints(ObjectConstraintPanel, bpy.types.Panel):
|
|
3085
3022
|
bl_context: typing.Any
|
|
3086
3023
|
bl_label: typing.Any
|
|
3087
3024
|
bl_options: typing.Any
|