fake-bpy-module 20250903__py3-none-any.whl → 20250904__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_ui/space_toolsystem_toolbar/__init__.pyi +2 -0
- bpy/app/__init__.pyi +7 -0
- bpy/ops/sequencer/__init__.pyi +39 -0
- bpy/ops/uv/__init__.pyi +38 -8
- bpy/props/__init__.pyi +56 -3
- bpy/types/__init__.pyi +21 -53
- {fake_bpy_module-20250903.dist-info → fake_bpy_module-20250904.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250903.dist-info → fake_bpy_module-20250904.dist-info}/RECORD +10 -10
- {fake_bpy_module-20250903.dist-info → fake_bpy_module-20250904.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250903.dist-info → fake_bpy_module-20250904.dist-info}/top_level.txt +0 -0
bpy/app/__init__.pyi
CHANGED
|
@@ -38,6 +38,13 @@ def is_job_running(job_type: bpy.stub_internal.rna_enums.WmJobTypeItems) -> bool
|
|
|
38
38
|
:rtype: bool
|
|
39
39
|
"""
|
|
40
40
|
|
|
41
|
+
def undo_memory_info() -> int:
|
|
42
|
+
"""Get undo memory usage information.
|
|
43
|
+
|
|
44
|
+
:return: total_memory.
|
|
45
|
+
:rtype: int
|
|
46
|
+
"""
|
|
47
|
+
|
|
41
48
|
alembic: typing.Any
|
|
42
49
|
""" Constant value bpy.app.alembic(supported=True, version=(1, 8, 3), version_string= 1, 8, 3)
|
|
43
50
|
"""
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -1682,6 +1682,45 @@ def select_box(
|
|
|
1682
1682
|
:type ignore_connections: bool | None
|
|
1683
1683
|
"""
|
|
1684
1684
|
|
|
1685
|
+
def select_circle(
|
|
1686
|
+
execution_context: int | str | None = None,
|
|
1687
|
+
undo: bool | None = None,
|
|
1688
|
+
/,
|
|
1689
|
+
*,
|
|
1690
|
+
x: int | None = 0,
|
|
1691
|
+
y: int | None = 0,
|
|
1692
|
+
radius: int | None = 25,
|
|
1693
|
+
wait_for_input: bool | None = True,
|
|
1694
|
+
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
1695
|
+
ignore_connections: bool | None = False,
|
|
1696
|
+
) -> None:
|
|
1697
|
+
"""Select strips using circle selection
|
|
1698
|
+
|
|
1699
|
+
:type execution_context: int | str | None
|
|
1700
|
+
:type undo: bool | None
|
|
1701
|
+
:param x: X
|
|
1702
|
+
:type x: int | None
|
|
1703
|
+
:param y: Y
|
|
1704
|
+
:type y: int | None
|
|
1705
|
+
:param radius: Radius
|
|
1706
|
+
:type radius: int | None
|
|
1707
|
+
:param wait_for_input: Wait for Input
|
|
1708
|
+
:type wait_for_input: bool | None
|
|
1709
|
+
:param mode: Mode
|
|
1710
|
+
|
|
1711
|
+
SET
|
|
1712
|
+
Set -- Set a new selection.
|
|
1713
|
+
|
|
1714
|
+
ADD
|
|
1715
|
+
Extend -- Extend existing selection.
|
|
1716
|
+
|
|
1717
|
+
SUB
|
|
1718
|
+
Subtract -- Subtract existing selection.
|
|
1719
|
+
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
1720
|
+
:param ignore_connections: Ignore Connections, Select strips individually whether or not they are connected
|
|
1721
|
+
:type ignore_connections: bool | None
|
|
1722
|
+
"""
|
|
1723
|
+
|
|
1685
1724
|
def select_grouped(
|
|
1686
1725
|
execution_context: int | str | None = None,
|
|
1687
1726
|
undo: bool | None = None,
|
bpy/ops/uv/__init__.pyi
CHANGED
|
@@ -995,14 +995,44 @@ def select_similar(
|
|
|
995
995
|
) -> None:
|
|
996
996
|
"""Select similar UVs by property types
|
|
997
997
|
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
998
|
+
:type execution_context: int | str | None
|
|
999
|
+
:type undo: bool | None
|
|
1000
|
+
:param type: Type
|
|
1001
|
+
|
|
1002
|
+
PIN
|
|
1003
|
+
Pinned.
|
|
1004
|
+
|
|
1005
|
+
LENGTH
|
|
1006
|
+
Length -- Edge length in UV space.
|
|
1007
|
+
|
|
1008
|
+
LENGTH_3D
|
|
1009
|
+
Length 3D -- Length of edge in 3D space.
|
|
1010
|
+
|
|
1011
|
+
AREA
|
|
1012
|
+
Area -- Face area in UV space.
|
|
1013
|
+
|
|
1014
|
+
AREA_3D
|
|
1015
|
+
Area 3D -- Area of face in 3D space.
|
|
1016
|
+
|
|
1017
|
+
MATERIAL
|
|
1018
|
+
Material.
|
|
1019
|
+
|
|
1020
|
+
OBJECT
|
|
1021
|
+
Object.
|
|
1022
|
+
|
|
1023
|
+
SIDES
|
|
1024
|
+
Polygon Sides.
|
|
1025
|
+
|
|
1026
|
+
WINDING
|
|
1027
|
+
Winding -- Face direction defined by (clockwise or anti-clockwise winding (facing up or facing down).
|
|
1028
|
+
|
|
1029
|
+
FACE
|
|
1030
|
+
Amount of Faces in Island.
|
|
1031
|
+
:type type: typing.Literal['PIN','LENGTH','LENGTH_3D','AREA','AREA_3D','MATERIAL','OBJECT','SIDES','WINDING','FACE'] | None
|
|
1032
|
+
:param compare: Compare
|
|
1033
|
+
:type compare: typing.Literal['EQUAL','GREATER','LESS'] | None
|
|
1034
|
+
:param threshold: Threshold
|
|
1035
|
+
:type threshold: float | None
|
|
1006
1036
|
"""
|
|
1007
1037
|
|
|
1008
1038
|
def select_split(
|
bpy/props/__init__.pyi
CHANGED
|
@@ -69,18 +69,71 @@ of the operator, only its other properties.
|
|
|
69
69
|
|
|
70
70
|
--------------------
|
|
71
71
|
|
|
72
|
-
|
|
73
|
-
|
|
72
|
+
Accessor functions can be used for boolean, int, float, string and enum properties.
|
|
73
|
+
|
|
74
|
+
If get
|
|
75
|
+
|
|
76
|
+
or set
|
|
77
|
+
|
|
78
|
+
callbacks are defined, the property will not be stored in the ID properties
|
|
74
79
|
automatically. Instead, the get
|
|
75
80
|
|
|
76
81
|
and set
|
|
77
82
|
|
|
78
83
|
functions will be called when the property
|
|
79
|
-
is respectively read or written from the API.
|
|
84
|
+
is respectively read or written from the API, and are responsible to handle the data storage.
|
|
85
|
+
|
|
86
|
+
Note that:
|
|
87
|
+
|
|
88
|
+
* It is illegal to define a set
|
|
89
|
+
|
|
90
|
+
callback without a matching get
|
|
91
|
+
|
|
92
|
+
one.
|
|
93
|
+
* When a get
|
|
94
|
+
|
|
95
|
+
callback is defined but no set
|
|
96
|
+
|
|
97
|
+
one, the property is read-only.
|
|
98
|
+
|
|
99
|
+
get_transform
|
|
100
|
+
|
|
101
|
+
and set_transform
|
|
102
|
+
|
|
103
|
+
can be used when the returned value needs to be modified,
|
|
104
|
+
but the default internal storage is still used. They can only transform the value before it is
|
|
105
|
+
set or returned, but do not control how/where that data is stored.
|
|
106
|
+
|
|
107
|
+
[NOTE]
|
|
108
|
+
It is possible to define both get
|
|
109
|
+
|
|
110
|
+
/set
|
|
111
|
+
|
|
112
|
+
and get_transform
|
|
113
|
+
|
|
114
|
+
/set_transform
|
|
115
|
+
|
|
116
|
+
callbacks
|
|
117
|
+
for a same property. In practice however, this should rarely be needed, as most 'transform'
|
|
118
|
+
operation can also happen within a get
|
|
119
|
+
|
|
120
|
+
/set
|
|
121
|
+
|
|
122
|
+
callback.
|
|
80
123
|
|
|
81
124
|
[WARNING]
|
|
82
125
|
Remember that these callbacks may be executed in threaded context.
|
|
83
126
|
|
|
127
|
+
[WARNING]
|
|
128
|
+
Take care when accessing other properties in these callbacks, as it can easily trigger
|
|
129
|
+
complex issues, such as infinite loops (if e.g. two properties try to also set the other
|
|
130
|
+
property's value in their own set
|
|
131
|
+
|
|
132
|
+
callback), or unexpected side effects due to changes
|
|
133
|
+
in data, caused e.g. by an update
|
|
134
|
+
|
|
135
|
+
callback.
|
|
136
|
+
|
|
84
137
|
```../examples/bpy.props.5.py```
|
|
85
138
|
|
|
86
139
|
[NOTE]
|
bpy/types/__init__.pyi
CHANGED
|
@@ -8033,9 +8033,12 @@ The USDHookExample
|
|
|
8033
8033
|
|
|
8034
8034
|
* Brush.automasking_cavity_curve
|
|
8035
8035
|
* Brush.curve
|
|
8036
|
+
* Brush.curve_jitter
|
|
8036
8037
|
* Brush.curve_random_hue
|
|
8037
8038
|
* Brush.curve_random_saturation
|
|
8038
8039
|
* Brush.curve_random_value
|
|
8040
|
+
* Brush.curve_size
|
|
8041
|
+
* Brush.curve_strength
|
|
8039
8042
|
* BrushCurvesSculptSettings.curve_parameter_falloff
|
|
8040
8043
|
* BrushGpencilSettings.curve_jitter
|
|
8041
8044
|
* BrushGpencilSettings.curve_random_hue
|
|
@@ -35256,15 +35259,12 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
35256
35259
|
* GammaCrossStrip.input_2
|
|
35257
35260
|
* GaussianBlurStrip.input_1
|
|
35258
35261
|
* GlowStrip.input_1
|
|
35259
|
-
* MetaStrip.sequences
|
|
35260
35262
|
* MetaStrip.strips
|
|
35261
35263
|
* MultiplyStrip.input_1
|
|
35262
35264
|
* MultiplyStrip.input_2
|
|
35263
35265
|
* SequenceEditor.active_strip
|
|
35264
35266
|
* SequenceEditor.display_stack
|
|
35265
35267
|
* SequenceEditor.meta_stack
|
|
35266
|
-
* SequenceEditor.sequences
|
|
35267
|
-
* SequenceEditor.sequences_all
|
|
35268
35268
|
* SequenceEditor.strips
|
|
35269
35269
|
* SequenceEditor.strips_all
|
|
35270
35270
|
* SpeedControlStrip.input_1
|
|
@@ -52497,7 +52497,6 @@ print(positions_data)
|
|
|
52497
52497
|
|
|
52498
52498
|
--------------------
|
|
52499
52499
|
|
|
52500
|
-
* MetaStrip.sequences
|
|
52501
52500
|
* MetaStrip.strips
|
|
52502
52501
|
|
|
52503
52502
|
:columns: 2
|
|
@@ -105553,7 +105552,6 @@ database.
|
|
|
105553
105552
|
|
|
105554
105553
|
--------------------
|
|
105555
105554
|
|
|
105556
|
-
* SequenceEditor.sequences
|
|
105557
105555
|
* SequenceEditor.strips
|
|
105558
105556
|
|
|
105559
105557
|
:columns: 2
|
|
@@ -130861,6 +130859,12 @@ class Brush(ID, bpy_struct):
|
|
|
130861
130859
|
:type: CurveMapping
|
|
130862
130860
|
"""
|
|
130863
130861
|
|
|
130862
|
+
curve_jitter: CurveMapping | None
|
|
130863
|
+
""" Curve used to map pressure to brush jitter
|
|
130864
|
+
|
|
130865
|
+
:type: CurveMapping | None
|
|
130866
|
+
"""
|
|
130867
|
+
|
|
130864
130868
|
curve_preset: bpy.stub_internal.rna_enums.BrushCurvePresetItems
|
|
130865
130869
|
"""
|
|
130866
130870
|
|
|
@@ -130885,6 +130889,18 @@ class Brush(ID, bpy_struct):
|
|
|
130885
130889
|
:type: CurveMapping | None
|
|
130886
130890
|
"""
|
|
130887
130891
|
|
|
130892
|
+
curve_size: CurveMapping | None
|
|
130893
|
+
""" Curve used to map pressure to brush size
|
|
130894
|
+
|
|
130895
|
+
:type: CurveMapping | None
|
|
130896
|
+
"""
|
|
130897
|
+
|
|
130898
|
+
curve_strength: CurveMapping | None
|
|
130899
|
+
""" Curve used to map pressure to brush strength
|
|
130900
|
+
|
|
130901
|
+
:type: CurveMapping | None
|
|
130902
|
+
"""
|
|
130903
|
+
|
|
130888
130904
|
curves_sculpt_brush_type: bpy.stub_internal.rna_enums.BrushCurvesSculptBrushTypeItems
|
|
130889
130905
|
"""
|
|
130890
130906
|
|
|
@@ -144079,30 +144095,6 @@ class Context(bpy_struct):
|
|
|
144079
144095
|
:type: Object | None
|
|
144080
144096
|
"""
|
|
144081
144097
|
|
|
144082
|
-
active_sequence_strip: Strip | None
|
|
144083
|
-
"""
|
|
144084
|
-
|
|
144085
|
-
:type: Strip | None
|
|
144086
|
-
"""
|
|
144087
|
-
|
|
144088
|
-
sequences: list[Strip]
|
|
144089
|
-
"""
|
|
144090
|
-
|
|
144091
|
-
:type: list[Strip]
|
|
144092
|
-
"""
|
|
144093
|
-
|
|
144094
|
-
selected_sequences: list[Strip]
|
|
144095
|
-
"""
|
|
144096
|
-
|
|
144097
|
-
:type: list[Strip]
|
|
144098
|
-
"""
|
|
144099
|
-
|
|
144100
|
-
selected_editable_sequences: list[Strip]
|
|
144101
|
-
"""
|
|
144102
|
-
|
|
144103
|
-
:type: list[Strip]
|
|
144104
|
-
"""
|
|
144105
|
-
|
|
144106
144098
|
active_nla_track: NlaTrack | None
|
|
144107
144099
|
"""
|
|
144108
144100
|
|
|
@@ -150037,12 +150029,6 @@ class FFmpegSettings(bpy_struct):
|
|
|
150037
150029
|
:type: int
|
|
150038
150030
|
"""
|
|
150039
150031
|
|
|
150040
|
-
video_hdr: typing.Literal["NONE", "REQ2100_PQ", "REQ2100_HLG"]
|
|
150041
|
-
""" High Dynamic Range options
|
|
150042
|
-
|
|
150043
|
-
:type: typing.Literal['NONE','REQ2100_PQ','REQ2100_HLG']
|
|
150044
|
-
"""
|
|
150045
|
-
|
|
150046
150032
|
@classmethod
|
|
150047
150033
|
def bl_rna_get_subclass(
|
|
150048
150034
|
cls,
|
|
@@ -194421,12 +194407,6 @@ class MetaStrip(Strip, bpy_struct):
|
|
|
194421
194407
|
:type: StripProxy | None
|
|
194422
194408
|
"""
|
|
194423
194409
|
|
|
194424
|
-
sequences: StripsMeta
|
|
194425
|
-
""" (Deprecated: Replaced by .strips) Strips nested in meta strip
|
|
194426
|
-
|
|
194427
|
-
:type: StripsMeta
|
|
194428
|
-
"""
|
|
194429
|
-
|
|
194430
194410
|
strips: StripsMeta
|
|
194431
194411
|
""" Strips nested in meta strip
|
|
194432
194412
|
|
|
@@ -223924,18 +223904,6 @@ class SequenceEditor(bpy_struct):
|
|
|
223924
223904
|
:type: bool
|
|
223925
223905
|
"""
|
|
223926
223906
|
|
|
223927
|
-
sequences: StripsTopLevel
|
|
223928
|
-
""" (Deprecated: Replaced by .strips) Top-level strips only
|
|
223929
|
-
|
|
223930
|
-
:type: StripsTopLevel
|
|
223931
|
-
"""
|
|
223932
|
-
|
|
223933
|
-
sequences_all: bpy_prop_collection[Strip]
|
|
223934
|
-
""" (Deprecated: Replaced by .strips_all) All strips, recursively including those inside metastrips
|
|
223935
|
-
|
|
223936
|
-
:type: bpy_prop_collection[Strip]
|
|
223937
|
-
"""
|
|
223938
|
-
|
|
223939
223907
|
show_missing_media: bool
|
|
223940
223908
|
""" Render missing images/movies with a solid magenta color
|
|
223941
223909
|
|
|
@@ -175,7 +175,7 @@ bl_ui/space_statusbar/__init__.pyi,sha256=V-oUoxSsgIpi-jzqct_gz2vjFYkIqOffmuI4W7
|
|
|
175
175
|
bl_ui/space_text/__init__.pyi,sha256=k864SRJgY7mgqqsu8KAhNGilMHMgMzjew1aeEHTtiYo,8996
|
|
176
176
|
bl_ui/space_time/__init__.pyi,sha256=VwvieO14tuq0m-kYHJXz6maKEmQRAD7J2tQUrdNqI9E,4620
|
|
177
177
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=0wapsLJDJuc7K6B5kjWvB9_dWN5e3_6WNWf_ZEChlmk,3436
|
|
178
|
-
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=
|
|
178
|
+
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=agIsZF9M3aDyft5rbDHimXUuu4vq7QQIBrQe6M0S_UQ,10700
|
|
179
179
|
bl_ui/space_topbar/__init__.pyi,sha256=9MO703ewWr9Av2UGhd_tTQK8Okq8N3qw2SXOhZodeTk,15642
|
|
180
180
|
bl_ui/space_userpref/__init__.pyi,sha256=Ufcof6bgkrkvdWC-LjB5PnFo2Yzmu-HLYjBxweYLaFk,80834
|
|
181
181
|
bl_ui/space_view3d/__init__.pyi,sha256=4imWBsm8pkRorSjEMoaiih_vszcPlJ_d_CZ33SmoGf8,159655
|
|
@@ -196,7 +196,7 @@ bmesh/types/__init__.pyi,sha256=lGMgkvo5z7e_ROqrXRdJAnjkWGJlNd0uyqfgENBjepY,4429
|
|
|
196
196
|
bmesh/utils/__init__.pyi,sha256=N2mRD0u1ipJkw2nokIb-FCL858ikNQrOM_mqJPiCEXY,6285
|
|
197
197
|
bpy/__init__.pyi,sha256=2c24IZe013Q0UbFSvpU9JKRYusCUwGYTXbNDx17dK5g,490
|
|
198
198
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
199
|
-
bpy/app/__init__.pyi,sha256=
|
|
199
|
+
bpy/app/__init__.pyi,sha256=w5BI8F-UjxHhd6q-sjNUidOBWkofNITIvMGqlm-Zj6U,8863
|
|
200
200
|
bpy/app/handlers/__init__.pyi,sha256=vxcj3vFmnFwA2JI8EdkC7ABpZkKNQs5AVadOyAamNe4,8062
|
|
201
201
|
bpy/app/icons/__init__.pyi,sha256=OEb8rxBfK1sVaLsDUrGC90Pd7ZTo8Vrq_nUsC8TCvfQ,963
|
|
202
202
|
bpy/app/timers/__init__.pyi,sha256=nD-TlDqICpcquEyk__OLIagSX4mNCH_jJxAKgfmrIYo,1813
|
|
@@ -264,7 +264,7 @@ bpy/ops/screen/__init__.pyi,sha256=JVe5VWQxsb64V0cJ5DATt1h7wlBwW16qhjlQdzoux3s,2
|
|
|
264
264
|
bpy/ops/script/__init__.pyi,sha256=xMWzlcdSykwWgk_ck_Mnv6pbex532LfNek21C_cWAjU,1047
|
|
265
265
|
bpy/ops/sculpt/__init__.pyi,sha256=hG_cuhBwa_WW7u_k9zObI0VoWkCkL8KK1r6kj7V5YKY,51567
|
|
266
266
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=Pp-SNyuO82Y1Ksm2ygzZK14X5Nil2cZUOE798KYG5EE,2919
|
|
267
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
267
|
+
bpy/ops/sequencer/__init__.pyi,sha256=M9Ddww34TuWus7o_7csX_g_aAzWQcYPbq-MZHUBGNOg,87888
|
|
268
268
|
bpy/ops/sound/__init__.pyi,sha256=x0KuxcCFRcLVHsSLxqfNcPi0CyqYVMIUGkBvznDroNk,16665
|
|
269
269
|
bpy/ops/spreadsheet/__init__.pyi,sha256=vJX-uQpmdhiHh6dB9yhaqOKkyQKPpRH1Ay2PSwLTEoQ,2175
|
|
270
270
|
bpy/ops/surface/__init__.pyi,sha256=2zsyLcEMeA71sYw44yeIY6l1dRzf77ITk17JWlz2JTk,10390
|
|
@@ -274,17 +274,17 @@ bpy/ops/texture/__init__.pyi,sha256=w1weHfSnhrJmGqpPs2KkjZNH4X8GDy-NFKfPXvy_rwQ,
|
|
|
274
274
|
bpy/ops/transform/__init__.pyi,sha256=Xon_BEEVgLXk1u6wbaPg2YSfK4AaN4bPgPS4znfc3Kg,59679
|
|
275
275
|
bpy/ops/ui/__init__.pyi,sha256=s_AC2AYmdkc3vPCCIeDVrS3zojkNuV8CTIRFjl56voo,13174
|
|
276
276
|
bpy/ops/uilist/__init__.pyi,sha256=CSwrFuqez9Ia24-_yFa5gAudByRrRqmaQVKrfExyRYc,1669
|
|
277
|
-
bpy/ops/uv/__init__.pyi,sha256=
|
|
277
|
+
bpy/ops/uv/__init__.pyi,sha256=B5CBO2vL55Kqby1jm_7JOoQ72chuDGLMYWD4HkMHTUc,46532
|
|
278
278
|
bpy/ops/view2d/__init__.pyi,sha256=bXpaqKJa4WVVOib1-e_jWpSirho63ignV5z0LPxfLCs,7173
|
|
279
279
|
bpy/ops/view3d/__init__.pyi,sha256=JET9fsqbX7Yqaf1IYsV2tvT4FwhYMklB_rOnEbG2OK8,31946
|
|
280
280
|
bpy/ops/wm/__init__.pyi,sha256=NHThI1FPMgAriNL3Y1h-S9viVTP0x9zDa0fsvmbhC9g,209822
|
|
281
281
|
bpy/ops/workspace/__init__.pyi,sha256=Yfe-bzDigcZkkMulfyDa0wbwqzHBrfp5mn0u_sCN7wo,2418
|
|
282
282
|
bpy/ops/world/__init__.pyi,sha256=VTCqEUTLL6yJroZCNcMYQgEKVmjwkIwIy70vB78rdOM,673
|
|
283
283
|
bpy/path/__init__.pyi,sha256=Phd8a6fB3496L7_LUhdwPNwkh3qy_4O-MS5br9RMfO0,5536
|
|
284
|
-
bpy/props/__init__.pyi,sha256=
|
|
284
|
+
bpy/props/__init__.pyi,sha256=NSOu8SY2_uXzyQ55AEuvhZGHY-4IZjDT3qqtszfLfwI,50980
|
|
285
285
|
bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
286
286
|
bpy/stub_internal/rna_enums/__init__.pyi,sha256=cccGqmWM38q4vdyIjUmKbaXWFJayGAyZJAq5EOdVZBc,143214
|
|
287
|
-
bpy/types/__init__.pyi,sha256=
|
|
287
|
+
bpy/types/__init__.pyi,sha256=gTMYBK9YSSzHB1CUbucxBa-SB3XgO_28XlcDpwRtywM,5907141
|
|
288
288
|
bpy/utils/__init__.pyi,sha256=GGYp2g381aOdE7tWXvRGVbmhijbfgt4wGAtJGgbvyJg,15526
|
|
289
289
|
bpy/utils/previews/__init__.pyi,sha256=iSZemSCPu1S2BjAQO83Z-FqEo1nGHRCEIEduXB6hQhc,2357
|
|
290
290
|
bpy/utils/units/__init__.pyi,sha256=cpE9IZPkYPBexru7R9HQ_c0931d7R7Dvib2Uf7V0JJs,2645
|
|
@@ -364,7 +364,7 @@ rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
|
|
|
364
364
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
365
365
|
rna_xml/__init__.pyi,sha256=E0_ajcifhpiiQJVaNKnAa2ju-w5Tg9-lk7IqhsPjrw4,652
|
|
366
366
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
|
-
fake_bpy_module-
|
|
368
|
-
fake_bpy_module-
|
|
369
|
-
fake_bpy_module-
|
|
370
|
-
fake_bpy_module-
|
|
367
|
+
fake_bpy_module-20250904.dist-info/METADATA,sha256=XFVRbqIqZ2n-gsS9lJsHs_cSewUXLcrhxwviasw5GYo,7429
|
|
368
|
+
fake_bpy_module-20250904.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
369
|
+
fake_bpy_module-20250904.dist-info/top_level.txt,sha256=E_sehFLnpWSq252JjlyGL1A-1xsWTYcqyOIlHfuOh28,515
|
|
370
|
+
fake_bpy_module-20250904.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|