fake-bpy-module 20241028__py3-none-any.whl → 20241031__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/geometry_nodes/__init__.pyi +1 -1
- bl_operators/userpref/__init__.pyi +2 -2
- bl_ui/properties_data_armature/__init__.pyi +0 -2
- bl_ui/properties_data_bone/__init__.pyi +0 -1
- bl_ui/properties_data_curve/__init__.pyi +0 -2
- bl_ui/properties_data_grease_pencil/__init__.pyi +0 -1
- bl_ui/properties_data_lattice/__init__.pyi +0 -2
- bl_ui/properties_data_light/__init__.pyi +0 -124
- bl_ui/properties_data_metaball/__init__.pyi +0 -2
- bl_ui/properties_material_gpencil/__init__.pyi +0 -30
- bl_ui/properties_render/__init__.pyi +1 -540
- bl_ui/properties_view_layer/__init__.pyi +0 -90
- bpy/ops/clip/__init__.pyi +5 -1
- bpy/ops/node/__init__.pyi +5 -1
- bpy/ops/object/__init__.pyi +5 -1
- bpy/ops/preferences/__init__.pyi +2 -2
- bpy/ops/screen/__init__.pyi +2 -2
- bpy/ops/sequencer/__init__.pyi +15 -3
- bpy/ops/text/__init__.pyi +5 -1
- bpy/types/__init__.pyi +30 -65
- bpy/typing/__init__.pyi +1 -0
- bpy_extras/anim_utils/__init__.pyi +2 -3
- {fake_bpy_module-20241028.dist-info → fake_bpy_module-20241031.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241028.dist-info → fake_bpy_module-20241031.dist-info}/RECORD +26 -26
- {fake_bpy_module-20241028.dist-info → fake_bpy_module-20241031.dist-info}/WHEEL +1 -1
- {fake_bpy_module-20241028.dist-info → fake_bpy_module-20241031.dist-info}/top_level.txt +0 -0
bpy/ops/preferences/__init__.pyi
CHANGED
|
@@ -10,7 +10,7 @@ def addon_disable(
|
|
|
10
10
|
*,
|
|
11
11
|
module: str = "",
|
|
12
12
|
):
|
|
13
|
-
"""Turn off this
|
|
13
|
+
"""Turn off this add-on
|
|
14
14
|
|
|
15
15
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
16
16
|
:type execution_context: int | str | None
|
|
@@ -26,7 +26,7 @@ def addon_enable(
|
|
|
26
26
|
*,
|
|
27
27
|
module: str = "",
|
|
28
28
|
):
|
|
29
|
-
"""Turn on this
|
|
29
|
+
"""Turn on this add-on
|
|
30
30
|
|
|
31
31
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
32
32
|
:type execution_context: int | str | None
|
bpy/ops/screen/__init__.pyi
CHANGED
|
@@ -96,8 +96,8 @@ def area_join(
|
|
|
96
96
|
execution_context: int | str | None = None,
|
|
97
97
|
undo: bool | None = None,
|
|
98
98
|
*,
|
|
99
|
-
source_xy: collections.abc.Iterable[int] | None = (
|
|
100
|
-
target_xy: collections.abc.Iterable[int] | None = (
|
|
99
|
+
source_xy: collections.abc.Iterable[int] | None = (597883301, 32765),
|
|
100
|
+
target_xy: collections.abc.Iterable[int] | None = (597883301, 32765),
|
|
101
101
|
):
|
|
102
102
|
"""Join selected areas into new window
|
|
103
103
|
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -716,6 +716,7 @@ def image_strip_add(
|
|
|
716
716
|
"FILE_SORT_EXTENSION",
|
|
717
717
|
"FILE_SORT_TIME",
|
|
718
718
|
"FILE_SORT_SIZE",
|
|
719
|
+
"ASSET_CATALOG",
|
|
719
720
|
]
|
|
720
721
|
| None = "",
|
|
721
722
|
frame_start: int | None = 0,
|
|
@@ -811,7 +812,10 @@ def image_strip_add(
|
|
|
811
812
|
|
|
812
813
|
FILE_SORT_SIZE
|
|
813
814
|
Size -- Sort files by size.
|
|
814
|
-
|
|
815
|
+
|
|
816
|
+
ASSET_CATALOG
|
|
817
|
+
Asset Catalog -- Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
|
|
818
|
+
:type sort_method: typing.Literal['DEFAULT','FILE_SORT_ALPHA','FILE_SORT_EXTENSION','FILE_SORT_TIME','FILE_SORT_SIZE','ASSET_CATALOG'] | None
|
|
815
819
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
816
820
|
:type frame_start: int | None
|
|
817
821
|
:param frame_end: End Frame, End frame for the color strip
|
|
@@ -980,6 +984,7 @@ def movie_strip_add(
|
|
|
980
984
|
"FILE_SORT_EXTENSION",
|
|
981
985
|
"FILE_SORT_TIME",
|
|
982
986
|
"FILE_SORT_SIZE",
|
|
987
|
+
"ASSET_CATALOG",
|
|
983
988
|
]
|
|
984
989
|
| None = "",
|
|
985
990
|
frame_start: int | None = 0,
|
|
@@ -1078,7 +1083,10 @@ def movie_strip_add(
|
|
|
1078
1083
|
|
|
1079
1084
|
FILE_SORT_SIZE
|
|
1080
1085
|
Size -- Sort files by size.
|
|
1081
|
-
|
|
1086
|
+
|
|
1087
|
+
ASSET_CATALOG
|
|
1088
|
+
Asset Catalog -- Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
|
|
1089
|
+
:type sort_method: typing.Literal['DEFAULT','FILE_SORT_ALPHA','FILE_SORT_EXTENSION','FILE_SORT_TIME','FILE_SORT_SIZE','ASSET_CATALOG'] | None
|
|
1082
1090
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
1083
1091
|
:type frame_start: int | None
|
|
1084
1092
|
:param channel: Channel, Channel to place this strip into
|
|
@@ -1906,6 +1914,7 @@ def sound_strip_add(
|
|
|
1906
1914
|
"FILE_SORT_EXTENSION",
|
|
1907
1915
|
"FILE_SORT_TIME",
|
|
1908
1916
|
"FILE_SORT_SIZE",
|
|
1917
|
+
"ASSET_CATALOG",
|
|
1909
1918
|
]
|
|
1910
1919
|
| None = "",
|
|
1911
1920
|
frame_start: int | None = 0,
|
|
@@ -1997,7 +2006,10 @@ def sound_strip_add(
|
|
|
1997
2006
|
|
|
1998
2007
|
FILE_SORT_SIZE
|
|
1999
2008
|
Size -- Sort files by size.
|
|
2000
|
-
|
|
2009
|
+
|
|
2010
|
+
ASSET_CATALOG
|
|
2011
|
+
Asset Catalog -- Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
|
|
2012
|
+
:type sort_method: typing.Literal['DEFAULT','FILE_SORT_ALPHA','FILE_SORT_EXTENSION','FILE_SORT_TIME','FILE_SORT_SIZE','ASSET_CATALOG'] | None
|
|
2001
2013
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
2002
2014
|
:type frame_start: int | None
|
|
2003
2015
|
:param channel: Channel, Channel to place this strip into
|
bpy/ops/text/__init__.pyi
CHANGED
|
@@ -383,6 +383,7 @@ def open(
|
|
|
383
383
|
"FILE_SORT_EXTENSION",
|
|
384
384
|
"FILE_SORT_TIME",
|
|
385
385
|
"FILE_SORT_SIZE",
|
|
386
|
+
"ASSET_CATALOG",
|
|
386
387
|
]
|
|
387
388
|
| None = "",
|
|
388
389
|
internal: bool | None = False,
|
|
@@ -464,7 +465,10 @@ def open(
|
|
|
464
465
|
|
|
465
466
|
FILE_SORT_SIZE
|
|
466
467
|
Size -- Sort files by size.
|
|
467
|
-
|
|
468
|
+
|
|
469
|
+
ASSET_CATALOG
|
|
470
|
+
Asset Catalog -- Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
|
|
471
|
+
:type sort_method: typing.Literal['DEFAULT','FILE_SORT_ALPHA','FILE_SORT_EXTENSION','FILE_SORT_TIME','FILE_SORT_SIZE','ASSET_CATALOG'] | None
|
|
468
472
|
:param internal: Make Internal, Make text file internal after loading
|
|
469
473
|
:type internal: bool | None
|
|
470
474
|
"""
|
bpy/types/__init__.pyi
CHANGED
|
@@ -172450,27 +172450,21 @@ class Mesh(ID, bpy_struct):
|
|
|
172450
172450
|
"""
|
|
172451
172451
|
|
|
172452
172452
|
def normals_split_custom_set(
|
|
172453
|
-
self,
|
|
172454
|
-
normals: list[list[float]]
|
|
172455
|
-
| tuple[tuple[float], tuple[float], tuple[float]]
|
|
172456
|
-
| None,
|
|
172453
|
+
self, normals: list[list[float]] | tuple[tuple[float, float, float]] | None
|
|
172457
172454
|
):
|
|
172458
172455
|
"""Define custom split normals of this mesh (use zero-vectors to keep auto ones)
|
|
172459
172456
|
|
|
172460
172457
|
:param normals: Normals
|
|
172461
|
-
:type normals: list[list[float]] | tuple[tuple[float
|
|
172458
|
+
:type normals: list[list[float]] | tuple[tuple[float, float, float]] | None
|
|
172462
172459
|
"""
|
|
172463
172460
|
|
|
172464
172461
|
def normals_split_custom_set_from_vertices(
|
|
172465
|
-
self,
|
|
172466
|
-
normals: list[list[float]]
|
|
172467
|
-
| tuple[tuple[float], tuple[float], tuple[float]]
|
|
172468
|
-
| None,
|
|
172462
|
+
self, normals: list[list[float]] | tuple[tuple[float, float, float]] | None
|
|
172469
172463
|
):
|
|
172470
172464
|
"""Define custom split normals of this mesh, from vertices' normals (use zero-vectors to keep auto ones)
|
|
172471
172465
|
|
|
172472
172466
|
:param normals: Normals
|
|
172473
|
-
:type normals: list[list[float]] | tuple[tuple[float
|
|
172467
|
+
:type normals: list[list[float]] | tuple[tuple[float, float, float]] | None
|
|
172474
172468
|
"""
|
|
172475
172469
|
|
|
172476
172470
|
def update(
|
|
@@ -175406,11 +175400,14 @@ class MovieTrackingMarker(bpy_struct):
|
|
|
175406
175400
|
"""
|
|
175407
175401
|
|
|
175408
175402
|
pattern_corners: list[list[float]] | tuple[
|
|
175409
|
-
tuple[float, float
|
|
175403
|
+
tuple[float, float],
|
|
175404
|
+
tuple[float, float],
|
|
175405
|
+
tuple[float, float],
|
|
175406
|
+
tuple[float, float],
|
|
175410
175407
|
]
|
|
175411
175408
|
""" Array of coordinates which represents pattern's corners in normalized coordinates relative to marker position
|
|
175412
175409
|
|
|
175413
|
-
:type: list[list[float]] | tuple[tuple[float, float, float, float], tuple[float, float, float, float]]
|
|
175410
|
+
:type: list[list[float]] | tuple[tuple[float, float], tuple[float, float], tuple[float, float], tuple[float, float]]
|
|
175414
175411
|
"""
|
|
175415
175412
|
|
|
175416
175413
|
search_max: mathutils.Vector
|
|
@@ -175524,11 +175521,14 @@ class MovieTrackingPlaneMarker(bpy_struct):
|
|
|
175524
175521
|
"""Match-moving plane marker data for tracking"""
|
|
175525
175522
|
|
|
175526
175523
|
corners: list[list[float]] | tuple[
|
|
175527
|
-
tuple[float, float
|
|
175524
|
+
tuple[float, float],
|
|
175525
|
+
tuple[float, float],
|
|
175526
|
+
tuple[float, float],
|
|
175527
|
+
tuple[float, float],
|
|
175528
175528
|
]
|
|
175529
175529
|
""" Array of coordinates which represents UI rectangle corners in frame normalized coordinates
|
|
175530
175530
|
|
|
175531
|
-
:type: list[list[float]] | tuple[tuple[float, float, float, float], tuple[float, float, float, float]]
|
|
175531
|
+
:type: list[list[float]] | tuple[tuple[float, float], tuple[float, float], tuple[float, float], tuple[float, float]]
|
|
175532
175532
|
"""
|
|
175533
175533
|
|
|
175534
175534
|
frame: int
|
|
@@ -183159,13 +183159,18 @@ class Object(ID, bpy_struct):
|
|
|
183159
183159
|
"""
|
|
183160
183160
|
|
|
183161
183161
|
bound_box: list[list[float]] | tuple[
|
|
183162
|
-
tuple[float, float, float
|
|
183163
|
-
tuple[float, float, float
|
|
183164
|
-
tuple[float, float, float
|
|
183162
|
+
tuple[float, float, float],
|
|
183163
|
+
tuple[float, float, float],
|
|
183164
|
+
tuple[float, float, float],
|
|
183165
|
+
tuple[float, float, float],
|
|
183166
|
+
tuple[float, float, float],
|
|
183167
|
+
tuple[float, float, float],
|
|
183168
|
+
tuple[float, float, float],
|
|
183169
|
+
tuple[float, float, float],
|
|
183165
183170
|
]
|
|
183166
183171
|
""" Object's bounding box in object-space coordinates, all values are -1.0 when not available
|
|
183167
183172
|
|
|
183168
|
-
:type: list[list[float]] | tuple[tuple[float, float, float, float, float, float, float, float], tuple[float, float, float, float, float, float, float, float], tuple[float, float, float, float, float, float
|
|
183173
|
+
:type: list[list[float]] | tuple[tuple[float, float, float], tuple[float, float, float], tuple[float, float, float], tuple[float, float, float], tuple[float, float, float], tuple[float, float, float], tuple[float, float, float], tuple[float, float, float]]
|
|
183169
183174
|
"""
|
|
183170
183175
|
|
|
183171
183176
|
collision: CollisionSettings
|
|
@@ -192328,14 +192333,16 @@ class RegionView3D(bpy_struct):
|
|
|
192328
192333
|
"""3D View region data"""
|
|
192329
192334
|
|
|
192330
192335
|
clip_planes: list[list[float]] | tuple[
|
|
192331
|
-
tuple[float, float, float, float
|
|
192332
|
-
tuple[float, float, float, float
|
|
192333
|
-
tuple[float, float, float, float
|
|
192334
|
-
tuple[float, float, float, float
|
|
192336
|
+
tuple[float, float, float, float],
|
|
192337
|
+
tuple[float, float, float, float],
|
|
192338
|
+
tuple[float, float, float, float],
|
|
192339
|
+
tuple[float, float, float, float],
|
|
192340
|
+
tuple[float, float, float, float],
|
|
192341
|
+
tuple[float, float, float, float],
|
|
192335
192342
|
]
|
|
192336
192343
|
"""
|
|
192337
192344
|
|
|
192338
|
-
:type: list[list[float]] | tuple[tuple[float, float, float, float, float, float
|
|
192345
|
+
:type: list[list[float]] | tuple[tuple[float, float, float, float], tuple[float, float, float, float], tuple[float, float, float, float], tuple[float, float, float, float], tuple[float, float, float, float], tuple[float, float, float, float]]
|
|
192339
192346
|
"""
|
|
192340
192347
|
|
|
192341
192348
|
is_orthographic_side_view: bool
|
|
@@ -230974,12 +230981,6 @@ DATA_PT_EEVEE_light_influence: bl_ui.properties_data_light.DATA_PT_EEVEE_light_i
|
|
|
230974
230981
|
|
|
230975
230982
|
DATA_PT_EEVEE_light_shadow: bl_ui.properties_data_light.DATA_PT_EEVEE_light_shadow
|
|
230976
230983
|
|
|
230977
|
-
DATA_PT_EEVEE_shadow: bl_ui.properties_data_light.DATA_PT_EEVEE_shadow
|
|
230978
|
-
|
|
230979
|
-
DATA_PT_EEVEE_shadow_cascaded_shadow_map: bl_ui.properties_data_light.DATA_PT_EEVEE_shadow_cascaded_shadow_map
|
|
230980
|
-
|
|
230981
|
-
DATA_PT_EEVEE_shadow_contact: bl_ui.properties_data_light.DATA_PT_EEVEE_shadow_contact
|
|
230982
|
-
|
|
230983
230984
|
DATA_PT_active_spline: bl_ui.properties_data_curve.DATA_PT_active_spline
|
|
230984
230985
|
|
|
230985
230986
|
DATA_PT_armature_animation: bl_ui.properties_data_armature.DATA_PT_armature_animation
|
|
@@ -231602,8 +231603,6 @@ MATERIAL_PT_gpencil_fillcolor: bl_ui.properties_material_gpencil.MATERIAL_PT_gpe
|
|
|
231602
231603
|
|
|
231603
231604
|
MATERIAL_PT_gpencil_material_presets: bl_ui.properties_material_gpencil.MATERIAL_PT_gpencil_material_presets
|
|
231604
231605
|
|
|
231605
|
-
MATERIAL_PT_gpencil_preview: bl_ui.properties_material_gpencil.MATERIAL_PT_gpencil_preview
|
|
231606
|
-
|
|
231607
231606
|
MATERIAL_PT_gpencil_settings: bl_ui.properties_material_gpencil.MATERIAL_PT_gpencil_settings
|
|
231608
231607
|
|
|
231609
231608
|
MATERIAL_PT_gpencil_slots: bl_ui.properties_material_gpencil.MATERIAL_PT_gpencil_slots
|
|
@@ -232524,22 +232523,8 @@ RENDER_PT_color_management_white_balance_presets: bl_ui.properties_render.RENDER
|
|
|
232524
232523
|
|
|
232525
232524
|
RENDER_PT_context: bl_ui.properties_render.RENDER_PT_context
|
|
232526
232525
|
|
|
232527
|
-
RENDER_PT_eevee_ambient_occlusion: bl_ui.properties_render.RENDER_PT_eevee_ambient_occlusion
|
|
232528
|
-
|
|
232529
|
-
RENDER_PT_eevee_bloom: bl_ui.properties_render.RENDER_PT_eevee_bloom
|
|
232530
|
-
|
|
232531
|
-
RENDER_PT_eevee_depth_of_field: bl_ui.properties_render.RENDER_PT_eevee_depth_of_field
|
|
232532
|
-
|
|
232533
|
-
RENDER_PT_eevee_film: bl_ui.properties_render.RENDER_PT_eevee_film
|
|
232534
|
-
|
|
232535
232526
|
RENDER_PT_eevee_hair: bl_ui.properties_render.RENDER_PT_eevee_hair
|
|
232536
232527
|
|
|
232537
|
-
RENDER_PT_eevee_indirect_lighting: bl_ui.properties_render.RENDER_PT_eevee_indirect_lighting
|
|
232538
|
-
|
|
232539
|
-
RENDER_PT_eevee_indirect_lighting_display: bl_ui.properties_render.RENDER_PT_eevee_indirect_lighting_display
|
|
232540
|
-
|
|
232541
|
-
RENDER_PT_eevee_motion_blur: bl_ui.properties_render.RENDER_PT_eevee_motion_blur
|
|
232542
|
-
|
|
232543
232528
|
RENDER_PT_eevee_next_clamping: bl_ui.properties_render.RENDER_PT_eevee_next_clamping
|
|
232544
232529
|
|
|
232545
232530
|
RENDER_PT_eevee_next_clamping_surface: bl_ui.properties_render.RENDER_PT_eevee_next_clamping_surface
|
|
@@ -232586,20 +232571,6 @@ RENDER_PT_eevee_performance_memory: bl_ui.properties_render.RENDER_PT_eevee_perf
|
|
|
232586
232571
|
|
|
232587
232572
|
RENDER_PT_eevee_performance_viewport: bl_ui.properties_render.RENDER_PT_eevee_performance_viewport
|
|
232588
232573
|
|
|
232589
|
-
RENDER_PT_eevee_sampling: bl_ui.properties_render.RENDER_PT_eevee_sampling
|
|
232590
|
-
|
|
232591
|
-
RENDER_PT_eevee_screen_space_reflections: bl_ui.properties_render.RENDER_PT_eevee_screen_space_reflections
|
|
232592
|
-
|
|
232593
|
-
RENDER_PT_eevee_shadows: bl_ui.properties_render.RENDER_PT_eevee_shadows
|
|
232594
|
-
|
|
232595
|
-
RENDER_PT_eevee_subsurface_scattering: bl_ui.properties_render.RENDER_PT_eevee_subsurface_scattering
|
|
232596
|
-
|
|
232597
|
-
RENDER_PT_eevee_volumetric: bl_ui.properties_render.RENDER_PT_eevee_volumetric
|
|
232598
|
-
|
|
232599
|
-
RENDER_PT_eevee_volumetric_lighting: bl_ui.properties_render.RENDER_PT_eevee_volumetric_lighting
|
|
232600
|
-
|
|
232601
|
-
RENDER_PT_eevee_volumetric_shadows: bl_ui.properties_render.RENDER_PT_eevee_volumetric_shadows
|
|
232602
|
-
|
|
232603
232574
|
RENDER_PT_encoding: bl_ui.properties_output.RENDER_PT_encoding
|
|
232604
232575
|
|
|
232605
232576
|
RENDER_PT_encoding_audio: bl_ui.properties_output.RENDER_PT_encoding_audio
|
|
@@ -233954,12 +233925,6 @@ VIEW3D_PT_viewport_debug: bl_ui.space_view3d.VIEW3D_PT_viewport_debug
|
|
|
233954
233925
|
|
|
233955
233926
|
VIEWLAYER_MT_lightgroup_sync: bl_ui.properties_view_layer.VIEWLAYER_MT_lightgroup_sync
|
|
233956
233927
|
|
|
233957
|
-
VIEWLAYER_PT_eevee_layer_passes_data: bl_ui.properties_view_layer.VIEWLAYER_PT_eevee_layer_passes_data
|
|
233958
|
-
|
|
233959
|
-
VIEWLAYER_PT_eevee_layer_passes_effects: bl_ui.properties_view_layer.VIEWLAYER_PT_eevee_layer_passes_effects
|
|
233960
|
-
|
|
233961
|
-
VIEWLAYER_PT_eevee_layer_passes_light: bl_ui.properties_view_layer.VIEWLAYER_PT_eevee_layer_passes_light
|
|
233962
|
-
|
|
233963
233928
|
VIEWLAYER_PT_eevee_next_layer_passes_data: bl_ui.properties_view_layer.VIEWLAYER_PT_eevee_next_layer_passes_data
|
|
233964
233929
|
|
|
233965
233930
|
VIEWLAYER_PT_eevee_next_layer_passes_light: bl_ui.properties_view_layer.VIEWLAYER_PT_eevee_next_layer_passes_light
|
bpy/typing/__init__.pyi
CHANGED
|
@@ -744,6 +744,7 @@ type FileselectParamsSortItems = typing.Literal[
|
|
|
744
744
|
"FILE_SORT_EXTENSION", # Extension.Sort the file list by extension/type.
|
|
745
745
|
"FILE_SORT_TIME", # Modified Date.Sort files by modification time.
|
|
746
746
|
"FILE_SORT_SIZE", # Size.Sort files by size.
|
|
747
|
+
"ASSET_CATALOG", # Asset Catalog.Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
|
|
747
748
|
]
|
|
748
749
|
type FmodifierTypeItems = typing.Literal[
|
|
749
750
|
"NULL", # Invalid.
|
|
@@ -39,7 +39,7 @@ class KeyframesCo:
|
|
|
39
39
|
"""
|
|
40
40
|
|
|
41
41
|
def insert_keyframes_into_existing_action(
|
|
42
|
-
self, lookup_fcurves, total_new_keys, action,
|
|
42
|
+
self, lookup_fcurves, total_new_keys, action, action_slot
|
|
43
43
|
):
|
|
44
44
|
"""Assumes the action already exists, that it might already have F-curves. Otherwise, the
|
|
45
45
|
only difference between versions is performance and implementation simplicity.
|
|
@@ -48,8 +48,7 @@ class KeyframesCo:
|
|
|
48
48
|
It's a substitute for action.fcurves.find() which is a potentially expensive linear search.
|
|
49
49
|
:param total_new_keys:
|
|
50
50
|
:param action:
|
|
51
|
-
:param
|
|
52
|
-
:type action_group_name: str
|
|
51
|
+
:param action_slot:
|
|
53
52
|
"""
|
|
54
53
|
|
|
55
54
|
def insert_keyframes_into_new_action(
|
|
@@ -65,7 +65,7 @@ bl_operators/console/__init__.pyi,sha256=0ZoWmnsQlXPXVRm-BqtCLiZAeJlhXvq-gYGoG5Q
|
|
|
65
65
|
bl_operators/constraint/__init__.pyi,sha256=QsYjI0B2lCPjm0-6bUz0Eeu6chrifsEMxFDNBM2ESS8,3225
|
|
66
66
|
bl_operators/file/__init__.pyi,sha256=JTGU6cCI1ya0oNwyKNhNwoa5DfXzeUoZhUT6W5GKt5o,2441
|
|
67
67
|
bl_operators/freestyle/__init__.pyi,sha256=bPoeyNCgKMKCrbPufTbTBXiIpKs6L6DVK3VFjuPvM8Q,3432
|
|
68
|
-
bl_operators/geometry_nodes/__init__.pyi,sha256=
|
|
68
|
+
bl_operators/geometry_nodes/__init__.pyi,sha256=h0mxRrKeb6_NoRZJUENU2aj_WiN3SHUNBvK5u-Mev4s,4084
|
|
69
69
|
bl_operators/image/__init__.pyi,sha256=YNHvnRdvl9z5DBqDRR23PpFgA94TshQfexGmyYbyzK0,3436
|
|
70
70
|
bl_operators/image_as_planes/__init__.pyi,sha256=fPIRW27jx24QZSwKQNaqfnNv1_jkaEjccOfpVN_U4EA,5877
|
|
71
71
|
bl_operators/mesh/__init__.pyi,sha256=jdyChlzXgKrhiw9ROSf8o7YFi3L40p4dBGfTn-vAshU,2412
|
|
@@ -81,7 +81,7 @@ bl_operators/rigidbody/__init__.pyi,sha256=HJuSXsZix0eL5moJHM-O1J7eX1FWpHeHJ2Oyg
|
|
|
81
81
|
bl_operators/screen_play_rendered_anim/__init__.pyi,sha256=MOD1mKBiPdwnNbOljdS0tu8IlSBh9E20hV7dg3iBbfM,766
|
|
82
82
|
bl_operators/sequencer/__init__.pyi,sha256=qpj0JTdqKUlW6GQWv8GpHWxVZXlHUSwQLWKZaH019tY,7736
|
|
83
83
|
bl_operators/spreadsheet/__init__.pyi,sha256=kw9r5R4t4ZVd3vw6_wGyduPl8tLSNd4D7dnXEqm_hGE,957
|
|
84
|
-
bl_operators/userpref/__init__.pyi,sha256=
|
|
84
|
+
bl_operators/userpref/__init__.pyi,sha256=194yL3KMuzGVGDoWs-VY6o5i4wUQDuzQoRMmwX-01NY,17071
|
|
85
85
|
bl_operators/uvcalc_follow_active/__init__.pyi,sha256=nGtrNBQpXdTFLLyVyS2HBTfRSR034RgxwpnscHa1IgI,1023
|
|
86
86
|
bl_operators/uvcalc_lightmap/__init__.pyi,sha256=l_52iDWTIY9TZkX_HjYPaga3qVTyYxeVTUKsUg3UORs,1882
|
|
87
87
|
bl_operators/uvcalc_transform/__init__.pyi,sha256=4ePbkNZ-TOXjwqizGN50OMgjVSNpKegvOmY7FAYG6Xo,3658
|
|
@@ -111,18 +111,18 @@ bl_ui/node_add_menu_texture/__init__.pyi,sha256=sNBQZ2K5eXKcCbJKtBu2Ldx45Ds2jgyO
|
|
|
111
111
|
bl_ui/properties_animviz/__init__.pyi,sha256=3qdld3djZH4LXWRv5bmBgA0tX3OnD1RNrwzxREPqFGc,662
|
|
112
112
|
bl_ui/properties_collection/__init__.pyi,sha256=8RMhD3OoeJjNkOTDeQQ1ai-q1qrkI17ZeEaVHmC3XhE,4334
|
|
113
113
|
bl_ui/properties_constraint/__init__.pyi,sha256=JljYpXi7gn8TkUMS2ZTdDK-RVsHCnN1gQpS7j-TPbtw,61000
|
|
114
|
-
bl_ui/properties_data_armature/__init__.pyi,sha256=
|
|
115
|
-
bl_ui/properties_data_bone/__init__.pyi,sha256=
|
|
114
|
+
bl_ui/properties_data_armature/__init__.pyi,sha256=TIgqprf2fvvCAdFnlnbZ4wcvl2nQShEwL6VxSAYUS_o,13108
|
|
115
|
+
bl_ui/properties_data_bone/__init__.pyi,sha256=jG4ytf1UzXw0ajVB3X94zyNI3NCwNznsAcLJurr2uqU,7970
|
|
116
116
|
bl_ui/properties_data_camera/__init__.pyi,sha256=voA4pSpiwEB0_CY454oPQfpwY2Il-wkjpNWgMxKPjKg,11905
|
|
117
|
-
bl_ui/properties_data_curve/__init__.pyi,sha256=
|
|
117
|
+
bl_ui/properties_data_curve/__init__.pyi,sha256=D1xZkuCpaMwurWe-N7UAeEB8Ko8Egsw8fAhfOTQqXJU,12859
|
|
118
118
|
bl_ui/properties_data_curves/__init__.pyi,sha256=huauSiwT8GBVJrFzp3o6N6aA8ouxecfu6RgHBfc5rJg,5913
|
|
119
119
|
bl_ui/properties_data_empty/__init__.pyi,sha256=PrWD2bMI4AKOBXS1-GsHXFFeVc12p4siGDQJxdmn95A,1679
|
|
120
|
-
bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=
|
|
121
|
-
bl_ui/properties_data_lattice/__init__.pyi,sha256=
|
|
122
|
-
bl_ui/properties_data_light/__init__.pyi,sha256=
|
|
120
|
+
bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=JaWlikES7Q5qCyOeywlgWvN2lpQz_UJ64RlfX2eiUBs,13940
|
|
121
|
+
bl_ui/properties_data_lattice/__init__.pyi,sha256=duUWwjGBzoTFbhB3BUruazK5qfddVxHJ1UJAtxSSkcs,3442
|
|
122
|
+
bl_ui/properties_data_light/__init__.pyi,sha256=Q4jh6kmNDqhw5u3An4gSPhlPnzMZMUb-wH_1RrcPsNM,8137
|
|
123
123
|
bl_ui/properties_data_lightprobe/__init__.pyi,sha256=micXmIresZ3nptUhIKrsUe7dMYQkTd-H2SMi-kkMysg,10705
|
|
124
124
|
bl_ui/properties_data_mesh/__init__.pyi,sha256=hWBZZPK5TqPdyBAfBdRHRyGNmPbHLDiYGpOpigonZDo,16244
|
|
125
|
-
bl_ui/properties_data_metaball/__init__.pyi,sha256=
|
|
125
|
+
bl_ui/properties_data_metaball/__init__.pyi,sha256=GTLKKm2LsSSnLGT4axvIaxl6kfRumd5jEbstYckuVhE,4766
|
|
126
126
|
bl_ui/properties_data_modifier/__init__.pyi,sha256=HkKGz9mmfKPIwb4Bm_tQ9zMOZH_61S0mdyM4u3cb974,7640
|
|
127
127
|
bl_ui/properties_data_pointcloud/__init__.pyi,sha256=k_kGJpcpz11D2Rhs_9kR-P4Rw4SRhi2iC-rau-DxagE,4239
|
|
128
128
|
bl_ui/properties_data_shaderfx/__init__.pyi,sha256=qheRKCM-zgYYTypVdyJrjqgmD1yBXQVlsrlWUwoHsFg,859
|
|
@@ -132,7 +132,7 @@ bl_ui/properties_freestyle/__init__.pyi,sha256=JxNJb9q2e8hRqNb7ynucmV5GKCG7y_HdQ
|
|
|
132
132
|
bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=1CrD74PLE_vQfIld10Ki0scxp-iBzLk9skpB2v7Twok,8434
|
|
133
133
|
bl_ui/properties_mask_common/__init__.pyi,sha256=-Ae0CtS1OQZRwJ38l1xj-115MJo9xEQieAarliMc40s,5796
|
|
134
134
|
bl_ui/properties_material/__init__.pyi,sha256=J3GrRdWFeh4p5w2qKtC5Dwz0XF301ATcsCPcV4kXWe0,13499
|
|
135
|
-
bl_ui/properties_material_gpencil/__init__.pyi,sha256=
|
|
135
|
+
bl_ui/properties_material_gpencil/__init__.pyi,sha256=xY7bZUCPnZdCODKxzvJLWJ6EyrRSs0jiyNNsNxsTahk,7917
|
|
136
136
|
bl_ui/properties_object/__init__.pyi,sha256=8j-f7nIklQcDr8gIfbaHQzZBbfT9DpTDy3g02ZEWtbI,14680
|
|
137
137
|
bl_ui/properties_output/__init__.pyi,sha256=1fkDdDyAz2lTcSUnef8fai-1hTw9ztgvJsafPT_8vcU,13760
|
|
138
138
|
bl_ui/properties_paint_common/__init__.pyi,sha256=INYsmz0kr7GuYAv9v8p-b6taRlrd782PhlFh3zXtE38,7982
|
|
@@ -146,10 +146,10 @@ bl_ui/properties_physics_geometry_nodes/__init__.pyi,sha256=IJ12Is3aWlpx8sYPk1Df
|
|
|
146
146
|
bl_ui/properties_physics_rigidbody/__init__.pyi,sha256=mihnVbJEe3H_xDQlmCNz_oI09sOEX_TDdqRfthPnV2Y,6969
|
|
147
147
|
bl_ui/properties_physics_rigidbody_constraint/__init__.pyi,sha256=GzRt03C-kNNLxnQHCV4VKIGl0JITScWRyadNWcaVQo8,11342
|
|
148
148
|
bl_ui/properties_physics_softbody/__init__.pyi,sha256=YU3C0AeOCWqB9f9YjVSH8F4FmAlBQN-yjzAu60ynsgk,11590
|
|
149
|
-
bl_ui/properties_render/__init__.pyi,sha256=
|
|
149
|
+
bl_ui/properties_render/__init__.pyi,sha256=fi9dZH2IoM4dtFvo5YopOtsOVdVcO3jdv9ZJppwvj3g,32999
|
|
150
150
|
bl_ui/properties_scene/__init__.pyi,sha256=NaTdJK2mIrAwjp5sJFo98ipm4Uvk6C1pSFCofA_bF_c,12508
|
|
151
151
|
bl_ui/properties_texture/__init__.pyi,sha256=8d7ZCVj0-wZLdtj3Fzan96sCP4p_TZg0C_NoQILGo-A,21060
|
|
152
|
-
bl_ui/properties_view_layer/__init__.pyi,sha256=
|
|
152
|
+
bl_ui/properties_view_layer/__init__.pyi,sha256=J7N_wlyCDA_Awz4SZ1LU9H03kbEncWsibqU5Ja7ZRt0,9204
|
|
153
153
|
bl_ui/properties_workspace/__init__.pyi,sha256=H9ixaD-_K6YbmzvvzDqE8Ca1_jvGeOJ0S-RHiKXcwoE,3461
|
|
154
154
|
bl_ui/properties_world/__init__.pyi,sha256=2BvXUUUI6BdaA61DKNR3xNGGLSiK5kfeHW25x-s4p7w,9145
|
|
155
155
|
bl_ui/space_clip/__init__.pyi,sha256=I9bHrnPSZnkPYGxKw3tlUqch3FnyL4fpyjIzG-rqpKk,45001
|
|
@@ -206,7 +206,7 @@ bpy/ops/brush/__init__.pyi,sha256=bLGox27gIsExbj8k1KnTqEafBvjwahpyTqTyPThK_b8,11
|
|
|
206
206
|
bpy/ops/buttons/__init__.pyi,sha256=8KxoTsxG3Xyu56sfSKKjntI0pGJGUrkHCR3Byz030_s,9909
|
|
207
207
|
bpy/ops/cachefile/__init__.pyi,sha256=epLtrYV_rXpSNVPa0PQC_dJk8HYJsyhPQAyGYwiEb5I,9680
|
|
208
208
|
bpy/ops/camera/__init__.pyi,sha256=S_QZcF94MM43nyyZ8Ldkp49ymdMWagFAmxOErczGbqA,1699
|
|
209
|
-
bpy/ops/clip/__init__.pyi,sha256=
|
|
209
|
+
bpy/ops/clip/__init__.pyi,sha256=gshdsugijpw3oLx9VFfDrcirO_FXRdizfQVDOHoTE50,59130
|
|
210
210
|
bpy/ops/cloth/__init__.pyi,sha256=BNc67f3mcdd0fCoCTXeVFrt48n3cn2mcinbpYXZ0RWE,795
|
|
211
211
|
bpy/ops/collection/__init__.pyi,sha256=_CDNOzxT3hkB82aXQvBtJvVmai8BzUJny8IuaLiv8Jc,4473
|
|
212
212
|
bpy/ops/console/__init__.pyi,sha256=MLTQL6bSRS1Hb1AZu3u3izA4IWHcBRzmpLSUEAwwGlc,10618
|
|
@@ -239,8 +239,8 @@ bpy/ops/material/__init__.pyi,sha256=KDgPB2utYKt3DSXKI4f71x1A4Di-_AdWpAbNah3N3AE
|
|
|
239
239
|
bpy/ops/mball/__init__.pyi,sha256=jqOLev5gvBK4fx9CLXj1qxWyTp3z0kqVG1Fxk4Mnzn8,5384
|
|
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
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
243
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
242
|
+
bpy/ops/node/__init__.pyi,sha256=aOidac9kvo9PjUrMTjj-sOfw4DHfITAzolQnooGBasY,70002
|
|
243
|
+
bpy/ops/object/__init__.pyi,sha256=AcUuJOCxtcrkBBpUUqoGkDpzqMzPBRaK_L8f46xcsJw,203698
|
|
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,20 +248,20 @@ 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=aLbNIUfWcMGBicJHyqbi8Cs5OZlHDVGl88liLMeRNrI,24852
|
|
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
|
-
bpy/ops/screen/__init__.pyi,sha256=
|
|
256
|
+
bpy/ops/screen/__init__.pyi,sha256=WHJ7eTSoQx1UQyrxdyn6NwrYc0lJWSo_EAX1HlvR_0E,26028
|
|
257
257
|
bpy/ops/script/__init__.pyi,sha256=qJGs4LY_-NgCKFwGkOBwvig0LFr5v72A9nL-LQ21HrY,1460
|
|
258
258
|
bpy/ops/sculpt/__init__.pyi,sha256=rx6Cwe39UDt57ekD4u3CsfjrbBIGmGxNGHY7I4St0zg,52342
|
|
259
259
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=h9WZL7nJe6THcD9vxr7_qxeHb3s9dLuE-GSqd5s8dac,3310
|
|
260
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
260
|
+
bpy/ops/sequencer/__init__.pyi,sha256=a1_1eXcMXM_zWE3qzIM8dLXZ1MUF3fZYfRFA8KJsiso,87721
|
|
261
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
|
-
bpy/ops/text/__init__.pyi,sha256=
|
|
264
|
+
bpy/ops/text/__init__.pyi,sha256=o9GULG3TAy_H_t7T6IkAfmtdpU7BWZNJQRxygo4GpBY,27998
|
|
265
265
|
bpy/ops/text_editor/__init__.pyi,sha256=f-dugyqMTV3ZhWnGNpV9igyNbfrqx8GC_TK7mRiJQOU,801
|
|
266
266
|
bpy/ops/texture/__init__.pyi,sha256=zw8XpITxHcPRMIOlyNwJpe7dXyYyfWg3CvAuDL_gUd4,1710
|
|
267
267
|
bpy/ops/transform/__init__.pyi,sha256=NtBJgqlRKj3CH6mHA3sf5Slf_KpSWamoj-rWNEIz7SU,61406
|
|
@@ -275,14 +275,14 @@ bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJ
|
|
|
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=
|
|
279
|
-
bpy/typing/__init__.pyi,sha256=
|
|
278
|
+
bpy/types/__init__.pyi,sha256=txsnMJ_DoZFVEjauZXP9m1D64AnKVTlksn2WQbb3tOw,5367018
|
|
279
|
+
bpy/typing/__init__.pyi,sha256=cQWf5y7fGG52KM_nXbabxyJ3ZnodweLz91nB4tvqBTU,138751
|
|
280
280
|
bpy/utils/__init__.pyi,sha256=AEb3oVPPh_gqLyKORj6rsxDPWvXIHjqp_eME3z98GcM,13117
|
|
281
281
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
282
282
|
bpy/utils/units/__init__.pyi,sha256=r9G6UXferw_5pDijn-FmpyhYSnEng3_y-5apdkPAKl0,2631
|
|
283
283
|
bpy_extras/__init__.pyi,sha256=wejK55NeAEGsAzM9psNhBokX9H0DBihwOdNQ5XlCHB4,968
|
|
284
284
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
285
|
-
bpy_extras/anim_utils/__init__.pyi,sha256=
|
|
285
|
+
bpy_extras/anim_utils/__init__.pyi,sha256=MSaxkw8_bGuYMttspy2vzP3EawtwFBfYrVJ3VVB0ijk,3984
|
|
286
286
|
bpy_extras/asset_utils/__init__.pyi,sha256=UVqJmdeah5Uca5VTLpU43l5xIzQf4RGfcXdiQ9AmX6g,584
|
|
287
287
|
bpy_extras/bmesh_utils/__init__.pyi,sha256=pWG_zUbIv6IX_M7ofADU5HRsVyfKZAzHEs_V4-kNDDg,456
|
|
288
288
|
bpy_extras/id_map_utils/__init__.pyi,sha256=oTM7UGvrLRIhWXjHhXcwE20PNjSyRVXlV9FLAn_QCk4,450
|
|
@@ -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-20241031.dist-info/METADATA,sha256=WzdcSin123ytavQfIP8TkvjUmjzpb8EhMKNo0qdWyts,7204
|
|
362
|
+
fake_bpy_module-20241031.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
363
|
+
fake_bpy_module-20241031.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
364
|
+
fake_bpy_module-20241031.dist-info/RECORD,,
|
|
File without changes
|