fake-bpy-module 20250627__py3-none-any.whl → 20250628__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.
- {blendfile_header → _blendfile_header}/__init__.pyi +1 -1
- bl_ui/space_dopesheet/__init__.pyi +25 -0
- bl_ui/space_time/__init__.pyi +0 -25
- bpy/ops/scene/__init__.pyi +15 -0
- bpy/types/__init__.pyi +8 -8
- {fake_bpy_module-20250627.dist-info → fake_bpy_module-20250628.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250627.dist-info → fake_bpy_module-20250628.dist-info}/RECORD +12 -12
- {fake_bpy_module-20250627.dist-info → fake_bpy_module-20250628.dist-info}/top_level.txt +1 -1
- gpu/shader/__init__.pyi +2 -1
- gpu/types/__init__.pyi +8 -5
- {blendfile_header → _blendfile_header}/py.typed +0 -0
- {fake_bpy_module-20250627.dist-info → fake_bpy_module-20250628.dist-info}/WHEEL +0 -0
|
@@ -31,7 +31,7 @@ class BlockHeader:
|
|
|
31
31
|
size: typing.Any
|
|
32
32
|
|
|
33
33
|
class BlockHeaderStruct:
|
|
34
|
-
"""BlockHeaderStruct(struct: _struct.Struct, type: Type[Union[
|
|
34
|
+
"""BlockHeaderStruct(struct: _struct.Struct, type: Type[Union[_blendfile_header.BHead4, _blendfile_header.SmallBHead8, _blendfile_header.LargeBHead8]])"""
|
|
35
35
|
|
|
36
36
|
size: typing.Any
|
|
37
37
|
|
|
@@ -92,6 +92,31 @@ class DOPESHEET_MT_action(bpy.types.Menu):
|
|
|
92
92
|
:param context:
|
|
93
93
|
"""
|
|
94
94
|
|
|
95
|
+
class DOPESHEET_MT_cache(bpy.types.Menu):
|
|
96
|
+
bl_label: typing.Any
|
|
97
|
+
bl_rna: typing.Any
|
|
98
|
+
id_data: typing.Any
|
|
99
|
+
|
|
100
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
101
|
+
"""
|
|
102
|
+
|
|
103
|
+
:return: The RNA type or default when not found.
|
|
104
|
+
:rtype: bpy.types.Struct
|
|
105
|
+
"""
|
|
106
|
+
|
|
107
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
108
|
+
"""
|
|
109
|
+
|
|
110
|
+
:return: The class or default when not found.
|
|
111
|
+
:rtype: typing.Any
|
|
112
|
+
"""
|
|
113
|
+
|
|
114
|
+
def draw(self, context) -> None:
|
|
115
|
+
"""
|
|
116
|
+
|
|
117
|
+
:param context:
|
|
118
|
+
"""
|
|
119
|
+
|
|
95
120
|
class DOPESHEET_MT_channel(bpy.types.Menu):
|
|
96
121
|
bl_label: typing.Any
|
|
97
122
|
bl_rna: typing.Any
|
bl_ui/space_time/__init__.pyi
CHANGED
|
@@ -4,31 +4,6 @@ import typing_extensions
|
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import bpy.types
|
|
6
6
|
|
|
7
|
-
class TIME_MT_cache(bpy.types.Menu):
|
|
8
|
-
bl_label: typing.Any
|
|
9
|
-
bl_rna: typing.Any
|
|
10
|
-
id_data: typing.Any
|
|
11
|
-
|
|
12
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
13
|
-
"""
|
|
14
|
-
|
|
15
|
-
:return: The RNA type or default when not found.
|
|
16
|
-
:rtype: bpy.types.Struct
|
|
17
|
-
"""
|
|
18
|
-
|
|
19
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
20
|
-
"""
|
|
21
|
-
|
|
22
|
-
:return: The class or default when not found.
|
|
23
|
-
:rtype: typing.Any
|
|
24
|
-
"""
|
|
25
|
-
|
|
26
|
-
def draw(self, context) -> None:
|
|
27
|
-
"""
|
|
28
|
-
|
|
29
|
-
:param context:
|
|
30
|
-
"""
|
|
31
|
-
|
|
32
7
|
class TIME_MT_editor_menus(bpy.types.Menu):
|
|
33
8
|
bl_idname: typing.Any
|
|
34
9
|
bl_label: typing.Any
|
bpy/ops/scene/__init__.pyi
CHANGED
|
@@ -13,6 +13,21 @@ def delete(
|
|
|
13
13
|
:type undo: bool | None
|
|
14
14
|
"""
|
|
15
15
|
|
|
16
|
+
def drop_scene_asset(
|
|
17
|
+
execution_context: int | str | None = None,
|
|
18
|
+
undo: bool | None = None,
|
|
19
|
+
/,
|
|
20
|
+
*,
|
|
21
|
+
session_uid: int | None = 0,
|
|
22
|
+
) -> None:
|
|
23
|
+
"""Import scene and set it as the active one in the window
|
|
24
|
+
|
|
25
|
+
:type execution_context: int | str | None
|
|
26
|
+
:type undo: bool | None
|
|
27
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
28
|
+
:type session_uid: int | None
|
|
29
|
+
"""
|
|
30
|
+
|
|
16
31
|
def freestyle_add_edge_marks_to_keying_set(
|
|
17
32
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
18
33
|
) -> None:
|
bpy/types/__init__.pyi
CHANGED
|
@@ -145959,12 +145959,6 @@ class FileAssetSelectIDFilter(bpy_struct):
|
|
|
145959
145959
|
:type: bool
|
|
145960
145960
|
"""
|
|
145961
145961
|
|
|
145962
|
-
experimental_filter_scene: bool
|
|
145963
|
-
""" Show Scene data-blocks
|
|
145964
|
-
|
|
145965
|
-
:type: bool
|
|
145966
|
-
"""
|
|
145967
|
-
|
|
145968
145962
|
experimental_filter_sound: bool
|
|
145969
145963
|
""" Show Sound data-blocks
|
|
145970
145964
|
|
|
@@ -146037,6 +146031,12 @@ class FileAssetSelectIDFilter(bpy_struct):
|
|
|
146037
146031
|
:type: bool
|
|
146038
146032
|
"""
|
|
146039
146033
|
|
|
146034
|
+
filter_scene: bool
|
|
146035
|
+
""" Show Scene data-blocks
|
|
146036
|
+
|
|
146037
|
+
:type: bool
|
|
146038
|
+
"""
|
|
146039
|
+
|
|
146040
146040
|
filter_world: bool
|
|
146041
146041
|
""" Show World data-blocks
|
|
146042
146042
|
|
|
@@ -245039,6 +245039,8 @@ DOPESHEET_HT_playback_controls: bl_ui.space_dopesheet.DOPESHEET_HT_playback_cont
|
|
|
245039
245039
|
|
|
245040
245040
|
DOPESHEET_MT_action: bl_ui.space_dopesheet.DOPESHEET_MT_action
|
|
245041
245041
|
|
|
245042
|
+
DOPESHEET_MT_cache: bl_ui.space_dopesheet.DOPESHEET_MT_cache
|
|
245043
|
+
|
|
245042
245044
|
DOPESHEET_MT_channel: bl_ui.space_dopesheet.DOPESHEET_MT_channel
|
|
245043
245045
|
|
|
245044
245046
|
DOPESHEET_MT_channel_context_menu: bl_ui.space_dopesheet.DOPESHEET_MT_channel_context_menu
|
|
@@ -246823,8 +246825,6 @@ TEXT_PT_find: bl_ui.space_text.TEXT_PT_find
|
|
|
246823
246825
|
|
|
246824
246826
|
TEXT_PT_properties: bl_ui.space_text.TEXT_PT_properties
|
|
246825
246827
|
|
|
246826
|
-
TIME_MT_cache: bl_ui.space_time.TIME_MT_cache
|
|
246827
|
-
|
|
246828
246828
|
TIME_MT_editor_menus: bl_ui.space_time.TIME_MT_editor_menus
|
|
246829
246829
|
|
|
246830
246830
|
TIME_MT_marker: bl_ui.space_time.TIME_MT_marker
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
_blendfile_header/__init__.pyi,sha256=KNh8jqVO-nkop6SCeeSsVlsXn8ZrlLQyjmeJZvqyDes,1503
|
|
2
|
+
_blendfile_header/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1
3
|
_bpy_internal/__init__.pyi,sha256=QbfFsdiNbwZZgz5ssUsRQBZWnc5fjAcKLDuDRmugLu0,286
|
|
2
4
|
_bpy_internal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
5
|
_bpy_internal/addons/__init__.pyi,sha256=s4opQQDWvCt1h0JSU6xojviEDXk-b4zoOUGizdrg-3A,114
|
|
@@ -153,7 +155,7 @@ bl_ui/properties_workspace/__init__.pyi,sha256=bR6ctayOId2fcQkyXASYPN_o9I6z6QDff
|
|
|
153
155
|
bl_ui/properties_world/__init__.pyi,sha256=A4jwr9ae3qEgSDM1d7t5149VslXs671_xBTzoa59n64,9316
|
|
154
156
|
bl_ui/space_clip/__init__.pyi,sha256=_zYgFWqqzBUblDLfw_LWH4mvbsduSyeVIiEQRwZGEkM,46934
|
|
155
157
|
bl_ui/space_console/__init__.pyi,sha256=tlpCTfyc9QKOpzOGJl8ciNyBysT4zmKI7G9bIlg1pdk,3348
|
|
156
|
-
bl_ui/space_dopesheet/__init__.pyi,sha256=
|
|
158
|
+
bl_ui/space_dopesheet/__init__.pyi,sha256=8IQLi8us6JfbB68Lq9__UHN6EKOBewHcS1goMf6Yogk,20046
|
|
157
159
|
bl_ui/space_filebrowser/__init__.pyi,sha256=aoCk7dZHGrCAI2rLv4wqhf7_Yot4GiSs6aSNm-HP7gA,20583
|
|
158
160
|
bl_ui/space_graph/__init__.pyi,sha256=OU4HyQzHXxRjxUzr0j4uCCRY-3Jlx3q0iVNLn_7yIYs,12978
|
|
159
161
|
bl_ui/space_image/__init__.pyi,sha256=uxDKv7bNzbhy2DpaDIhFKQeEzFb-k8DdRD3UdiaUi9A,46486
|
|
@@ -166,7 +168,7 @@ bl_ui/space_sequencer/__init__.pyi,sha256=UQPT2CXo-M5hrUzPsMkWtECyq0AmBdW_du4480
|
|
|
166
168
|
bl_ui/space_spreadsheet/__init__.pyi,sha256=CSQqmepKHsZh9u-KW3bQQlPEeyfpNxfs0sPmV-4OqoI,1748
|
|
167
169
|
bl_ui/space_statusbar/__init__.pyi,sha256=ZLHcv_gG9G4ThS5zTIdHQeXR-Q861FTtwkOzHCRX_tU,648
|
|
168
170
|
bl_ui/space_text/__init__.pyi,sha256=txnacT-bjKQBplDecXoKT03eXHeo6UnMghh3XMxnrQE,8962
|
|
169
|
-
bl_ui/space_time/__init__.pyi,sha256=
|
|
171
|
+
bl_ui/space_time/__init__.pyi,sha256=9FFWlFktn_ohGSN-MXudaHlD9sZxzRwt0ubj89G7wD4,3891
|
|
170
172
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=UfZHyyto9eWn3sKyFKwJ2saPEzzO_xwb_zidelgz0nc,3434
|
|
171
173
|
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=nzudS0Iwt12ZTNaM-xtK32_MKx2HYfEPdz4lBNhdhQk,10261
|
|
172
174
|
bl_ui/space_topbar/__init__.pyi,sha256=aryAsIhT2BCJXXIN6M-Y5HopZFTq9C7C9X7p5HRoh0M,15599
|
|
@@ -179,8 +181,6 @@ bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
179
181
|
bl_ui_utils/layout/__init__.pyi,sha256=diIx4fYNx0-cCb582pWqI4VWUb1zl5--IG-OXvtCdd0,215
|
|
180
182
|
blend_render_info/__init__.pyi,sha256=mdPgQFMMMkjN3bsG1AMGkWuD97Opj0DOQGH2vszfR88,343
|
|
181
183
|
blend_render_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
|
-
blendfile_header/__init__.pyi,sha256=j4xen9hMiUmPKcjIYFOslRaZv8R7YdNIYpSDKw3EMB4,1500
|
|
183
|
-
blendfile_header/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
184
184
|
blf/__init__.pyi,sha256=WkLSjAmo9wVyI9FtBiikZRW9H14IZOVzxPg8L09Z9Xk,6768
|
|
185
185
|
blf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
186
186
|
bmesh/__init__.pyi,sha256=iTN-KWLUPvCvBenvW7AdM-KO3eTOXXs0K3OcYf0rqJg,1535
|
|
@@ -254,7 +254,7 @@ bpy/ops/preferences/__init__.pyi,sha256=Tu_E26FNEuIDzS_04uwif6LnTzV6wD_LDCqUoyYi
|
|
|
254
254
|
bpy/ops/ptcache/__init__.pyi,sha256=-qMOGU94fA12k5TXQr_CDHiEBcbbMvKQ3xnu8Acvxl0,1768
|
|
255
255
|
bpy/ops/render/__init__.pyi,sha256=Cx4bCTJX0epUyErJjOpBtR2n-AqiKUYE1Jynr6idvaY,7568
|
|
256
256
|
bpy/ops/rigidbody/__init__.pyi,sha256=uViY72iMg3008iNGhBZJYRBxlROgDo28buX_UKvblXY,6901
|
|
257
|
-
bpy/ops/scene/__init__.pyi,sha256=
|
|
257
|
+
bpy/ops/scene/__init__.pyi,sha256=_nxF7WlEAo7YRKQETk4i1GabY_aeleGkCbNw1QRK748,14556
|
|
258
258
|
bpy/ops/screen/__init__.pyi,sha256=Mk6-GLeoykrHHmXC65KTF3dS7E2bZ_Ifl8ipC9xfjOo,20135
|
|
259
259
|
bpy/ops/script/__init__.pyi,sha256=YWxHV2LJI-Ee5Ni85ajm6Qkgh5kOmmx2EEcbYjCuDF0,1035
|
|
260
260
|
bpy/ops/sculpt/__init__.pyi,sha256=KcNf3o1J8CLrJL9oo0auhA7yaT8kqrv79dB9RJWCiLk,51430
|
|
@@ -279,7 +279,7 @@ bpy/path/__init__.pyi,sha256=yGX45MUnn9fJYw32UWTsBQ646iN5DbbxfvnoDkREWvI,5537
|
|
|
279
279
|
bpy/props/__init__.pyi,sha256=-nYTsIHy-F58ADNh2IDPlVA0C0G7N4k7F4xWz6ap7wM,35841
|
|
280
280
|
bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
281
281
|
bpy/stub_internal/rna_enums/__init__.pyi,sha256=aL-h4hNstMrYklATc7i8t55R5WHftmpIgjaBLlVzebY,141413
|
|
282
|
-
bpy/types/__init__.pyi,sha256=
|
|
282
|
+
bpy/types/__init__.pyi,sha256=nrUg69ZyDpj5bGPwqQuvOvQHVCjadZ1O19lJG00Iyow,5770061
|
|
283
283
|
bpy/utils/__init__.pyi,sha256=eLZQI2EHAXaZQlYunovDoRa8QtR4CT8yPgygZhBYajk,15535
|
|
284
284
|
bpy/utils/previews/__init__.pyi,sha256=6tju9gKfoTYwJjnSZ54lys2MYRaKPnihHe5Vs6agoKA,2366
|
|
285
285
|
bpy/utils/units/__init__.pyi,sha256=zULS_4qRrtzpHLtSU-jfO2761J4WeYBZyK-BTlL4KG0,2671
|
|
@@ -322,10 +322,10 @@ gpu/capabilities/__init__.pyi,sha256=2a4oXV5xWpWlcaVqBNBGGfzVXKXXt4PwgRo33vj0iZY
|
|
|
322
322
|
gpu/matrix/__init__.pyi,sha256=AZB7M_bz632BlWL0qPdQ-0IpNySQ9uZ6GkEoCw3G0DM,2887
|
|
323
323
|
gpu/platform/__init__.pyi,sha256=m0KIDkB44YCRGmOzO1OQzd385xB1Suea9jPSuTd8d2w,830
|
|
324
324
|
gpu/select/__init__.pyi,sha256=u7L8-mg3F6PD60rvGcJ1CUehZTDaPSGtmXzs1LNKK7g,242
|
|
325
|
-
gpu/shader/__init__.pyi,sha256=
|
|
325
|
+
gpu/shader/__init__.pyi,sha256=aalPgXNj-STGMSt2zKznXXssSVXpk_YoVChhmzPdi7I,2431
|
|
326
326
|
gpu/state/__init__.pyi,sha256=STSK6tjpWGd_U8vWOLN1s9itbUQxh4gcPwrPIH2RxfY,4489
|
|
327
327
|
gpu/texture/__init__.pyi,sha256=eXL-ZQU-gsMFo_Yv6ShF_YjBQ-yPDLRZno-T3P59nhE,668
|
|
328
|
-
gpu/types/__init__.pyi,sha256=
|
|
328
|
+
gpu/types/__init__.pyi,sha256=x1SUayhLkIrg46GuA6BL9IxX7fhFaZhpu_UdAaP4RH0,29219
|
|
329
329
|
gpu_extras/__init__.pyi,sha256=XscwC-5DTPC0yc2HB_XMgvX61rT5Qs5RaImqNwR6c40,240
|
|
330
330
|
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
331
331
|
gpu_extras/batch/__init__.pyi,sha256=0z8rIEm4SFuC-rUGyoOMU0L6i_TsaW5nJN9cGR6u40Y,1306
|
|
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=E7Xr1GyLCWDiDnB_VSldrUVM6AzWKDvGGoWj3Hj7SZ8,1404
|
|
|
361
361
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
362
|
rna_xml/__init__.pyi,sha256=E0_ajcifhpiiQJVaNKnAa2ju-w5Tg9-lk7IqhsPjrw4,652
|
|
363
363
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-
|
|
366
|
-
fake_bpy_module-
|
|
367
|
-
fake_bpy_module-
|
|
364
|
+
fake_bpy_module-20250628.dist-info/METADATA,sha256=ym1vzdEfgOIsfkvNTkoa-In88HeEdZTtJ2PL3prZxUc,7429
|
|
365
|
+
fake_bpy_module-20250628.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
366
|
+
fake_bpy_module-20250628.dist-info/top_level.txt,sha256=QYJ2Jp9Qn8wYVRwdoQVWmruwmY7PXY18UsdSCuyEhNM,514
|
|
367
|
+
fake_bpy_module-20250628.dist-info/RECORD,,
|
gpu/shader/__init__.pyi
CHANGED
|
@@ -97,10 +97,11 @@ import typing_extensions
|
|
|
97
97
|
import numpy.typing as npt
|
|
98
98
|
import gpu.types
|
|
99
99
|
|
|
100
|
-
def create_from_info(shader_info) -> gpu.types.GPUShader:
|
|
100
|
+
def create_from_info(shader_info: gpu.types.GPUShaderCreateInfo) -> gpu.types.GPUShader:
|
|
101
101
|
"""Create shader from a GPUShaderCreateInfo.
|
|
102
102
|
|
|
103
103
|
:param shader_info: GPUShaderCreateInfo
|
|
104
|
+
:type shader_info: gpu.types.GPUShaderCreateInfo
|
|
104
105
|
:return: Shader object corresponding to the given name.
|
|
105
106
|
:rtype: gpu.types.GPUShader
|
|
106
107
|
"""
|
gpu/types/__init__.pyi
CHANGED
|
@@ -405,11 +405,13 @@ class GPUShaderCreateInfo:
|
|
|
405
405
|
:type source: str
|
|
406
406
|
"""
|
|
407
407
|
|
|
408
|
-
def define(self, name, value) -> None:
|
|
408
|
+
def define(self, name: str, value: str) -> None:
|
|
409
409
|
"""Add a preprocessing define directive. In GLSL it would be something like:
|
|
410
410
|
|
|
411
|
-
:param name:
|
|
412
|
-
:
|
|
411
|
+
:param name: Token name.
|
|
412
|
+
:type name: str
|
|
413
|
+
:param value: Text that replaces token occurrences.
|
|
414
|
+
:type value: str
|
|
413
415
|
"""
|
|
414
416
|
|
|
415
417
|
def depth_write(self, value) -> None:
|
|
@@ -778,10 +780,11 @@ class GPUShaderCreateInfo:
|
|
|
778
780
|
:type name: str
|
|
779
781
|
"""
|
|
780
782
|
|
|
781
|
-
def typedef_source(self, source) -> None:
|
|
783
|
+
def typedef_source(self, source: str) -> None:
|
|
782
784
|
"""Source code included before resource declaration. Useful for defining structs used by Uniform Buffers.Example:
|
|
783
785
|
|
|
784
|
-
:param source:
|
|
786
|
+
:param source: The source code defining types.
|
|
787
|
+
:type source: str
|
|
785
788
|
"""
|
|
786
789
|
|
|
787
790
|
def uniform_buf(self, slot: int, type_name: str, name: str) -> None:
|
|
File without changes
|
|
File without changes
|