fake-bpy-module 20240706__py3-none-any.whl → 20240708__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 (63) hide show
  1. bl_operators/assets/__init__.pyi +8 -8
  2. bl_operators/image_as_planes/__init__.pyi +43 -43
  3. bl_operators/node/__init__.pyi +234 -234
  4. bl_operators/object_quick_effects/__init__.pyi +21 -21
  5. bl_operators/presets/__init__.pyi +388 -388
  6. bl_ui/properties_collection/__init__.pyi +12 -12
  7. bl_ui/properties_constraint/__init__.pyi +954 -954
  8. bl_ui/properties_data_armature/__init__.pyi +85 -85
  9. bl_ui/properties_data_bone/__init__.pyi +12 -12
  10. bl_ui/properties_data_curve/__init__.pyi +92 -92
  11. bl_ui/properties_data_curves/__init__.pyi +12 -12
  12. bl_ui/properties_data_empty/__init__.pyi +12 -12
  13. bl_ui/properties_data_gpencil/__init__.pyi +265 -265
  14. bl_ui/properties_data_grease_pencil/__init__.pyi +312 -312
  15. bl_ui/properties_data_lattice/__init__.pyi +12 -12
  16. bl_ui/properties_data_light/__init__.pyi +12 -12
  17. bl_ui/properties_data_lightprobe/__init__.pyi +12 -12
  18. bl_ui/properties_data_mesh/__init__.pyi +527 -527
  19. bl_ui/properties_data_metaball/__init__.pyi +12 -12
  20. bl_ui/properties_data_modifier/__init__.pyi +19 -19
  21. bl_ui/properties_data_pointcloud/__init__.pyi +140 -140
  22. bl_ui/properties_data_shaderfx/__init__.pyi +5 -5
  23. bl_ui/properties_data_speaker/__init__.pyi +12 -12
  24. bl_ui/properties_data_volume/__init__.pyi +65 -65
  25. bl_ui/properties_freestyle/__init__.pyi +248 -248
  26. bl_ui/properties_material/__init__.pyi +145 -145
  27. bl_ui/properties_material_gpencil/__init__.pyi +86 -86
  28. bl_ui/properties_object/__init__.pyi +75 -75
  29. bl_ui/properties_output/__init__.pyi +201 -201
  30. bl_ui/properties_particle/__init__.pyi +220 -220
  31. bl_ui/properties_physics_cloth/__init__.pyi +12 -12
  32. bl_ui/properties_physics_common/__init__.pyi +12 -12
  33. bl_ui/properties_physics_dynamicpaint/__init__.pyi +187 -187
  34. bl_ui/properties_physics_field/__init__.pyi +19 -19
  35. bl_ui/properties_physics_fluid/__init__.pyi +61 -61
  36. bl_ui/properties_physics_rigidbody/__init__.pyi +5 -5
  37. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +5 -5
  38. bl_ui/properties_physics_softbody/__init__.pyi +12 -12
  39. bl_ui/properties_render/__init__.pyi +217 -217
  40. bl_ui/properties_scene/__init__.pyi +143 -143
  41. bl_ui/properties_texture/__init__.pyi +156 -156
  42. bl_ui/properties_view_layer/__init__.pyi +78 -78
  43. bl_ui/properties_workspace/__init__.pyi +64 -64
  44. bl_ui/properties_world/__init__.pyi +12 -12
  45. bl_ui/space_clip/__init__.pyi +366 -366
  46. bl_ui/space_dopesheet/__init__.pyi +176 -176
  47. bl_ui/space_filebrowser/__init__.pyi +735 -735
  48. bl_ui/space_image/__init__.pyi +646 -646
  49. bl_ui/space_sequencer/__init__.pyi +841 -389
  50. bl_ui/space_time/__init__.pyi +11 -11
  51. bl_ui/space_userpref/__init__.pyi +684 -684
  52. bl_ui/space_view3d/__init__.pyi +1152 -1152
  53. bl_ui/space_view3d_toolbar/__init__.pyi +2831 -2831
  54. bmesh/types/__init__.pyi +48 -0
  55. bpy/types/__init__.pyi +70624 -70606
  56. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/METADATA +4 -4
  57. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/RECORD +63 -63
  58. freestyle/utils/__init__.pyi +1 -1
  59. keyingsets_builtins/__init__.pyi +87 -87
  60. mathutils/__init__.pyi +156 -50
  61. nodeitems_builtins/__init__.pyi +7 -7
  62. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/WHEEL +0 -0
  63. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/top_level.txt +0 -0
@@ -7,21 +7,55 @@ import bpy_types
7
7
  GenericType1 = typing.TypeVar("GenericType1")
8
8
  GenericType2 = typing.TypeVar("GenericType2")
9
9
 
10
- class BoneConstraintPanel:
10
+ class BONE_PT_bActionConstraint(
11
+ BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
12
+ ):
11
13
  bl_context: typing.Any
14
+ bl_label: typing.Any
15
+ bl_options: typing.Any
16
+ bl_region_type: typing.Any
17
+ bl_rna: typing.Any
18
+ bl_space_type: typing.Any
19
+ id_data: typing.Any
12
20
 
13
- def poll(self, context):
21
+ def append(self, draw_func):
22
+ """Append a draw function to this menu,
23
+ takes the same arguments as the menus draw function
24
+
25
+ :param draw_func:
14
26
  """
27
+ ...
15
28
 
16
- :param context:
29
+ def as_pointer(self) -> int:
30
+ """Returns the memory address which holds a pointer to Blender's internal data
31
+
32
+ :return: int (memory address).
33
+ :rtype: int
17
34
  """
18
35
  ...
19
36
 
20
- class ConstraintButtonsPanel:
21
- bl_label: typing.Any
22
- bl_options: typing.Any
23
- bl_region_type: typing.Any
24
- bl_space_type: typing.Any
37
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
38
+ """
39
+
40
+ :return: The RNA type or default when not found.
41
+ :rtype: bpy.types.Struct
42
+ """
43
+ ...
44
+
45
+ def bl_rna_get_subclass_py(self) -> typing.Any:
46
+ """
47
+
48
+ :return: The class or default when not found.
49
+ :rtype: typing.Any
50
+ """
51
+ ...
52
+
53
+ def draw(self, context):
54
+ """
55
+
56
+ :param context:
57
+ """
58
+ ...
25
59
 
26
60
  def draw_action(self, context):
27
61
  """
@@ -241,144 +275,218 @@ class ConstraintButtonsPanel:
241
275
  """
242
276
  ...
243
277
 
244
- def get_constraint(self, _context):
245
- """
278
+ def driver_add(self) -> bpy.types.FCurve:
279
+ """Adds driver(s) to the given property
246
280
 
247
- :param _context:
281
+ :return: The driver(s) added.
282
+ :rtype: bpy.types.FCurve
248
283
  """
249
284
  ...
250
285
 
251
- def space_template(self, layout, con, target=True, owner=True, separator=True):
286
+ def driver_remove(self) -> bool:
287
+ """Remove driver(s) from the given property
288
+
289
+ :return: Success of driver removal.
290
+ :rtype: bool
252
291
  """
292
+ ...
293
+
294
+ def get(self):
295
+ """Returns the value of the custom property assigned to key or default
296
+ when not found (matches Python's dictionary function of the same name).
253
297
 
254
- :param layout:
255
- :param con:
256
- :param target:
257
- :param owner:
258
- :param separator:
259
298
  """
260
299
  ...
261
300
 
262
- def target_template(self, layout, con, subtargets=True):
301
+ def get_constraint(self, _context):
263
302
  """
264
303
 
265
- :param layout:
266
- :param con:
267
- :param subtargets:
304
+ :param _context:
268
305
  """
269
306
  ...
270
307
 
271
- class ConstraintButtonsSubPanel:
272
- bl_label: typing.Any
273
- bl_region_type: typing.Any
274
- bl_space_type: typing.Any
275
-
276
- def draw_action_action(self, context):
308
+ def id_properties_clear(self):
277
309
  """
278
310
 
279
- :param context:
311
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
280
312
  """
281
313
  ...
282
314
 
283
- def draw_action_target(self, context):
315
+ def id_properties_ensure(self):
284
316
  """
285
317
 
286
- :param context:
318
+ :return: the parent group for an RNA struct's custom IDProperties.
287
319
  """
288
320
  ...
289
321
 
290
- def draw_armature_bones(self, context):
322
+ def id_properties_ui(self):
291
323
  """
292
324
 
293
- :param context:
325
+ :return: Return an object used to manage an IDProperty's UI data.
294
326
  """
295
327
  ...
296
328
 
297
- def draw_spline_ik_chain_scaling(self, context):
298
- """
329
+ def is_extended(self): ...
330
+ def is_property_hidden(self) -> bool:
331
+ """Check if a property is hidden.
299
332
 
300
- :param context:
333
+ :return: True when the property is hidden.
334
+ :rtype: bool
301
335
  """
302
336
  ...
303
337
 
304
- def draw_spline_ik_fitting(self, context):
338
+ def is_property_overridable_library(self) -> bool:
339
+ """Check if a property is overridable.
340
+
341
+ :return: True when the property is overridable.
342
+ :rtype: bool
305
343
  """
344
+ ...
306
345
 
307
- :param context:
346
+ def is_property_readonly(self) -> bool:
347
+ """Check if a property is readonly.
348
+
349
+ :return: True when the property is readonly (not writable).
350
+ :rtype: bool
308
351
  """
309
352
  ...
310
353
 
311
- def draw_transform_cache_layers(self, context):
354
+ def is_property_set(self) -> bool:
355
+ """Check if a property is set, use for testing operator properties.
356
+
357
+ :return: True when the property has been set.
358
+ :rtype: bool
312
359
  """
360
+ ...
313
361
 
314
- :param context:
362
+ def items(self):
363
+ """Returns the items of this objects custom properties (matches Python's
364
+ dictionary function of the same name).
365
+
366
+ :return: custom property key, value pairs.
315
367
  """
316
368
  ...
317
369
 
318
- def draw_transform_cache_procedural(self, context):
370
+ def keyframe_delete(self) -> bool:
371
+ """Remove a keyframe from this properties fcurve.
372
+
373
+ :return: Success of keyframe deletion.
374
+ :rtype: bool
319
375
  """
376
+ ...
320
377
 
321
- :param context:
378
+ def keyframe_insert(self) -> bool:
379
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
380
+
381
+ :return: Success of keyframe insertion.
382
+ :rtype: bool
322
383
  """
323
384
  ...
324
385
 
325
- def draw_transform_cache_subpanel(self, context, template_func):
386
+ def keys(self):
387
+ """Returns the keys of this objects custom properties (matches Python's
388
+ dictionary function of the same name).
389
+
390
+ :return: custom property keys.
326
391
  """
392
+ ...
327
393
 
328
- :param context:
329
- :param template_func:
394
+ def path_from_id(self) -> str:
395
+ """Returns the data path from the ID to this object (string).
396
+
397
+ :return: The path from `bpy.types.bpy_struct.id_data`
398
+ to this struct and property (when given).
399
+ :rtype: str
330
400
  """
331
401
  ...
332
402
 
333
- def draw_transform_cache_time(self, context):
403
+ def path_resolve(self):
404
+ """Returns the property from the path, raise an exception when not found."""
405
+ ...
406
+
407
+ def poll(self, context):
334
408
  """
335
409
 
336
410
  :param context:
337
411
  """
338
412
  ...
339
413
 
340
- def draw_transform_cache_velocity(self, context):
414
+ def pop(self):
415
+ """Remove and return the value of the custom property assigned to key or default
416
+ when not found (matches Python's dictionary function of the same name).
417
+
341
418
  """
419
+ ...
342
420
 
343
- :param context:
421
+ def prepend(self, draw_func):
422
+ """Prepend a draw function to this menu, takes the same arguments as
423
+ the menus draw function
424
+
425
+ :param draw_func:
344
426
  """
345
427
  ...
346
428
 
347
- def draw_transform_from(self, context):
429
+ def property_overridable_library_set(self) -> bool:
430
+ """Define a property as overridable or not (only for custom properties!).
431
+
432
+ :return: True when the overridable status of the property was successfully set.
433
+ :rtype: bool
348
434
  """
435
+ ...
349
436
 
350
- :param context:
437
+ def property_unset(self):
438
+ """Unset a property, will use default value afterward."""
439
+ ...
440
+
441
+ def remove(self, draw_func):
442
+ """Remove a draw function that has been added to this menu
443
+
444
+ :param draw_func:
351
445
  """
352
446
  ...
353
447
 
354
- def draw_transform_to(self, context):
448
+ def space_template(self, layout, con, target=True, owner=True, separator=True):
355
449
  """
356
450
 
357
- :param context:
451
+ :param layout:
452
+ :param con:
453
+ :param target:
454
+ :param owner:
455
+ :param separator:
358
456
  """
359
457
  ...
360
458
 
361
- def get_constraint(self, _context):
459
+ def target_template(self, layout, con, subtargets=True):
362
460
  """
363
461
 
364
- :param _context:
462
+ :param layout:
463
+ :param con:
464
+ :param subtargets:
365
465
  """
366
466
  ...
367
467
 
368
- class ObjectConstraintPanel:
369
- bl_context: typing.Any
468
+ def type_recast(self):
469
+ """Return a new instance, this is needed because types
470
+ such as textures can be changed at runtime.
370
471
 
371
- def poll(self, context):
472
+ :return: a new instance of this object with the type initialized again.
372
473
  """
474
+ ...
373
475
 
374
- :param context:
476
+ def values(self):
477
+ """Returns the values of this objects custom properties (matches Python's
478
+ dictionary function of the same name).
479
+
480
+ :return: custom property values.
375
481
  """
376
482
  ...
377
483
 
378
- class BONE_PT_constraints(BoneConstraintPanel, bpy_types._GenericUI):
484
+ class BONE_PT_bActionConstraint_action(
485
+ BoneConstraintPanel, ConstraintButtonsSubPanel, bpy_types._GenericUI
486
+ ):
379
487
  bl_context: typing.Any
380
488
  bl_label: typing.Any
381
- bl_options: typing.Any
489
+ bl_parent_id: typing.Any
382
490
  bl_region_type: typing.Any
383
491
  bl_rna: typing.Any
384
492
  bl_space_type: typing.Any
@@ -416,10 +524,95 @@ class BONE_PT_constraints(BoneConstraintPanel, bpy_types._GenericUI):
416
524
  """
417
525
  ...
418
526
 
419
- def draw(self, _context):
527
+ def draw(self, context):
420
528
  """
421
529
 
422
- :param _context:
530
+ :param context:
531
+ """
532
+ ...
533
+
534
+ def draw_action_action(self, context):
535
+ """
536
+
537
+ :param context:
538
+ """
539
+ ...
540
+
541
+ def draw_action_target(self, context):
542
+ """
543
+
544
+ :param context:
545
+ """
546
+ ...
547
+
548
+ def draw_armature_bones(self, context):
549
+ """
550
+
551
+ :param context:
552
+ """
553
+ ...
554
+
555
+ def draw_spline_ik_chain_scaling(self, context):
556
+ """
557
+
558
+ :param context:
559
+ """
560
+ ...
561
+
562
+ def draw_spline_ik_fitting(self, context):
563
+ """
564
+
565
+ :param context:
566
+ """
567
+ ...
568
+
569
+ def draw_transform_cache_layers(self, context):
570
+ """
571
+
572
+ :param context:
573
+ """
574
+ ...
575
+
576
+ def draw_transform_cache_procedural(self, context):
577
+ """
578
+
579
+ :param context:
580
+ """
581
+ ...
582
+
583
+ def draw_transform_cache_subpanel(self, context, template_func):
584
+ """
585
+
586
+ :param context:
587
+ :param template_func:
588
+ """
589
+ ...
590
+
591
+ def draw_transform_cache_time(self, context):
592
+ """
593
+
594
+ :param context:
595
+ """
596
+ ...
597
+
598
+ def draw_transform_cache_velocity(self, context):
599
+ """
600
+
601
+ :param context:
602
+ """
603
+ ...
604
+
605
+ def draw_transform_from(self, context):
606
+ """
607
+
608
+ :param context:
609
+ """
610
+ ...
611
+
612
+ def draw_transform_to(self, context):
613
+ """
614
+
615
+ :param context:
423
616
  """
424
617
  ...
425
618
 
@@ -446,6 +639,13 @@ class BONE_PT_constraints(BoneConstraintPanel, bpy_types._GenericUI):
446
639
  """
447
640
  ...
448
641
 
642
+ def get_constraint(self, _context):
643
+ """
644
+
645
+ :param _context:
646
+ """
647
+ ...
648
+
449
649
  def id_properties_clear(self):
450
650
  """
451
651
 
@@ -602,12 +802,12 @@ class BONE_PT_constraints(BoneConstraintPanel, bpy_types._GenericUI):
602
802
  """
603
803
  ...
604
804
 
605
- class BONE_PT_bActionConstraint(
606
- BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
805
+ class BONE_PT_bActionConstraint_target(
806
+ BoneConstraintPanel, ConstraintButtonsSubPanel, bpy_types._GenericUI
607
807
  ):
608
808
  bl_context: typing.Any
609
809
  bl_label: typing.Any
610
- bl_options: typing.Any
810
+ bl_parent_id: typing.Any
611
811
  bl_region_type: typing.Any
612
812
  bl_rna: typing.Any
613
813
  bl_space_type: typing.Any
@@ -652,218 +852,85 @@ class BONE_PT_bActionConstraint(
652
852
  """
653
853
  ...
654
854
 
655
- def draw_action(self, context):
656
- """
657
-
658
- :param context:
659
- """
660
- ...
661
-
662
- def draw_armature(self, context):
663
- """
664
-
665
- :param context:
666
- """
667
- ...
668
-
669
- def draw_camera_solver(self, context):
670
- """
671
-
672
- :param context:
673
- """
674
- ...
675
-
676
- def draw_childof(self, context):
677
- """
678
-
679
- :param context:
680
- """
681
- ...
682
-
683
- def draw_clamp_to(self, context):
684
- """
685
-
686
- :param context:
687
- """
688
- ...
689
-
690
- def draw_damp_track(self, context):
691
- """
692
-
693
- :param context:
694
- """
695
- ...
696
-
697
- def draw_dist_limit(self, context):
698
- """
699
-
700
- :param context:
701
- """
702
- ...
703
-
704
- def draw_follow_path(self, context):
705
- """
706
-
707
- :param context:
708
- """
709
- ...
710
-
711
- def draw_follow_track(self, context):
712
- """
713
-
714
- :param context:
715
- """
716
- ...
717
-
718
- def draw_header(self, context):
719
- """
720
-
721
- :param context:
722
- """
723
- ...
724
-
725
- def draw_influence(self, layout, con):
726
- """
727
-
728
- :param layout:
729
- :param con:
730
- """
731
- ...
732
-
733
- def draw_kinematic(self, context):
734
- """
735
-
736
- :param context:
737
- """
738
- ...
739
-
740
- def draw_loc_limit(self, context):
741
- """
742
-
743
- :param context:
744
- """
745
- ...
746
-
747
- def draw_locate_like(self, context):
748
- """
749
-
750
- :param context:
751
- """
752
- ...
753
-
754
- def draw_lock_track(self, context):
755
- """
756
-
757
- :param context:
758
- """
759
- ...
760
-
761
- def draw_min_max(self, context):
762
- """
763
-
764
- :param context:
765
- """
766
- ...
767
-
768
- def draw_object_solver(self, context):
769
- """
770
-
771
- :param context:
772
- """
773
- ...
774
-
775
- def draw_pivot(self, context):
776
- """
777
-
778
- :param context:
779
- """
780
- ...
781
-
782
- def draw_python_constraint(self, _context):
783
- """
784
-
785
- :param _context:
786
- """
787
- ...
788
-
789
- def draw_rot_limit(self, context):
855
+ def draw_action_action(self, context):
790
856
  """
791
857
 
792
858
  :param context:
793
859
  """
794
860
  ...
795
861
 
796
- def draw_rotate_like(self, context):
862
+ def draw_action_target(self, context):
797
863
  """
798
864
 
799
865
  :param context:
800
866
  """
801
867
  ...
802
868
 
803
- def draw_same_volume(self, context):
869
+ def draw_armature_bones(self, context):
804
870
  """
805
871
 
806
872
  :param context:
807
873
  """
808
874
  ...
809
875
 
810
- def draw_shrinkwrap(self, context):
876
+ def draw_spline_ik_chain_scaling(self, context):
811
877
  """
812
878
 
813
879
  :param context:
814
880
  """
815
881
  ...
816
882
 
817
- def draw_size_like(self, context):
883
+ def draw_spline_ik_fitting(self, context):
818
884
  """
819
885
 
820
886
  :param context:
821
887
  """
822
888
  ...
823
889
 
824
- def draw_size_limit(self, context):
890
+ def draw_transform_cache_layers(self, context):
825
891
  """
826
892
 
827
893
  :param context:
828
894
  """
829
895
  ...
830
896
 
831
- def draw_spline_ik(self, context):
897
+ def draw_transform_cache_procedural(self, context):
832
898
  """
833
899
 
834
900
  :param context:
835
901
  """
836
902
  ...
837
903
 
838
- def draw_stretch_to(self, context):
904
+ def draw_transform_cache_subpanel(self, context, template_func):
839
905
  """
840
906
 
841
907
  :param context:
908
+ :param template_func:
842
909
  """
843
910
  ...
844
911
 
845
- def draw_trackto(self, context):
912
+ def draw_transform_cache_time(self, context):
846
913
  """
847
914
 
848
915
  :param context:
849
916
  """
850
917
  ...
851
918
 
852
- def draw_trans_like(self, context):
919
+ def draw_transform_cache_velocity(self, context):
853
920
  """
854
921
 
855
922
  :param context:
856
923
  """
857
924
  ...
858
925
 
859
- def draw_transform(self, context):
926
+ def draw_transform_from(self, context):
860
927
  """
861
928
 
862
929
  :param context:
863
930
  """
864
931
  ...
865
932
 
866
- def draw_transform_cache(self, context):
933
+ def draw_transform_to(self, context):
867
934
  """
868
935
 
869
936
  :param context:
@@ -1040,26 +1107,6 @@ class BONE_PT_bActionConstraint(
1040
1107
  """
1041
1108
  ...
1042
1109
 
1043
- def space_template(self, layout, con, target=True, owner=True, separator=True):
1044
- """
1045
-
1046
- :param layout:
1047
- :param con:
1048
- :param target:
1049
- :param owner:
1050
- :param separator:
1051
- """
1052
- ...
1053
-
1054
- def target_template(self, layout, con, subtargets=True):
1055
- """
1056
-
1057
- :param layout:
1058
- :param con:
1059
- :param subtargets:
1060
- """
1061
- ...
1062
-
1063
1110
  def type_recast(self):
1064
1111
  """Return a new instance, this is needed because types
1065
1112
  such as textures can be changed at runtime.
@@ -1550,12 +1597,12 @@ class BONE_PT_bArmatureConstraint(
1550
1597
  """
1551
1598
  ...
1552
1599
 
1553
- class BONE_PT_bCameraSolverConstraint(
1554
- BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
1600
+ class BONE_PT_bArmatureConstraint_bones(
1601
+ BoneConstraintPanel, ConstraintButtonsSubPanel, bpy_types._GenericUI
1555
1602
  ):
1556
1603
  bl_context: typing.Any
1557
1604
  bl_label: typing.Any
1558
- bl_options: typing.Any
1605
+ bl_parent_id: typing.Any
1559
1606
  bl_region_type: typing.Any
1560
1607
  bl_rna: typing.Any
1561
1608
  bl_space_type: typing.Any
@@ -1600,218 +1647,85 @@ class BONE_PT_bCameraSolverConstraint(
1600
1647
  """
1601
1648
  ...
1602
1649
 
1603
- def draw_action(self, context):
1604
- """
1605
-
1606
- :param context:
1607
- """
1608
- ...
1609
-
1610
- def draw_armature(self, context):
1611
- """
1612
-
1613
- :param context:
1614
- """
1615
- ...
1616
-
1617
- def draw_camera_solver(self, context):
1618
- """
1619
-
1620
- :param context:
1621
- """
1622
- ...
1623
-
1624
- def draw_childof(self, context):
1625
- """
1626
-
1627
- :param context:
1628
- """
1629
- ...
1630
-
1631
- def draw_clamp_to(self, context):
1632
- """
1633
-
1634
- :param context:
1635
- """
1636
- ...
1637
-
1638
- def draw_damp_track(self, context):
1639
- """
1640
-
1641
- :param context:
1642
- """
1643
- ...
1644
-
1645
- def draw_dist_limit(self, context):
1646
- """
1647
-
1648
- :param context:
1649
- """
1650
- ...
1651
-
1652
- def draw_follow_path(self, context):
1653
- """
1654
-
1655
- :param context:
1656
- """
1657
- ...
1658
-
1659
- def draw_follow_track(self, context):
1660
- """
1661
-
1662
- :param context:
1663
- """
1664
- ...
1665
-
1666
- def draw_header(self, context):
1667
- """
1668
-
1669
- :param context:
1670
- """
1671
- ...
1672
-
1673
- def draw_influence(self, layout, con):
1674
- """
1675
-
1676
- :param layout:
1677
- :param con:
1678
- """
1679
- ...
1680
-
1681
- def draw_kinematic(self, context):
1682
- """
1683
-
1684
- :param context:
1685
- """
1686
- ...
1687
-
1688
- def draw_loc_limit(self, context):
1689
- """
1690
-
1691
- :param context:
1692
- """
1693
- ...
1694
-
1695
- def draw_locate_like(self, context):
1696
- """
1697
-
1698
- :param context:
1699
- """
1700
- ...
1701
-
1702
- def draw_lock_track(self, context):
1703
- """
1704
-
1705
- :param context:
1706
- """
1707
- ...
1708
-
1709
- def draw_min_max(self, context):
1710
- """
1711
-
1712
- :param context:
1713
- """
1714
- ...
1715
-
1716
- def draw_object_solver(self, context):
1717
- """
1718
-
1719
- :param context:
1720
- """
1721
- ...
1722
-
1723
- def draw_pivot(self, context):
1724
- """
1725
-
1726
- :param context:
1727
- """
1728
- ...
1729
-
1730
- def draw_python_constraint(self, _context):
1731
- """
1732
-
1733
- :param _context:
1734
- """
1735
- ...
1736
-
1737
- def draw_rot_limit(self, context):
1650
+ def draw_action_action(self, context):
1738
1651
  """
1739
1652
 
1740
1653
  :param context:
1741
1654
  """
1742
1655
  ...
1743
1656
 
1744
- def draw_rotate_like(self, context):
1657
+ def draw_action_target(self, context):
1745
1658
  """
1746
1659
 
1747
1660
  :param context:
1748
1661
  """
1749
1662
  ...
1750
1663
 
1751
- def draw_same_volume(self, context):
1664
+ def draw_armature_bones(self, context):
1752
1665
  """
1753
1666
 
1754
1667
  :param context:
1755
1668
  """
1756
1669
  ...
1757
1670
 
1758
- def draw_shrinkwrap(self, context):
1671
+ def draw_spline_ik_chain_scaling(self, context):
1759
1672
  """
1760
1673
 
1761
1674
  :param context:
1762
1675
  """
1763
1676
  ...
1764
1677
 
1765
- def draw_size_like(self, context):
1678
+ def draw_spline_ik_fitting(self, context):
1766
1679
  """
1767
1680
 
1768
1681
  :param context:
1769
1682
  """
1770
1683
  ...
1771
1684
 
1772
- def draw_size_limit(self, context):
1685
+ def draw_transform_cache_layers(self, context):
1773
1686
  """
1774
1687
 
1775
1688
  :param context:
1776
1689
  """
1777
1690
  ...
1778
1691
 
1779
- def draw_spline_ik(self, context):
1692
+ def draw_transform_cache_procedural(self, context):
1780
1693
  """
1781
1694
 
1782
1695
  :param context:
1783
1696
  """
1784
1697
  ...
1785
1698
 
1786
- def draw_stretch_to(self, context):
1699
+ def draw_transform_cache_subpanel(self, context, template_func):
1787
1700
  """
1788
1701
 
1789
1702
  :param context:
1703
+ :param template_func:
1790
1704
  """
1791
1705
  ...
1792
1706
 
1793
- def draw_trackto(self, context):
1707
+ def draw_transform_cache_time(self, context):
1794
1708
  """
1795
1709
 
1796
1710
  :param context:
1797
1711
  """
1798
1712
  ...
1799
1713
 
1800
- def draw_trans_like(self, context):
1714
+ def draw_transform_cache_velocity(self, context):
1801
1715
  """
1802
1716
 
1803
1717
  :param context:
1804
1718
  """
1805
1719
  ...
1806
1720
 
1807
- def draw_transform(self, context):
1721
+ def draw_transform_from(self, context):
1808
1722
  """
1809
1723
 
1810
1724
  :param context:
1811
1725
  """
1812
1726
  ...
1813
1727
 
1814
- def draw_transform_cache(self, context):
1728
+ def draw_transform_to(self, context):
1815
1729
  """
1816
1730
 
1817
1731
  :param context:
@@ -1988,26 +1902,6 @@ class BONE_PT_bCameraSolverConstraint(
1988
1902
  """
1989
1903
  ...
1990
1904
 
1991
- def space_template(self, layout, con, target=True, owner=True, separator=True):
1992
- """
1993
-
1994
- :param layout:
1995
- :param con:
1996
- :param target:
1997
- :param owner:
1998
- :param separator:
1999
- """
2000
- ...
2001
-
2002
- def target_template(self, layout, con, subtargets=True):
2003
- """
2004
-
2005
- :param layout:
2006
- :param con:
2007
- :param subtargets:
2008
- """
2009
- ...
2010
-
2011
1905
  def type_recast(self):
2012
1906
  """Return a new instance, this is needed because types
2013
1907
  such as textures can be changed at runtime.
@@ -2024,7 +1918,7 @@ class BONE_PT_bCameraSolverConstraint(
2024
1918
  """
2025
1919
  ...
2026
1920
 
2027
- class BONE_PT_bChildOfConstraint(
1921
+ class BONE_PT_bCameraSolverConstraint(
2028
1922
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
2029
1923
  ):
2030
1924
  bl_context: typing.Any
@@ -2498,7 +2392,7 @@ class BONE_PT_bChildOfConstraint(
2498
2392
  """
2499
2393
  ...
2500
2394
 
2501
- class BONE_PT_bClampToConstraint(
2395
+ class BONE_PT_bChildOfConstraint(
2502
2396
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
2503
2397
  ):
2504
2398
  bl_context: typing.Any
@@ -2972,7 +2866,7 @@ class BONE_PT_bClampToConstraint(
2972
2866
  """
2973
2867
  ...
2974
2868
 
2975
- class BONE_PT_bDampTrackConstraint(
2869
+ class BONE_PT_bClampToConstraint(
2976
2870
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
2977
2871
  ):
2978
2872
  bl_context: typing.Any
@@ -3446,7 +3340,7 @@ class BONE_PT_bDampTrackConstraint(
3446
3340
  """
3447
3341
  ...
3448
3342
 
3449
- class BONE_PT_bDistLimitConstraint(
3343
+ class BONE_PT_bDampTrackConstraint(
3450
3344
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
3451
3345
  ):
3452
3346
  bl_context: typing.Any
@@ -3920,7 +3814,7 @@ class BONE_PT_bDistLimitConstraint(
3920
3814
  """
3921
3815
  ...
3922
3816
 
3923
- class BONE_PT_bFollowPathConstraint(
3817
+ class BONE_PT_bDistLimitConstraint(
3924
3818
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
3925
3819
  ):
3926
3820
  bl_context: typing.Any
@@ -4394,7 +4288,7 @@ class BONE_PT_bFollowPathConstraint(
4394
4288
  """
4395
4289
  ...
4396
4290
 
4397
- class BONE_PT_bFollowTrackConstraint(
4291
+ class BONE_PT_bFollowPathConstraint(
4398
4292
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
4399
4293
  ):
4400
4294
  bl_context: typing.Any
@@ -4868,7 +4762,7 @@ class BONE_PT_bFollowTrackConstraint(
4868
4762
  """
4869
4763
  ...
4870
4764
 
4871
- class BONE_PT_bKinematicConstraint(
4765
+ class BONE_PT_bFollowTrackConstraint(
4872
4766
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
4873
4767
  ):
4874
4768
  bl_context: typing.Any
@@ -5342,7 +5236,7 @@ class BONE_PT_bKinematicConstraint(
5342
5236
  """
5343
5237
  ...
5344
5238
 
5345
- class BONE_PT_bLocLimitConstraint(
5239
+ class BONE_PT_bKinematicConstraint(
5346
5240
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
5347
5241
  ):
5348
5242
  bl_context: typing.Any
@@ -5816,7 +5710,7 @@ class BONE_PT_bLocLimitConstraint(
5816
5710
  """
5817
5711
  ...
5818
5712
 
5819
- class BONE_PT_bLocateLikeConstraint(
5713
+ class BONE_PT_bLocLimitConstraint(
5820
5714
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
5821
5715
  ):
5822
5716
  bl_context: typing.Any
@@ -6290,7 +6184,7 @@ class BONE_PT_bLocateLikeConstraint(
6290
6184
  """
6291
6185
  ...
6292
6186
 
6293
- class BONE_PT_bLockTrackConstraint(
6187
+ class BONE_PT_bLocateLikeConstraint(
6294
6188
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
6295
6189
  ):
6296
6190
  bl_context: typing.Any
@@ -6764,7 +6658,7 @@ class BONE_PT_bLockTrackConstraint(
6764
6658
  """
6765
6659
  ...
6766
6660
 
6767
- class BONE_PT_bMinMaxConstraint(
6661
+ class BONE_PT_bLockTrackConstraint(
6768
6662
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
6769
6663
  ):
6770
6664
  bl_context: typing.Any
@@ -7238,7 +7132,7 @@ class BONE_PT_bMinMaxConstraint(
7238
7132
  """
7239
7133
  ...
7240
7134
 
7241
- class BONE_PT_bObjectSolverConstraint(
7135
+ class BONE_PT_bMinMaxConstraint(
7242
7136
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
7243
7137
  ):
7244
7138
  bl_context: typing.Any
@@ -7712,7 +7606,7 @@ class BONE_PT_bObjectSolverConstraint(
7712
7606
  """
7713
7607
  ...
7714
7608
 
7715
- class BONE_PT_bPivotConstraint(
7609
+ class BONE_PT_bObjectSolverConstraint(
7716
7610
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
7717
7611
  ):
7718
7612
  bl_context: typing.Any
@@ -8186,7 +8080,7 @@ class BONE_PT_bPivotConstraint(
8186
8080
  """
8187
8081
  ...
8188
8082
 
8189
- class BONE_PT_bPythonConstraint(
8083
+ class BONE_PT_bPivotConstraint(
8190
8084
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
8191
8085
  ):
8192
8086
  bl_context: typing.Any
@@ -8660,7 +8554,7 @@ class BONE_PT_bPythonConstraint(
8660
8554
  """
8661
8555
  ...
8662
8556
 
8663
- class BONE_PT_bRotLimitConstraint(
8557
+ class BONE_PT_bPythonConstraint(
8664
8558
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
8665
8559
  ):
8666
8560
  bl_context: typing.Any
@@ -9134,7 +9028,7 @@ class BONE_PT_bRotLimitConstraint(
9134
9028
  """
9135
9029
  ...
9136
9030
 
9137
- class BONE_PT_bRotateLikeConstraint(
9031
+ class BONE_PT_bRotLimitConstraint(
9138
9032
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
9139
9033
  ):
9140
9034
  bl_context: typing.Any
@@ -9608,7 +9502,7 @@ class BONE_PT_bRotateLikeConstraint(
9608
9502
  """
9609
9503
  ...
9610
9504
 
9611
- class BONE_PT_bSameVolumeConstraint(
9505
+ class BONE_PT_bRotateLikeConstraint(
9612
9506
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
9613
9507
  ):
9614
9508
  bl_context: typing.Any
@@ -10082,7 +9976,7 @@ class BONE_PT_bSameVolumeConstraint(
10082
9976
  """
10083
9977
  ...
10084
9978
 
10085
- class BONE_PT_bShrinkwrapConstraint(
9979
+ class BONE_PT_bSameVolumeConstraint(
10086
9980
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
10087
9981
  ):
10088
9982
  bl_context: typing.Any
@@ -10556,7 +10450,7 @@ class BONE_PT_bShrinkwrapConstraint(
10556
10450
  """
10557
10451
  ...
10558
10452
 
10559
- class BONE_PT_bSizeLikeConstraint(
10453
+ class BONE_PT_bShrinkwrapConstraint(
10560
10454
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
10561
10455
  ):
10562
10456
  bl_context: typing.Any
@@ -11030,7 +10924,7 @@ class BONE_PT_bSizeLikeConstraint(
11030
10924
  """
11031
10925
  ...
11032
10926
 
11033
- class BONE_PT_bSizeLimitConstraint(
10927
+ class BONE_PT_bSizeLikeConstraint(
11034
10928
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
11035
10929
  ):
11036
10930
  bl_context: typing.Any
@@ -11504,7 +11398,7 @@ class BONE_PT_bSizeLimitConstraint(
11504
11398
  """
11505
11399
  ...
11506
11400
 
11507
- class BONE_PT_bSplineIKConstraint(
11401
+ class BONE_PT_bSizeLimitConstraint(
11508
11402
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
11509
11403
  ):
11510
11404
  bl_context: typing.Any
@@ -11978,7 +11872,7 @@ class BONE_PT_bSplineIKConstraint(
11978
11872
  """
11979
11873
  ...
11980
11874
 
11981
- class BONE_PT_bStretchToConstraint(
11875
+ class BONE_PT_bSplineIKConstraint(
11982
11876
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
11983
11877
  ):
11984
11878
  bl_context: typing.Any
@@ -12452,12 +12346,12 @@ class BONE_PT_bStretchToConstraint(
12452
12346
  """
12453
12347
  ...
12454
12348
 
12455
- class BONE_PT_bTrackToConstraint(
12456
- BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
12349
+ class BONE_PT_bSplineIKConstraint_chain_scaling(
12350
+ BoneConstraintPanel, ConstraintButtonsSubPanel, bpy_types._GenericUI
12457
12351
  ):
12458
12352
  bl_context: typing.Any
12459
12353
  bl_label: typing.Any
12460
- bl_options: typing.Any
12354
+ bl_parent_id: typing.Any
12461
12355
  bl_region_type: typing.Any
12462
12356
  bl_rna: typing.Any
12463
12357
  bl_space_type: typing.Any
@@ -12502,218 +12396,406 @@ class BONE_PT_bTrackToConstraint(
12502
12396
  """
12503
12397
  ...
12504
12398
 
12505
- def draw_action(self, context):
12399
+ def draw_action_action(self, context):
12506
12400
  """
12507
12401
 
12508
12402
  :param context:
12509
12403
  """
12510
12404
  ...
12511
12405
 
12512
- def draw_armature(self, context):
12406
+ def draw_action_target(self, context):
12513
12407
  """
12514
12408
 
12515
12409
  :param context:
12516
12410
  """
12517
12411
  ...
12518
12412
 
12519
- def draw_camera_solver(self, context):
12413
+ def draw_armature_bones(self, context):
12520
12414
  """
12521
12415
 
12522
12416
  :param context:
12523
12417
  """
12524
12418
  ...
12525
12419
 
12526
- def draw_childof(self, context):
12420
+ def draw_spline_ik_chain_scaling(self, context):
12527
12421
  """
12528
12422
 
12529
12423
  :param context:
12530
12424
  """
12531
12425
  ...
12532
12426
 
12533
- def draw_clamp_to(self, context):
12427
+ def draw_spline_ik_fitting(self, context):
12534
12428
  """
12535
12429
 
12536
12430
  :param context:
12537
12431
  """
12538
12432
  ...
12539
12433
 
12540
- def draw_damp_track(self, context):
12434
+ def draw_transform_cache_layers(self, context):
12541
12435
  """
12542
12436
 
12543
12437
  :param context:
12544
12438
  """
12545
12439
  ...
12546
12440
 
12547
- def draw_dist_limit(self, context):
12441
+ def draw_transform_cache_procedural(self, context):
12548
12442
  """
12549
12443
 
12550
12444
  :param context:
12551
12445
  """
12552
12446
  ...
12553
12447
 
12554
- def draw_follow_path(self, context):
12448
+ def draw_transform_cache_subpanel(self, context, template_func):
12555
12449
  """
12556
12450
 
12557
12451
  :param context:
12452
+ :param template_func:
12558
12453
  """
12559
12454
  ...
12560
12455
 
12561
- def draw_follow_track(self, context):
12456
+ def draw_transform_cache_time(self, context):
12562
12457
  """
12563
12458
 
12564
12459
  :param context:
12565
12460
  """
12566
12461
  ...
12567
12462
 
12568
- def draw_header(self, context):
12463
+ def draw_transform_cache_velocity(self, context):
12569
12464
  """
12570
12465
 
12571
12466
  :param context:
12572
12467
  """
12573
12468
  ...
12574
12469
 
12575
- def draw_influence(self, layout, con):
12470
+ def draw_transform_from(self, context):
12576
12471
  """
12577
12472
 
12578
- :param layout:
12579
- :param con:
12473
+ :param context:
12580
12474
  """
12581
12475
  ...
12582
12476
 
12583
- def draw_kinematic(self, context):
12477
+ def draw_transform_to(self, context):
12584
12478
  """
12585
12479
 
12586
12480
  :param context:
12587
12481
  """
12588
12482
  ...
12589
12483
 
12590
- def draw_loc_limit(self, context):
12484
+ def driver_add(self) -> bpy.types.FCurve:
12485
+ """Adds driver(s) to the given property
12486
+
12487
+ :return: The driver(s) added.
12488
+ :rtype: bpy.types.FCurve
12591
12489
  """
12490
+ ...
12592
12491
 
12593
- :param context:
12492
+ def driver_remove(self) -> bool:
12493
+ """Remove driver(s) from the given property
12494
+
12495
+ :return: Success of driver removal.
12496
+ :rtype: bool
12594
12497
  """
12595
12498
  ...
12596
12499
 
12597
- def draw_locate_like(self, context):
12500
+ def get(self):
12501
+ """Returns the value of the custom property assigned to key or default
12502
+ when not found (matches Python's dictionary function of the same name).
12503
+
12598
12504
  """
12505
+ ...
12599
12506
 
12600
- :param context:
12507
+ def get_constraint(self, _context):
12508
+ """
12509
+
12510
+ :param _context:
12601
12511
  """
12602
12512
  ...
12603
12513
 
12604
- def draw_lock_track(self, context):
12514
+ def id_properties_clear(self):
12605
12515
  """
12606
12516
 
12607
- :param context:
12517
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
12608
12518
  """
12609
12519
  ...
12610
12520
 
12611
- def draw_min_max(self, context):
12521
+ def id_properties_ensure(self):
12612
12522
  """
12613
12523
 
12614
- :param context:
12524
+ :return: the parent group for an RNA struct's custom IDProperties.
12615
12525
  """
12616
12526
  ...
12617
12527
 
12618
- def draw_object_solver(self, context):
12528
+ def id_properties_ui(self):
12619
12529
  """
12620
12530
 
12621
- :param context:
12531
+ :return: Return an object used to manage an IDProperty's UI data.
12622
12532
  """
12623
12533
  ...
12624
12534
 
12625
- def draw_pivot(self, context):
12535
+ def is_extended(self): ...
12536
+ def is_property_hidden(self) -> bool:
12537
+ """Check if a property is hidden.
12538
+
12539
+ :return: True when the property is hidden.
12540
+ :rtype: bool
12541
+ """
12542
+ ...
12543
+
12544
+ def is_property_overridable_library(self) -> bool:
12545
+ """Check if a property is overridable.
12546
+
12547
+ :return: True when the property is overridable.
12548
+ :rtype: bool
12549
+ """
12550
+ ...
12551
+
12552
+ def is_property_readonly(self) -> bool:
12553
+ """Check if a property is readonly.
12554
+
12555
+ :return: True when the property is readonly (not writable).
12556
+ :rtype: bool
12557
+ """
12558
+ ...
12559
+
12560
+ def is_property_set(self) -> bool:
12561
+ """Check if a property is set, use for testing operator properties.
12562
+
12563
+ :return: True when the property has been set.
12564
+ :rtype: bool
12565
+ """
12566
+ ...
12567
+
12568
+ def items(self):
12569
+ """Returns the items of this objects custom properties (matches Python's
12570
+ dictionary function of the same name).
12571
+
12572
+ :return: custom property key, value pairs.
12573
+ """
12574
+ ...
12575
+
12576
+ def keyframe_delete(self) -> bool:
12577
+ """Remove a keyframe from this properties fcurve.
12578
+
12579
+ :return: Success of keyframe deletion.
12580
+ :rtype: bool
12581
+ """
12582
+ ...
12583
+
12584
+ def keyframe_insert(self) -> bool:
12585
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
12586
+
12587
+ :return: Success of keyframe insertion.
12588
+ :rtype: bool
12589
+ """
12590
+ ...
12591
+
12592
+ def keys(self):
12593
+ """Returns the keys of this objects custom properties (matches Python's
12594
+ dictionary function of the same name).
12595
+
12596
+ :return: custom property keys.
12597
+ """
12598
+ ...
12599
+
12600
+ def path_from_id(self) -> str:
12601
+ """Returns the data path from the ID to this object (string).
12602
+
12603
+ :return: The path from `bpy.types.bpy_struct.id_data`
12604
+ to this struct and property (when given).
12605
+ :rtype: str
12606
+ """
12607
+ ...
12608
+
12609
+ def path_resolve(self):
12610
+ """Returns the property from the path, raise an exception when not found."""
12611
+ ...
12612
+
12613
+ def poll(self, context):
12626
12614
  """
12627
12615
 
12628
12616
  :param context:
12629
12617
  """
12630
12618
  ...
12631
12619
 
12632
- def draw_python_constraint(self, _context):
12620
+ def pop(self):
12621
+ """Remove and return the value of the custom property assigned to key or default
12622
+ when not found (matches Python's dictionary function of the same name).
12623
+
12633
12624
  """
12625
+ ...
12634
12626
 
12635
- :param _context:
12627
+ def prepend(self, draw_func):
12628
+ """Prepend a draw function to this menu, takes the same arguments as
12629
+ the menus draw function
12630
+
12631
+ :param draw_func:
12636
12632
  """
12637
12633
  ...
12638
12634
 
12639
- def draw_rot_limit(self, context):
12635
+ def property_overridable_library_set(self) -> bool:
12636
+ """Define a property as overridable or not (only for custom properties!).
12637
+
12638
+ :return: True when the overridable status of the property was successfully set.
12639
+ :rtype: bool
12640
+ """
12641
+ ...
12642
+
12643
+ def property_unset(self):
12644
+ """Unset a property, will use default value afterward."""
12645
+ ...
12646
+
12647
+ def remove(self, draw_func):
12648
+ """Remove a draw function that has been added to this menu
12649
+
12650
+ :param draw_func:
12651
+ """
12652
+ ...
12653
+
12654
+ def type_recast(self):
12655
+ """Return a new instance, this is needed because types
12656
+ such as textures can be changed at runtime.
12657
+
12658
+ :return: a new instance of this object with the type initialized again.
12659
+ """
12660
+ ...
12661
+
12662
+ def values(self):
12663
+ """Returns the values of this objects custom properties (matches Python's
12664
+ dictionary function of the same name).
12665
+
12666
+ :return: custom property values.
12667
+ """
12668
+ ...
12669
+
12670
+ class BONE_PT_bSplineIKConstraint_fitting(
12671
+ BoneConstraintPanel, ConstraintButtonsSubPanel, bpy_types._GenericUI
12672
+ ):
12673
+ bl_context: typing.Any
12674
+ bl_label: typing.Any
12675
+ bl_parent_id: typing.Any
12676
+ bl_region_type: typing.Any
12677
+ bl_rna: typing.Any
12678
+ bl_space_type: typing.Any
12679
+ id_data: typing.Any
12680
+
12681
+ def append(self, draw_func):
12682
+ """Append a draw function to this menu,
12683
+ takes the same arguments as the menus draw function
12684
+
12685
+ :param draw_func:
12686
+ """
12687
+ ...
12688
+
12689
+ def as_pointer(self) -> int:
12690
+ """Returns the memory address which holds a pointer to Blender's internal data
12691
+
12692
+ :return: int (memory address).
12693
+ :rtype: int
12694
+ """
12695
+ ...
12696
+
12697
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
12698
+ """
12699
+
12700
+ :return: The RNA type or default when not found.
12701
+ :rtype: bpy.types.Struct
12702
+ """
12703
+ ...
12704
+
12705
+ def bl_rna_get_subclass_py(self) -> typing.Any:
12706
+ """
12707
+
12708
+ :return: The class or default when not found.
12709
+ :rtype: typing.Any
12710
+ """
12711
+ ...
12712
+
12713
+ def draw(self, context):
12640
12714
  """
12641
12715
 
12642
12716
  :param context:
12643
12717
  """
12644
12718
  ...
12645
12719
 
12646
- def draw_rotate_like(self, context):
12720
+ def draw_action_action(self, context):
12647
12721
  """
12648
12722
 
12649
12723
  :param context:
12650
12724
  """
12651
12725
  ...
12652
12726
 
12653
- def draw_same_volume(self, context):
12727
+ def draw_action_target(self, context):
12654
12728
  """
12655
12729
 
12656
12730
  :param context:
12657
12731
  """
12658
12732
  ...
12659
12733
 
12660
- def draw_shrinkwrap(self, context):
12734
+ def draw_armature_bones(self, context):
12661
12735
  """
12662
12736
 
12663
12737
  :param context:
12664
12738
  """
12665
12739
  ...
12666
12740
 
12667
- def draw_size_like(self, context):
12741
+ def draw_spline_ik_chain_scaling(self, context):
12668
12742
  """
12669
12743
 
12670
12744
  :param context:
12671
12745
  """
12672
12746
  ...
12673
12747
 
12674
- def draw_size_limit(self, context):
12748
+ def draw_spline_ik_fitting(self, context):
12675
12749
  """
12676
12750
 
12677
12751
  :param context:
12678
12752
  """
12679
12753
  ...
12680
12754
 
12681
- def draw_spline_ik(self, context):
12755
+ def draw_transform_cache_layers(self, context):
12682
12756
  """
12683
12757
 
12684
12758
  :param context:
12685
12759
  """
12686
12760
  ...
12687
12761
 
12688
- def draw_stretch_to(self, context):
12762
+ def draw_transform_cache_procedural(self, context):
12689
12763
  """
12690
12764
 
12691
12765
  :param context:
12692
12766
  """
12693
12767
  ...
12694
12768
 
12695
- def draw_trackto(self, context):
12769
+ def draw_transform_cache_subpanel(self, context, template_func):
12696
12770
  """
12697
12771
 
12698
12772
  :param context:
12773
+ :param template_func:
12699
12774
  """
12700
12775
  ...
12701
12776
 
12702
- def draw_trans_like(self, context):
12777
+ def draw_transform_cache_time(self, context):
12703
12778
  """
12704
12779
 
12705
12780
  :param context:
12706
12781
  """
12707
12782
  ...
12708
12783
 
12709
- def draw_transform(self, context):
12784
+ def draw_transform_cache_velocity(self, context):
12710
12785
  """
12711
12786
 
12712
12787
  :param context:
12713
12788
  """
12714
12789
  ...
12715
12790
 
12716
- def draw_transform_cache(self, context):
12791
+ def draw_transform_from(self, context):
12792
+ """
12793
+
12794
+ :param context:
12795
+ """
12796
+ ...
12797
+
12798
+ def draw_transform_to(self, context):
12717
12799
  """
12718
12800
 
12719
12801
  :param context:
@@ -12890,26 +12972,6 @@ class BONE_PT_bTrackToConstraint(
12890
12972
  """
12891
12973
  ...
12892
12974
 
12893
- def space_template(self, layout, con, target=True, owner=True, separator=True):
12894
- """
12895
-
12896
- :param layout:
12897
- :param con:
12898
- :param target:
12899
- :param owner:
12900
- :param separator:
12901
- """
12902
- ...
12903
-
12904
- def target_template(self, layout, con, subtargets=True):
12905
- """
12906
-
12907
- :param layout:
12908
- :param con:
12909
- :param subtargets:
12910
- """
12911
- ...
12912
-
12913
12975
  def type_recast(self):
12914
12976
  """Return a new instance, this is needed because types
12915
12977
  such as textures can be changed at runtime.
@@ -12926,7 +12988,7 @@ class BONE_PT_bTrackToConstraint(
12926
12988
  """
12927
12989
  ...
12928
12990
 
12929
- class BONE_PT_bTransLikeConstraint(
12991
+ class BONE_PT_bStretchToConstraint(
12930
12992
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
12931
12993
  ):
12932
12994
  bl_context: typing.Any
@@ -13400,7 +13462,7 @@ class BONE_PT_bTransLikeConstraint(
13400
13462
  """
13401
13463
  ...
13402
13464
 
13403
- class BONE_PT_bTransformCacheConstraint(
13465
+ class BONE_PT_bTrackToConstraint(
13404
13466
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
13405
13467
  ):
13406
13468
  bl_context: typing.Any
@@ -13874,7 +13936,7 @@ class BONE_PT_bTransformCacheConstraint(
13874
13936
  """
13875
13937
  ...
13876
13938
 
13877
- class BONE_PT_bTransformConstraint(
13939
+ class BONE_PT_bTransLikeConstraint(
13878
13940
  BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
13879
13941
  ):
13880
13942
  bl_context: typing.Any
@@ -14348,12 +14410,12 @@ class BONE_PT_bTransformConstraint(
14348
14410
  """
14349
14411
  ...
14350
14412
 
14351
- class BONE_PT_bActionConstraint_action(
14352
- BoneConstraintPanel, ConstraintButtonsSubPanel, bpy_types._GenericUI
14413
+ class BONE_PT_bTransformCacheConstraint(
14414
+ BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
14353
14415
  ):
14354
14416
  bl_context: typing.Any
14355
14417
  bl_label: typing.Any
14356
- bl_parent_id: typing.Any
14418
+ bl_options: typing.Any
14357
14419
  bl_region_type: typing.Any
14358
14420
  bl_rna: typing.Any
14359
14421
  bl_space_type: typing.Any
@@ -14398,406 +14460,218 @@ class BONE_PT_bActionConstraint_action(
14398
14460
  """
14399
14461
  ...
14400
14462
 
14401
- def draw_action_action(self, context):
14463
+ def draw_action(self, context):
14402
14464
  """
14403
14465
 
14404
14466
  :param context:
14405
14467
  """
14406
14468
  ...
14407
14469
 
14408
- def draw_action_target(self, context):
14470
+ def draw_armature(self, context):
14409
14471
  """
14410
14472
 
14411
14473
  :param context:
14412
14474
  """
14413
14475
  ...
14414
14476
 
14415
- def draw_armature_bones(self, context):
14477
+ def draw_camera_solver(self, context):
14416
14478
  """
14417
14479
 
14418
14480
  :param context:
14419
14481
  """
14420
14482
  ...
14421
14483
 
14422
- def draw_spline_ik_chain_scaling(self, context):
14484
+ def draw_childof(self, context):
14423
14485
  """
14424
14486
 
14425
14487
  :param context:
14426
14488
  """
14427
14489
  ...
14428
14490
 
14429
- def draw_spline_ik_fitting(self, context):
14491
+ def draw_clamp_to(self, context):
14430
14492
  """
14431
14493
 
14432
14494
  :param context:
14433
14495
  """
14434
14496
  ...
14435
14497
 
14436
- def draw_transform_cache_layers(self, context):
14498
+ def draw_damp_track(self, context):
14437
14499
  """
14438
14500
 
14439
14501
  :param context:
14440
14502
  """
14441
14503
  ...
14442
14504
 
14443
- def draw_transform_cache_procedural(self, context):
14505
+ def draw_dist_limit(self, context):
14444
14506
  """
14445
14507
 
14446
14508
  :param context:
14447
14509
  """
14448
14510
  ...
14449
14511
 
14450
- def draw_transform_cache_subpanel(self, context, template_func):
14512
+ def draw_follow_path(self, context):
14451
14513
  """
14452
14514
 
14453
14515
  :param context:
14454
- :param template_func:
14455
14516
  """
14456
14517
  ...
14457
14518
 
14458
- def draw_transform_cache_time(self, context):
14519
+ def draw_follow_track(self, context):
14459
14520
  """
14460
14521
 
14461
14522
  :param context:
14462
14523
  """
14463
14524
  ...
14464
14525
 
14465
- def draw_transform_cache_velocity(self, context):
14526
+ def draw_header(self, context):
14466
14527
  """
14467
14528
 
14468
14529
  :param context:
14469
14530
  """
14470
14531
  ...
14471
14532
 
14472
- def draw_transform_from(self, context):
14533
+ def draw_influence(self, layout, con):
14473
14534
  """
14474
14535
 
14475
- :param context:
14536
+ :param layout:
14537
+ :param con:
14476
14538
  """
14477
14539
  ...
14478
14540
 
14479
- def draw_transform_to(self, context):
14541
+ def draw_kinematic(self, context):
14480
14542
  """
14481
14543
 
14482
14544
  :param context:
14483
14545
  """
14484
14546
  ...
14485
14547
 
14486
- def driver_add(self) -> bpy.types.FCurve:
14487
- """Adds driver(s) to the given property
14488
-
14489
- :return: The driver(s) added.
14490
- :rtype: bpy.types.FCurve
14491
- """
14492
- ...
14493
-
14494
- def driver_remove(self) -> bool:
14495
- """Remove driver(s) from the given property
14496
-
14497
- :return: Success of driver removal.
14498
- :rtype: bool
14499
- """
14500
- ...
14501
-
14502
- def get(self):
14503
- """Returns the value of the custom property assigned to key or default
14504
- when not found (matches Python's dictionary function of the same name).
14505
-
14506
- """
14507
- ...
14508
-
14509
- def get_constraint(self, _context):
14510
- """
14511
-
14512
- :param _context:
14513
- """
14514
- ...
14515
-
14516
- def id_properties_clear(self):
14517
- """
14518
-
14519
- :return: Remove the parent group for an RNA struct's custom IDProperties.
14520
- """
14521
- ...
14522
-
14523
- def id_properties_ensure(self):
14524
- """
14525
-
14526
- :return: the parent group for an RNA struct's custom IDProperties.
14527
- """
14528
- ...
14529
-
14530
- def id_properties_ui(self):
14531
- """
14532
-
14533
- :return: Return an object used to manage an IDProperty's UI data.
14534
- """
14535
- ...
14536
-
14537
- def is_extended(self): ...
14538
- def is_property_hidden(self) -> bool:
14539
- """Check if a property is hidden.
14540
-
14541
- :return: True when the property is hidden.
14542
- :rtype: bool
14543
- """
14544
- ...
14545
-
14546
- def is_property_overridable_library(self) -> bool:
14547
- """Check if a property is overridable.
14548
-
14549
- :return: True when the property is overridable.
14550
- :rtype: bool
14551
- """
14552
- ...
14553
-
14554
- def is_property_readonly(self) -> bool:
14555
- """Check if a property is readonly.
14556
-
14557
- :return: True when the property is readonly (not writable).
14558
- :rtype: bool
14559
- """
14560
- ...
14561
-
14562
- def is_property_set(self) -> bool:
14563
- """Check if a property is set, use for testing operator properties.
14564
-
14565
- :return: True when the property has been set.
14566
- :rtype: bool
14567
- """
14568
- ...
14569
-
14570
- def items(self):
14571
- """Returns the items of this objects custom properties (matches Python's
14572
- dictionary function of the same name).
14573
-
14574
- :return: custom property key, value pairs.
14575
- """
14576
- ...
14577
-
14578
- def keyframe_delete(self) -> bool:
14579
- """Remove a keyframe from this properties fcurve.
14580
-
14581
- :return: Success of keyframe deletion.
14582
- :rtype: bool
14583
- """
14584
- ...
14585
-
14586
- def keyframe_insert(self) -> bool:
14587
- """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
14588
-
14589
- :return: Success of keyframe insertion.
14590
- :rtype: bool
14591
- """
14592
- ...
14593
-
14594
- def keys(self):
14595
- """Returns the keys of this objects custom properties (matches Python's
14596
- dictionary function of the same name).
14597
-
14598
- :return: custom property keys.
14599
- """
14600
- ...
14601
-
14602
- def path_from_id(self) -> str:
14603
- """Returns the data path from the ID to this object (string).
14604
-
14605
- :return: The path from `bpy.types.bpy_struct.id_data`
14606
- to this struct and property (when given).
14607
- :rtype: str
14608
- """
14609
- ...
14610
-
14611
- def path_resolve(self):
14612
- """Returns the property from the path, raise an exception when not found."""
14613
- ...
14614
-
14615
- def poll(self, context):
14548
+ def draw_loc_limit(self, context):
14616
14549
  """
14617
14550
 
14618
14551
  :param context:
14619
14552
  """
14620
14553
  ...
14621
14554
 
14622
- def pop(self):
14623
- """Remove and return the value of the custom property assigned to key or default
14624
- when not found (matches Python's dictionary function of the same name).
14625
-
14626
- """
14627
- ...
14628
-
14629
- def prepend(self, draw_func):
14630
- """Prepend a draw function to this menu, takes the same arguments as
14631
- the menus draw function
14632
-
14633
- :param draw_func:
14634
- """
14635
- ...
14636
-
14637
- def property_overridable_library_set(self) -> bool:
14638
- """Define a property as overridable or not (only for custom properties!).
14639
-
14640
- :return: True when the overridable status of the property was successfully set.
14641
- :rtype: bool
14555
+ def draw_locate_like(self, context):
14642
14556
  """
14643
- ...
14644
-
14645
- def property_unset(self):
14646
- """Unset a property, will use default value afterward."""
14647
- ...
14648
-
14649
- def remove(self, draw_func):
14650
- """Remove a draw function that has been added to this menu
14651
14557
 
14652
- :param draw_func:
14558
+ :param context:
14653
14559
  """
14654
14560
  ...
14655
14561
 
14656
- def type_recast(self):
14657
- """Return a new instance, this is needed because types
14658
- such as textures can be changed at runtime.
14659
-
14660
- :return: a new instance of this object with the type initialized again.
14562
+ def draw_lock_track(self, context):
14661
14563
  """
14662
- ...
14663
14564
 
14664
- def values(self):
14665
- """Returns the values of this objects custom properties (matches Python's
14666
- dictionary function of the same name).
14667
-
14668
- :return: custom property values.
14565
+ :param context:
14669
14566
  """
14670
14567
  ...
14671
14568
 
14672
- class BONE_PT_bActionConstraint_target(
14673
- BoneConstraintPanel, ConstraintButtonsSubPanel, bpy_types._GenericUI
14674
- ):
14675
- bl_context: typing.Any
14676
- bl_label: typing.Any
14677
- bl_parent_id: typing.Any
14678
- bl_region_type: typing.Any
14679
- bl_rna: typing.Any
14680
- bl_space_type: typing.Any
14681
- id_data: typing.Any
14682
-
14683
- def append(self, draw_func):
14684
- """Append a draw function to this menu,
14685
- takes the same arguments as the menus draw function
14686
-
14687
- :param draw_func:
14569
+ def draw_min_max(self, context):
14688
14570
  """
14689
- ...
14690
14571
 
14691
- def as_pointer(self) -> int:
14692
- """Returns the memory address which holds a pointer to Blender's internal data
14693
-
14694
- :return: int (memory address).
14695
- :rtype: int
14572
+ :param context:
14696
14573
  """
14697
14574
  ...
14698
14575
 
14699
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
14576
+ def draw_object_solver(self, context):
14700
14577
  """
14701
14578
 
14702
- :return: The RNA type or default when not found.
14703
- :rtype: bpy.types.Struct
14579
+ :param context:
14704
14580
  """
14705
14581
  ...
14706
14582
 
14707
- def bl_rna_get_subclass_py(self) -> typing.Any:
14583
+ def draw_pivot(self, context):
14708
14584
  """
14709
14585
 
14710
- :return: The class or default when not found.
14711
- :rtype: typing.Any
14586
+ :param context:
14712
14587
  """
14713
14588
  ...
14714
14589
 
14715
- def draw(self, context):
14590
+ def draw_python_constraint(self, _context):
14716
14591
  """
14717
14592
 
14718
- :param context:
14593
+ :param _context:
14719
14594
  """
14720
14595
  ...
14721
14596
 
14722
- def draw_action_action(self, context):
14597
+ def draw_rot_limit(self, context):
14723
14598
  """
14724
14599
 
14725
14600
  :param context:
14726
14601
  """
14727
14602
  ...
14728
14603
 
14729
- def draw_action_target(self, context):
14604
+ def draw_rotate_like(self, context):
14730
14605
  """
14731
14606
 
14732
14607
  :param context:
14733
14608
  """
14734
14609
  ...
14735
14610
 
14736
- def draw_armature_bones(self, context):
14611
+ def draw_same_volume(self, context):
14737
14612
  """
14738
14613
 
14739
14614
  :param context:
14740
14615
  """
14741
14616
  ...
14742
14617
 
14743
- def draw_spline_ik_chain_scaling(self, context):
14618
+ def draw_shrinkwrap(self, context):
14744
14619
  """
14745
14620
 
14746
14621
  :param context:
14747
14622
  """
14748
14623
  ...
14749
14624
 
14750
- def draw_spline_ik_fitting(self, context):
14625
+ def draw_size_like(self, context):
14751
14626
  """
14752
14627
 
14753
14628
  :param context:
14754
14629
  """
14755
14630
  ...
14756
14631
 
14757
- def draw_transform_cache_layers(self, context):
14632
+ def draw_size_limit(self, context):
14758
14633
  """
14759
14634
 
14760
14635
  :param context:
14761
14636
  """
14762
14637
  ...
14763
14638
 
14764
- def draw_transform_cache_procedural(self, context):
14639
+ def draw_spline_ik(self, context):
14765
14640
  """
14766
14641
 
14767
14642
  :param context:
14768
14643
  """
14769
14644
  ...
14770
14645
 
14771
- def draw_transform_cache_subpanel(self, context, template_func):
14646
+ def draw_stretch_to(self, context):
14772
14647
  """
14773
14648
 
14774
14649
  :param context:
14775
- :param template_func:
14776
14650
  """
14777
14651
  ...
14778
14652
 
14779
- def draw_transform_cache_time(self, context):
14653
+ def draw_trackto(self, context):
14780
14654
  """
14781
14655
 
14782
14656
  :param context:
14783
14657
  """
14784
14658
  ...
14785
14659
 
14786
- def draw_transform_cache_velocity(self, context):
14660
+ def draw_trans_like(self, context):
14787
14661
  """
14788
14662
 
14789
14663
  :param context:
14790
14664
  """
14791
14665
  ...
14792
14666
 
14793
- def draw_transform_from(self, context):
14667
+ def draw_transform(self, context):
14794
14668
  """
14795
14669
 
14796
14670
  :param context:
14797
14671
  """
14798
14672
  ...
14799
14673
 
14800
- def draw_transform_to(self, context):
14674
+ def draw_transform_cache(self, context):
14801
14675
  """
14802
14676
 
14803
14677
  :param context:
@@ -14974,6 +14848,26 @@ class BONE_PT_bActionConstraint_target(
14974
14848
  """
14975
14849
  ...
14976
14850
 
14851
+ def space_template(self, layout, con, target=True, owner=True, separator=True):
14852
+ """
14853
+
14854
+ :param layout:
14855
+ :param con:
14856
+ :param target:
14857
+ :param owner:
14858
+ :param separator:
14859
+ """
14860
+ ...
14861
+
14862
+ def target_template(self, layout, con, subtargets=True):
14863
+ """
14864
+
14865
+ :param layout:
14866
+ :param con:
14867
+ :param subtargets:
14868
+ """
14869
+ ...
14870
+
14977
14871
  def type_recast(self):
14978
14872
  """Return a new instance, this is needed because types
14979
14873
  such as textures can be changed at runtime.
@@ -14990,7 +14884,7 @@ class BONE_PT_bActionConstraint_target(
14990
14884
  """
14991
14885
  ...
14992
14886
 
14993
- class BONE_PT_bArmatureConstraint_bones(
14887
+ class BONE_PT_bTransformCacheConstraint_layers(
14994
14888
  BoneConstraintPanel, ConstraintButtonsSubPanel, bpy_types._GenericUI
14995
14889
  ):
14996
14890
  bl_context: typing.Any
@@ -15311,7 +15205,7 @@ class BONE_PT_bArmatureConstraint_bones(
15311
15205
  """
15312
15206
  ...
15313
15207
 
15314
- class BONE_PT_bSplineIKConstraint_chain_scaling(
15208
+ class BONE_PT_bTransformCacheConstraint_procedural(
15315
15209
  BoneConstraintPanel, ConstraintButtonsSubPanel, bpy_types._GenericUI
15316
15210
  ):
15317
15211
  bl_context: typing.Any
@@ -15632,7 +15526,7 @@ class BONE_PT_bSplineIKConstraint_chain_scaling(
15632
15526
  """
15633
15527
  ...
15634
15528
 
15635
- class BONE_PT_bSplineIKConstraint_fitting(
15529
+ class BONE_PT_bTransformCacheConstraint_time(
15636
15530
  BoneConstraintPanel, ConstraintButtonsSubPanel, bpy_types._GenericUI
15637
15531
  ):
15638
15532
  bl_context: typing.Any
@@ -15953,7 +15847,7 @@ class BONE_PT_bSplineIKConstraint_fitting(
15953
15847
  """
15954
15848
  ...
15955
15849
 
15956
- class BONE_PT_bTransformCacheConstraint_layers(
15850
+ class BONE_PT_bTransformCacheConstraint_velocity(
15957
15851
  BoneConstraintPanel, ConstraintButtonsSubPanel, bpy_types._GenericUI
15958
15852
  ):
15959
15853
  bl_context: typing.Any
@@ -16274,12 +16168,12 @@ class BONE_PT_bTransformCacheConstraint_layers(
16274
16168
  """
16275
16169
  ...
16276
16170
 
16277
- class BONE_PT_bTransformCacheConstraint_procedural(
16278
- BoneConstraintPanel, ConstraintButtonsSubPanel, bpy_types._GenericUI
16171
+ class BONE_PT_bTransformConstraint(
16172
+ BoneConstraintPanel, ConstraintButtonsPanel, bpy_types._GenericUI
16279
16173
  ):
16280
16174
  bl_context: typing.Any
16281
16175
  bl_label: typing.Any
16282
- bl_parent_id: typing.Any
16176
+ bl_options: typing.Any
16283
16177
  bl_region_type: typing.Any
16284
16178
  bl_rna: typing.Any
16285
16179
  bl_space_type: typing.Any
@@ -16324,85 +16218,218 @@ class BONE_PT_bTransformCacheConstraint_procedural(
16324
16218
  """
16325
16219
  ...
16326
16220
 
16327
- def draw_action_action(self, context):
16221
+ def draw_action(self, context):
16328
16222
  """
16329
16223
 
16330
16224
  :param context:
16331
16225
  """
16332
16226
  ...
16333
16227
 
16334
- def draw_action_target(self, context):
16228
+ def draw_armature(self, context):
16335
16229
  """
16336
16230
 
16337
16231
  :param context:
16338
16232
  """
16339
16233
  ...
16340
16234
 
16341
- def draw_armature_bones(self, context):
16235
+ def draw_camera_solver(self, context):
16342
16236
  """
16343
16237
 
16344
16238
  :param context:
16345
16239
  """
16346
16240
  ...
16347
16241
 
16348
- def draw_spline_ik_chain_scaling(self, context):
16242
+ def draw_childof(self, context):
16349
16243
  """
16350
16244
 
16351
16245
  :param context:
16352
16246
  """
16353
16247
  ...
16354
16248
 
16355
- def draw_spline_ik_fitting(self, context):
16249
+ def draw_clamp_to(self, context):
16356
16250
  """
16357
16251
 
16358
16252
  :param context:
16359
16253
  """
16360
16254
  ...
16361
16255
 
16362
- def draw_transform_cache_layers(self, context):
16256
+ def draw_damp_track(self, context):
16363
16257
  """
16364
16258
 
16365
16259
  :param context:
16366
16260
  """
16367
16261
  ...
16368
16262
 
16369
- def draw_transform_cache_procedural(self, context):
16263
+ def draw_dist_limit(self, context):
16370
16264
  """
16371
16265
 
16372
16266
  :param context:
16373
16267
  """
16374
16268
  ...
16375
16269
 
16376
- def draw_transform_cache_subpanel(self, context, template_func):
16270
+ def draw_follow_path(self, context):
16377
16271
  """
16378
16272
 
16379
16273
  :param context:
16380
- :param template_func:
16381
16274
  """
16382
16275
  ...
16383
16276
 
16384
- def draw_transform_cache_time(self, context):
16277
+ def draw_follow_track(self, context):
16385
16278
  """
16386
16279
 
16387
16280
  :param context:
16388
16281
  """
16389
16282
  ...
16390
16283
 
16391
- def draw_transform_cache_velocity(self, context):
16284
+ def draw_header(self, context):
16392
16285
  """
16393
16286
 
16394
16287
  :param context:
16395
16288
  """
16396
16289
  ...
16397
16290
 
16398
- def draw_transform_from(self, context):
16291
+ def draw_influence(self, layout, con):
16292
+ """
16293
+
16294
+ :param layout:
16295
+ :param con:
16296
+ """
16297
+ ...
16298
+
16299
+ def draw_kinematic(self, context):
16399
16300
  """
16400
16301
 
16401
16302
  :param context:
16402
16303
  """
16403
16304
  ...
16404
16305
 
16405
- def draw_transform_to(self, context):
16306
+ def draw_loc_limit(self, context):
16307
+ """
16308
+
16309
+ :param context:
16310
+ """
16311
+ ...
16312
+
16313
+ def draw_locate_like(self, context):
16314
+ """
16315
+
16316
+ :param context:
16317
+ """
16318
+ ...
16319
+
16320
+ def draw_lock_track(self, context):
16321
+ """
16322
+
16323
+ :param context:
16324
+ """
16325
+ ...
16326
+
16327
+ def draw_min_max(self, context):
16328
+ """
16329
+
16330
+ :param context:
16331
+ """
16332
+ ...
16333
+
16334
+ def draw_object_solver(self, context):
16335
+ """
16336
+
16337
+ :param context:
16338
+ """
16339
+ ...
16340
+
16341
+ def draw_pivot(self, context):
16342
+ """
16343
+
16344
+ :param context:
16345
+ """
16346
+ ...
16347
+
16348
+ def draw_python_constraint(self, _context):
16349
+ """
16350
+
16351
+ :param _context:
16352
+ """
16353
+ ...
16354
+
16355
+ def draw_rot_limit(self, context):
16356
+ """
16357
+
16358
+ :param context:
16359
+ """
16360
+ ...
16361
+
16362
+ def draw_rotate_like(self, context):
16363
+ """
16364
+
16365
+ :param context:
16366
+ """
16367
+ ...
16368
+
16369
+ def draw_same_volume(self, context):
16370
+ """
16371
+
16372
+ :param context:
16373
+ """
16374
+ ...
16375
+
16376
+ def draw_shrinkwrap(self, context):
16377
+ """
16378
+
16379
+ :param context:
16380
+ """
16381
+ ...
16382
+
16383
+ def draw_size_like(self, context):
16384
+ """
16385
+
16386
+ :param context:
16387
+ """
16388
+ ...
16389
+
16390
+ def draw_size_limit(self, context):
16391
+ """
16392
+
16393
+ :param context:
16394
+ """
16395
+ ...
16396
+
16397
+ def draw_spline_ik(self, context):
16398
+ """
16399
+
16400
+ :param context:
16401
+ """
16402
+ ...
16403
+
16404
+ def draw_stretch_to(self, context):
16405
+ """
16406
+
16407
+ :param context:
16408
+ """
16409
+ ...
16410
+
16411
+ def draw_trackto(self, context):
16412
+ """
16413
+
16414
+ :param context:
16415
+ """
16416
+ ...
16417
+
16418
+ def draw_trans_like(self, context):
16419
+ """
16420
+
16421
+ :param context:
16422
+ """
16423
+ ...
16424
+
16425
+ def draw_transform(self, context):
16426
+ """
16427
+
16428
+ :param context:
16429
+ """
16430
+ ...
16431
+
16432
+ def draw_transform_cache(self, context):
16406
16433
  """
16407
16434
 
16408
16435
  :param context:
@@ -16579,6 +16606,26 @@ class BONE_PT_bTransformCacheConstraint_procedural(
16579
16606
  """
16580
16607
  ...
16581
16608
 
16609
+ def space_template(self, layout, con, target=True, owner=True, separator=True):
16610
+ """
16611
+
16612
+ :param layout:
16613
+ :param con:
16614
+ :param target:
16615
+ :param owner:
16616
+ :param separator:
16617
+ """
16618
+ ...
16619
+
16620
+ def target_template(self, layout, con, subtargets=True):
16621
+ """
16622
+
16623
+ :param layout:
16624
+ :param con:
16625
+ :param subtargets:
16626
+ """
16627
+ ...
16628
+
16582
16629
  def type_recast(self):
16583
16630
  """Return a new instance, this is needed because types
16584
16631
  such as textures can be changed at runtime.
@@ -16595,7 +16642,7 @@ class BONE_PT_bTransformCacheConstraint_procedural(
16595
16642
  """
16596
16643
  ...
16597
16644
 
16598
- class BONE_PT_bTransformCacheConstraint_time(
16645
+ class BONE_PT_bTransformConstraint_from(
16599
16646
  BoneConstraintPanel, ConstraintButtonsSubPanel, bpy_types._GenericUI
16600
16647
  ):
16601
16648
  bl_context: typing.Any
@@ -16916,7 +16963,7 @@ class BONE_PT_bTransformCacheConstraint_time(
16916
16963
  """
16917
16964
  ...
16918
16965
 
16919
- class BONE_PT_bTransformCacheConstraint_velocity(
16966
+ class BONE_PT_bTransformConstraint_to(
16920
16967
  BoneConstraintPanel, ConstraintButtonsSubPanel, bpy_types._GenericUI
16921
16968
  ):
16922
16969
  bl_context: typing.Any
@@ -17237,12 +17284,10 @@ class BONE_PT_bTransformCacheConstraint_velocity(
17237
17284
  """
17238
17285
  ...
17239
17286
 
17240
- class BONE_PT_bTransformConstraint_from(
17241
- BoneConstraintPanel, ConstraintButtonsSubPanel, bpy_types._GenericUI
17242
- ):
17287
+ class BONE_PT_constraints(BoneConstraintPanel, bpy_types._GenericUI):
17243
17288
  bl_context: typing.Any
17244
17289
  bl_label: typing.Any
17245
- bl_parent_id: typing.Any
17290
+ bl_options: typing.Any
17246
17291
  bl_region_type: typing.Any
17247
17292
  bl_rna: typing.Any
17248
17293
  bl_space_type: typing.Any
@@ -17280,95 +17325,10 @@ class BONE_PT_bTransformConstraint_from(
17280
17325
  """
17281
17326
  ...
17282
17327
 
17283
- def draw(self, context):
17284
- """
17285
-
17286
- :param context:
17287
- """
17288
- ...
17289
-
17290
- def draw_action_action(self, context):
17291
- """
17292
-
17293
- :param context:
17294
- """
17295
- ...
17296
-
17297
- def draw_action_target(self, context):
17298
- """
17299
-
17300
- :param context:
17301
- """
17302
- ...
17303
-
17304
- def draw_armature_bones(self, context):
17305
- """
17306
-
17307
- :param context:
17308
- """
17309
- ...
17310
-
17311
- def draw_spline_ik_chain_scaling(self, context):
17312
- """
17313
-
17314
- :param context:
17315
- """
17316
- ...
17317
-
17318
- def draw_spline_ik_fitting(self, context):
17319
- """
17320
-
17321
- :param context:
17322
- """
17323
- ...
17324
-
17325
- def draw_transform_cache_layers(self, context):
17326
- """
17327
-
17328
- :param context:
17329
- """
17330
- ...
17331
-
17332
- def draw_transform_cache_procedural(self, context):
17333
- """
17334
-
17335
- :param context:
17336
- """
17337
- ...
17338
-
17339
- def draw_transform_cache_subpanel(self, context, template_func):
17340
- """
17341
-
17342
- :param context:
17343
- :param template_func:
17344
- """
17345
- ...
17346
-
17347
- def draw_transform_cache_time(self, context):
17348
- """
17349
-
17350
- :param context:
17351
- """
17352
- ...
17353
-
17354
- def draw_transform_cache_velocity(self, context):
17355
- """
17356
-
17357
- :param context:
17358
- """
17359
- ...
17360
-
17361
- def draw_transform_from(self, context):
17362
- """
17363
-
17364
- :param context:
17365
- """
17366
- ...
17367
-
17368
- def draw_transform_to(self, context):
17328
+ def draw(self, _context):
17369
17329
  """
17370
17330
 
17371
- :param context:
17331
+ :param _context:
17372
17332
  """
17373
17333
  ...
17374
17334
 
@@ -17395,13 +17355,6 @@ class BONE_PT_bTransformConstraint_from(
17395
17355
  """
17396
17356
  ...
17397
17357
 
17398
- def get_constraint(self, _context):
17399
- """
17400
-
17401
- :param _context:
17402
- """
17403
- ...
17404
-
17405
17358
  def id_properties_clear(self):
17406
17359
  """
17407
17360
 
@@ -17558,324 +17511,361 @@ class BONE_PT_bTransformConstraint_from(
17558
17511
  """
17559
17512
  ...
17560
17513
 
17561
- class BONE_PT_bTransformConstraint_to(
17562
- BoneConstraintPanel, ConstraintButtonsSubPanel, bpy_types._GenericUI
17563
- ):
17514
+ class BoneConstraintPanel:
17564
17515
  bl_context: typing.Any
17516
+
17517
+ def poll(self, context):
17518
+ """
17519
+
17520
+ :param context:
17521
+ """
17522
+ ...
17523
+
17524
+ class ConstraintButtonsPanel:
17565
17525
  bl_label: typing.Any
17566
- bl_parent_id: typing.Any
17526
+ bl_options: typing.Any
17567
17527
  bl_region_type: typing.Any
17568
- bl_rna: typing.Any
17569
17528
  bl_space_type: typing.Any
17570
- id_data: typing.Any
17571
17529
 
17572
- def append(self, draw_func):
17573
- """Append a draw function to this menu,
17574
- takes the same arguments as the menus draw function
17530
+ def draw_action(self, context):
17531
+ """
17575
17532
 
17576
- :param draw_func:
17533
+ :param context:
17577
17534
  """
17578
17535
  ...
17579
17536
 
17580
- def as_pointer(self) -> int:
17581
- """Returns the memory address which holds a pointer to Blender's internal data
17537
+ def draw_armature(self, context):
17538
+ """
17582
17539
 
17583
- :return: int (memory address).
17584
- :rtype: int
17540
+ :param context:
17585
17541
  """
17586
17542
  ...
17587
17543
 
17588
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
17544
+ def draw_camera_solver(self, context):
17589
17545
  """
17590
17546
 
17591
- :return: The RNA type or default when not found.
17592
- :rtype: bpy.types.Struct
17547
+ :param context:
17593
17548
  """
17594
17549
  ...
17595
17550
 
17596
- def bl_rna_get_subclass_py(self) -> typing.Any:
17551
+ def draw_childof(self, context):
17597
17552
  """
17598
17553
 
17599
- :return: The class or default when not found.
17600
- :rtype: typing.Any
17554
+ :param context:
17601
17555
  """
17602
17556
  ...
17603
17557
 
17604
- def draw(self, context):
17558
+ def draw_clamp_to(self, context):
17605
17559
  """
17606
17560
 
17607
17561
  :param context:
17608
17562
  """
17609
17563
  ...
17610
17564
 
17611
- def draw_action_action(self, context):
17565
+ def draw_damp_track(self, context):
17612
17566
  """
17613
17567
 
17614
17568
  :param context:
17615
17569
  """
17616
17570
  ...
17617
17571
 
17618
- def draw_action_target(self, context):
17572
+ def draw_dist_limit(self, context):
17619
17573
  """
17620
17574
 
17621
17575
  :param context:
17622
17576
  """
17623
17577
  ...
17624
17578
 
17625
- def draw_armature_bones(self, context):
17579
+ def draw_follow_path(self, context):
17626
17580
  """
17627
17581
 
17628
17582
  :param context:
17629
17583
  """
17630
17584
  ...
17631
17585
 
17632
- def draw_spline_ik_chain_scaling(self, context):
17586
+ def draw_follow_track(self, context):
17633
17587
  """
17634
17588
 
17635
17589
  :param context:
17636
17590
  """
17637
17591
  ...
17638
17592
 
17639
- def draw_spline_ik_fitting(self, context):
17593
+ def draw_header(self, context):
17640
17594
  """
17641
17595
 
17642
17596
  :param context:
17643
17597
  """
17644
17598
  ...
17645
17599
 
17646
- def draw_transform_cache_layers(self, context):
17600
+ def draw_influence(self, layout, con):
17601
+ """
17602
+
17603
+ :param layout:
17604
+ :param con:
17605
+ """
17606
+ ...
17607
+
17608
+ def draw_kinematic(self, context):
17647
17609
  """
17648
17610
 
17649
17611
  :param context:
17650
17612
  """
17651
17613
  ...
17652
17614
 
17653
- def draw_transform_cache_procedural(self, context):
17615
+ def draw_loc_limit(self, context):
17654
17616
  """
17655
17617
 
17656
17618
  :param context:
17657
17619
  """
17658
17620
  ...
17659
17621
 
17660
- def draw_transform_cache_subpanel(self, context, template_func):
17622
+ def draw_locate_like(self, context):
17661
17623
  """
17662
17624
 
17663
17625
  :param context:
17664
- :param template_func:
17665
17626
  """
17666
17627
  ...
17667
17628
 
17668
- def draw_transform_cache_time(self, context):
17629
+ def draw_lock_track(self, context):
17669
17630
  """
17670
17631
 
17671
17632
  :param context:
17672
17633
  """
17673
17634
  ...
17674
17635
 
17675
- def draw_transform_cache_velocity(self, context):
17636
+ def draw_min_max(self, context):
17676
17637
  """
17677
17638
 
17678
17639
  :param context:
17679
17640
  """
17680
17641
  ...
17681
17642
 
17682
- def draw_transform_from(self, context):
17643
+ def draw_object_solver(self, context):
17683
17644
  """
17684
17645
 
17685
17646
  :param context:
17686
17647
  """
17687
17648
  ...
17688
17649
 
17689
- def draw_transform_to(self, context):
17650
+ def draw_pivot(self, context):
17690
17651
  """
17691
17652
 
17692
17653
  :param context:
17693
17654
  """
17694
17655
  ...
17695
17656
 
17696
- def driver_add(self) -> bpy.types.FCurve:
17697
- """Adds driver(s) to the given property
17657
+ def draw_python_constraint(self, _context):
17658
+ """
17698
17659
 
17699
- :return: The driver(s) added.
17700
- :rtype: bpy.types.FCurve
17660
+ :param _context:
17701
17661
  """
17702
17662
  ...
17703
17663
 
17704
- def driver_remove(self) -> bool:
17705
- """Remove driver(s) from the given property
17664
+ def draw_rot_limit(self, context):
17665
+ """
17706
17666
 
17707
- :return: Success of driver removal.
17708
- :rtype: bool
17667
+ :param context:
17709
17668
  """
17710
17669
  ...
17711
17670
 
17712
- def get(self):
17713
- """Returns the value of the custom property assigned to key or default
17714
- when not found (matches Python's dictionary function of the same name).
17671
+ def draw_rotate_like(self, context):
17672
+ """
17715
17673
 
17674
+ :param context:
17716
17675
  """
17717
17676
  ...
17718
17677
 
17719
- def get_constraint(self, _context):
17678
+ def draw_same_volume(self, context):
17720
17679
  """
17721
17680
 
17722
- :param _context:
17681
+ :param context:
17723
17682
  """
17724
17683
  ...
17725
17684
 
17726
- def id_properties_clear(self):
17685
+ def draw_shrinkwrap(self, context):
17727
17686
  """
17728
17687
 
17729
- :return: Remove the parent group for an RNA struct's custom IDProperties.
17688
+ :param context:
17730
17689
  """
17731
17690
  ...
17732
17691
 
17733
- def id_properties_ensure(self):
17692
+ def draw_size_like(self, context):
17734
17693
  """
17735
17694
 
17736
- :return: the parent group for an RNA struct's custom IDProperties.
17695
+ :param context:
17737
17696
  """
17738
17697
  ...
17739
17698
 
17740
- def id_properties_ui(self):
17699
+ def draw_size_limit(self, context):
17741
17700
  """
17742
17701
 
17743
- :return: Return an object used to manage an IDProperty's UI data.
17702
+ :param context:
17744
17703
  """
17745
17704
  ...
17746
17705
 
17747
- def is_extended(self): ...
17748
- def is_property_hidden(self) -> bool:
17749
- """Check if a property is hidden.
17706
+ def draw_spline_ik(self, context):
17707
+ """
17750
17708
 
17751
- :return: True when the property is hidden.
17752
- :rtype: bool
17709
+ :param context:
17753
17710
  """
17754
17711
  ...
17755
17712
 
17756
- def is_property_overridable_library(self) -> bool:
17757
- """Check if a property is overridable.
17713
+ def draw_stretch_to(self, context):
17714
+ """
17758
17715
 
17759
- :return: True when the property is overridable.
17760
- :rtype: bool
17716
+ :param context:
17761
17717
  """
17762
17718
  ...
17763
17719
 
17764
- def is_property_readonly(self) -> bool:
17765
- """Check if a property is readonly.
17720
+ def draw_trackto(self, context):
17721
+ """
17766
17722
 
17767
- :return: True when the property is readonly (not writable).
17768
- :rtype: bool
17723
+ :param context:
17769
17724
  """
17770
17725
  ...
17771
17726
 
17772
- def is_property_set(self) -> bool:
17773
- """Check if a property is set, use for testing operator properties.
17727
+ def draw_trans_like(self, context):
17728
+ """
17774
17729
 
17775
- :return: True when the property has been set.
17776
- :rtype: bool
17730
+ :param context:
17777
17731
  """
17778
17732
  ...
17779
17733
 
17780
- def items(self):
17781
- """Returns the items of this objects custom properties (matches Python's
17782
- dictionary function of the same name).
17734
+ def draw_transform(self, context):
17735
+ """
17783
17736
 
17784
- :return: custom property key, value pairs.
17737
+ :param context:
17785
17738
  """
17786
17739
  ...
17787
17740
 
17788
- def keyframe_delete(self) -> bool:
17789
- """Remove a keyframe from this properties fcurve.
17741
+ def draw_transform_cache(self, context):
17742
+ """
17790
17743
 
17791
- :return: Success of keyframe deletion.
17792
- :rtype: bool
17744
+ :param context:
17793
17745
  """
17794
17746
  ...
17795
17747
 
17796
- def keyframe_insert(self) -> bool:
17797
- """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
17748
+ def get_constraint(self, _context):
17749
+ """
17798
17750
 
17799
- :return: Success of keyframe insertion.
17800
- :rtype: bool
17751
+ :param _context:
17801
17752
  """
17802
17753
  ...
17803
17754
 
17804
- def keys(self):
17805
- """Returns the keys of this objects custom properties (matches Python's
17806
- dictionary function of the same name).
17755
+ def space_template(self, layout, con, target=True, owner=True, separator=True):
17756
+ """
17807
17757
 
17808
- :return: custom property keys.
17758
+ :param layout:
17759
+ :param con:
17760
+ :param target:
17761
+ :param owner:
17762
+ :param separator:
17809
17763
  """
17810
17764
  ...
17811
17765
 
17812
- def path_from_id(self) -> str:
17813
- """Returns the data path from the ID to this object (string).
17766
+ def target_template(self, layout, con, subtargets=True):
17767
+ """
17814
17768
 
17815
- :return: The path from `bpy.types.bpy_struct.id_data`
17816
- to this struct and property (when given).
17817
- :rtype: str
17769
+ :param layout:
17770
+ :param con:
17771
+ :param subtargets:
17818
17772
  """
17819
17773
  ...
17820
17774
 
17821
- def path_resolve(self):
17822
- """Returns the property from the path, raise an exception when not found."""
17775
+ class ConstraintButtonsSubPanel:
17776
+ bl_label: typing.Any
17777
+ bl_region_type: typing.Any
17778
+ bl_space_type: typing.Any
17779
+
17780
+ def draw_action_action(self, context):
17781
+ """
17782
+
17783
+ :param context:
17784
+ """
17823
17785
  ...
17824
17786
 
17825
- def poll(self, context):
17787
+ def draw_action_target(self, context):
17826
17788
  """
17827
17789
 
17828
17790
  :param context:
17829
17791
  """
17830
17792
  ...
17831
17793
 
17832
- def pop(self):
17833
- """Remove and return the value of the custom property assigned to key or default
17834
- when not found (matches Python's dictionary function of the same name).
17794
+ def draw_armature_bones(self, context):
17795
+ """
17835
17796
 
17797
+ :param context:
17836
17798
  """
17837
17799
  ...
17838
17800
 
17839
- def prepend(self, draw_func):
17840
- """Prepend a draw function to this menu, takes the same arguments as
17841
- the menus draw function
17801
+ def draw_spline_ik_chain_scaling(self, context):
17802
+ """
17842
17803
 
17843
- :param draw_func:
17804
+ :param context:
17844
17805
  """
17845
17806
  ...
17846
17807
 
17847
- def property_overridable_library_set(self) -> bool:
17848
- """Define a property as overridable or not (only for custom properties!).
17808
+ def draw_spline_ik_fitting(self, context):
17809
+ """
17849
17810
 
17850
- :return: True when the overridable status of the property was successfully set.
17851
- :rtype: bool
17811
+ :param context:
17852
17812
  """
17853
17813
  ...
17854
17814
 
17855
- def property_unset(self):
17856
- """Unset a property, will use default value afterward."""
17815
+ def draw_transform_cache_layers(self, context):
17816
+ """
17817
+
17818
+ :param context:
17819
+ """
17857
17820
  ...
17858
17821
 
17859
- def remove(self, draw_func):
17860
- """Remove a draw function that has been added to this menu
17822
+ def draw_transform_cache_procedural(self, context):
17823
+ """
17861
17824
 
17862
- :param draw_func:
17825
+ :param context:
17863
17826
  """
17864
17827
  ...
17865
17828
 
17866
- def type_recast(self):
17867
- """Return a new instance, this is needed because types
17868
- such as textures can be changed at runtime.
17829
+ def draw_transform_cache_subpanel(self, context, template_func):
17830
+ """
17869
17831
 
17870
- :return: a new instance of this object with the type initialized again.
17832
+ :param context:
17833
+ :param template_func:
17871
17834
  """
17872
17835
  ...
17873
17836
 
17874
- def values(self):
17875
- """Returns the values of this objects custom properties (matches Python's
17876
- dictionary function of the same name).
17837
+ def draw_transform_cache_time(self, context):
17838
+ """
17877
17839
 
17878
- :return: custom property values.
17840
+ :param context:
17841
+ """
17842
+ ...
17843
+
17844
+ def draw_transform_cache_velocity(self, context):
17845
+ """
17846
+
17847
+ :param context:
17848
+ """
17849
+ ...
17850
+
17851
+ def draw_transform_from(self, context):
17852
+ """
17853
+
17854
+ :param context:
17855
+ """
17856
+ ...
17857
+
17858
+ def draw_transform_to(self, context):
17859
+ """
17860
+
17861
+ :param context:
17862
+ """
17863
+ ...
17864
+
17865
+ def get_constraint(self, _context):
17866
+ """
17867
+
17868
+ :param _context:
17879
17869
  """
17880
17870
  ...
17881
17871
 
@@ -34266,3 +34256,13 @@ class OBJECT_PT_constraints(ObjectConstraintPanel, bpy_types._GenericUI):
34266
34256
  :return: custom property values.
34267
34257
  """
34268
34258
  ...
34259
+
34260
+ class ObjectConstraintPanel:
34261
+ bl_context: typing.Any
34262
+
34263
+ def poll(self, context):
34264
+ """
34265
+
34266
+ :param context:
34267
+ """
34268
+ ...