fake-bpy-module 20250626__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 +45 -8
- {fake_bpy_module-20250626.dist-info → fake_bpy_module-20250628.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250626.dist-info → fake_bpy_module-20250628.dist-info}/RECORD +12 -12
- {fake_bpy_module-20250626.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-20250626.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
|
@@ -489,6 +489,7 @@
|
|
|
489
489
|
* bpy_struct.rna_ancestors
|
|
490
490
|
* bpy_struct.type_recast
|
|
491
491
|
* bpy_struct.values
|
|
492
|
+
* Strip.bl_system_properties_get
|
|
492
493
|
* Strip.strip_elem_from_frame
|
|
493
494
|
* Strip.swap
|
|
494
495
|
* Strip.move_to_meta
|
|
@@ -2889,6 +2890,7 @@
|
|
|
2889
2890
|
* bpy_struct.rna_ancestors
|
|
2890
2891
|
* bpy_struct.type_recast
|
|
2891
2892
|
* bpy_struct.values
|
|
2893
|
+
* Strip.bl_system_properties_get
|
|
2892
2894
|
* Strip.strip_elem_from_frame
|
|
2893
2895
|
* Strip.swap
|
|
2894
2896
|
* Strip.move_to_meta
|
|
@@ -4494,6 +4496,7 @@
|
|
|
4494
4496
|
* bpy_struct.rna_ancestors
|
|
4495
4497
|
* bpy_struct.type_recast
|
|
4496
4498
|
* bpy_struct.values
|
|
4499
|
+
* Strip.bl_system_properties_get
|
|
4497
4500
|
* Strip.strip_elem_from_frame
|
|
4498
4501
|
* Strip.swap
|
|
4499
4502
|
* Strip.move_to_meta
|
|
@@ -11656,6 +11659,7 @@ database.
|
|
|
11656
11659
|
* bpy_struct.rna_ancestors
|
|
11657
11660
|
* bpy_struct.type_recast
|
|
11658
11661
|
* bpy_struct.values
|
|
11662
|
+
* Strip.bl_system_properties_get
|
|
11659
11663
|
* Strip.strip_elem_from_frame
|
|
11660
11664
|
* Strip.swap
|
|
11661
11665
|
* Strip.move_to_meta
|
|
@@ -22625,6 +22629,7 @@ database.
|
|
|
22625
22629
|
* bpy_struct.rna_ancestors
|
|
22626
22630
|
* bpy_struct.type_recast
|
|
22627
22631
|
* bpy_struct.values
|
|
22632
|
+
* Strip.bl_system_properties_get
|
|
22628
22633
|
* Strip.strip_elem_from_frame
|
|
22629
22634
|
* Strip.swap
|
|
22630
22635
|
* Strip.move_to_meta
|
|
@@ -24771,6 +24776,7 @@ database.
|
|
|
24771
24776
|
* bpy_struct.rna_ancestors
|
|
24772
24777
|
* bpy_struct.type_recast
|
|
24773
24778
|
* bpy_struct.values
|
|
24779
|
+
* Strip.bl_system_properties_get
|
|
24774
24780
|
* Strip.strip_elem_from_frame
|
|
24775
24781
|
* Strip.swap
|
|
24776
24782
|
* Strip.move_to_meta
|
|
@@ -36395,6 +36401,7 @@ database.
|
|
|
36395
36401
|
* bpy_struct.rna_ancestors
|
|
36396
36402
|
* bpy_struct.type_recast
|
|
36397
36403
|
* bpy_struct.values
|
|
36404
|
+
* Strip.bl_system_properties_get
|
|
36398
36405
|
* Strip.strip_elem_from_frame
|
|
36399
36406
|
* Strip.swap
|
|
36400
36407
|
* Strip.move_to_meta
|
|
@@ -47361,6 +47368,7 @@ Executing the operator will then print all values.
|
|
|
47361
47368
|
* bpy_struct.rna_ancestors
|
|
47362
47369
|
* bpy_struct.type_recast
|
|
47363
47370
|
* bpy_struct.values
|
|
47371
|
+
* Strip.bl_system_properties_get
|
|
47364
47372
|
* Strip.strip_elem_from_frame
|
|
47365
47373
|
* Strip.swap
|
|
47366
47374
|
* Strip.move_to_meta
|
|
@@ -53871,6 +53879,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
53871
53879
|
* bpy_struct.rna_ancestors
|
|
53872
53880
|
* bpy_struct.type_recast
|
|
53873
53881
|
* bpy_struct.values
|
|
53882
|
+
* Strip.bl_system_properties_get
|
|
53874
53883
|
* Strip.strip_elem_from_frame
|
|
53875
53884
|
* Strip.swap
|
|
53876
53885
|
* Strip.move_to_meta
|
|
@@ -65048,6 +65057,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
65048
65057
|
* bpy_struct.rna_ancestors
|
|
65049
65058
|
* bpy_struct.type_recast
|
|
65050
65059
|
* bpy_struct.values
|
|
65060
|
+
* Strip.bl_system_properties_get
|
|
65051
65061
|
* Strip.strip_elem_from_frame
|
|
65052
65062
|
* Strip.swap
|
|
65053
65063
|
* Strip.move_to_meta
|
|
@@ -65499,6 +65509,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
65499
65509
|
* bpy_struct.rna_ancestors
|
|
65500
65510
|
* bpy_struct.type_recast
|
|
65501
65511
|
* bpy_struct.values
|
|
65512
|
+
* Strip.bl_system_properties_get
|
|
65502
65513
|
* Strip.strip_elem_from_frame
|
|
65503
65514
|
* Strip.swap
|
|
65504
65515
|
* Strip.move_to_meta
|
|
@@ -66799,6 +66810,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
66799
66810
|
* bpy_struct.rna_ancestors
|
|
66800
66811
|
* bpy_struct.type_recast
|
|
66801
66812
|
* bpy_struct.values
|
|
66813
|
+
* Strip.bl_system_properties_get
|
|
66802
66814
|
* Strip.strip_elem_from_frame
|
|
66803
66815
|
* Strip.swap
|
|
66804
66816
|
* Strip.move_to_meta
|
|
@@ -67237,6 +67249,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
67237
67249
|
* bpy_struct.rna_ancestors
|
|
67238
67250
|
* bpy_struct.type_recast
|
|
67239
67251
|
* bpy_struct.values
|
|
67252
|
+
* Strip.bl_system_properties_get
|
|
67240
67253
|
* Strip.strip_elem_from_frame
|
|
67241
67254
|
* Strip.swap
|
|
67242
67255
|
* Strip.move_to_meta
|
|
@@ -67320,6 +67333,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
67320
67333
|
* bpy_struct.rna_ancestors
|
|
67321
67334
|
* bpy_struct.type_recast
|
|
67322
67335
|
* bpy_struct.values
|
|
67336
|
+
* Strip.bl_system_properties_get
|
|
67323
67337
|
* Strip.strip_elem_from_frame
|
|
67324
67338
|
* Strip.swap
|
|
67325
67339
|
* Strip.move_to_meta
|
|
@@ -67389,6 +67403,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
67389
67403
|
* bpy_struct.rna_ancestors
|
|
67390
67404
|
* bpy_struct.type_recast
|
|
67391
67405
|
* bpy_struct.values
|
|
67406
|
+
* Strip.bl_system_properties_get
|
|
67392
67407
|
* Strip.strip_elem_from_frame
|
|
67393
67408
|
* Strip.swap
|
|
67394
67409
|
* Strip.move_to_meta
|
|
@@ -67753,6 +67768,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
67753
67768
|
* bpy_struct.rna_ancestors
|
|
67754
67769
|
* bpy_struct.type_recast
|
|
67755
67770
|
* bpy_struct.values
|
|
67771
|
+
* Strip.bl_system_properties_get
|
|
67756
67772
|
* Strip.strip_elem_from_frame
|
|
67757
67773
|
* Strip.swap
|
|
67758
67774
|
* Strip.move_to_meta
|
|
@@ -72402,6 +72418,7 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
72402
72418
|
* bpy_struct.rna_ancestors
|
|
72403
72419
|
* bpy_struct.type_recast
|
|
72404
72420
|
* bpy_struct.values
|
|
72421
|
+
* Strip.bl_system_properties_get
|
|
72405
72422
|
* Strip.strip_elem_from_frame
|
|
72406
72423
|
* Strip.swap
|
|
72407
72424
|
* Strip.move_to_meta
|
|
@@ -76514,6 +76531,7 @@ Operator.draw method for layout and display.
|
|
|
76514
76531
|
* bpy_struct.rna_ancestors
|
|
76515
76532
|
* bpy_struct.type_recast
|
|
76516
76533
|
* bpy_struct.values
|
|
76534
|
+
* Strip.bl_system_properties_get
|
|
76517
76535
|
* Strip.strip_elem_from_frame
|
|
76518
76536
|
* Strip.swap
|
|
76519
76537
|
* Strip.move_to_meta
|
|
@@ -89096,6 +89114,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
89096
89114
|
* bpy_struct.rna_ancestors
|
|
89097
89115
|
* bpy_struct.type_recast
|
|
89098
89116
|
* bpy_struct.values
|
|
89117
|
+
* Strip.bl_system_properties_get
|
|
89099
89118
|
* Strip.strip_elem_from_frame
|
|
89100
89119
|
* Strip.swap
|
|
89101
89120
|
* Strip.move_to_meta
|
|
@@ -95549,6 +95568,7 @@ The USDHookExample
|
|
|
95549
95568
|
* bpy_struct.rna_ancestors
|
|
95550
95569
|
* bpy_struct.type_recast
|
|
95551
95570
|
* bpy_struct.values
|
|
95571
|
+
* Strip.bl_system_properties_get
|
|
95552
95572
|
* Strip.strip_elem_from_frame
|
|
95553
95573
|
* Strip.swap
|
|
95554
95574
|
* Strip.move_to_meta
|
|
@@ -97369,6 +97389,7 @@ The USDHookExample
|
|
|
97369
97389
|
* bpy_struct.rna_ancestors
|
|
97370
97390
|
* bpy_struct.type_recast
|
|
97371
97391
|
* bpy_struct.values
|
|
97392
|
+
* Strip.bl_system_properties_get
|
|
97372
97393
|
* Strip.strip_elem_from_frame
|
|
97373
97394
|
* Strip.swap
|
|
97374
97395
|
* Strip.move_to_meta
|
|
@@ -97548,6 +97569,7 @@ The USDHookExample
|
|
|
97548
97569
|
* bpy_struct.rna_ancestors
|
|
97549
97570
|
* bpy_struct.type_recast
|
|
97550
97571
|
* bpy_struct.values
|
|
97572
|
+
* Strip.bl_system_properties_get
|
|
97551
97573
|
* Strip.strip_elem_from_frame
|
|
97552
97574
|
* Strip.swap
|
|
97553
97575
|
* Strip.move_to_meta
|
|
@@ -98891,6 +98913,7 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
98891
98913
|
* bpy_struct.rna_ancestors
|
|
98892
98914
|
* bpy_struct.type_recast
|
|
98893
98915
|
* bpy_struct.values
|
|
98916
|
+
* Strip.bl_system_properties_get
|
|
98894
98917
|
* Strip.strip_elem_from_frame
|
|
98895
98918
|
* Strip.swap
|
|
98896
98919
|
* Strip.move_to_meta
|
|
@@ -101816,6 +101839,7 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
101816
101839
|
* bpy_struct.rna_ancestors
|
|
101817
101840
|
* bpy_struct.type_recast
|
|
101818
101841
|
* bpy_struct.values
|
|
101842
|
+
* Strip.bl_system_properties_get
|
|
101819
101843
|
* Strip.strip_elem_from_frame
|
|
101820
101844
|
* Strip.swap
|
|
101821
101845
|
* Strip.move_to_meta
|
|
@@ -103287,6 +103311,7 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
103287
103311
|
* bpy_struct.rna_ancestors
|
|
103288
103312
|
* bpy_struct.type_recast
|
|
103289
103313
|
* bpy_struct.values
|
|
103314
|
+
* Strip.bl_system_properties_get
|
|
103290
103315
|
* Strip.strip_elem_from_frame
|
|
103291
103316
|
* Strip.swap
|
|
103292
103317
|
* Strip.move_to_meta
|
|
@@ -109891,6 +109916,7 @@ Property types used in class declarations are all in bpy.props
|
|
|
109891
109916
|
* PropertyGroupItem.collection
|
|
109892
109917
|
* PropertyGroupItem.group
|
|
109893
109918
|
* PropertyGroupItem.idp_array
|
|
109919
|
+
* Strip.bl_system_properties_get
|
|
109894
109920
|
* TimelineMarker.bl_system_properties_get
|
|
109895
109921
|
* UIList.bl_system_properties_get
|
|
109896
109922
|
* View3DShading.bl_system_properties_get
|
|
@@ -145933,12 +145959,6 @@ class FileAssetSelectIDFilter(bpy_struct):
|
|
|
145933
145959
|
:type: bool
|
|
145934
145960
|
"""
|
|
145935
145961
|
|
|
145936
|
-
experimental_filter_scene: bool
|
|
145937
|
-
""" Show Scene data-blocks
|
|
145938
|
-
|
|
145939
|
-
:type: bool
|
|
145940
|
-
"""
|
|
145941
|
-
|
|
145942
145962
|
experimental_filter_sound: bool
|
|
145943
145963
|
""" Show Sound data-blocks
|
|
145944
145964
|
|
|
@@ -146011,6 +146031,12 @@ class FileAssetSelectIDFilter(bpy_struct):
|
|
|
146011
146031
|
:type: bool
|
|
146012
146032
|
"""
|
|
146013
146033
|
|
|
146034
|
+
filter_scene: bool
|
|
146035
|
+
""" Show Scene data-blocks
|
|
146036
|
+
|
|
146037
|
+
:type: bool
|
|
146038
|
+
"""
|
|
146039
|
+
|
|
146014
146040
|
filter_world: bool
|
|
146015
146041
|
""" Show World data-blocks
|
|
146016
146042
|
|
|
@@ -224883,6 +224909,17 @@ class Strip(bpy_struct):
|
|
|
224883
224909
|
:type: bool
|
|
224884
224910
|
"""
|
|
224885
224911
|
|
|
224912
|
+
def bl_system_properties_get(
|
|
224913
|
+
self, *, do_create: bool | None = False
|
|
224914
|
+
) -> PropertyGroup:
|
|
224915
|
+
"""DEBUG ONLY. Internal access to runtime-defined RNA data storage, intended solely for testing and debugging purposes. Do not access it in regular scripting work, and in particular, do not assume that it contains writable data
|
|
224916
|
+
|
|
224917
|
+
:param do_create: Ensure that system properties are created if they do not exist yet
|
|
224918
|
+
:type do_create: bool | None
|
|
224919
|
+
:return: The system properties root container, or None if there are no system properties stored in this data yet, and its creation was not requested
|
|
224920
|
+
:rtype: PropertyGroup
|
|
224921
|
+
"""
|
|
224922
|
+
|
|
224886
224923
|
def strip_elem_from_frame(self, frame: int | None) -> StripElement:
|
|
224887
224924
|
"""Return the strip element from a given frame or None
|
|
224888
224925
|
|
|
@@ -245002,6 +245039,8 @@ DOPESHEET_HT_playback_controls: bl_ui.space_dopesheet.DOPESHEET_HT_playback_cont
|
|
|
245002
245039
|
|
|
245003
245040
|
DOPESHEET_MT_action: bl_ui.space_dopesheet.DOPESHEET_MT_action
|
|
245004
245041
|
|
|
245042
|
+
DOPESHEET_MT_cache: bl_ui.space_dopesheet.DOPESHEET_MT_cache
|
|
245043
|
+
|
|
245005
245044
|
DOPESHEET_MT_channel: bl_ui.space_dopesheet.DOPESHEET_MT_channel
|
|
245006
245045
|
|
|
245007
245046
|
DOPESHEET_MT_channel_context_menu: bl_ui.space_dopesheet.DOPESHEET_MT_channel_context_menu
|
|
@@ -246786,8 +246825,6 @@ TEXT_PT_find: bl_ui.space_text.TEXT_PT_find
|
|
|
246786
246825
|
|
|
246787
246826
|
TEXT_PT_properties: bl_ui.space_text.TEXT_PT_properties
|
|
246788
246827
|
|
|
246789
|
-
TIME_MT_cache: bl_ui.space_time.TIME_MT_cache
|
|
246790
|
-
|
|
246791
246828
|
TIME_MT_editor_menus: bl_ui.space_time.TIME_MT_editor_menus
|
|
246792
246829
|
|
|
246793
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
|