fake-bpy-module 20241016__py3-none-any.whl → 20241017__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.
- bpy/ops/export_scene/__init__.pyi +1 -1
- bpy/ops/graph/__init__.pyi +1 -1
- bpy/ops/grease_pencil/__init__.pyi +2 -2
- bpy/ops/image/__init__.pyi +1 -1
- bpy/ops/object/__init__.pyi +1 -1
- bpy/ops/preferences/__init__.pyi +1 -1
- bpy/ops/sculpt/__init__.pyi +3 -3
- bpy/ops/sound/__init__.pyi +1 -1
- bpy/ops/wm/__init__.pyi +2 -1
- bpy/types/__init__.pyi +19 -18
- {fake_bpy_module-20241016.dist-info → fake_bpy_module-20241017.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241016.dist-info → fake_bpy_module-20241017.dist-info}/RECORD +14 -14
- {fake_bpy_module-20241016.dist-info → fake_bpy_module-20241017.dist-info}/WHEEL +1 -1
- {fake_bpy_module-20241016.dist-info → fake_bpy_module-20241017.dist-info}/top_level.txt +0 -0
|
@@ -646,7 +646,7 @@ def gltf(
|
|
|
646
646
|
:type will_save_settings: bool | None
|
|
647
647
|
:param export_hierarchy_full_collections: Full Collection Hierarchy, Export full hierarchy, including intermediate collections
|
|
648
648
|
:type export_hierarchy_full_collections: bool | None
|
|
649
|
-
:param export_extra_animations: Prepare extra animations, Export additional
|
|
649
|
+
:param export_extra_animations: Prepare extra animations, Export additional animations.This feature is not standard and needs an external extension to be included in the glTF file
|
|
650
650
|
:type export_extra_animations: bool | None
|
|
651
651
|
:param filter_glob: filter_glob
|
|
652
652
|
:type filter_glob: str
|
bpy/ops/graph/__init__.pyi
CHANGED
|
@@ -253,7 +253,7 @@ def decimate(
|
|
|
253
253
|
ERROR
|
|
254
254
|
Error Margin -- Use an error margin to specify how much the curve is allowed to deviate from the original path.
|
|
255
255
|
:type mode: typing.Literal['RATIO','ERROR'] | None
|
|
256
|
-
:param factor:
|
|
256
|
+
:param factor: Factor, The ratio of keyframes to remove
|
|
257
257
|
:type factor: float | None
|
|
258
258
|
:param remove_error_margin: Max Error Margin, How much the new decimated curve is allowed to deviate from the original
|
|
259
259
|
:type remove_error_margin: float | None
|
|
@@ -17,7 +17,7 @@ def active_frame_delete(
|
|
|
17
17
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
18
18
|
:type execution_context: int | str | None
|
|
19
19
|
:type undo: bool | None
|
|
20
|
-
:param all: Delete all, Delete active keyframes of all
|
|
20
|
+
:param all: Delete all, Delete active keyframes of all layers
|
|
21
21
|
:type all: bool | None
|
|
22
22
|
"""
|
|
23
23
|
|
|
@@ -624,7 +624,7 @@ def layer_group_color_tag(
|
|
|
624
624
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
625
625
|
:type execution_context: int | str | None
|
|
626
626
|
:type undo: bool | None
|
|
627
|
-
:param color_tag:
|
|
627
|
+
:param color_tag: Color Tag
|
|
628
628
|
:type color_tag: typing.Literal['NONE','COLOR1','COLOR2','COLOR3','COLOR4','COLOR5','COLOR6','COLOR7','COLOR8'] | None
|
|
629
629
|
"""
|
|
630
630
|
|
bpy/ops/image/__init__.pyi
CHANGED
|
@@ -186,7 +186,7 @@ def convert_to_mesh_plane(
|
|
|
186
186
|
Source Object -- Name after object source with a suffix.
|
|
187
187
|
|
|
188
188
|
IMAGE
|
|
189
|
-
Source Image --
|
|
189
|
+
Source Image -- Name from loaded image.
|
|
190
190
|
:type name_from: typing.Literal['OBJECT','IMAGE'] | None
|
|
191
191
|
:param delete_ref: Delete Reference Object, Delete empty image object once mesh plane is created
|
|
192
192
|
:type delete_ref: bool | None
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -2332,7 +2332,7 @@ def lineart_bake_strokes(
|
|
|
2332
2332
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2333
2333
|
:type execution_context: int | str | None
|
|
2334
2334
|
:type undo: bool | None
|
|
2335
|
-
:param bake_all: Bake All, Bake all
|
|
2335
|
+
:param bake_all: Bake All, Bake all Line Art modifiers
|
|
2336
2336
|
:type bake_all: bool | None
|
|
2337
2337
|
"""
|
|
2338
2338
|
|
bpy/ops/preferences/__init__.pyi
CHANGED
|
@@ -355,7 +355,7 @@ def extension_repo_add(
|
|
|
355
355
|
:param type: Type, The kind of repository to add
|
|
356
356
|
|
|
357
357
|
REMOTE
|
|
358
|
-
Add Remote Repository -- Add a repository referencing
|
|
358
|
+
Add Remote Repository -- Add a repository referencing a remote repository with support for listing and updating extensions.
|
|
359
359
|
|
|
360
360
|
LOCAL
|
|
361
361
|
Add Local Repository -- Add a repository managed manually without referencing an external repository.
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -746,7 +746,7 @@ def mesh_filter(
|
|
|
746
746
|
"SURFACE_SMOOTH",
|
|
747
747
|
"SHARPEN",
|
|
748
748
|
"ENHANCE_DETAILS",
|
|
749
|
-
"
|
|
749
|
+
"ERASE_DISPLACEMENT",
|
|
750
750
|
]
|
|
751
751
|
| None = "INFLATE",
|
|
752
752
|
deform_axis: set[typing.Literal["X", "Y", "Z"]] | None = {"X", "Y", "Z"},
|
|
@@ -803,9 +803,9 @@ def mesh_filter(
|
|
|
803
803
|
ENHANCE_DETAILS
|
|
804
804
|
Enhance Details -- Enhance the high frequency surface detail.
|
|
805
805
|
|
|
806
|
-
|
|
806
|
+
ERASE_DISPLACEMENT
|
|
807
807
|
Erase Displacement -- Deletes the displacement of the Multires Modifier.
|
|
808
|
-
:type type: typing.Literal['SMOOTH','SCALE','INFLATE','SPHERE','RANDOM','RELAX','RELAX_FACE_SETS','SURFACE_SMOOTH','SHARPEN','ENHANCE_DETAILS','
|
|
808
|
+
:type type: typing.Literal['SMOOTH','SCALE','INFLATE','SPHERE','RANDOM','RELAX','RELAX_FACE_SETS','SURFACE_SMOOTH','SHARPEN','ENHANCE_DETAILS','ERASE_DISPLACEMENT'] | None
|
|
809
809
|
:param deform_axis: Deform Axis, Apply the deformation in the selected axis
|
|
810
810
|
|
|
811
811
|
X
|
bpy/ops/sound/__init__.pyi
CHANGED
|
@@ -225,7 +225,7 @@ def mixdown(
|
|
|
225
225
|
F64
|
|
226
226
|
F64 -- 64-bit floating-point.
|
|
227
227
|
:type format: typing.Literal['U8','S16','S24','S32','F32','F64'] | None
|
|
228
|
-
:param mixrate:
|
|
228
|
+
:param mixrate: Sample Rate, Sample rate in samples/s
|
|
229
229
|
:type mixrate: int | None
|
|
230
230
|
:param bitrate: Bitrate, Bitrate in kbit/s
|
|
231
231
|
:type bitrate: int | None
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -5269,7 +5269,8 @@ def usd_export(
|
|
|
5269
5269
|
Keep -- Use original location of textures.
|
|
5270
5270
|
|
|
5271
5271
|
PRESERVE
|
|
5272
|
-
Preserve -- Preserve file paths of textures from already imported USD files.
|
|
5272
|
+
Preserve -- Preserve file paths of textures from already imported USD files.
|
|
5273
|
+
Export remaining textures to a 'textures' folder next to the USD file.
|
|
5273
5274
|
|
|
5274
5275
|
NEW
|
|
5275
5276
|
New Path -- Export textures to a 'textures' folder next to the USD file.
|
bpy/types/__init__.pyi
CHANGED
|
@@ -113055,7 +113055,8 @@ class ActionSlot(bpy_struct):
|
|
|
113055
113055
|
"""
|
|
113056
113056
|
|
|
113057
113057
|
handle: int
|
|
113058
|
-
""" Number specific to this Slot, unique within the
|
|
113058
|
+
""" Number specific to this Slot, unique within the Action.
|
|
113059
|
+
This is used, for example, on a ActionKeyframeStrip to look up the ActionChannelBag for this Slot
|
|
113059
113060
|
|
|
113060
113061
|
:type: int
|
|
113061
113062
|
"""
|
|
@@ -118188,7 +118189,7 @@ class Brush(ID, bpy_struct):
|
|
|
118188
118189
|
"""
|
|
118189
118190
|
|
|
118190
118191
|
use_automasking_view_occlusion: bool
|
|
118191
|
-
""" Only affect vertices that are not occluded by other faces (
|
|
118192
|
+
""" Only affect vertices that are not occluded by other faces (slower performance)
|
|
118192
118193
|
|
|
118193
118194
|
:type: bool
|
|
118194
118195
|
"""
|
|
@@ -119287,7 +119288,7 @@ class BrushGpencilSettings(bpy_struct):
|
|
|
119287
119288
|
"""
|
|
119288
119289
|
|
|
119289
119290
|
simplify_pixel_threshold: float
|
|
119290
|
-
"""
|
|
119291
|
+
""" Threshold in screen space used for the simplify algorithm. Points within this threshold are treated as if they were in a straight line.
|
|
119291
119292
|
|
|
119292
119293
|
:type: float
|
|
119293
119294
|
"""
|
|
@@ -127989,7 +127990,7 @@ class CompositorNodePixelate(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
127989
127990
|
"""
|
|
127990
127991
|
|
|
127991
127992
|
class CompositorNodePlaneTrackDeform(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
127992
|
-
"""Replace flat planes in footage by another image,
|
|
127993
|
+
"""Replace flat planes in footage by another image, detected by plane tracks from motion tracking"""
|
|
127993
127994
|
|
|
127994
127995
|
clip: MovieClip | None
|
|
127995
127996
|
"""
|
|
@@ -136041,11 +136042,13 @@ class FFmpegSettings(bpy_struct):
|
|
|
136041
136042
|
|
|
136042
136043
|
codec: typing.Literal[
|
|
136043
136044
|
"NONE",
|
|
136045
|
+
"AV1",
|
|
136046
|
+
"H264",
|
|
136047
|
+
"WEBM",
|
|
136044
136048
|
"DNXHD",
|
|
136045
136049
|
"DV",
|
|
136046
136050
|
"FFV1",
|
|
136047
136051
|
"FLASH",
|
|
136048
|
-
"H264",
|
|
136049
136052
|
"HUFFYUV",
|
|
136050
136053
|
"MPEG1",
|
|
136051
136054
|
"MPEG2",
|
|
@@ -136053,12 +136056,10 @@ class FFmpegSettings(bpy_struct):
|
|
|
136053
136056
|
"PNG",
|
|
136054
136057
|
"QTRLE",
|
|
136055
136058
|
"THEORA",
|
|
136056
|
-
"WEBM",
|
|
136057
|
-
"AV1",
|
|
136058
136059
|
]
|
|
136059
136060
|
""" FFmpeg codec to use for video output
|
|
136060
136061
|
|
|
136061
|
-
:type: typing.Literal['NONE','DNXHD','DV','FFV1','FLASH','
|
|
136062
|
+
:type: typing.Literal['NONE','AV1','H264','WEBM','DNXHD','DV','FFV1','FLASH','HUFFYUV','MPEG1','MPEG2','MPEG4','PNG','QTRLE','THEORA']
|
|
136062
136063
|
"""
|
|
136063
136064
|
|
|
136064
136065
|
constant_rate_factor: typing.Literal[
|
|
@@ -136083,20 +136084,20 @@ class FFmpegSettings(bpy_struct):
|
|
|
136083
136084
|
"""
|
|
136084
136085
|
|
|
136085
136086
|
format: typing.Literal[
|
|
136086
|
-
"MPEG1",
|
|
136087
|
-
"MPEG2",
|
|
136088
136087
|
"MPEG4",
|
|
136088
|
+
"MKV",
|
|
136089
|
+
"WEBM",
|
|
136089
136090
|
"AVI",
|
|
136090
|
-
"QUICKTIME",
|
|
136091
136091
|
"DV",
|
|
136092
|
-
"OGG",
|
|
136093
|
-
"MKV",
|
|
136094
136092
|
"FLASH",
|
|
136095
|
-
"
|
|
136093
|
+
"MPEG1",
|
|
136094
|
+
"MPEG2",
|
|
136095
|
+
"OGG",
|
|
136096
|
+
"QUICKTIME",
|
|
136096
136097
|
]
|
|
136097
136098
|
""" Output file container
|
|
136098
136099
|
|
|
136099
|
-
:type: typing.Literal['
|
|
136100
|
+
:type: typing.Literal['MPEG4','MKV','WEBM','AVI','DV','FLASH','MPEG1','MPEG2','OGG','QUICKTIME']
|
|
136100
136101
|
"""
|
|
136101
136102
|
|
|
136102
136103
|
gopsize: int
|
|
@@ -176135,7 +176136,7 @@ class MovieTrackingTrack(bpy_struct):
|
|
|
176135
176136
|
"""
|
|
176136
176137
|
|
|
176137
176138
|
use_normalization: bool
|
|
176138
|
-
""" Normalize light intensities while tracking (
|
|
176139
|
+
""" Normalize light intensities while tracking (slower)
|
|
176139
176140
|
|
|
176140
176141
|
:type: bool
|
|
176141
176142
|
"""
|
|
@@ -190083,7 +190084,7 @@ class PreferencesExperimental(bpy_struct):
|
|
|
190083
190084
|
"""
|
|
190084
190085
|
|
|
190085
190086
|
enable_overlay_next: bool
|
|
190086
|
-
""" Enable the new Overlay
|
|
190087
|
+
""" Enable the new Overlay codebase, requires restart
|
|
190087
190088
|
|
|
190088
190089
|
:type: bool
|
|
190089
190090
|
"""
|
|
@@ -197074,7 +197075,7 @@ class Sculpt(Paint, bpy_struct):
|
|
|
197074
197075
|
"""
|
|
197075
197076
|
|
|
197076
197077
|
use_automasking_view_occlusion: bool
|
|
197077
|
-
""" Only affect vertices that are not occluded by other faces (
|
|
197078
|
+
""" Only affect vertices that are not occluded by other faces (slower performance)
|
|
197078
197079
|
|
|
197079
197080
|
:type: bool
|
|
197080
197081
|
"""
|
|
@@ -217,7 +217,7 @@ bpy/ops/cycles/__init__.pyi,sha256=YEdJl69mqLmQj_thv25PXLD1ZGEqo3mRn_UkDJ4fJoI,2
|
|
|
217
217
|
bpy/ops/dpaint/__init__.pyi,sha256=kWFW1HSoYMgomqCerlMGDmwizG8OBH40HBj9LboKTQI,2326
|
|
218
218
|
bpy/ops/ed/__init__.pyi,sha256=eCvshg5UshWukVfIBIFZ71KL1q1faZSIOt1kC1s1Nu8,8817
|
|
219
219
|
bpy/ops/export_anim/__init__.pyi,sha256=MdpU1cY6FvYpVacztZz0uIbQDYHgLx3vs9WLpG9ftKE,2197
|
|
220
|
-
bpy/ops/export_scene/__init__.pyi,sha256=
|
|
220
|
+
bpy/ops/export_scene/__init__.pyi,sha256=muwROBhDUCMj-ValtQQScvW8v1kDzMj-Z6cmepHwjxg,39078
|
|
221
221
|
bpy/ops/extensions/__init__.pyi,sha256=zCW9mLu3EIwz3Rrkc1vhQ7zn6zIB72BsLCYfgkMv574,18048
|
|
222
222
|
bpy/ops/file/__init__.pyi,sha256=JTtbrNEORTNtuauMTwOQkQX1C2JHjQL-bubGccj14rw,25681
|
|
223
223
|
bpy/ops/fluid/__init__.pyi,sha256=PM7jfvEosHmKpWcBTNwUgExKC5GpPHczHl82bvgTnWs,5516
|
|
@@ -225,9 +225,9 @@ bpy/ops/font/__init__.pyi,sha256=cVNVWyyoUAeuHvbrQLNfZbatFnhweBGwh7rS-Zxuc-g,191
|
|
|
225
225
|
bpy/ops/geometry/__init__.pyi,sha256=Ix8MGXa5gZBQT3aWGmDfrKPx-MTtmloRflfwiHicuTU,8987
|
|
226
226
|
bpy/ops/gizmogroup/__init__.pyi,sha256=OFN5NNvr_HFc_L7pvjSWKY_D8nF2_Ue8z6nGjB-_xac,1595
|
|
227
227
|
bpy/ops/gpencil/__init__.pyi,sha256=xef0m8m4jVKzqncUi9CezsXgqES8iAYJzcEKtDfTXTY,6112
|
|
228
|
-
bpy/ops/graph/__init__.pyi,sha256=
|
|
229
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
230
|
-
bpy/ops/image/__init__.pyi,sha256=
|
|
228
|
+
bpy/ops/graph/__init__.pyi,sha256=My3PsXepSrn3TGQ7ePFoYML5sjzTp8LRqsPqqng7iak,51523
|
|
229
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=bw4uIeVRbzi9FCzmFGVH8Qmts_mCCyHfUMSYt-SxOQE,74881
|
|
230
|
+
bpy/ops/image/__init__.pyi,sha256=SUn2SBcvRXEHMizauJfTVFY8KBvXV_7M2meGZDxEDu8,59838
|
|
231
231
|
bpy/ops/import_anim/__init__.pyi,sha256=7BExOyxBpXdbfQQN_foBI0FIfqHte9U1nfWEvNKYH0Y,3216
|
|
232
232
|
bpy/ops/import_curve/__init__.pyi,sha256=U3eiL0CsWblWZe8O58JOxSXhr2sgHRHKwVzozIMsck4,651
|
|
233
233
|
bpy/ops/import_scene/__init__.pyi,sha256=2PpUKIKaBa5NVV2eSDFHAOQAjgupZerP1BDwyZHDv90,10119
|
|
@@ -240,7 +240,7 @@ bpy/ops/mball/__init__.pyi,sha256=jqOLev5gvBK4fx9CLXj1qxWyTp3z0kqVG1Fxk4Mnzn8,53
|
|
|
240
240
|
bpy/ops/mesh/__init__.pyi,sha256=a_x0zfWW8LcwXgWU2yFYE4DXlW3N5XeMrXscL73LOT4,157018
|
|
241
241
|
bpy/ops/nla/__init__.pyi,sha256=uhpT_iNKbnI3zN0dI3_w4ZuEeBSGy_2Z4eUsTTj3z48,24221
|
|
242
242
|
bpy/ops/node/__init__.pyi,sha256=3P5RJJLhHtwason9eKv2W9UAU16jKsiipNFstrmKNDQ,69731
|
|
243
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
243
|
+
bpy/ops/object/__init__.pyi,sha256=yRRRT_E5Jf3A3ffiejM-JVYelm2xDKGkp5qEc2221S0,203427
|
|
244
244
|
bpy/ops/outliner/__init__.pyi,sha256=o5OxwPlRmadDEhvCUSmt8u1aJ8euFSCV-UYCknYymdI,38952
|
|
245
245
|
bpy/ops/paint/__init__.pyi,sha256=CwUI97PIYq0-IiQu9oZBP1cvc62P4wSTDyPbnILs5EI,44921
|
|
246
246
|
bpy/ops/paintcurve/__init__.pyi,sha256=ej9Ou29-VVY4oHCAsSmdBtOjcO0ZQpQdsBSzfDKYMJw,4261
|
|
@@ -248,17 +248,17 @@ bpy/ops/palette/__init__.pyi,sha256=gahGTlUFZDjuWskmV4VwIEtBlBkAAP78lFdypwqEoi4,
|
|
|
248
248
|
bpy/ops/particle/__init__.pyi,sha256=z5f5lpxFIGleBDvEAL3Sd8M07g4kw3nFkqE3OfJlo0U,19162
|
|
249
249
|
bpy/ops/pose/__init__.pyi,sha256=mZNILKiy58dx-YNYXjL-o1Jh3YY4dENOmJgUFEVDzXI,34627
|
|
250
250
|
bpy/ops/poselib/__init__.pyi,sha256=OfsTzJ1gYLvYd5OGmQjQ6JwQp9UMOKe0m8pIGGLSguU,5250
|
|
251
|
-
bpy/ops/preferences/__init__.pyi,sha256=
|
|
251
|
+
bpy/ops/preferences/__init__.pyi,sha256=5sbdQvV588uvLTF0VjVDxZ_Go2v2woZXguAbdgsoDPo,24858
|
|
252
252
|
bpy/ops/ptcache/__init__.pyi,sha256=UXfqM90z4atRrWfj-u_OG0wi7OgvMzs0r8usiBp5Sow,2811
|
|
253
253
|
bpy/ops/render/__init__.pyi,sha256=qgjTSltZ5-pvjFibfkbuahh5PPzPKe1Feo1lRzuxUMQ,9427
|
|
254
254
|
bpy/ops/rigidbody/__init__.pyi,sha256=kH3fZft8NevNiVP44o_RMGUqx0bj4e1k3ADbJYM3_90,8647
|
|
255
255
|
bpy/ops/scene/__init__.pyi,sha256=ZCDXo6ygGlCoFNgXs5BixfFTalKQJk48Tn5JKFK4EN4,19445
|
|
256
256
|
bpy/ops/screen/__init__.pyi,sha256=brjCQalre8Km7BxXPI6t0j3NBggA1IrsiOwNZ9AmhKc,26004
|
|
257
257
|
bpy/ops/script/__init__.pyi,sha256=qJGs4LY_-NgCKFwGkOBwvig0LFr5v72A9nL-LQ21HrY,1460
|
|
258
|
-
bpy/ops/sculpt/__init__.pyi,sha256=
|
|
258
|
+
bpy/ops/sculpt/__init__.pyi,sha256=rx6Cwe39UDt57ekD4u3CsfjrbBIGmGxNGHY7I4St0zg,52342
|
|
259
259
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=h9WZL7nJe6THcD9vxr7_qxeHb3s9dLuE-GSqd5s8dac,3310
|
|
260
260
|
bpy/ops/sequencer/__init__.pyi,sha256=m6kIyyDbiXxHpFjA8VpqwZMDmcUZgfehHIFF625hJpE,86908
|
|
261
|
-
bpy/ops/sound/__init__.pyi,sha256=
|
|
261
|
+
bpy/ops/sound/__init__.pyi,sha256=4j-hBCD71S55-TJ9r6307tdu4s_VRLhq_RdpdgXbako,17940
|
|
262
262
|
bpy/ops/spreadsheet/__init__.pyi,sha256=Nmr0N99wGYPusUlQC4WGJf2E3WETSGDLjnyGZ9yHQUc,2003
|
|
263
263
|
bpy/ops/surface/__init__.pyi,sha256=hWXTtX4irgUJXJzgBqM5aHqV04qpu6h0pN0YMGJKE2c,11250
|
|
264
264
|
bpy/ops/text/__init__.pyi,sha256=iOIrpyZwmzcCkOcEE1pu4MfJr9ucWkOTcuzPnd3fm6E,27727
|
|
@@ -270,12 +270,12 @@ bpy/ops/uilist/__init__.pyi,sha256=L4xQFB8gZEK8eR2tymJBIVwALoVQLh9gwGkIjDzORyI,2
|
|
|
270
270
|
bpy/ops/uv/__init__.pyi,sha256=ociGOFaeH4aChcVFMtC167ZWtM4roFQveDgKiqbAK3c,52706
|
|
271
271
|
bpy/ops/view2d/__init__.pyi,sha256=UWYslz64I_HIULKVyiYd9bVK38ypxss_9EZySgQkyuI,9137
|
|
272
272
|
bpy/ops/view3d/__init__.pyi,sha256=2lr2OOlmYao1DxhG3UugV_WXB8IViYGBL5WXvxHUXOE,41228
|
|
273
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
273
|
+
bpy/ops/wm/__init__.pyi,sha256=EW3yAasqPJTycypXsoger-oi7pHORhP0nedTfPlkhnQ,230865
|
|
274
274
|
bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJY,3133
|
|
275
275
|
bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
|
|
276
276
|
bpy/path/__init__.pyi,sha256=lXSqQ4p4zukM_-6TaN4v7lNWFVY0xbYGMkOVLpkbpsI,5444
|
|
277
277
|
bpy/props/__init__.pyi,sha256=eVVh1KTFtNf6c-4uSWt4wANzTv1RvN2I2FQ7ewdrKCQ,31045
|
|
278
|
-
bpy/types/__init__.pyi,sha256=
|
|
278
|
+
bpy/types/__init__.pyi,sha256=_3EL_72Cct7bQLKQ5xod-Aot9phzqsOfpUAHP2oMsjE,5368454
|
|
279
279
|
bpy/typing/__init__.pyi,sha256=l9zIo04M9gyNPPOCFAvFDOwgWgd-dyKCv5yGV6bx41Y,138523
|
|
280
280
|
bpy/utils/__init__.pyi,sha256=AEb3oVPPh_gqLyKORj6rsxDPWvXIHjqp_eME3z98GcM,13117
|
|
281
281
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
@@ -358,7 +358,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
358
358
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
359
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
360
360
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
361
|
-
fake_bpy_module-
|
|
362
|
-
fake_bpy_module-
|
|
363
|
-
fake_bpy_module-
|
|
364
|
-
fake_bpy_module-
|
|
361
|
+
fake_bpy_module-20241017.dist-info/METADATA,sha256=wEKvSU_4DBJsAjfixqyaS3Egy1Altpa4N-vxFeGei1I,7204
|
|
362
|
+
fake_bpy_module-20241017.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
|
363
|
+
fake_bpy_module-20241017.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
364
|
+
fake_bpy_module-20241017.dist-info/RECORD,,
|
|
File without changes
|