fake-bpy-module 20240510__py3-none-any.whl → 20240511__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.
- aud/__init__.pyi +2 -1
- bl_operators/__init__.pyi +1 -0
- bl_operators/world/__init__.pyi +143 -0
- bl_operators/world/py.typed +0 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +181 -0
- blf/__init__.pyi +3 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/grease_pencil/__init__.pyi +19 -0
- bpy/ops/nla/__init__.pyi +2 -2
- bpy/ops/sculpt/__init__.pyi +2 -2
- bpy/ops/world/__init__.pyi +16 -0
- bpy/props/__init__.pyi +2 -2
- bpy/types/__init__.pyi +35 -17
- bpy_types/__init__.pyi +45 -0
- {fake_bpy_module-20240510.dist-info → fake_bpy_module-20240511.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240510.dist-info → fake_bpy_module-20240511.dist-info}/RECORD +21 -19
- freestyle/types/__init__.pyi +5 -2
- mathutils/__init__.pyi +2 -2
- mathutils/geometry/__init__.pyi +2 -1
- {fake_bpy_module-20240510.dist-info → fake_bpy_module-20240511.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240510.dist-info → fake_bpy_module-20240511.dist-info}/top_level.txt +0 -0
aud/__init__.pyi
CHANGED
|
@@ -740,11 +740,12 @@ class Sound:
|
|
|
740
740
|
"""
|
|
741
741
|
...
|
|
742
742
|
|
|
743
|
-
def loop(self, count) -> Sound:
|
|
743
|
+
def loop(self, count: int) -> Sound:
|
|
744
744
|
"""Loops a sound.
|
|
745
745
|
|
|
746
746
|
:param count: How often the sound should be looped.
|
|
747
747
|
Negative values mean endlessly.
|
|
748
|
+
:type count: int
|
|
748
749
|
:return: The created `Sound` object.
|
|
749
750
|
:rtype: Sound
|
|
750
751
|
"""
|
bl_operators/__init__.pyi
CHANGED
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
import bpy_types
|
|
3
|
+
|
|
4
|
+
GenericType = typing.TypeVar("GenericType")
|
|
5
|
+
|
|
6
|
+
class WORLD_OT_convert_volume_to_mesh(bpy_types.Operator):
|
|
7
|
+
""" """
|
|
8
|
+
|
|
9
|
+
bl_idname: typing.Any
|
|
10
|
+
""" """
|
|
11
|
+
|
|
12
|
+
bl_label: typing.Any
|
|
13
|
+
""" """
|
|
14
|
+
|
|
15
|
+
bl_options: typing.Any
|
|
16
|
+
""" """
|
|
17
|
+
|
|
18
|
+
bl_rna: typing.Any
|
|
19
|
+
""" """
|
|
20
|
+
|
|
21
|
+
id_data: typing.Any
|
|
22
|
+
""" """
|
|
23
|
+
|
|
24
|
+
def as_keywords(self, ignore):
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
:param ignore:
|
|
28
|
+
"""
|
|
29
|
+
...
|
|
30
|
+
|
|
31
|
+
def as_pointer(self):
|
|
32
|
+
""" """
|
|
33
|
+
...
|
|
34
|
+
|
|
35
|
+
def bl_rna_get_subclass(self):
|
|
36
|
+
""" """
|
|
37
|
+
...
|
|
38
|
+
|
|
39
|
+
def bl_rna_get_subclass_py(self):
|
|
40
|
+
""" """
|
|
41
|
+
...
|
|
42
|
+
|
|
43
|
+
def driver_add(self):
|
|
44
|
+
""" """
|
|
45
|
+
...
|
|
46
|
+
|
|
47
|
+
def driver_remove(self):
|
|
48
|
+
""" """
|
|
49
|
+
...
|
|
50
|
+
|
|
51
|
+
def execute(self, context):
|
|
52
|
+
"""
|
|
53
|
+
|
|
54
|
+
:param context:
|
|
55
|
+
"""
|
|
56
|
+
...
|
|
57
|
+
|
|
58
|
+
def get(self):
|
|
59
|
+
""" """
|
|
60
|
+
...
|
|
61
|
+
|
|
62
|
+
def id_properties_clear(self):
|
|
63
|
+
""" """
|
|
64
|
+
...
|
|
65
|
+
|
|
66
|
+
def id_properties_ensure(self):
|
|
67
|
+
""" """
|
|
68
|
+
...
|
|
69
|
+
|
|
70
|
+
def id_properties_ui(self):
|
|
71
|
+
""" """
|
|
72
|
+
...
|
|
73
|
+
|
|
74
|
+
def is_property_hidden(self):
|
|
75
|
+
""" """
|
|
76
|
+
...
|
|
77
|
+
|
|
78
|
+
def is_property_overridable_library(self):
|
|
79
|
+
""" """
|
|
80
|
+
...
|
|
81
|
+
|
|
82
|
+
def is_property_readonly(self):
|
|
83
|
+
""" """
|
|
84
|
+
...
|
|
85
|
+
|
|
86
|
+
def is_property_set(self):
|
|
87
|
+
""" """
|
|
88
|
+
...
|
|
89
|
+
|
|
90
|
+
def items(self):
|
|
91
|
+
""" """
|
|
92
|
+
...
|
|
93
|
+
|
|
94
|
+
def keyframe_delete(self):
|
|
95
|
+
""" """
|
|
96
|
+
...
|
|
97
|
+
|
|
98
|
+
def keyframe_insert(self):
|
|
99
|
+
""" """
|
|
100
|
+
...
|
|
101
|
+
|
|
102
|
+
def keys(self):
|
|
103
|
+
""" """
|
|
104
|
+
...
|
|
105
|
+
|
|
106
|
+
def path_from_id(self):
|
|
107
|
+
""" """
|
|
108
|
+
...
|
|
109
|
+
|
|
110
|
+
def path_resolve(self):
|
|
111
|
+
""" """
|
|
112
|
+
...
|
|
113
|
+
|
|
114
|
+
def poll(self, context):
|
|
115
|
+
"""
|
|
116
|
+
|
|
117
|
+
:param context:
|
|
118
|
+
"""
|
|
119
|
+
...
|
|
120
|
+
|
|
121
|
+
def poll_message_set(self):
|
|
122
|
+
""" """
|
|
123
|
+
...
|
|
124
|
+
|
|
125
|
+
def pop(self):
|
|
126
|
+
""" """
|
|
127
|
+
...
|
|
128
|
+
|
|
129
|
+
def property_overridable_library_set(self):
|
|
130
|
+
""" """
|
|
131
|
+
...
|
|
132
|
+
|
|
133
|
+
def property_unset(self):
|
|
134
|
+
""" """
|
|
135
|
+
...
|
|
136
|
+
|
|
137
|
+
def type_recast(self):
|
|
138
|
+
""" """
|
|
139
|
+
...
|
|
140
|
+
|
|
141
|
+
def values(self):
|
|
142
|
+
""" """
|
|
143
|
+
...
|
|
File without changes
|
|
@@ -597,6 +597,187 @@ class GREASE_PENCIL_UL_masks(bpy_types.UIList, bpy_types._GenericUI):
|
|
|
597
597
|
""" """
|
|
598
598
|
...
|
|
599
599
|
|
|
600
|
+
class GreasePencil_MT_group_context_menu(bpy_types.Menu, bpy_types._GenericUI):
|
|
601
|
+
""" """
|
|
602
|
+
|
|
603
|
+
bl_label: typing.Any
|
|
604
|
+
""" """
|
|
605
|
+
|
|
606
|
+
bl_rna: typing.Any
|
|
607
|
+
""" """
|
|
608
|
+
|
|
609
|
+
id_data: typing.Any
|
|
610
|
+
""" """
|
|
611
|
+
|
|
612
|
+
def append(self, draw_func):
|
|
613
|
+
"""
|
|
614
|
+
|
|
615
|
+
:param draw_func:
|
|
616
|
+
"""
|
|
617
|
+
...
|
|
618
|
+
|
|
619
|
+
def as_pointer(self):
|
|
620
|
+
""" """
|
|
621
|
+
...
|
|
622
|
+
|
|
623
|
+
def bl_rna_get_subclass(self):
|
|
624
|
+
""" """
|
|
625
|
+
...
|
|
626
|
+
|
|
627
|
+
def bl_rna_get_subclass_py(self):
|
|
628
|
+
""" """
|
|
629
|
+
...
|
|
630
|
+
|
|
631
|
+
def draw(self, context):
|
|
632
|
+
"""
|
|
633
|
+
|
|
634
|
+
:param context:
|
|
635
|
+
"""
|
|
636
|
+
...
|
|
637
|
+
|
|
638
|
+
def draw_collapsible(self, context, layout):
|
|
639
|
+
"""
|
|
640
|
+
|
|
641
|
+
:param context:
|
|
642
|
+
:param layout:
|
|
643
|
+
"""
|
|
644
|
+
...
|
|
645
|
+
|
|
646
|
+
def draw_preset(self, _context):
|
|
647
|
+
"""
|
|
648
|
+
|
|
649
|
+
:param _context:
|
|
650
|
+
"""
|
|
651
|
+
...
|
|
652
|
+
|
|
653
|
+
def driver_add(self):
|
|
654
|
+
""" """
|
|
655
|
+
...
|
|
656
|
+
|
|
657
|
+
def driver_remove(self):
|
|
658
|
+
""" """
|
|
659
|
+
...
|
|
660
|
+
|
|
661
|
+
def get(self):
|
|
662
|
+
""" """
|
|
663
|
+
...
|
|
664
|
+
|
|
665
|
+
def id_properties_clear(self):
|
|
666
|
+
""" """
|
|
667
|
+
...
|
|
668
|
+
|
|
669
|
+
def id_properties_ensure(self):
|
|
670
|
+
""" """
|
|
671
|
+
...
|
|
672
|
+
|
|
673
|
+
def id_properties_ui(self):
|
|
674
|
+
""" """
|
|
675
|
+
...
|
|
676
|
+
|
|
677
|
+
def is_extended(self):
|
|
678
|
+
""" """
|
|
679
|
+
...
|
|
680
|
+
|
|
681
|
+
def is_property_hidden(self):
|
|
682
|
+
""" """
|
|
683
|
+
...
|
|
684
|
+
|
|
685
|
+
def is_property_overridable_library(self):
|
|
686
|
+
""" """
|
|
687
|
+
...
|
|
688
|
+
|
|
689
|
+
def is_property_readonly(self):
|
|
690
|
+
""" """
|
|
691
|
+
...
|
|
692
|
+
|
|
693
|
+
def is_property_set(self):
|
|
694
|
+
""" """
|
|
695
|
+
...
|
|
696
|
+
|
|
697
|
+
def items(self):
|
|
698
|
+
""" """
|
|
699
|
+
...
|
|
700
|
+
|
|
701
|
+
def keyframe_delete(self):
|
|
702
|
+
""" """
|
|
703
|
+
...
|
|
704
|
+
|
|
705
|
+
def keyframe_insert(self):
|
|
706
|
+
""" """
|
|
707
|
+
...
|
|
708
|
+
|
|
709
|
+
def keys(self):
|
|
710
|
+
""" """
|
|
711
|
+
...
|
|
712
|
+
|
|
713
|
+
def path_from_id(self):
|
|
714
|
+
""" """
|
|
715
|
+
...
|
|
716
|
+
|
|
717
|
+
def path_menu(
|
|
718
|
+
self,
|
|
719
|
+
searchpaths,
|
|
720
|
+
operator,
|
|
721
|
+
props_default,
|
|
722
|
+
prop_filepath,
|
|
723
|
+
filter_ext,
|
|
724
|
+
filter_path,
|
|
725
|
+
display_name,
|
|
726
|
+
add_operator,
|
|
727
|
+
add_operator_props,
|
|
728
|
+
):
|
|
729
|
+
"""
|
|
730
|
+
|
|
731
|
+
:param searchpaths:
|
|
732
|
+
:param operator:
|
|
733
|
+
:param props_default:
|
|
734
|
+
:param prop_filepath:
|
|
735
|
+
:param filter_ext:
|
|
736
|
+
:param filter_path:
|
|
737
|
+
:param display_name:
|
|
738
|
+
:param add_operator:
|
|
739
|
+
:param add_operator_props:
|
|
740
|
+
"""
|
|
741
|
+
...
|
|
742
|
+
|
|
743
|
+
def path_resolve(self):
|
|
744
|
+
""" """
|
|
745
|
+
...
|
|
746
|
+
|
|
747
|
+
def pop(self):
|
|
748
|
+
""" """
|
|
749
|
+
...
|
|
750
|
+
|
|
751
|
+
def prepend(self, draw_func):
|
|
752
|
+
"""
|
|
753
|
+
|
|
754
|
+
:param draw_func:
|
|
755
|
+
"""
|
|
756
|
+
...
|
|
757
|
+
|
|
758
|
+
def property_overridable_library_set(self):
|
|
759
|
+
""" """
|
|
760
|
+
...
|
|
761
|
+
|
|
762
|
+
def property_unset(self):
|
|
763
|
+
""" """
|
|
764
|
+
...
|
|
765
|
+
|
|
766
|
+
def remove(self, draw_func):
|
|
767
|
+
"""
|
|
768
|
+
|
|
769
|
+
:param draw_func:
|
|
770
|
+
"""
|
|
771
|
+
...
|
|
772
|
+
|
|
773
|
+
def type_recast(self):
|
|
774
|
+
""" """
|
|
775
|
+
...
|
|
776
|
+
|
|
777
|
+
def values(self):
|
|
778
|
+
""" """
|
|
779
|
+
...
|
|
780
|
+
|
|
600
781
|
class DATA_PT_context_grease_pencil(
|
|
601
782
|
bpy_types.Panel, DataButtonsPanel, bpy_types._GenericUI
|
|
602
783
|
):
|
blf/__init__.pyi
CHANGED
|
@@ -105,12 +105,13 @@ def enable(fontid: int, option: int):
|
|
|
105
105
|
|
|
106
106
|
...
|
|
107
107
|
|
|
108
|
-
def load(filepath: typing.Union[str, bytes]):
|
|
108
|
+
def load(filepath: typing.Union[str, bytes]) -> int:
|
|
109
109
|
"""Load a new font.
|
|
110
110
|
|
|
111
111
|
:param filepath: the filepath of the font.
|
|
112
112
|
:type filepath: typing.Union[str, bytes]
|
|
113
113
|
:return: the new font's fontid or -1 if there was an error.
|
|
114
|
+
:rtype: int
|
|
114
115
|
"""
|
|
115
116
|
|
|
116
117
|
...
|
|
@@ -146,7 +147,7 @@ def shadow(fontid: int, level: int, r: float, g: float, b: float, a: float):
|
|
|
146
147
|
|
|
147
148
|
:param fontid: The id of the typeface as returned by `blf.load`, for default font use 0.
|
|
148
149
|
:type fontid: int
|
|
149
|
-
:param level: The blur level,
|
|
150
|
+
:param level: The blur level (0, 3, 5) or outline (6).
|
|
150
151
|
:type level: int
|
|
151
152
|
:param r: Shadow color (red channel 0.0 - 1.0).
|
|
152
153
|
:type r: float
|
|
@@ -22,11 +22,11 @@ def fbx(
|
|
|
22
22
|
use_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
23
23
|
bake_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
24
24
|
object_types: typing.Optional[typing.Any] = {
|
|
25
|
-
'"EMPTY"',
|
|
26
|
-
'"MESH"',
|
|
27
|
-
'"ARMATURE"',
|
|
28
|
-
'"LIGHT"',
|
|
29
25
|
'"CAMERA"',
|
|
26
|
+
'"LIGHT"',
|
|
27
|
+
'"ARMATURE"',
|
|
28
|
+
'"MESH"',
|
|
29
|
+
'"EMPTY"',
|
|
30
30
|
'"OTHER"',
|
|
31
31
|
},
|
|
32
32
|
use_mesh_modifiers: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -365,6 +365,25 @@ def layer_group_add(
|
|
|
365
365
|
|
|
366
366
|
...
|
|
367
367
|
|
|
368
|
+
def layer_group_remove(
|
|
369
|
+
override_context: typing.Optional[
|
|
370
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
371
|
+
] = None,
|
|
372
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
373
|
+
undo: typing.Optional[bool] = None,
|
|
374
|
+
keep_children: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
375
|
+
):
|
|
376
|
+
"""Remove Grease Pencil layer group in the active object
|
|
377
|
+
|
|
378
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
379
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
380
|
+
:type undo: typing.Optional[bool]
|
|
381
|
+
:param keep_children: Keep children nodes, Keep the children nodes of the group and only delete the group itself
|
|
382
|
+
:type keep_children: typing.Optional[typing.Union[bool, typing.Any]]
|
|
383
|
+
"""
|
|
384
|
+
|
|
385
|
+
...
|
|
386
|
+
|
|
368
387
|
def layer_hide(
|
|
369
388
|
override_context: typing.Optional[
|
|
370
389
|
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -113,10 +113,10 @@ def bake(
|
|
|
113
113
|
clean_curves: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
114
114
|
bake_types: typing.Optional[typing.Any] = {'"POSE"'},
|
|
115
115
|
channel_types: typing.Optional[typing.Any] = {
|
|
116
|
-
'"ROTATION"',
|
|
117
|
-
'"PROPS"',
|
|
118
116
|
'"LOCATION"',
|
|
119
117
|
'"BBONE"',
|
|
118
|
+
'"ROTATION"',
|
|
119
|
+
'"PROPS"',
|
|
120
120
|
'"SCALE"',
|
|
121
121
|
},
|
|
122
122
|
):
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -53,7 +53,7 @@ def cloth_filter(
|
|
|
53
53
|
bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
54
54
|
] = None,
|
|
55
55
|
type: typing.Optional[typing.Any] = "GRAVITY",
|
|
56
|
-
force_axis: typing.Optional[typing.Any] = {'"
|
|
56
|
+
force_axis: typing.Optional[typing.Any] = {'"Z"', '"X"', '"Y"'},
|
|
57
57
|
orientation: typing.Optional[typing.Any] = "LOCAL",
|
|
58
58
|
cloth_mass: typing.Optional[typing.Any] = 1.0,
|
|
59
59
|
cloth_damping: typing.Optional[typing.Any] = 0.0,
|
|
@@ -641,7 +641,7 @@ def mesh_filter(
|
|
|
641
641
|
bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
642
642
|
] = None,
|
|
643
643
|
type: typing.Optional[typing.Any] = "INFLATE",
|
|
644
|
-
deform_axis: typing.Optional[typing.Any] = {'"
|
|
644
|
+
deform_axis: typing.Optional[typing.Any] = {'"Z"', '"X"', '"Y"'},
|
|
645
645
|
orientation: typing.Optional[typing.Any] = "LOCAL",
|
|
646
646
|
surface_smooth_shape_preservation: typing.Optional[typing.Any] = 0.5,
|
|
647
647
|
surface_smooth_current_vertex: typing.Optional[typing.Any] = 0.5,
|
bpy/ops/world/__init__.pyi
CHANGED
|
@@ -3,6 +3,22 @@ import bpy.types
|
|
|
3
3
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
|
+
def convert_volume_to_mesh(
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
10
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
11
|
+
undo: typing.Optional[bool] = None,
|
|
12
|
+
):
|
|
13
|
+
"""Convert the volume of a world to a mesh.
|
|
14
|
+
|
|
15
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
16
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
17
|
+
:type undo: typing.Optional[bool]
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
...
|
|
21
|
+
|
|
6
22
|
def new(
|
|
7
23
|
override_context: typing.Optional[
|
|
8
24
|
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
bpy/props/__init__.pyi
CHANGED
|
@@ -217,7 +217,7 @@ def EnumProperty(
|
|
|
217
217
|
name: typing.Optional[str] = "",
|
|
218
218
|
description: typing.Optional[str] = "",
|
|
219
219
|
translation_context: typing.Optional[str] = "*",
|
|
220
|
-
default: typing.Optional[typing.Union[str, set]] = None,
|
|
220
|
+
default: typing.Optional[typing.Union[str, int, set]] = None,
|
|
221
221
|
options: typing.Optional[set] = {'"ANIMATABLE"'},
|
|
222
222
|
override: typing.Optional[set] = None(),
|
|
223
223
|
tags: typing.Optional[set] = None(),
|
|
@@ -276,7 +276,7 @@ def EnumProperty(
|
|
|
276
276
|
If the ENUM_FLAG option is used this must be a set of such string identifiers instead.
|
|
277
277
|
WARNING: Strings cannot be specified for dynamic enums
|
|
278
278
|
(i.e. if a callback function is given as items parameter).
|
|
279
|
-
:type default: typing.Optional[typing.Union[str, set]]
|
|
279
|
+
:type default: typing.Optional[typing.Union[str, int, set]]
|
|
280
280
|
:param options: Enumerator in `rna_enum_property_flag_enum_items`.
|
|
281
281
|
:type options: typing.Optional[set]
|
|
282
282
|
:param override: Enumerator in `rna_enum_property_override_flag_items`.
|
bpy/types/__init__.pyi
CHANGED
|
@@ -97784,6 +97784,7 @@ import bl_operators.spreadsheet
|
|
|
97784
97784
|
import bl_operators.userpref
|
|
97785
97785
|
import bl_operators.view3d
|
|
97786
97786
|
import bl_operators.wm
|
|
97787
|
+
import bl_operators.world
|
|
97787
97788
|
import bl_ui
|
|
97788
97789
|
import bl_ui.anim
|
|
97789
97790
|
import bl_ui.asset_shelf
|
|
@@ -113288,9 +113289,12 @@ class Context(bpy_struct):
|
|
|
113288
113289
|
:type: UIList
|
|
113289
113290
|
"""
|
|
113290
113291
|
|
|
113291
|
-
property: typing.
|
|
113292
|
+
property: typing.Tuple[AnyType]
|
|
113292
113293
|
""" Get the property associated with a hovered button.
|
|
113293
|
-
Returns a tuple of the data-block, data path to the property, and array index.
|
|
113294
|
+
Returns a tuple of the data-block, data path to the property, and array index.
|
|
113295
|
+
|
|
113296
|
+
:type: typing.Tuple[AnyType]
|
|
113297
|
+
"""
|
|
113294
113298
|
|
|
113295
113299
|
asset_library_reference: AssetLibraryReference
|
|
113296
113300
|
"""
|
|
@@ -124772,8 +124776,8 @@ class KeyConfigurations(bpy_struct):
|
|
|
124772
124776
|
context: typing.Optional[typing.Union[str, int]] = "INVOKE_DEFAULT",
|
|
124773
124777
|
properties: typing.Optional[OperatorProperties] = None,
|
|
124774
124778
|
include: typing.Optional[typing.Any] = {
|
|
124775
|
-
'"KEYBOARD"',
|
|
124776
124779
|
'"ACTIONZONE"',
|
|
124780
|
+
'"KEYBOARD"',
|
|
124777
124781
|
'"MOUSE"',
|
|
124778
124782
|
'"NDOF"',
|
|
124779
124783
|
},
|
|
@@ -125268,8 +125272,8 @@ class KeyMapItems(bpy_struct):
|
|
|
125268
125272
|
idname: typing.Union[str, typing.Any],
|
|
125269
125273
|
properties: typing.Optional[OperatorProperties] = None,
|
|
125270
125274
|
include: typing.Optional[typing.Any] = {
|
|
125271
|
-
'"KEYBOARD"',
|
|
125272
125275
|
'"ACTIONZONE"',
|
|
125276
|
+
'"KEYBOARD"',
|
|
125273
125277
|
'"MOUSE"',
|
|
125274
125278
|
'"NDOF"',
|
|
125275
125279
|
},
|
|
@@ -139970,6 +139974,18 @@ class RenderSettings(bpy_struct):
|
|
|
139970
139974
|
:type: float
|
|
139971
139975
|
"""
|
|
139972
139976
|
|
|
139977
|
+
compositor_device: typing.Union[str, int]
|
|
139978
|
+
""" Set how compositing is executed
|
|
139979
|
+
|
|
139980
|
+
:type: typing.Union[str, int]
|
|
139981
|
+
"""
|
|
139982
|
+
|
|
139983
|
+
compositor_precision: typing.Union[str, int]
|
|
139984
|
+
""" The precision of compositor intermediate result
|
|
139985
|
+
|
|
139986
|
+
:type: typing.Union[str, int]
|
|
139987
|
+
"""
|
|
139988
|
+
|
|
139973
139989
|
dither_intensity: float
|
|
139974
139990
|
""" Amount of dithering noise added to the rendered image to break up banding
|
|
139975
139991
|
|
|
@@ -147784,7 +147800,7 @@ class ThemeFontStyle(bpy_struct):
|
|
|
147784
147800
|
"""
|
|
147785
147801
|
|
|
147786
147802
|
shadow: int
|
|
147787
|
-
""" Shadow
|
|
147803
|
+
""" Shadow type (0 none, 3, 5 blur, 6 outline)
|
|
147788
147804
|
|
|
147789
147805
|
:type: int
|
|
147790
147806
|
"""
|
|
@@ -171655,18 +171671,6 @@ class Collection(ID, bpy_struct):
|
|
|
171655
171671
|
class CompositorNodeTree(NodeTree, ID, bpy_struct):
|
|
171656
171672
|
"""Node tree consisting of linked nodes used for compositing"""
|
|
171657
171673
|
|
|
171658
|
-
execution_mode: typing.Union[str, int]
|
|
171659
|
-
""" Set how compositing is executed
|
|
171660
|
-
|
|
171661
|
-
:type: typing.Union[str, int]
|
|
171662
|
-
"""
|
|
171663
|
-
|
|
171664
|
-
precision: typing.Union[str, int]
|
|
171665
|
-
""" The precision of compositor intermediate result
|
|
171666
|
-
|
|
171667
|
-
:type: typing.Union[str, int]
|
|
171668
|
-
"""
|
|
171669
|
-
|
|
171670
171674
|
use_viewer_border: bool
|
|
171671
171675
|
""" Use boundaries for viewer nodes and composite backdrop
|
|
171672
171676
|
|
|
@@ -177446,6 +177450,12 @@ class World(ID, bpy_struct):
|
|
|
177446
177450
|
:type: typing.Union[str, int]
|
|
177447
177451
|
"""
|
|
177448
177452
|
|
|
177453
|
+
use_eevee_finite_volume: bool
|
|
177454
|
+
""" The world's volume used to be rendered by EEVEE Legacy. Conversion is needed for it to render properly
|
|
177455
|
+
|
|
177456
|
+
:type: bool
|
|
177457
|
+
"""
|
|
177458
|
+
|
|
177449
177459
|
use_nodes: bool
|
|
177450
177460
|
""" Use shader nodes to render the world
|
|
177451
177461
|
|
|
@@ -238615,6 +238625,10 @@ GREASE_PENCIL_UL_masks: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_UL_mas
|
|
|
238615
238625
|
"""
|
|
238616
238626
|
"""
|
|
238617
238627
|
|
|
238628
|
+
GreasePencil_MT_group_context_menu: bl_ui.properties_data_grease_pencil.GreasePencil_MT_group_context_menu
|
|
238629
|
+
"""
|
|
238630
|
+
"""
|
|
238631
|
+
|
|
238618
238632
|
IMAGE_FH_drop_handler: bl_operators.image.IMAGE_FH_drop_handler
|
|
238619
238633
|
"""
|
|
238620
238634
|
"""
|
|
@@ -243843,6 +243857,10 @@ WORKSPACE_UL_addons_items: bl_ui.properties_workspace.WORKSPACE_UL_addons_items
|
|
|
243843
243857
|
"""
|
|
243844
243858
|
"""
|
|
243845
243859
|
|
|
243860
|
+
WORLD_OT_convert_volume_to_mesh: bl_operators.world.WORLD_OT_convert_volume_to_mesh
|
|
243861
|
+
"""
|
|
243862
|
+
"""
|
|
243863
|
+
|
|
243846
243864
|
WORLD_PT_context_world: bl_ui.properties_world.WORLD_PT_context_world
|
|
243847
243865
|
"""
|
|
243848
243866
|
"""
|
bpy_types/__init__.pyi
CHANGED
|
@@ -367,6 +367,9 @@ class BoneCollection:
|
|
|
367
367
|
class Node:
|
|
368
368
|
""" """
|
|
369
369
|
|
|
370
|
+
bl_rna: typing.Any
|
|
371
|
+
""" """
|
|
372
|
+
|
|
370
373
|
id_data: typing.Any
|
|
371
374
|
""" """
|
|
372
375
|
|
|
@@ -422,6 +425,10 @@ class Node:
|
|
|
422
425
|
""" """
|
|
423
426
|
...
|
|
424
427
|
|
|
428
|
+
def is_registered_node_type(self):
|
|
429
|
+
""" """
|
|
430
|
+
...
|
|
431
|
+
|
|
425
432
|
def items(self):
|
|
426
433
|
""" """
|
|
427
434
|
...
|
|
@@ -1603,6 +1610,9 @@ class MeshPolygon:
|
|
|
1603
1610
|
class NodeSocket:
|
|
1604
1611
|
""" """
|
|
1605
1612
|
|
|
1613
|
+
bl_rna: typing.Any
|
|
1614
|
+
""" """
|
|
1615
|
+
|
|
1606
1616
|
id_data: typing.Any
|
|
1607
1617
|
""" """
|
|
1608
1618
|
|
|
@@ -2611,6 +2621,9 @@ class PoseBone(_GenericBone):
|
|
|
2611
2621
|
class NodeInternal(Node):
|
|
2612
2622
|
""" """
|
|
2613
2623
|
|
|
2624
|
+
bl_rna: typing.Any
|
|
2625
|
+
""" """
|
|
2626
|
+
|
|
2614
2627
|
id_data: typing.Any
|
|
2615
2628
|
""" """
|
|
2616
2629
|
|
|
@@ -2666,6 +2679,10 @@ class NodeInternal(Node):
|
|
|
2666
2679
|
""" """
|
|
2667
2680
|
...
|
|
2668
2681
|
|
|
2682
|
+
def is_registered_node_type(self):
|
|
2683
|
+
""" """
|
|
2684
|
+
...
|
|
2685
|
+
|
|
2669
2686
|
def items(self):
|
|
2670
2687
|
""" """
|
|
2671
2688
|
...
|
|
@@ -3542,6 +3559,9 @@ class RNAMetaPropGroup(RNAMeta):
|
|
|
3542
3559
|
class CompositorNode(NodeInternal, Node):
|
|
3543
3560
|
""" """
|
|
3544
3561
|
|
|
3562
|
+
bl_rna: typing.Any
|
|
3563
|
+
""" """
|
|
3564
|
+
|
|
3545
3565
|
id_data: typing.Any
|
|
3546
3566
|
""" """
|
|
3547
3567
|
|
|
@@ -3597,6 +3617,10 @@ class CompositorNode(NodeInternal, Node):
|
|
|
3597
3617
|
""" """
|
|
3598
3618
|
...
|
|
3599
3619
|
|
|
3620
|
+
def is_registered_node_type(self):
|
|
3621
|
+
""" """
|
|
3622
|
+
...
|
|
3623
|
+
|
|
3600
3624
|
def items(self):
|
|
3601
3625
|
""" """
|
|
3602
3626
|
...
|
|
@@ -3655,6 +3679,9 @@ class CompositorNode(NodeInternal, Node):
|
|
|
3655
3679
|
class GeometryNode(NodeInternal, Node):
|
|
3656
3680
|
""" """
|
|
3657
3681
|
|
|
3682
|
+
bl_rna: typing.Any
|
|
3683
|
+
""" """
|
|
3684
|
+
|
|
3658
3685
|
id_data: typing.Any
|
|
3659
3686
|
""" """
|
|
3660
3687
|
|
|
@@ -3710,6 +3737,10 @@ class GeometryNode(NodeInternal, Node):
|
|
|
3710
3737
|
""" """
|
|
3711
3738
|
...
|
|
3712
3739
|
|
|
3740
|
+
def is_registered_node_type(self):
|
|
3741
|
+
""" """
|
|
3742
|
+
...
|
|
3743
|
+
|
|
3713
3744
|
def items(self):
|
|
3714
3745
|
""" """
|
|
3715
3746
|
...
|
|
@@ -3764,6 +3795,9 @@ class GeometryNode(NodeInternal, Node):
|
|
|
3764
3795
|
class ShaderNode(NodeInternal, Node):
|
|
3765
3796
|
""" """
|
|
3766
3797
|
|
|
3798
|
+
bl_rna: typing.Any
|
|
3799
|
+
""" """
|
|
3800
|
+
|
|
3767
3801
|
id_data: typing.Any
|
|
3768
3802
|
""" """
|
|
3769
3803
|
|
|
@@ -3819,6 +3853,10 @@ class ShaderNode(NodeInternal, Node):
|
|
|
3819
3853
|
""" """
|
|
3820
3854
|
...
|
|
3821
3855
|
|
|
3856
|
+
def is_registered_node_type(self):
|
|
3857
|
+
""" """
|
|
3858
|
+
...
|
|
3859
|
+
|
|
3822
3860
|
def items(self):
|
|
3823
3861
|
""" """
|
|
3824
3862
|
...
|
|
@@ -3873,6 +3911,9 @@ class ShaderNode(NodeInternal, Node):
|
|
|
3873
3911
|
class TextureNode(NodeInternal, Node):
|
|
3874
3912
|
""" """
|
|
3875
3913
|
|
|
3914
|
+
bl_rna: typing.Any
|
|
3915
|
+
""" """
|
|
3916
|
+
|
|
3876
3917
|
id_data: typing.Any
|
|
3877
3918
|
""" """
|
|
3878
3919
|
|
|
@@ -3928,6 +3969,10 @@ class TextureNode(NodeInternal, Node):
|
|
|
3928
3969
|
""" """
|
|
3929
3970
|
...
|
|
3930
3971
|
|
|
3972
|
+
def is_registered_node_type(self):
|
|
3973
|
+
""" """
|
|
3974
|
+
...
|
|
3975
|
+
|
|
3931
3976
|
def items(self):
|
|
3932
3977
|
""" """
|
|
3933
3978
|
...
|
|
@@ -6,7 +6,7 @@ addon_utils/__init__.pyi,sha256=5vUTfM09g2CQcblaQ2tps-vBsoJQ2sYonYszqW7kr2A,740
|
|
|
6
6
|
addon_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
animsys_refactor/__init__.pyi,sha256=CSzrkz-AQqjE7HWPNIzQV24Uv_2Z1H0IHla2GkMPvXU,657
|
|
8
8
|
animsys_refactor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
aud/__init__.pyi,sha256=
|
|
9
|
+
aud/__init__.pyi,sha256=wzxZv5WIEndCv6Rj47cieqrAMWm0eH9glyUqX52VP84,33056
|
|
10
10
|
aud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
bgl/__init__.pyi,sha256=4QgE3YERv__eJjTgySRSPXN_E8fHTbTH-vafK2v7Q_o,121351
|
|
12
12
|
bgl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -58,7 +58,7 @@ bl_keymap_utils/versioning/__init__.pyi,sha256=ma5O3Uh4QzL1hjLaCCGdEpLx8TIZa0IsS
|
|
|
58
58
|
bl_keymap_utils/versioning/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
59
|
bl_math/__init__.pyi,sha256=cAv_Aq_-Q8S6yqpJsQrEjXf1_P5AOFu_UJ3GRare3Yc,1622
|
|
60
60
|
bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
-
bl_operators/__init__.pyi,sha256=
|
|
61
|
+
bl_operators/__init__.pyi,sha256=JRtpKmoC6MywUu4B0MUeigNZ_IEFb0afGyv3dS-qtNE,890
|
|
62
62
|
bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
63
|
bl_operators/add_mesh_torus/__init__.pyi,sha256=RoKdCBO0EiDsywrJIDcdoe769gx6XIuH_t9yFKuhvys,2734
|
|
64
64
|
bl_operators/add_mesh_torus/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -120,6 +120,8 @@ bl_operators/view3d/__init__.pyi,sha256=CtrOEo54-Izd6G4KjVgHNy8pI4ACCxsyYvHcjfpD
|
|
|
120
120
|
bl_operators/view3d/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
121
|
bl_operators/wm/__init__.pyi,sha256=9ttm9paDfHwwhXWDhxso9WfpwgOBpWXygf1XbLQHacw,95068
|
|
122
122
|
bl_operators/wm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
|
+
bl_operators/world/__init__.pyi,sha256=TXl-lkbng0dsPg1vVlyW9P2vk2yQDMQyjVZjer3cBDQ,2105
|
|
124
|
+
bl_operators/world/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
125
|
bl_previews_utils/__init__.pyi,sha256=p3ziz8G6uAf8yslPB8MclRs0QYdNodhWOytQUjztaFs,92
|
|
124
126
|
bl_previews_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
127
|
bl_previews_utils/bl_previews_render/__init__.pyi,sha256=PhZF-g5vcybCxV-1aU7Jz408LzbJW4efDzJVeRkvvqY,530
|
|
@@ -170,7 +172,7 @@ bl_ui/properties_data_empty/__init__.pyi,sha256=4Gqr6psM0ZEEfTYsQtGTPryEnOanoJDO
|
|
|
170
172
|
bl_ui/properties_data_empty/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
173
|
bl_ui/properties_data_gpencil/__init__.pyi,sha256=DLtAdrRhRJiZpo9pBA89pztdm2YrgMI34HAtHLK1L08,45197
|
|
172
174
|
bl_ui/properties_data_gpencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
|
-
bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=
|
|
175
|
+
bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=RaThdUpHmBQmQDH6enJ82FdXJMLkPyAHUN4-x9IUUFI,36040
|
|
174
176
|
bl_ui/properties_data_grease_pencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
177
|
bl_ui/properties_data_lattice/__init__.pyi,sha256=4wWnKSosd9LOT76IPwZeB_5s474EZTFKqHefbJc0ljk,7424
|
|
176
178
|
bl_ui/properties_data_lattice/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -296,7 +298,7 @@ bl_ui_utils/layout/__init__.pyi,sha256=VbNmsUvcumWwy1Fx2T6nRXmXyrddf95ceXvq-AA-A
|
|
|
296
298
|
bl_ui_utils/layout/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
297
299
|
blend_render_info/__init__.pyi,sha256=smxScTsZTo-gvrHvAgXvk-J23PpEa2DF-CdnELTa11E,200
|
|
298
300
|
blend_render_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
299
|
-
blf/__init__.pyi,sha256
|
|
301
|
+
blf/__init__.pyi,sha256=-ZEbcsuwLmccQYWMus1Cl2n8BZY_u6LuhWkekIs7lj8,5857
|
|
300
302
|
blf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
303
|
bmesh/__init__.pyi,sha256=JHZzU3bVJasGCKpoYlhx2qKcWcyY0n4lJ1VNkOziTbI,1487
|
|
302
304
|
bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -366,7 +368,7 @@ bpy/ops/export_anim/__init__.pyi,sha256=8D8_RyToRNb-9gy9p_7OcvOj3CouxJMQvBBH7u2H
|
|
|
366
368
|
bpy/ops/export_anim/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
369
|
bpy/ops/export_mesh/__init__.pyi,sha256=C7_bUc-vcYvJ9vwpig8U7tSWPR03YKx53ky681QjFLE,3085
|
|
368
370
|
bpy/ops/export_mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
369
|
-
bpy/ops/export_scene/__init__.pyi,sha256=
|
|
371
|
+
bpy/ops/export_scene/__init__.pyi,sha256=lz0z3jxxzG10W5CpU-3w6KeCW5onuW2ohZxbalSjQkk,49164
|
|
370
372
|
bpy/ops/export_scene/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
371
373
|
bpy/ops/file/__init__.pyi,sha256=Botj2G5l4pSrG4mePH62WFrM16bva7SSMx-BpE8XZ6U,33400
|
|
372
374
|
bpy/ops/file/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -382,7 +384,7 @@ bpy/ops/gpencil/__init__.pyi,sha256=LgpPFK8RYkAyn6MJKiohGFrqgEbxJ6DvYY-D46Q4mcI,
|
|
|
382
384
|
bpy/ops/gpencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
383
385
|
bpy/ops/graph/__init__.pyi,sha256=NopynZk8nmW-23Nv0OKE5XQ7tZpsZv9U_e3n9BF9hEE,64350
|
|
384
386
|
bpy/ops/graph/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
385
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
387
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=wEWkiPkZOyR71tgLRFxoUQFpXqn7-RQ7uAQ0-x3Q1Xk,52008
|
|
386
388
|
bpy/ops/grease_pencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
387
389
|
bpy/ops/image/__init__.pyi,sha256=Ypn60qQ3M77U3Rb6uhXsD6Xjv01EuNb8rRr_I_C7-Aw,61179
|
|
388
390
|
bpy/ops/image/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -408,7 +410,7 @@ bpy/ops/mball/__init__.pyi,sha256=J2JsjCmxmZgUC91RJN6OJmu4L42ZeGxVZsnP_V4yuZg,67
|
|
|
408
410
|
bpy/ops/mball/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
409
411
|
bpy/ops/mesh/__init__.pyi,sha256=ZuNHTarPiycwnhGlSsRJQGVKebQ1_XUTiik3-zH4Ou0,191720
|
|
410
412
|
bpy/ops/mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
411
|
-
bpy/ops/nla/__init__.pyi,sha256=
|
|
413
|
+
bpy/ops/nla/__init__.pyi,sha256=lZ8ceQ6MUkKQq-kXKm_JyeBEiWul_JERuptdpDGGDFA,31845
|
|
412
414
|
bpy/ops/nla/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
413
415
|
bpy/ops/node/__init__.pyi,sha256=4q3MNi9bhQqhWSRULuuU6GBj0qgmr1lgQkCF8wuTGOs,81714
|
|
414
416
|
bpy/ops/node/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -442,7 +444,7 @@ bpy/ops/screen/__init__.pyi,sha256=sWJeU7yfpInIo6X-CV7qtN4cqDxoXVqOTWSYhOcK1is,3
|
|
|
442
444
|
bpy/ops/screen/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
443
445
|
bpy/ops/script/__init__.pyi,sha256=E_8BsnqT592yOlYxyMTpaHFt-I48PYxrFlsa-tTLQMs,2046
|
|
444
446
|
bpy/ops/script/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
445
|
-
bpy/ops/sculpt/__init__.pyi,sha256=
|
|
447
|
+
bpy/ops/sculpt/__init__.pyi,sha256=QGa1sBPEY0XditnGEpxhVf6s6QpSbOCTfGPKzC7RSc0,50152
|
|
446
448
|
bpy/ops/sculpt/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
447
449
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=tNoH0zrMiqCxUa_YEkiktDZV-8AdzHxJhAwyxzM7hEQ,4042
|
|
448
450
|
bpy/ops/sculpt_curves/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -476,13 +478,13 @@ bpy/ops/wm/__init__.pyi,sha256=zrrygv_p5BwQ3m0WUW9jtM_UHliJ3NKmIXqdqu8j4BA,28782
|
|
|
476
478
|
bpy/ops/wm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
477
479
|
bpy/ops/workspace/__init__.pyi,sha256=Wbe-ndwbRwxwBtzDXxt1iPXMzpsX2QGW8eEZ9O3pAbI,4270
|
|
478
480
|
bpy/ops/workspace/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
479
|
-
bpy/ops/world/__init__.pyi,sha256=
|
|
481
|
+
bpy/ops/world/__init__.pyi,sha256=N78Y-9w1Lki3YPn0auCCUiyQHmh9H-S3B5TmKrUG64U,1138
|
|
480
482
|
bpy/ops/world/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
481
483
|
bpy/path/__init__.pyi,sha256=sZMxM2jeuZMbQOzNmFS4jlYHCnr-of5PN8XT5t6vg7M,7169
|
|
482
484
|
bpy/path/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
483
|
-
bpy/props/__init__.pyi,sha256=
|
|
485
|
+
bpy/props/__init__.pyi,sha256=ldeJSJMDgsrYzb0qkkGnAxGMSapRTrv-h2p3UaUOqNY,31492
|
|
484
486
|
bpy/props/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
485
|
-
bpy/types/__init__.pyi,sha256=
|
|
487
|
+
bpy/types/__init__.pyi,sha256=YfyECZ6WZqVudf3byIqmldV2roA_Gar-scZb1Xx4GiI,5538655
|
|
486
488
|
bpy/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
487
489
|
bpy/utils/__init__.pyi,sha256=MtlLDnlInvRAEUqg7RVOZ49o6ncgLDgknamY1wr-hyI,13069
|
|
488
490
|
bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -526,7 +528,7 @@ bpy_extras/wm_utils/progress_report/__init__.pyi,sha256=Aqcr4n91j5Hq7zfIAGeOZXBH
|
|
|
526
528
|
bpy_extras/wm_utils/progress_report/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
527
529
|
bpy_restrict_state/__init__.pyi,sha256=z0wntJmk-6RiN6gW3oMlFkHOBRPIKGYfC_Q9SIoQRQ4,329
|
|
528
530
|
bpy_restrict_state/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
529
|
-
bpy_types/__init__.pyi,sha256=
|
|
531
|
+
bpy_types/__init__.pyi,sha256=BgsPdgOCSZGYWJjF0ZLQkGrF8aWjJFYrfDT13fbveQM,58918
|
|
530
532
|
bpy_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
531
533
|
console_python/__init__.pyi,sha256=Inm6_DPDVMBeaDI8iLzuxyiUB_hOZ7ekIQ6zVDkmTs0,585
|
|
532
534
|
console_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -542,7 +544,7 @@ freestyle/predicates/__init__.pyi,sha256=t1r8JMa7NFShRIh63Cu2Kp3iEweFFMP9Un-LOFs
|
|
|
542
544
|
freestyle/predicates/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
543
545
|
freestyle/shaders/__init__.pyi,sha256=r9ApZsDHOt5XpYu2CXLpOjrdMlp1QAY8W_ihOyWBaSU,24805
|
|
544
546
|
freestyle/shaders/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
545
|
-
freestyle/types/__init__.pyi,sha256=
|
|
547
|
+
freestyle/types/__init__.pyi,sha256=KmJLMe1BeCNtGGH-N85JzpfbS8BWZRXPYGxvBMwzfW4,101978
|
|
546
548
|
freestyle/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
547
549
|
freestyle/utils/__init__.pyi,sha256=Xqa0uopKq8a81ZY34Yb4TgIukHvF_2XakXHUgWZtDv8,5377
|
|
548
550
|
freestyle/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -586,11 +588,11 @@ keyingsets_builtins/__init__.pyi,sha256=dqXFWEEtoZ5Qy1cBdF8xNKe5Iu6UWHVecug0VM4F
|
|
|
586
588
|
keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
587
589
|
keyingsets_utils/__init__.pyi,sha256=29-o4Z0jsPvFzDCgnpVs0X0DsOhnwgBPTLWNqCR7JP4,1018
|
|
588
590
|
keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
589
|
-
mathutils/__init__.pyi,sha256=
|
|
591
|
+
mathutils/__init__.pyi,sha256=GSm7rIjxpLBcYfg-tkU7xn6i2hv_teQhplW-chC8RxQ,75441
|
|
590
592
|
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
591
593
|
mathutils/bvhtree/__init__.pyi,sha256=a1J3pqbuazrNj4d5yeQO4GLXKfJsb9DRQfetHZB36h0,4344
|
|
592
594
|
mathutils/bvhtree/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
593
|
-
mathutils/geometry/__init__.pyi,sha256=
|
|
595
|
+
mathutils/geometry/__init__.pyi,sha256=JlKAN7lmBazG4Zp5bFVKHQUX8r9KVM2BR-M2Xlj1IBU,21873
|
|
594
596
|
mathutils/geometry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
595
597
|
mathutils/interpolate/__init__.pyi,sha256=CvBzpVTIf1rwilMUmdREPUSD5aCKxFEId_SwlpJAGCg,307
|
|
596
598
|
mathutils/interpolate/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -612,7 +614,7 @@ rna_xml/__init__.pyi,sha256=12yOlLxfl-1hZ6MN5TCak3gGdgz4TknNjZ4OuoJE7x4,578
|
|
|
612
614
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
613
615
|
sys_info/__init__.pyi,sha256=5cKQiE7NFvOTsjdqB7pO7uflClATfF-90sCEeo9JOO8,110
|
|
614
616
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
615
|
-
fake_bpy_module-
|
|
616
|
-
fake_bpy_module-
|
|
617
|
-
fake_bpy_module-
|
|
618
|
-
fake_bpy_module-
|
|
617
|
+
fake_bpy_module-20240511.dist-info/METADATA,sha256=0u7iSCqnp7N2Om9FVMrlOhud2MHqDVBFG8n_XvyDGGY,7008
|
|
618
|
+
fake_bpy_module-20240511.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
619
|
+
fake_bpy_module-20240511.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
620
|
+
fake_bpy_module-20240511.dist-info/RECORD,,
|
freestyle/types/__init__.pyi
CHANGED
|
@@ -3136,10 +3136,13 @@ class orientedViewEdgeIterator:
|
|
|
3136
3136
|
obtained from a ViewVertex by calling edges_begin() or edges_end().
|
|
3137
3137
|
"""
|
|
3138
3138
|
|
|
3139
|
-
object: typing.
|
|
3139
|
+
object: typing.Tuple[ViewEdge]
|
|
3140
3140
|
""" The oriented ViewEdge (i.e., a tuple of the pointed ViewEdge and a boolean
|
|
3141
3141
|
value) currently pointed to by this iterator. If the boolean value is true,
|
|
3142
|
-
the ViewEdge is incoming.
|
|
3142
|
+
the ViewEdge is incoming.
|
|
3143
|
+
|
|
3144
|
+
:type: typing.Tuple[ViewEdge]
|
|
3145
|
+
"""
|
|
3143
3146
|
|
|
3144
3147
|
def __init__(self):
|
|
3145
3148
|
"""Creates an `orientedViewEdgeIterator` using either the
|
mathutils/__init__.pyi
CHANGED
|
@@ -676,11 +676,11 @@ class Matrix:
|
|
|
676
676
|
"""
|
|
677
677
|
...
|
|
678
678
|
|
|
679
|
-
def decompose(self) -> Quaternion:
|
|
679
|
+
def decompose(self) -> typing.Tuple[Vector, Quaternion, Vector]:
|
|
680
680
|
"""Return the translation, rotation, and scale components of this matrix.
|
|
681
681
|
|
|
682
682
|
:return: tuple of translation, rotation, and scale
|
|
683
|
-
:rtype: Quaternion
|
|
683
|
+
:rtype: typing.Tuple[Vector, Quaternion, Vector]
|
|
684
684
|
"""
|
|
685
685
|
...
|
|
686
686
|
|
mathutils/geometry/__init__.pyi
CHANGED
|
@@ -325,13 +325,14 @@ def intersect_point_line(
|
|
|
325
325
|
mathutils.Vector,
|
|
326
326
|
],
|
|
327
327
|
line_p2,
|
|
328
|
-
):
|
|
328
|
+
) -> typing.Tuple[mathutils.Vector]:
|
|
329
329
|
"""Takes a point and a line and returns a tuple with the closest point on the line and its distance from the first point of the line as a percentage of the length of the line.
|
|
330
330
|
|
|
331
331
|
:param pt: Point
|
|
332
332
|
:type pt: typing.Union[typing.Sequence[float], mathutils.Vector]
|
|
333
333
|
:param line_p1: First point of the lineSecond point of the line
|
|
334
334
|
:type line_p1: typing.Union[typing.Sequence[float], mathutils.Vector, typing.Sequence[float], mathutils.Vector]
|
|
335
|
+
:rtype: typing.Tuple[mathutils.Vector]
|
|
335
336
|
"""
|
|
336
337
|
|
|
337
338
|
...
|
|
File without changes
|
|
File without changes
|