fake-bpy-module 20250616__py3-none-any.whl → 20250627__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_operators/image_as_planes/__init__.pyi +0 -4
- bl_ui/properties_grease_pencil_common/__init__.pyi +4 -4
- bl_ui/space_dopesheet/__init__.pyi +26 -0
- bl_ui/space_graph/__init__.pyi +28 -0
- bl_ui/space_nla/__init__.pyi +26 -0
- bl_ui/space_node/__init__.pyi +36 -0
- bl_ui/space_sequencer/__init__.pyi +51 -0
- bl_ui/space_time/__init__.pyi +1 -30
- blend_render_info/__init__.pyi +1 -0
- blendfile_header/__init__.pyi +48 -0
- bmesh/ops/__init__.pyi +93 -46
- bpy/ops/export_scene/__init__.pyi +1 -1
- bpy/ops/graph/__init__.pyi +7 -1
- bpy/ops/import_scene/__init__.pyi +3 -0
- bpy/ops/mesh/__init__.pyi +2 -2
- bpy/ops/node/__init__.pyi +9 -0
- bpy/ops/transform/__init__.pyi +1 -1
- bpy/ops/wm/__init__.pyi +10 -0
- bpy/types/__init__.pyi +3249 -5749
- {fake_bpy_module-20250616.dist-info → fake_bpy_module-20250627.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250616.dist-info → fake_bpy_module-20250627.dist-info}/RECORD +28 -28
- {fake_bpy_module-20250616.dist-info → fake_bpy_module-20250627.dist-info}/top_level.txt +1 -1
- freestyle/utils/__init__.pyi +1 -1
- gpu/types/__init__.pyi +4 -18
- gpu_extras/batch/__init__.pyi +2 -3
- keyingsets_utils/__init__.pyi +2 -0
- bgl/__init__.pyi +0 -4256
- {bgl → blendfile_header}/py.typed +0 -0
- {fake_bpy_module-20250616.dist-info → fake_bpy_module-20250627.dist-info}/WHEEL +0 -0
|
@@ -16,7 +16,6 @@ class IMAGE_OT_convert_to_mesh_plane(
|
|
|
16
16
|
bl_options: typing.Any
|
|
17
17
|
bl_rna: typing.Any
|
|
18
18
|
id_data: typing.Any
|
|
19
|
-
t: typing.Any
|
|
20
19
|
|
|
21
20
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
22
21
|
"""
|
|
@@ -74,7 +73,6 @@ class IMAGE_OT_import_as_mesh_planes(
|
|
|
74
73
|
bl_options: typing.Any
|
|
75
74
|
bl_rna: typing.Any
|
|
76
75
|
id_data: typing.Any
|
|
77
|
-
t: typing.Any
|
|
78
76
|
|
|
79
77
|
def align_plane(self, context, plane) -> None:
|
|
80
78
|
"""
|
|
@@ -192,8 +190,6 @@ class MaterialProperties_MixIn:
|
|
|
192
190
|
"""
|
|
193
191
|
|
|
194
192
|
class TextureProperties_MixIn:
|
|
195
|
-
t: typing.Any
|
|
196
|
-
|
|
197
193
|
def draw_texture_config(self, context) -> None:
|
|
198
194
|
"""
|
|
199
195
|
|
|
@@ -88,7 +88,7 @@ class GPENCIL_UL_annotation_layer(bpy.types.UIList):
|
|
|
88
88
|
layout,
|
|
89
89
|
_data,
|
|
90
90
|
item,
|
|
91
|
-
|
|
91
|
+
_icon,
|
|
92
92
|
_active_data,
|
|
93
93
|
_active_propname,
|
|
94
94
|
_index,
|
|
@@ -99,7 +99,7 @@ class GPENCIL_UL_annotation_layer(bpy.types.UIList):
|
|
|
99
99
|
:param layout:
|
|
100
100
|
:param _data:
|
|
101
101
|
:param item:
|
|
102
|
-
:param
|
|
102
|
+
:param _icon:
|
|
103
103
|
:param _active_data:
|
|
104
104
|
:param _active_propname:
|
|
105
105
|
:param _index:
|
|
@@ -129,7 +129,7 @@ class GPENCIL_UL_layer(bpy.types.UIList):
|
|
|
129
129
|
layout,
|
|
130
130
|
_data,
|
|
131
131
|
item,
|
|
132
|
-
|
|
132
|
+
_icon,
|
|
133
133
|
_active_data,
|
|
134
134
|
_active_propname,
|
|
135
135
|
_index,
|
|
@@ -140,7 +140,7 @@ class GPENCIL_UL_layer(bpy.types.UIList):
|
|
|
140
140
|
:param layout:
|
|
141
141
|
:param _data:
|
|
142
142
|
:param item:
|
|
143
|
-
:param
|
|
143
|
+
:param _icon:
|
|
144
144
|
:param _active_data:
|
|
145
145
|
:param _active_propname:
|
|
146
146
|
:param _index:
|
|
@@ -41,6 +41,32 @@ class DOPESHEET_HT_header(bpy.types.Header):
|
|
|
41
41
|
:param context:
|
|
42
42
|
"""
|
|
43
43
|
|
|
44
|
+
class DOPESHEET_HT_playback_controls(bpy.types.Header):
|
|
45
|
+
bl_region_type: typing.Any
|
|
46
|
+
bl_rna: typing.Any
|
|
47
|
+
bl_space_type: typing.Any
|
|
48
|
+
id_data: typing.Any
|
|
49
|
+
|
|
50
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
:return: The RNA type or default when not found.
|
|
54
|
+
:rtype: bpy.types.Struct
|
|
55
|
+
"""
|
|
56
|
+
|
|
57
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
58
|
+
"""
|
|
59
|
+
|
|
60
|
+
:return: The class or default when not found.
|
|
61
|
+
:rtype: typing.Any
|
|
62
|
+
"""
|
|
63
|
+
|
|
64
|
+
def draw(self, context) -> None:
|
|
65
|
+
"""
|
|
66
|
+
|
|
67
|
+
:param context:
|
|
68
|
+
"""
|
|
69
|
+
|
|
44
70
|
class DOPESHEET_MT_action(bpy.types.Menu):
|
|
45
71
|
bl_label: typing.Any
|
|
46
72
|
bl_rna: typing.Any
|
bl_ui/space_graph/__init__.pyi
CHANGED
|
@@ -31,6 +31,32 @@ class GRAPH_HT_header(bpy.types.Header):
|
|
|
31
31
|
:param context:
|
|
32
32
|
"""
|
|
33
33
|
|
|
34
|
+
class GRAPH_HT_playback_controls(bpy.types.Header):
|
|
35
|
+
bl_region_type: typing.Any
|
|
36
|
+
bl_rna: typing.Any
|
|
37
|
+
bl_space_type: typing.Any
|
|
38
|
+
id_data: typing.Any
|
|
39
|
+
|
|
40
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
:return: The RNA type or default when not found.
|
|
44
|
+
:rtype: bpy.types.Struct
|
|
45
|
+
"""
|
|
46
|
+
|
|
47
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
48
|
+
"""
|
|
49
|
+
|
|
50
|
+
:return: The class or default when not found.
|
|
51
|
+
:rtype: typing.Any
|
|
52
|
+
"""
|
|
53
|
+
|
|
54
|
+
def draw(self, context) -> None:
|
|
55
|
+
"""
|
|
56
|
+
|
|
57
|
+
:param context:
|
|
58
|
+
"""
|
|
59
|
+
|
|
34
60
|
class GRAPH_MT_channel(bpy.types.Menu):
|
|
35
61
|
bl_label: typing.Any
|
|
36
62
|
bl_rna: typing.Any
|
|
@@ -565,3 +591,5 @@ class GRAPH_PT_snapping(bpy.types.Panel):
|
|
|
565
591
|
|
|
566
592
|
:param context:
|
|
567
593
|
"""
|
|
594
|
+
|
|
595
|
+
def drivers_editor_footer(layout, context) -> None: ...
|
bl_ui/space_nla/__init__.pyi
CHANGED
|
@@ -31,6 +31,32 @@ class NLA_HT_header(bpy.types.Header):
|
|
|
31
31
|
:param context:
|
|
32
32
|
"""
|
|
33
33
|
|
|
34
|
+
class NLA_HT_playback_controls(bpy.types.Header):
|
|
35
|
+
bl_region_type: typing.Any
|
|
36
|
+
bl_rna: typing.Any
|
|
37
|
+
bl_space_type: typing.Any
|
|
38
|
+
id_data: typing.Any
|
|
39
|
+
|
|
40
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
:return: The RNA type or default when not found.
|
|
44
|
+
:rtype: bpy.types.Struct
|
|
45
|
+
"""
|
|
46
|
+
|
|
47
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
48
|
+
"""
|
|
49
|
+
|
|
50
|
+
:return: The class or default when not found.
|
|
51
|
+
:rtype: typing.Any
|
|
52
|
+
"""
|
|
53
|
+
|
|
54
|
+
def draw(self, context) -> None:
|
|
55
|
+
"""
|
|
56
|
+
|
|
57
|
+
:param context:
|
|
58
|
+
"""
|
|
59
|
+
|
|
34
60
|
class NLA_MT_add(bpy.types.Menu):
|
|
35
61
|
bl_label: typing.Any
|
|
36
62
|
bl_rna: typing.Any
|
bl_ui/space_node/__init__.pyi
CHANGED
|
@@ -699,6 +699,42 @@ class NODE_PT_node_color_presets(bl_ui.utils.PresetPanel, bpy.types.Panel):
|
|
|
699
699
|
:rtype: typing.Any
|
|
700
700
|
"""
|
|
701
701
|
|
|
702
|
+
class NODE_PT_node_tree_animation(bpy.types.Panel):
|
|
703
|
+
bl_category: typing.Any
|
|
704
|
+
bl_label: typing.Any
|
|
705
|
+
bl_options: typing.Any
|
|
706
|
+
bl_region_type: typing.Any
|
|
707
|
+
bl_rna: typing.Any
|
|
708
|
+
bl_space_type: typing.Any
|
|
709
|
+
id_data: typing.Any
|
|
710
|
+
|
|
711
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
712
|
+
"""
|
|
713
|
+
|
|
714
|
+
:return: The RNA type or default when not found.
|
|
715
|
+
:rtype: bpy.types.Struct
|
|
716
|
+
"""
|
|
717
|
+
|
|
718
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
719
|
+
"""
|
|
720
|
+
|
|
721
|
+
:return: The class or default when not found.
|
|
722
|
+
:rtype: typing.Any
|
|
723
|
+
"""
|
|
724
|
+
|
|
725
|
+
def draw(self, context) -> None:
|
|
726
|
+
"""
|
|
727
|
+
|
|
728
|
+
:param context:
|
|
729
|
+
"""
|
|
730
|
+
|
|
731
|
+
@classmethod
|
|
732
|
+
def poll(cls, context) -> None:
|
|
733
|
+
"""
|
|
734
|
+
|
|
735
|
+
:param context:
|
|
736
|
+
"""
|
|
737
|
+
|
|
702
738
|
class NODE_PT_node_tree_interface(bpy.types.Panel):
|
|
703
739
|
bl_category: typing.Any
|
|
704
740
|
bl_label: typing.Any
|
|
@@ -33,6 +33,32 @@ class SEQUENCER_HT_header(bpy.types.Header):
|
|
|
33
33
|
:param context:
|
|
34
34
|
"""
|
|
35
35
|
|
|
36
|
+
class SEQUENCER_HT_playback_controls(bpy.types.Header):
|
|
37
|
+
bl_region_type: typing.Any
|
|
38
|
+
bl_rna: typing.Any
|
|
39
|
+
bl_space_type: typing.Any
|
|
40
|
+
id_data: typing.Any
|
|
41
|
+
|
|
42
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
:return: The RNA type or default when not found.
|
|
46
|
+
:rtype: bpy.types.Struct
|
|
47
|
+
"""
|
|
48
|
+
|
|
49
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
50
|
+
"""
|
|
51
|
+
|
|
52
|
+
:return: The class or default when not found.
|
|
53
|
+
:rtype: typing.Any
|
|
54
|
+
"""
|
|
55
|
+
|
|
56
|
+
def draw(self, context) -> None:
|
|
57
|
+
"""
|
|
58
|
+
|
|
59
|
+
:param context:
|
|
60
|
+
"""
|
|
61
|
+
|
|
36
62
|
class SEQUENCER_HT_tool_header(bpy.types.Header):
|
|
37
63
|
bl_region_type: typing.Any
|
|
38
64
|
bl_rna: typing.Any
|
|
@@ -734,6 +760,31 @@ class SEQUENCER_MT_strip(bpy.types.Menu):
|
|
|
734
760
|
:param context:
|
|
735
761
|
"""
|
|
736
762
|
|
|
763
|
+
class SEQUENCER_MT_strip_animation(bpy.types.Menu):
|
|
764
|
+
bl_label: typing.Any
|
|
765
|
+
bl_rna: typing.Any
|
|
766
|
+
id_data: typing.Any
|
|
767
|
+
|
|
768
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
769
|
+
"""
|
|
770
|
+
|
|
771
|
+
:return: The RNA type or default when not found.
|
|
772
|
+
:rtype: bpy.types.Struct
|
|
773
|
+
"""
|
|
774
|
+
|
|
775
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
776
|
+
"""
|
|
777
|
+
|
|
778
|
+
:return: The class or default when not found.
|
|
779
|
+
:rtype: typing.Any
|
|
780
|
+
"""
|
|
781
|
+
|
|
782
|
+
def draw(self, _context) -> None:
|
|
783
|
+
"""
|
|
784
|
+
|
|
785
|
+
:param _context:
|
|
786
|
+
"""
|
|
787
|
+
|
|
737
788
|
class SEQUENCER_MT_strip_effect(bpy.types.Menu):
|
|
738
789
|
bl_label: typing.Any
|
|
739
790
|
bl_rna: typing.Any
|
bl_ui/space_time/__init__.pyi
CHANGED
|
@@ -4,15 +4,6 @@ import typing_extensions
|
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import bpy.types
|
|
6
6
|
|
|
7
|
-
class TIME_HT_editor_buttons:
|
|
8
|
-
@staticmethod
|
|
9
|
-
def draw_header(context, layout) -> None:
|
|
10
|
-
"""
|
|
11
|
-
|
|
12
|
-
:param context:
|
|
13
|
-
:param layout:
|
|
14
|
-
"""
|
|
15
|
-
|
|
16
7
|
class TIME_MT_cache(bpy.types.Menu):
|
|
17
8
|
bl_label: typing.Any
|
|
18
9
|
bl_rna: typing.Any
|
|
@@ -143,13 +134,6 @@ class TIME_PT_auto_keyframing(TimelinePanelButtons, bpy.types.Panel):
|
|
|
143
134
|
:param context:
|
|
144
135
|
"""
|
|
145
136
|
|
|
146
|
-
@classmethod
|
|
147
|
-
def poll(cls, context) -> None:
|
|
148
|
-
"""
|
|
149
|
-
|
|
150
|
-
:param context:
|
|
151
|
-
"""
|
|
152
|
-
|
|
153
137
|
class TIME_PT_keyframing_settings(TimelinePanelButtons, bpy.types.Panel):
|
|
154
138
|
bl_label: typing.Any
|
|
155
139
|
bl_options: typing.Any
|
|
@@ -178,13 +162,6 @@ class TIME_PT_keyframing_settings(TimelinePanelButtons, bpy.types.Panel):
|
|
|
178
162
|
:param context:
|
|
179
163
|
"""
|
|
180
164
|
|
|
181
|
-
@classmethod
|
|
182
|
-
def poll(cls, context) -> None:
|
|
183
|
-
"""
|
|
184
|
-
|
|
185
|
-
:param context:
|
|
186
|
-
"""
|
|
187
|
-
|
|
188
165
|
class TIME_PT_playback(TimelinePanelButtons, bpy.types.Panel):
|
|
189
166
|
bl_label: typing.Any
|
|
190
167
|
bl_region_type: typing.Any
|
|
@@ -217,11 +194,5 @@ class TimelinePanelButtons:
|
|
|
217
194
|
bl_region_type: typing.Any
|
|
218
195
|
bl_space_type: typing.Any
|
|
219
196
|
|
|
220
|
-
@staticmethod
|
|
221
|
-
def has_timeline(context) -> None:
|
|
222
|
-
"""
|
|
223
|
-
|
|
224
|
-
:param context:
|
|
225
|
-
"""
|
|
226
|
-
|
|
227
197
|
def marker_menu_generic(layout, context) -> None: ...
|
|
198
|
+
def playback_controls(layout, context) -> None: ...
|
blend_render_info/__init__.pyi
CHANGED
|
@@ -6,5 +6,6 @@ import numpy.typing as npt
|
|
|
6
6
|
class RawBlendFileReader:
|
|
7
7
|
"""Return a file handle to the raw blend file data (abstracting compressed formats)."""
|
|
8
8
|
|
|
9
|
+
def get_render_info_structure(endian_str, size) -> None: ...
|
|
9
10
|
def main() -> None: ...
|
|
10
11
|
def read_blend_rend_chunk(filepath) -> None: ...
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
import collections.abc
|
|
3
|
+
import typing_extensions
|
|
4
|
+
import numpy.typing as npt
|
|
5
|
+
|
|
6
|
+
class BHead4:
|
|
7
|
+
"""BHead4(code: bytes, len: int, old: int, SDNAnr: int, nr: int)"""
|
|
8
|
+
|
|
9
|
+
class BlendFileHeader:
|
|
10
|
+
"""BlendFileHeader represents the first 12-17 bytes of a blend file.It contains information about the hardware architecture, which is relevant
|
|
11
|
+
to the structure of the rest of the file.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
def create_block_header_struct(self) -> None: ...
|
|
15
|
+
|
|
16
|
+
class BlendHeaderError:
|
|
17
|
+
"""Common base class for all non-exit exceptions."""
|
|
18
|
+
|
|
19
|
+
args: typing.Any
|
|
20
|
+
|
|
21
|
+
class BlockHeader:
|
|
22
|
+
"""A .blend file consists of a sequence of blocks whereby each block has a header.
|
|
23
|
+
This class can parse a header block in a specific .blend file.Note the binary representation of this header is different for different files.
|
|
24
|
+
This class provides a unified interface for these underlying representations.
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
addr_old: typing.Any
|
|
28
|
+
code: typing.Any
|
|
29
|
+
count: typing.Any
|
|
30
|
+
sdna_index: typing.Any
|
|
31
|
+
size: typing.Any
|
|
32
|
+
|
|
33
|
+
class BlockHeaderStruct:
|
|
34
|
+
"""BlockHeaderStruct(struct: _struct.Struct, type: Type[Union[blendfile_header.BHead4, blendfile_header.SmallBHead8, blendfile_header.LargeBHead8]])"""
|
|
35
|
+
|
|
36
|
+
size: typing.Any
|
|
37
|
+
|
|
38
|
+
def parse(self, data) -> None:
|
|
39
|
+
"""
|
|
40
|
+
|
|
41
|
+
:param data:
|
|
42
|
+
"""
|
|
43
|
+
|
|
44
|
+
class LargeBHead8:
|
|
45
|
+
"""LargeBHead8(code: bytes, SDNAnr: int, old: int, len: int, nr: int)"""
|
|
46
|
+
|
|
47
|
+
class SmallBHead8:
|
|
48
|
+
"""SmallBHead8(code: bytes, len: int, old: int, SDNAnr: int, nr: int)"""
|