fake-bpy-module 20250522__py3-none-any.whl → 20250603__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.
- _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
- bl_ui/node_add_menu/__init__.pyi +3 -3
- bl_ui/node_add_menu_geometry/__init__.pyi +2 -2
- bl_ui/properties_paint_common/__init__.pyi +1 -0
- bl_ui/space_dopesheet/__init__.pyi +24 -0
- bl_ui/space_graph/__init__.pyi +22 -0
- bl_ui/space_nla/__init__.pyi +22 -0
- bl_ui/space_node/__init__.pyi +28 -0
- bl_ui/space_sequencer/__init__.pyi +49 -0
- bl_ui/space_spreadsheet/__init__.pyi +33 -19
- bl_ui/space_view3d_toolbar/__init__.pyi +41 -0
- bl_ui/utils/__init__.pyi +17 -0
- bpy/app/__init__.pyi +3 -3
- bpy/app/timers/__init__.pyi +0 -9
- bpy/ops/action/__init__.pyi +14 -13
- bpy/ops/boid/__init__.pyi +3 -3
- bpy/ops/brush/__init__.pyi +4 -3
- bpy/ops/clip/__init__.pyi +3 -3
- bpy/ops/curve/__init__.pyi +5 -5
- bpy/ops/curves/__init__.pyi +9 -9
- bpy/ops/dpaint/__init__.pyi +3 -3
- bpy/ops/geometry/__init__.pyi +22 -19
- bpy/ops/graph/__init__.pyi +19 -17
- bpy/ops/grease_pencil/__init__.pyi +50 -9
- bpy/ops/image/__init__.pyi +12 -9
- bpy/ops/lattice/__init__.pyi +3 -3
- bpy/ops/mesh/__init__.pyi +45 -43
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/node/__init__.pyi +40 -3
- bpy/ops/object/__init__.pyi +76 -69
- bpy/ops/outliner/__init__.pyi +5 -5
- bpy/ops/paint/__init__.pyi +9 -7
- bpy/ops/pose/__init__.pyi +15 -13
- bpy/ops/rigidbody/__init__.pyi +9 -9
- bpy/ops/scene/__init__.pyi +12 -9
- bpy/ops/screen/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +63 -48
- bpy/ops/sound/__init__.pyi +3 -3
- bpy/ops/transform/__init__.pyi +89 -73
- bpy/ops/uv/__init__.pyi +3 -3
- bpy/ops/wm/__init__.pyi +35 -22
- bpy/props/__init__.pyi +61 -59
- bpy/{_typing → stub_internal}/rna_enums/__init__.pyi +3 -1
- bpy/types/__init__.pyi +40409 -33948
- {fake_bpy_module-20250522.dist-info → fake_bpy_module-20250603.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250522.dist-info → fake_bpy_module-20250603.dist-info}/RECORD +54 -54
- {fake_bpy_module-20250522.dist-info → fake_bpy_module-20250603.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- gpu/__init__.pyi +35 -3
- gpu/shader/__init__.pyi +16 -0
- gpu/types/__init__.pyi +1 -1
- mathutils/__init__.pyi +4 -6
- /bpy/{_typing → stub_internal}/__init__.pyi +0 -0
- {fake_bpy_module-20250522.dist-info → fake_bpy_module-20250603.dist-info}/top_level.txt +0 -0
|
@@ -15,7 +15,7 @@ def wheel_version_from_filename_for_cmp(filename):
|
|
|
15
15
|
the trailing text is compared as a string which is not technically correct
|
|
16
16
|
however this is not a priority to support since scripts should only be including stable releases,
|
|
17
17
|
so comparing the first 3 numbers is sufficient. The trailing string is just a tie breaker in the
|
|
18
|
-
unlikely event it differs.If supporting the full spec, comparing: "1.1.dev6" with "1.1.6rc6" for
|
|
18
|
+
unlikely event it differs.If supporting the full spec, comparing: "1.1.dev6" with "1.1.6rc6" for example
|
|
19
19
|
we could support this doesn't seem especially important as extensions should use major releases.
|
|
20
20
|
|
|
21
21
|
"""
|
bl_ui/node_add_menu/__init__.pyi
CHANGED
|
@@ -37,12 +37,12 @@ def add_foreach_geometry_element_zone(layout, label): ...
|
|
|
37
37
|
def add_node_type(layout, node_type, *, label=None, poll=None, search_weight=0.0):
|
|
38
38
|
"""Add a node type to a menu."""
|
|
39
39
|
|
|
40
|
+
def add_node_type_with_outputs(
|
|
41
|
+
context, layout, node_type, subnames, *, label=None, search_weight=0.0
|
|
42
|
+
): ...
|
|
40
43
|
def add_node_type_with_searchable_enum(
|
|
41
44
|
context, layout, node_idname, property_name, search_weight=0.0
|
|
42
45
|
): ...
|
|
43
|
-
def add_node_type_with_subnames(
|
|
44
|
-
context, layout, node_type, subnames, *, label=None, search_weight=0.0
|
|
45
|
-
): ...
|
|
46
46
|
def add_repeat_zone(layout, label): ...
|
|
47
47
|
def add_simulation_zone(layout, label):
|
|
48
48
|
"""Add simulation zone to a menu."""
|
|
@@ -50,10 +50,10 @@ class NODE_MT_category_GEO_OUTPUT(bpy.types.Menu):
|
|
|
50
50
|
:rtype: typing.Any
|
|
51
51
|
"""
|
|
52
52
|
|
|
53
|
-
def draw(self,
|
|
53
|
+
def draw(self, context):
|
|
54
54
|
"""
|
|
55
55
|
|
|
56
|
-
:param
|
|
56
|
+
:param context:
|
|
57
57
|
"""
|
|
58
58
|
|
|
59
59
|
class NODE_MT_category_GEO_POINT(bpy.types.Menu):
|
|
@@ -367,5 +367,6 @@ def brush_shared_settings(layout, context, brush, popover=False):
|
|
|
367
367
|
"""Draw simple brush settings that are shared between different paint modes."""
|
|
368
368
|
|
|
369
369
|
def brush_texture_settings(layout, brush, sculpt): ...
|
|
370
|
+
def color_jitter_panel(layout, context, brush): ...
|
|
370
371
|
def draw_color_settings(context, layout, brush, color_type=False):
|
|
371
372
|
"""Draw color wheel and gradient settings."""
|
|
@@ -3,6 +3,7 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import bl_ui.properties_data_grease_pencil
|
|
6
|
+
import bl_ui.utils
|
|
6
7
|
import bpy.types
|
|
7
8
|
import rna_prop_ui
|
|
8
9
|
|
|
@@ -694,6 +695,29 @@ class DOPESHEET_PT_grease_pencil_mode(
|
|
|
694
695
|
:param context:
|
|
695
696
|
"""
|
|
696
697
|
|
|
698
|
+
class DOPESHEET_PT_playhead_snapping(
|
|
699
|
+
bl_ui.utils.PlayheadSnappingPanel, bpy.types.Panel
|
|
700
|
+
):
|
|
701
|
+
bl_label: typing.Any
|
|
702
|
+
bl_region_type: typing.Any
|
|
703
|
+
bl_rna: typing.Any
|
|
704
|
+
bl_space_type: typing.Any
|
|
705
|
+
id_data: typing.Any
|
|
706
|
+
|
|
707
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
708
|
+
"""
|
|
709
|
+
|
|
710
|
+
:return: The RNA type or default when not found.
|
|
711
|
+
:rtype: bpy.types.Struct
|
|
712
|
+
"""
|
|
713
|
+
|
|
714
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
715
|
+
"""
|
|
716
|
+
|
|
717
|
+
:return: The class or default when not found.
|
|
718
|
+
:rtype: typing.Any
|
|
719
|
+
"""
|
|
720
|
+
|
|
697
721
|
class DOPESHEET_PT_proportional_edit(bpy.types.Panel):
|
|
698
722
|
bl_label: typing.Any
|
|
699
723
|
bl_region_type: typing.Any
|
bl_ui/space_graph/__init__.pyi
CHANGED
|
@@ -3,6 +3,7 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import bl_ui.space_dopesheet
|
|
6
|
+
import bl_ui.utils
|
|
6
7
|
import bpy.types
|
|
7
8
|
|
|
8
9
|
class GRAPH_HT_header(bpy.types.Header):
|
|
@@ -489,6 +490,27 @@ class GRAPH_PT_filters(
|
|
|
489
490
|
:param context:
|
|
490
491
|
"""
|
|
491
492
|
|
|
493
|
+
class GRAPH_PT_playhead_snapping(bl_ui.utils.PlayheadSnappingPanel, bpy.types.Panel):
|
|
494
|
+
bl_label: typing.Any
|
|
495
|
+
bl_region_type: typing.Any
|
|
496
|
+
bl_rna: typing.Any
|
|
497
|
+
bl_space_type: typing.Any
|
|
498
|
+
id_data: typing.Any
|
|
499
|
+
|
|
500
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
501
|
+
"""
|
|
502
|
+
|
|
503
|
+
:return: The RNA type or default when not found.
|
|
504
|
+
:rtype: bpy.types.Struct
|
|
505
|
+
"""
|
|
506
|
+
|
|
507
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
508
|
+
"""
|
|
509
|
+
|
|
510
|
+
:return: The class or default when not found.
|
|
511
|
+
:rtype: typing.Any
|
|
512
|
+
"""
|
|
513
|
+
|
|
492
514
|
class GRAPH_PT_proportional_edit(bpy.types.Panel):
|
|
493
515
|
bl_label: typing.Any
|
|
494
516
|
bl_region_type: typing.Any
|
bl_ui/space_nla/__init__.pyi
CHANGED
|
@@ -3,6 +3,7 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import bl_ui.space_dopesheet
|
|
6
|
+
import bl_ui.utils
|
|
6
7
|
import bpy.types
|
|
7
8
|
|
|
8
9
|
class NLA_HT_header(bpy.types.Header):
|
|
@@ -421,6 +422,27 @@ class NLA_PT_filters(bl_ui.space_dopesheet.DopesheetFilterPopoverBase, bpy.types
|
|
|
421
422
|
:param context:
|
|
422
423
|
"""
|
|
423
424
|
|
|
425
|
+
class NLA_PT_playhead_snapping(bl_ui.utils.PlayheadSnappingPanel, bpy.types.Panel):
|
|
426
|
+
bl_label: typing.Any
|
|
427
|
+
bl_region_type: typing.Any
|
|
428
|
+
bl_rna: typing.Any
|
|
429
|
+
bl_space_type: typing.Any
|
|
430
|
+
id_data: typing.Any
|
|
431
|
+
|
|
432
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
433
|
+
"""
|
|
434
|
+
|
|
435
|
+
:return: The RNA type or default when not found.
|
|
436
|
+
:rtype: bpy.types.Struct
|
|
437
|
+
"""
|
|
438
|
+
|
|
439
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
440
|
+
"""
|
|
441
|
+
|
|
442
|
+
:return: The class or default when not found.
|
|
443
|
+
:rtype: typing.Any
|
|
444
|
+
"""
|
|
445
|
+
|
|
424
446
|
class NLA_PT_snapping(bpy.types.Panel):
|
|
425
447
|
bl_label: typing.Any
|
|
426
448
|
bl_region_type: typing.Any
|
bl_ui/space_node/__init__.pyi
CHANGED
|
@@ -611,6 +611,34 @@ class NODE_PT_geometry_node_tool_options(bpy.types.Panel):
|
|
|
611
611
|
:param context:
|
|
612
612
|
"""
|
|
613
613
|
|
|
614
|
+
class NODE_PT_gizmo_display(bpy.types.Panel):
|
|
615
|
+
bl_label: typing.Any
|
|
616
|
+
bl_region_type: typing.Any
|
|
617
|
+
bl_rna: typing.Any
|
|
618
|
+
bl_space_type: typing.Any
|
|
619
|
+
bl_ui_units_x: typing.Any
|
|
620
|
+
id_data: typing.Any
|
|
621
|
+
|
|
622
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
623
|
+
"""
|
|
624
|
+
|
|
625
|
+
:return: The RNA type or default when not found.
|
|
626
|
+
:rtype: bpy.types.Struct
|
|
627
|
+
"""
|
|
628
|
+
|
|
629
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
630
|
+
"""
|
|
631
|
+
|
|
632
|
+
:return: The class or default when not found.
|
|
633
|
+
:rtype: typing.Any
|
|
634
|
+
"""
|
|
635
|
+
|
|
636
|
+
def draw(self, context):
|
|
637
|
+
"""
|
|
638
|
+
|
|
639
|
+
:param context:
|
|
640
|
+
"""
|
|
641
|
+
|
|
614
642
|
class NODE_PT_material_slots(bpy.types.Panel):
|
|
615
643
|
bl_label: typing.Any
|
|
616
644
|
bl_region_type: typing.Any
|
|
@@ -4,6 +4,7 @@ import typing_extensions
|
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import bl_ui.properties_grease_pencil_common
|
|
6
6
|
import bl_ui.space_toolsystem_common
|
|
7
|
+
import bl_ui.utils
|
|
7
8
|
import bpy.types
|
|
8
9
|
import rna_prop_ui
|
|
9
10
|
|
|
@@ -758,6 +759,31 @@ class SEQUENCER_MT_strip_effect(bpy.types.Menu):
|
|
|
758
759
|
:param _context:
|
|
759
760
|
"""
|
|
760
761
|
|
|
762
|
+
class SEQUENCER_MT_strip_effect_change(bpy.types.Menu):
|
|
763
|
+
bl_label: typing.Any
|
|
764
|
+
bl_rna: typing.Any
|
|
765
|
+
id_data: typing.Any
|
|
766
|
+
|
|
767
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
768
|
+
"""
|
|
769
|
+
|
|
770
|
+
:return: The RNA type or default when not found.
|
|
771
|
+
:rtype: bpy.types.Struct
|
|
772
|
+
"""
|
|
773
|
+
|
|
774
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
775
|
+
"""
|
|
776
|
+
|
|
777
|
+
:return: The class or default when not found.
|
|
778
|
+
:rtype: typing.Any
|
|
779
|
+
"""
|
|
780
|
+
|
|
781
|
+
def draw(self, context):
|
|
782
|
+
"""
|
|
783
|
+
|
|
784
|
+
:param context:
|
|
785
|
+
"""
|
|
786
|
+
|
|
761
787
|
class SEQUENCER_MT_strip_input(bpy.types.Menu):
|
|
762
788
|
bl_label: typing.Any
|
|
763
789
|
bl_rna: typing.Any
|
|
@@ -1875,6 +1901,29 @@ class SEQUENCER_PT_overlay(bpy.types.Panel):
|
|
|
1875
1901
|
:param _context:
|
|
1876
1902
|
"""
|
|
1877
1903
|
|
|
1904
|
+
class SEQUENCER_PT_playhead_snapping(
|
|
1905
|
+
bl_ui.utils.PlayheadSnappingPanel, bpy.types.Panel
|
|
1906
|
+
):
|
|
1907
|
+
bl_label: typing.Any
|
|
1908
|
+
bl_region_type: typing.Any
|
|
1909
|
+
bl_rna: typing.Any
|
|
1910
|
+
bl_space_type: typing.Any
|
|
1911
|
+
id_data: typing.Any
|
|
1912
|
+
|
|
1913
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1914
|
+
"""
|
|
1915
|
+
|
|
1916
|
+
:return: The RNA type or default when not found.
|
|
1917
|
+
:rtype: bpy.types.Struct
|
|
1918
|
+
"""
|
|
1919
|
+
|
|
1920
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1921
|
+
"""
|
|
1922
|
+
|
|
1923
|
+
:return: The class or default when not found.
|
|
1924
|
+
:rtype: typing.Any
|
|
1925
|
+
"""
|
|
1926
|
+
|
|
1878
1927
|
class SEQUENCER_PT_preview(SequencerButtonsPanel_Output, bpy.types.Panel):
|
|
1879
1928
|
bl_category: typing.Any
|
|
1880
1929
|
bl_label: typing.Any
|
|
@@ -29,45 +29,59 @@ class SPREADSHEET_HT_header(bpy.types.Header):
|
|
|
29
29
|
:param context:
|
|
30
30
|
"""
|
|
31
31
|
|
|
32
|
-
def
|
|
32
|
+
def selection_filter_available(self, space):
|
|
33
33
|
"""
|
|
34
34
|
|
|
35
|
-
:param
|
|
36
|
-
:param layout:
|
|
37
|
-
:param viewer_path:
|
|
35
|
+
:param space:
|
|
38
36
|
"""
|
|
39
37
|
|
|
40
|
-
|
|
38
|
+
class SPREADSHEET_MT_editor_menus(bpy.types.Menu):
|
|
39
|
+
bl_idname: typing.Any
|
|
40
|
+
bl_label: typing.Any
|
|
41
|
+
bl_rna: typing.Any
|
|
42
|
+
id_data: typing.Any
|
|
43
|
+
|
|
44
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
41
45
|
"""
|
|
42
46
|
|
|
43
|
-
:
|
|
44
|
-
:
|
|
45
|
-
:param viewer_path:
|
|
47
|
+
:return: The RNA type or default when not found.
|
|
48
|
+
:rtype: bpy.types.Struct
|
|
46
49
|
"""
|
|
47
50
|
|
|
48
|
-
def
|
|
51
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
49
52
|
"""
|
|
50
53
|
|
|
51
|
-
:
|
|
52
|
-
:
|
|
54
|
+
:return: The class or default when not found.
|
|
55
|
+
:rtype: typing.Any
|
|
53
56
|
"""
|
|
54
57
|
|
|
55
|
-
def
|
|
58
|
+
def draw(self, context):
|
|
56
59
|
"""
|
|
57
60
|
|
|
58
|
-
:param
|
|
59
|
-
:param space:
|
|
60
|
-
:param icon:
|
|
61
|
+
:param context:
|
|
61
62
|
"""
|
|
62
63
|
|
|
63
|
-
|
|
64
|
+
class SPREADSHEET_MT_view(bpy.types.Menu):
|
|
65
|
+
bl_label: typing.Any
|
|
66
|
+
bl_rna: typing.Any
|
|
67
|
+
id_data: typing.Any
|
|
68
|
+
|
|
69
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
64
70
|
"""
|
|
65
71
|
|
|
66
|
-
:
|
|
72
|
+
:return: The RNA type or default when not found.
|
|
73
|
+
:rtype: bpy.types.Struct
|
|
67
74
|
"""
|
|
68
75
|
|
|
69
|
-
def
|
|
76
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
70
77
|
"""
|
|
71
78
|
|
|
72
|
-
:
|
|
79
|
+
:return: The class or default when not found.
|
|
80
|
+
:rtype: typing.Any
|
|
81
|
+
"""
|
|
82
|
+
|
|
83
|
+
def draw(self, context):
|
|
84
|
+
"""
|
|
85
|
+
|
|
86
|
+
:param context:
|
|
73
87
|
"""
|
|
@@ -1358,6 +1358,47 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_eraser(View3DPanel, bpy.types.Panel
|
|
|
1358
1358
|
:param context:
|
|
1359
1359
|
"""
|
|
1360
1360
|
|
|
1361
|
+
class VIEW3D_PT_tools_grease_pencil_v3_brush_fill_advanced(
|
|
1362
|
+
View3DPanel, bpy.types.Panel
|
|
1363
|
+
):
|
|
1364
|
+
bl_category: typing.Any
|
|
1365
|
+
bl_context: typing.Any
|
|
1366
|
+
bl_label: typing.Any
|
|
1367
|
+
bl_options: typing.Any
|
|
1368
|
+
bl_parent_id: typing.Any
|
|
1369
|
+
bl_region_type: typing.Any
|
|
1370
|
+
bl_rna: typing.Any
|
|
1371
|
+
bl_space_type: typing.Any
|
|
1372
|
+
bl_ui_units_x: typing.Any
|
|
1373
|
+
id_data: typing.Any
|
|
1374
|
+
|
|
1375
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1376
|
+
"""
|
|
1377
|
+
|
|
1378
|
+
:return: The RNA type or default when not found.
|
|
1379
|
+
:rtype: bpy.types.Struct
|
|
1380
|
+
"""
|
|
1381
|
+
|
|
1382
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1383
|
+
"""
|
|
1384
|
+
|
|
1385
|
+
:return: The class or default when not found.
|
|
1386
|
+
:rtype: typing.Any
|
|
1387
|
+
"""
|
|
1388
|
+
|
|
1389
|
+
def draw(self, context):
|
|
1390
|
+
"""
|
|
1391
|
+
|
|
1392
|
+
:param context:
|
|
1393
|
+
"""
|
|
1394
|
+
|
|
1395
|
+
@classmethod
|
|
1396
|
+
def poll(cls, context):
|
|
1397
|
+
"""
|
|
1398
|
+
|
|
1399
|
+
:param context:
|
|
1400
|
+
"""
|
|
1401
|
+
|
|
1361
1402
|
class VIEW3D_PT_tools_grease_pencil_v3_brush_gap_closure(View3DPanel, bpy.types.Panel):
|
|
1362
1403
|
bl_category: typing.Any
|
|
1363
1404
|
bl_context: typing.Any
|
bl_ui/utils/__init__.pyi
CHANGED
|
@@ -3,6 +3,23 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
|
|
6
|
+
class PlayheadSnappingPanel:
|
|
7
|
+
bl_label: typing.Any
|
|
8
|
+
bl_region_type: typing.Any
|
|
9
|
+
|
|
10
|
+
def draw(self, context):
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
:param context:
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
@classmethod
|
|
17
|
+
def poll(cls, context):
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
:param context:
|
|
21
|
+
"""
|
|
22
|
+
|
|
6
23
|
class PresetPanel:
|
|
7
24
|
bl_label: typing.Any
|
|
8
25
|
bl_region_type: typing.Any
|
bpy/app/__init__.pyi
CHANGED
|
@@ -15,7 +15,7 @@ import typing
|
|
|
15
15
|
import collections.abc
|
|
16
16
|
import typing_extensions
|
|
17
17
|
import numpy.typing as npt
|
|
18
|
-
import bpy.
|
|
18
|
+
import bpy.stub_internal.rna_enums
|
|
19
19
|
|
|
20
20
|
from . import handlers as handlers
|
|
21
21
|
from . import icons as icons
|
|
@@ -29,11 +29,11 @@ def help_text(all: bool | None = False):
|
|
|
29
29
|
:type all: bool | None
|
|
30
30
|
"""
|
|
31
31
|
|
|
32
|
-
def is_job_running(job_type: bpy.
|
|
32
|
+
def is_job_running(job_type: bpy.stub_internal.rna_enums.WmJobTypeItems):
|
|
33
33
|
"""Check whether a job of the given type is running.
|
|
34
34
|
|
|
35
35
|
:param job_type: job type in `rna_enum_wm_job_type_items`.
|
|
36
|
-
:type job_type: bpy.
|
|
36
|
+
:type job_type: bpy.stub_internal.rna_enums.WmJobTypeItems
|
|
37
37
|
:return: Whether a job of the given type is currently running.
|
|
38
38
|
"""
|
|
39
39
|
|
bpy/app/timers/__init__.pyi
CHANGED
|
@@ -19,15 +19,6 @@
|
|
|
19
19
|
|
|
20
20
|
```../examples/bpy.app.timers.4.py```
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
--------------------
|
|
24
|
-
|
|
25
|
-
You should never modify Blender data at arbitrary points in time in separate threads.
|
|
26
|
-
However you can use a queue to collect all the actions that should be executed when Blender is in the right state again.
|
|
27
|
-
Pythons queue.Queue can be used here, because it implements the required locking semantics.
|
|
28
|
-
|
|
29
|
-
```../examples/bpy.app.timers.5.py```
|
|
30
|
-
|
|
31
22
|
"""
|
|
32
23
|
|
|
33
24
|
import typing
|
bpy/ops/action/__init__.pyi
CHANGED
|
@@ -2,8 +2,8 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
-
import bpy._typing.rna_enums
|
|
6
5
|
import bpy.ops.transform
|
|
6
|
+
import bpy.stub_internal.rna_enums
|
|
7
7
|
import bpy.types
|
|
8
8
|
|
|
9
9
|
def bake_keys(execution_context: int | str | None = None, undo: bool | None = None):
|
|
@@ -116,14 +116,14 @@ def easing_type(
|
|
|
116
116
|
undo: bool | None = None,
|
|
117
117
|
/,
|
|
118
118
|
*,
|
|
119
|
-
type: bpy.
|
|
119
|
+
type: bpy.stub_internal.rna_enums.BeztripleInterpolationEasingItems | None = "AUTO",
|
|
120
120
|
):
|
|
121
121
|
"""Set easing type for the F-Curve segments starting from the selected keyframes
|
|
122
122
|
|
|
123
123
|
:type execution_context: int | str | None
|
|
124
124
|
:type undo: bool | None
|
|
125
125
|
:param type: Type
|
|
126
|
-
:type type: bpy.
|
|
126
|
+
:type type: bpy.stub_internal.rna_enums.BeztripleInterpolationEasingItems | None
|
|
127
127
|
"""
|
|
128
128
|
|
|
129
129
|
def extrapolation_type(
|
|
@@ -166,14 +166,14 @@ def handle_type(
|
|
|
166
166
|
undo: bool | None = None,
|
|
167
167
|
/,
|
|
168
168
|
*,
|
|
169
|
-
type: bpy.
|
|
169
|
+
type: bpy.stub_internal.rna_enums.KeyframeHandleTypeItems | None = "FREE",
|
|
170
170
|
):
|
|
171
171
|
"""Set type of handle for selected keyframes
|
|
172
172
|
|
|
173
173
|
:type execution_context: int | str | None
|
|
174
174
|
:type undo: bool | None
|
|
175
175
|
:param type: Type
|
|
176
|
-
:type type: bpy.
|
|
176
|
+
:type type: bpy.stub_internal.rna_enums.KeyframeHandleTypeItems | None
|
|
177
177
|
"""
|
|
178
178
|
|
|
179
179
|
def interpolation_type(
|
|
@@ -181,14 +181,15 @@ def interpolation_type(
|
|
|
181
181
|
undo: bool | None = None,
|
|
182
182
|
/,
|
|
183
183
|
*,
|
|
184
|
-
type: bpy.
|
|
184
|
+
type: bpy.stub_internal.rna_enums.BeztripleInterpolationModeItems
|
|
185
|
+
| None = "CONSTANT",
|
|
185
186
|
):
|
|
186
187
|
"""Set interpolation mode for the F-Curve segments starting from the selected keyframes
|
|
187
188
|
|
|
188
189
|
:type execution_context: int | str | None
|
|
189
190
|
:type undo: bool | None
|
|
190
191
|
:param type: Type
|
|
191
|
-
:type type: bpy.
|
|
192
|
+
:type type: bpy.stub_internal.rna_enums.BeztripleInterpolationModeItems | None
|
|
192
193
|
"""
|
|
193
194
|
|
|
194
195
|
def keyframe_insert(
|
|
@@ -211,14 +212,14 @@ def keyframe_type(
|
|
|
211
212
|
undo: bool | None = None,
|
|
212
213
|
/,
|
|
213
214
|
*,
|
|
214
|
-
type: bpy.
|
|
215
|
+
type: bpy.stub_internal.rna_enums.BeztripleKeyframeTypeItems | None = "KEYFRAME",
|
|
215
216
|
):
|
|
216
217
|
"""Set type of keyframe for the selected keyframes
|
|
217
218
|
|
|
218
219
|
:type execution_context: int | str | None
|
|
219
220
|
:type undo: bool | None
|
|
220
221
|
:param type: Type
|
|
221
|
-
:type type: bpy.
|
|
222
|
+
:type type: bpy.stub_internal.rna_enums.BeztripleKeyframeTypeItems | None
|
|
222
223
|
"""
|
|
223
224
|
|
|
224
225
|
def layer_next(execution_context: int | str | None = None, undo: bool | None = None):
|
|
@@ -280,8 +281,8 @@ def paste(
|
|
|
280
281
|
undo: bool | None = None,
|
|
281
282
|
/,
|
|
282
283
|
*,
|
|
283
|
-
offset: bpy.
|
|
284
|
-
merge: bpy.
|
|
284
|
+
offset: bpy.stub_internal.rna_enums.KeyframePasteOffsetItems | None = "START",
|
|
285
|
+
merge: bpy.stub_internal.rna_enums.KeyframePasteMergeItems | None = "MIX",
|
|
285
286
|
flipped: bool | None = False,
|
|
286
287
|
):
|
|
287
288
|
"""Paste keyframes from the internal clipboard for the selected channels, starting on the current frame
|
|
@@ -289,9 +290,9 @@ def paste(
|
|
|
289
290
|
:type execution_context: int | str | None
|
|
290
291
|
:type undo: bool | None
|
|
291
292
|
:param offset: Offset, Paste time offset of keys
|
|
292
|
-
:type offset: bpy.
|
|
293
|
+
:type offset: bpy.stub_internal.rna_enums.KeyframePasteOffsetItems | None
|
|
293
294
|
:param merge: Type, Method of merging pasted keys and existing
|
|
294
|
-
:type merge: bpy.
|
|
295
|
+
:type merge: bpy.stub_internal.rna_enums.KeyframePasteMergeItems | None
|
|
295
296
|
:param flipped: Flipped, Paste keyframes from mirrored bones if they exist
|
|
296
297
|
:type flipped: bool | None
|
|
297
298
|
"""
|
bpy/ops/boid/__init__.pyi
CHANGED
|
@@ -2,21 +2,21 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
-
import bpy.
|
|
5
|
+
import bpy.stub_internal.rna_enums
|
|
6
6
|
|
|
7
7
|
def rule_add(
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
/,
|
|
11
11
|
*,
|
|
12
|
-
type: bpy.
|
|
12
|
+
type: bpy.stub_internal.rna_enums.BoidruleTypeItems | None = "GOAL",
|
|
13
13
|
):
|
|
14
14
|
"""Add a boid rule to the current boid state
|
|
15
15
|
|
|
16
16
|
:type execution_context: int | str | None
|
|
17
17
|
:type undo: bool | None
|
|
18
18
|
:param type: Type
|
|
19
|
-
:type type: bpy.
|
|
19
|
+
:type type: bpy.stub_internal.rna_enums.BoidruleTypeItems | None
|
|
20
20
|
"""
|
|
21
21
|
|
|
22
22
|
def rule_del(execution_context: int | str | None = None, undo: bool | None = None):
|
bpy/ops/brush/__init__.pyi
CHANGED
|
@@ -2,14 +2,15 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
-
import bpy.
|
|
5
|
+
import bpy.stub_internal.rna_enums
|
|
6
6
|
|
|
7
7
|
def asset_activate(
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
/,
|
|
11
11
|
*,
|
|
12
|
-
asset_library_type: bpy.
|
|
12
|
+
asset_library_type: bpy.stub_internal.rna_enums.AssetLibraryTypeItems
|
|
13
|
+
| None = "LOCAL",
|
|
13
14
|
asset_library_identifier: str = "",
|
|
14
15
|
relative_asset_identifier: str = "",
|
|
15
16
|
use_toggle: bool | None = False,
|
|
@@ -19,7 +20,7 @@ def asset_activate(
|
|
|
19
20
|
:type execution_context: int | str | None
|
|
20
21
|
:type undo: bool | None
|
|
21
22
|
:param asset_library_type: Asset Library Type
|
|
22
|
-
:type asset_library_type: bpy.
|
|
23
|
+
:type asset_library_type: bpy.stub_internal.rna_enums.AssetLibraryTypeItems | None
|
|
23
24
|
:param asset_library_identifier: Asset Library Identifier
|
|
24
25
|
:type asset_library_identifier: str
|
|
25
26
|
:param relative_asset_identifier: Relative Asset Identifier
|
bpy/ops/clip/__init__.pyi
CHANGED
|
@@ -2,8 +2,8 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
-
import bpy._typing.rna_enums
|
|
6
5
|
import bpy.ops.transform
|
|
6
|
+
import bpy.stub_internal.rna_enums
|
|
7
7
|
import bpy.types
|
|
8
8
|
import mathutils
|
|
9
9
|
|
|
@@ -648,14 +648,14 @@ def mode_set(
|
|
|
648
648
|
undo: bool | None = None,
|
|
649
649
|
/,
|
|
650
650
|
*,
|
|
651
|
-
mode: bpy.
|
|
651
|
+
mode: bpy.stub_internal.rna_enums.ClipEditorModeItems | None = "TRACKING",
|
|
652
652
|
):
|
|
653
653
|
"""Set the clip interaction mode
|
|
654
654
|
|
|
655
655
|
:type execution_context: int | str | None
|
|
656
656
|
:type undo: bool | None
|
|
657
657
|
:param mode: Mode
|
|
658
|
-
:type mode: bpy.
|
|
658
|
+
:type mode: bpy.stub_internal.rna_enums.ClipEditorModeItems | None
|
|
659
659
|
"""
|
|
660
660
|
|
|
661
661
|
def new_image_from_plane_marker(
|
bpy/ops/curve/__init__.pyi
CHANGED
|
@@ -2,8 +2,8 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
-
import bpy._typing.rna_enums
|
|
6
5
|
import bpy.ops.transform
|
|
6
|
+
import bpy.stub_internal.rna_enums
|
|
7
7
|
import bpy.types
|
|
8
8
|
import mathutils
|
|
9
9
|
|
|
@@ -85,7 +85,7 @@ def draw(
|
|
|
85
85
|
/,
|
|
86
86
|
*,
|
|
87
87
|
error_threshold: float | None = 0.0,
|
|
88
|
-
fit_method: bpy.
|
|
88
|
+
fit_method: bpy.stub_internal.rna_enums.CurveFitMethodItems | None = "REFIT",
|
|
89
89
|
corner_angle: float | None = 1.22173,
|
|
90
90
|
use_cyclic: bool | None = True,
|
|
91
91
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
@@ -99,7 +99,7 @@ def draw(
|
|
|
99
99
|
:param error_threshold: Error, Error distance threshold (in object units)
|
|
100
100
|
:type error_threshold: float | None
|
|
101
101
|
:param fit_method: Fit Method
|
|
102
|
-
:type fit_method: bpy.
|
|
102
|
+
:type fit_method: bpy.stub_internal.rna_enums.CurveFitMethodItems | None
|
|
103
103
|
:param corner_angle: Corner Angle
|
|
104
104
|
:type corner_angle: float | None
|
|
105
105
|
:param use_cyclic: Cyclic
|
|
@@ -140,14 +140,14 @@ def extrude(
|
|
|
140
140
|
undo: bool | None = None,
|
|
141
141
|
/,
|
|
142
142
|
*,
|
|
143
|
-
mode: bpy.
|
|
143
|
+
mode: bpy.stub_internal.rna_enums.TransformModeTypeItems | None = "TRANSLATION",
|
|
144
144
|
):
|
|
145
145
|
"""Extrude selected control point(s)
|
|
146
146
|
|
|
147
147
|
:type execution_context: int | str | None
|
|
148
148
|
:type undo: bool | None
|
|
149
149
|
:param mode: Mode
|
|
150
|
-
:type mode: bpy.
|
|
150
|
+
:type mode: bpy.stub_internal.rna_enums.TransformModeTypeItems | None
|
|
151
151
|
"""
|
|
152
152
|
|
|
153
153
|
def extrude_move(
|