fake-bpy-module-latest 20260202__py3-none-any.whl → 20260203__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.
- bl_operators/node/__init__.pyi +22 -0
- bl_ui/space_view3d/__init__.pyi +2 -2
- bpy/ops/anim/__init__.pyi +14 -0
- bpy/ops/grease_pencil/__init__.pyi +67 -1
- bpy/ops/node/__init__.pyi +15 -1
- bpy/types/__init__.pyi +98 -4
- {fake_bpy_module_latest-20260202.dist-info → fake_bpy_module_latest-20260203.dist-info}/METADATA +1 -1
- {fake_bpy_module_latest-20260202.dist-info → fake_bpy_module_latest-20260203.dist-info}/RECORD +10 -10
- {fake_bpy_module_latest-20260202.dist-info → fake_bpy_module_latest-20260203.dist-info}/WHEEL +0 -0
- {fake_bpy_module_latest-20260202.dist-info → fake_bpy_module_latest-20260203.dist-info}/top_level.txt +0 -0
bl_operators/node/__init__.pyi
CHANGED
|
@@ -467,6 +467,8 @@ class NODE_OT_swap_empty_group(NodeSwapOperator, _bpy_types.Operator):
|
|
|
467
467
|
bl_options: typing.Any
|
|
468
468
|
bl_rna: typing.Any
|
|
469
469
|
id_data: typing.Any
|
|
470
|
+
id_prop_names: typing.Any
|
|
471
|
+
image_user_settings: typing.Any
|
|
470
472
|
properties_to_pass: typing.Any
|
|
471
473
|
|
|
472
474
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -510,6 +512,8 @@ class NODE_OT_swap_node(NodeSwapOperator, _bpy_types.Operator):
|
|
|
510
512
|
bl_options: typing.Any
|
|
511
513
|
bl_rna: typing.Any
|
|
512
514
|
id_data: typing.Any
|
|
515
|
+
id_prop_names: typing.Any
|
|
516
|
+
image_user_settings: typing.Any
|
|
513
517
|
properties_to_pass: typing.Any
|
|
514
518
|
|
|
515
519
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -558,6 +562,8 @@ class NODE_OT_swap_zone(NodeSwapOperator, ZoneOperator, _bpy_types.Operator):
|
|
|
558
562
|
bl_options: typing.Any
|
|
559
563
|
bl_rna: typing.Any
|
|
560
564
|
id_data: typing.Any
|
|
565
|
+
id_prop_names: typing.Any
|
|
566
|
+
image_user_settings: typing.Any
|
|
561
567
|
properties_to_pass: typing.Any
|
|
562
568
|
|
|
563
569
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -794,6 +800,8 @@ class NodeAddOperator(NodeOperator):
|
|
|
794
800
|
"""
|
|
795
801
|
|
|
796
802
|
class NodeSwapOperator(NodeOperator):
|
|
803
|
+
id_prop_names: typing.Any
|
|
804
|
+
image_user_settings: typing.Any
|
|
797
805
|
properties_to_pass: typing.Any
|
|
798
806
|
|
|
799
807
|
@staticmethod
|
|
@@ -810,6 +818,20 @@ class NodeSwapOperator(NodeOperator):
|
|
|
810
818
|
:param context:
|
|
811
819
|
"""
|
|
812
820
|
|
|
821
|
+
def transfer_datablock_properties(self, old_node, new_node) -> None:
|
|
822
|
+
"""
|
|
823
|
+
|
|
824
|
+
:param old_node:
|
|
825
|
+
:param new_node:
|
|
826
|
+
"""
|
|
827
|
+
|
|
828
|
+
def transfer_image_user_settings(self, old_node, new_node) -> None:
|
|
829
|
+
"""
|
|
830
|
+
|
|
831
|
+
:param old_node:
|
|
832
|
+
:param new_node:
|
|
833
|
+
"""
|
|
834
|
+
|
|
813
835
|
def transfer_input_values(self, old_node, new_node) -> None:
|
|
814
836
|
"""
|
|
815
837
|
|
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -1225,10 +1225,10 @@ class VIEW3D_MT_edit_greasepencil_delete(_bpy_types.Menu):
|
|
|
1225
1225
|
:return: The class or default when not found.
|
|
1226
1226
|
"""
|
|
1227
1227
|
|
|
1228
|
-
def draw(self,
|
|
1228
|
+
def draw(self, context) -> None:
|
|
1229
1229
|
"""
|
|
1230
1230
|
|
|
1231
|
-
:param
|
|
1231
|
+
:param context:
|
|
1232
1232
|
"""
|
|
1233
1233
|
|
|
1234
1234
|
class VIEW3D_MT_edit_greasepencil_point(_bpy_types.Menu):
|
bpy/ops/anim/__init__.pyi
CHANGED
|
@@ -618,6 +618,20 @@ def previewrange_set(
|
|
|
618
618
|
:param wait_for_input: Wait for Input
|
|
619
619
|
"""
|
|
620
620
|
|
|
621
|
+
def replace_action(
|
|
622
|
+
execution_context: int | str | None = None,
|
|
623
|
+
undo: bool | None = None,
|
|
624
|
+
/,
|
|
625
|
+
*,
|
|
626
|
+
old_session_uid: int | None = 0,
|
|
627
|
+
new_session_uid: int | None = 0,
|
|
628
|
+
) -> None:
|
|
629
|
+
"""Swap all users of one action to another one. The normal action slot assignment rules apply. This ignores the NLA and Action Constraints
|
|
630
|
+
|
|
631
|
+
:param old_session_uid: Old Action, Old Actions session uid to replace
|
|
632
|
+
:param new_session_uid: Replacement Action, The replacement Actions session uid to remap all selected Actions users to
|
|
633
|
+
"""
|
|
634
|
+
|
|
621
635
|
def scene_range_frame(
|
|
622
636
|
execution_context: int | str | None = None,
|
|
623
637
|
undo: bool | None = None,
|
|
@@ -171,8 +171,22 @@ def delete(
|
|
|
171
171
|
execution_context: int | str | None = None,
|
|
172
172
|
undo: bool | None = None,
|
|
173
173
|
/,
|
|
174
|
+
*,
|
|
175
|
+
mode: typing.Literal["ALL", "STROKES", "FILLS"] | None = "ALL",
|
|
174
176
|
) -> None:
|
|
175
|
-
"""Delete selected strokes or points
|
|
177
|
+
"""Delete selected strokes or points
|
|
178
|
+
|
|
179
|
+
:param mode: Mode, The kind of strokes or fills to delete
|
|
180
|
+
|
|
181
|
+
ALL
|
|
182
|
+
All -- Delete all selected strokes or points.
|
|
183
|
+
|
|
184
|
+
STROKES
|
|
185
|
+
Only Strokes -- Delete only strokes and not fills.
|
|
186
|
+
|
|
187
|
+
FILLS
|
|
188
|
+
Only Fills -- Delte only fills and not strokes.
|
|
189
|
+
"""
|
|
176
190
|
|
|
177
191
|
def delete_breakdown(
|
|
178
192
|
execution_context: int | str | None = None,
|
|
@@ -461,6 +475,13 @@ def interpolate_sequence(
|
|
|
461
475
|
:param period: Period, Time between bounces for elastic easing
|
|
462
476
|
"""
|
|
463
477
|
|
|
478
|
+
def join_fills(
|
|
479
|
+
execution_context: int | str | None = None,
|
|
480
|
+
undo: bool | None = None,
|
|
481
|
+
/,
|
|
482
|
+
) -> None:
|
|
483
|
+
"""Join selected strokes into one fill to create holes"""
|
|
484
|
+
|
|
464
485
|
def join_selection(
|
|
465
486
|
execution_context: int | str | None = None,
|
|
466
487
|
undo: bool | None = None,
|
|
@@ -1128,6 +1149,20 @@ def select_alternate(
|
|
|
1128
1149
|
:param deselect_ends: Deselect Ends, (De)select the first and last point of each stroke
|
|
1129
1150
|
"""
|
|
1130
1151
|
|
|
1152
|
+
def select_by_stroke_type(
|
|
1153
|
+
execution_context: int | str | None = None,
|
|
1154
|
+
undo: bool | None = None,
|
|
1155
|
+
/,
|
|
1156
|
+
*,
|
|
1157
|
+
type: typing.Literal["STROKE", "FILL"] | None = "STROKE",
|
|
1158
|
+
deselect: bool | None = False,
|
|
1159
|
+
) -> None:
|
|
1160
|
+
"""Select/Deselect all strokes or fills
|
|
1161
|
+
|
|
1162
|
+
:param type: Type
|
|
1163
|
+
:param deselect: Deselect, Unselect strokes
|
|
1164
|
+
"""
|
|
1165
|
+
|
|
1131
1166
|
def select_ends(
|
|
1132
1167
|
execution_context: int | str | None = None,
|
|
1133
1168
|
undo: bool | None = None,
|
|
@@ -1142,6 +1177,13 @@ def select_ends(
|
|
|
1142
1177
|
:param amount_end: Amount End, Number of points to select from the end
|
|
1143
1178
|
"""
|
|
1144
1179
|
|
|
1180
|
+
def select_fill(
|
|
1181
|
+
execution_context: int | str | None = None,
|
|
1182
|
+
undo: bool | None = None,
|
|
1183
|
+
/,
|
|
1184
|
+
) -> None:
|
|
1185
|
+
"""Select all curves in a fill"""
|
|
1186
|
+
|
|
1145
1187
|
def select_less(
|
|
1146
1188
|
execution_context: int | str | None = None,
|
|
1147
1189
|
undo: bool | None = None,
|
|
@@ -1221,6 +1263,18 @@ def separate(
|
|
|
1221
1263
|
By Layer -- Separate by layer.
|
|
1222
1264
|
"""
|
|
1223
1265
|
|
|
1266
|
+
def separate_fills(
|
|
1267
|
+
execution_context: int | str | None = None,
|
|
1268
|
+
undo: bool | None = None,
|
|
1269
|
+
/,
|
|
1270
|
+
*,
|
|
1271
|
+
individual: bool | None = True,
|
|
1272
|
+
) -> None:
|
|
1273
|
+
"""Separate the selected strokes from current fill
|
|
1274
|
+
|
|
1275
|
+
:param individual: Individual, Create a separate fill for each individual stroke
|
|
1276
|
+
"""
|
|
1277
|
+
|
|
1224
1278
|
def set_active_material(
|
|
1225
1279
|
execution_context: int | str | None = None,
|
|
1226
1280
|
undo: bool | None = None,
|
|
@@ -1327,6 +1381,18 @@ def set_start_point(
|
|
|
1327
1381
|
) -> None:
|
|
1328
1382
|
"""Select which point is the beginning of the curve"""
|
|
1329
1383
|
|
|
1384
|
+
def set_stroke_type(
|
|
1385
|
+
execution_context: int | str | None = None,
|
|
1386
|
+
undo: bool | None = None,
|
|
1387
|
+
/,
|
|
1388
|
+
*,
|
|
1389
|
+
type: typing.Literal["STROKE", "FILL", "BOTH"] | None = "STROKE",
|
|
1390
|
+
) -> None:
|
|
1391
|
+
"""Set the stroke type (stroke, fill, or both) of the selected strokes
|
|
1392
|
+
|
|
1393
|
+
:param type: Type
|
|
1394
|
+
"""
|
|
1395
|
+
|
|
1330
1396
|
def set_uniform_opacity(
|
|
1331
1397
|
execution_context: int | str | None = None,
|
|
1332
1398
|
undo: bool | None = None,
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -1458,6 +1458,20 @@ def link(
|
|
|
1458
1458
|
:param zoom_influence: Zoom Influence, Influence of the zoom factor on scroll speed
|
|
1459
1459
|
"""
|
|
1460
1460
|
|
|
1461
|
+
def link_drag_operation_test(
|
|
1462
|
+
execution_context: int | str | None = None,
|
|
1463
|
+
undo: bool | None = None,
|
|
1464
|
+
/,
|
|
1465
|
+
*,
|
|
1466
|
+
find_link_operations: bool | None = False,
|
|
1467
|
+
link_operation_index: int | None = -1,
|
|
1468
|
+
) -> None:
|
|
1469
|
+
"""Run a node link-drag operation for testing
|
|
1470
|
+
|
|
1471
|
+
:param find_link_operations: Find Link Operations, Write link operation names for the context socket the "link_operation_names" property of the node tree
|
|
1472
|
+
:param link_operation_index: Link Operation Index, Link operation to execute on the context socket
|
|
1473
|
+
"""
|
|
1474
|
+
|
|
1461
1475
|
def link_make(
|
|
1462
1476
|
execution_context: int | str | None = None,
|
|
1463
1477
|
undo: bool | None = None,
|
|
@@ -2148,7 +2162,7 @@ def viewer_border(
|
|
|
2148
2162
|
ymax: int | None = 0,
|
|
2149
2163
|
wait_for_input: bool | None = True,
|
|
2150
2164
|
) -> None:
|
|
2151
|
-
"""Set the boundaries for viewer operations
|
|
2165
|
+
"""Set the boundaries for viewer operations (Not implemented)
|
|
2152
2166
|
|
|
2153
2167
|
:param xmin: X Min
|
|
2154
2168
|
:param xmax: X Max
|
bpy/types/__init__.pyi
CHANGED
|
@@ -22534,6 +22534,50 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
22534
22534
|
:columns: 2
|
|
22535
22535
|
|
|
22536
22536
|
|
|
22537
|
+
--------------------
|
|
22538
|
+
|
|
22539
|
+
* bpy_struct.id_data
|
|
22540
|
+
|
|
22541
|
+
:columns: 2
|
|
22542
|
+
|
|
22543
|
+
|
|
22544
|
+
--------------------
|
|
22545
|
+
|
|
22546
|
+
* bpy_struct.as_pointer
|
|
22547
|
+
* bpy_struct.driver_add
|
|
22548
|
+
* bpy_struct.driver_remove
|
|
22549
|
+
* bpy_struct.get
|
|
22550
|
+
* bpy_struct.id_properties_clear
|
|
22551
|
+
* bpy_struct.id_properties_ensure
|
|
22552
|
+
* bpy_struct.id_properties_ui
|
|
22553
|
+
* bpy_struct.is_property_hidden
|
|
22554
|
+
* bpy_struct.is_property_overridable_library
|
|
22555
|
+
* bpy_struct.is_property_readonly
|
|
22556
|
+
* bpy_struct.is_property_set
|
|
22557
|
+
* bpy_struct.items
|
|
22558
|
+
* bpy_struct.keyframe_delete
|
|
22559
|
+
* bpy_struct.keyframe_insert
|
|
22560
|
+
* bpy_struct.keys
|
|
22561
|
+
* bpy_struct.path_from_id
|
|
22562
|
+
* bpy_struct.path_from_module
|
|
22563
|
+
* bpy_struct.path_resolve
|
|
22564
|
+
* bpy_struct.pop
|
|
22565
|
+
* bpy_struct.property_overridable_library_set
|
|
22566
|
+
* bpy_struct.property_unset
|
|
22567
|
+
* bpy_struct.rna_ancestors
|
|
22568
|
+
* bpy_struct.type_recast
|
|
22569
|
+
* bpy_struct.values
|
|
22570
|
+
|
|
22571
|
+
:columns: 2
|
|
22572
|
+
|
|
22573
|
+
|
|
22574
|
+
--------------------
|
|
22575
|
+
|
|
22576
|
+
* WindowManager.windows
|
|
22577
|
+
|
|
22578
|
+
:columns: 2
|
|
22579
|
+
|
|
22580
|
+
|
|
22537
22581
|
--------------------
|
|
22538
22582
|
|
|
22539
22583
|
* bpy_struct.id_data
|
|
@@ -37039,6 +37083,7 @@ It demonstrates:
|
|
|
37039
37083
|
* SceneStrip.scene
|
|
37040
37084
|
* StripsMeta.new_scene
|
|
37041
37085
|
* StripsTopLevel.new_scene
|
|
37086
|
+
* Window.find_playing_scene
|
|
37042
37087
|
* Window.scene
|
|
37043
37088
|
* WorkSpace.sequencer_scene
|
|
37044
37089
|
|
|
@@ -66210,6 +66255,7 @@ print(positions_data)
|
|
|
66210
66255
|
* Window.parent
|
|
66211
66256
|
* WindowManager.event_timer_add
|
|
66212
66257
|
* WindowManager.windows
|
|
66258
|
+
* Windows.find_playing
|
|
66213
66259
|
|
|
66214
66260
|
:columns: 2
|
|
66215
66261
|
|
|
@@ -128542,6 +128588,44 @@ class VolumeGrids(bpy_prop_collection[VolumeGrid], bpy_struct):
|
|
|
128542
128588
|
:return: The class or default when not found.
|
|
128543
128589
|
"""
|
|
128544
128590
|
|
|
128591
|
+
class Windows(bpy_prop_collection[Window], bpy_struct):
|
|
128592
|
+
"""Collection of windows"""
|
|
128593
|
+
|
|
128594
|
+
def find_playing(self, *, scrub: bool | None = False) -> Window:
|
|
128595
|
+
"""find_playing
|
|
128596
|
+
|
|
128597
|
+
:param scrub: Scrubbing, Check if time in the window is being scrubbed
|
|
128598
|
+
:return: Window, Window that is currently playing
|
|
128599
|
+
"""
|
|
128600
|
+
|
|
128601
|
+
@classmethod
|
|
128602
|
+
def bl_rna_get_subclass(
|
|
128603
|
+
cls,
|
|
128604
|
+
id: str | None,
|
|
128605
|
+
default=None,
|
|
128606
|
+
/,
|
|
128607
|
+
) -> Struct:
|
|
128608
|
+
"""
|
|
128609
|
+
|
|
128610
|
+
:param id: The RNA type identifier.
|
|
128611
|
+
:param default:
|
|
128612
|
+
:return: The RNA type or default when not found.
|
|
128613
|
+
"""
|
|
128614
|
+
|
|
128615
|
+
@classmethod
|
|
128616
|
+
def bl_rna_get_subclass_py(
|
|
128617
|
+
cls,
|
|
128618
|
+
id: str | None,
|
|
128619
|
+
default=None,
|
|
128620
|
+
/,
|
|
128621
|
+
) -> typing.Any:
|
|
128622
|
+
"""
|
|
128623
|
+
|
|
128624
|
+
:param id: The RNA type identifier.
|
|
128625
|
+
:param default:
|
|
128626
|
+
:return: The class or default when not found.
|
|
128627
|
+
"""
|
|
128628
|
+
|
|
128545
128629
|
class XrActionMapBindings(bpy_prop_collection[XrActionMapBinding], bpy_struct):
|
|
128546
128630
|
"""Collection of XR action map bindings"""
|
|
128547
128631
|
|
|
@@ -134203,6 +134287,9 @@ class BrushGpencilSettings(bpy_struct):
|
|
|
134203
134287
|
simplify_pixel_threshold: float
|
|
134204
134288
|
""" Threshold in screen space used for the simplify algorithm. Points within this threshold are treated as if they were in a straight line."""
|
|
134205
134289
|
|
|
134290
|
+
stroke_type: typing.Literal["STROKE", "FILL", "BOTH"]
|
|
134291
|
+
""" Mode to use when creating strokes"""
|
|
134292
|
+
|
|
134206
134293
|
use_active_layer_only: bool
|
|
134207
134294
|
""" Only edit the active layer of the object"""
|
|
134208
134295
|
|
|
@@ -141515,7 +141602,7 @@ class CompositorNodeTree(NodeTree, ID, bpy_struct):
|
|
|
141515
141602
|
"""Node tree consisting of linked nodes used for compositing"""
|
|
141516
141603
|
|
|
141517
141604
|
use_viewer_border: bool
|
|
141518
|
-
""" Use boundaries for viewer nodes and composite backdrop"""
|
|
141605
|
+
""" Unused but kept for compatibility reasons. Use boundaries for viewer nodes and composite backdrop"""
|
|
141519
141606
|
|
|
141520
141607
|
@classmethod
|
|
141521
141608
|
def bl_rna_get_subclass(
|
|
@@ -177887,10 +177974,10 @@ class MaterialGPencilStyle(bpy_struct):
|
|
|
177887
177974
|
""" Texture Pixel Size factor along the stroke"""
|
|
177888
177975
|
|
|
177889
177976
|
show_fill: bool
|
|
177890
|
-
""" Show stroke fills of this
|
|
177977
|
+
""" Show stroke fills of this materialUnused but kept for compatibility with older versions of Blender.5.10 removal planned in version 6.0"""
|
|
177891
177978
|
|
|
177892
177979
|
show_stroke: bool
|
|
177893
|
-
""" Show stroke lines of this
|
|
177980
|
+
""" Show stroke lines of this materialUnused but kept for compatibility with older versions of Blender.5.10 removal planned in version 6.0"""
|
|
177894
177981
|
|
|
177895
177982
|
stroke_image: Image | None
|
|
177896
177983
|
stroke_style: typing.Literal["SOLID", "TEXTURE"]
|
|
@@ -223417,6 +223504,13 @@ class Window(bpy_struct):
|
|
|
223417
223504
|
:return: Item, Added key map item
|
|
223418
223505
|
"""
|
|
223419
223506
|
|
|
223507
|
+
def find_playing_scene(self, *, scrub: bool | None = False) -> Scene:
|
|
223508
|
+
"""find_playing_scene
|
|
223509
|
+
|
|
223510
|
+
:param scrub: Scrubbing, Check if time in the scene is being scrubbed
|
|
223511
|
+
:return: Scene, Scene that is currently playing
|
|
223512
|
+
"""
|
|
223513
|
+
|
|
223420
223514
|
@classmethod
|
|
223421
223515
|
def bl_rna_get_subclass(
|
|
223422
223516
|
cls,
|
|
@@ -223499,7 +223593,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
223499
223593
|
preset_name: str | typing.Any
|
|
223500
223594
|
""" Name for new preset"""
|
|
223501
223595
|
|
|
223502
|
-
windows:
|
|
223596
|
+
windows: Windows
|
|
223503
223597
|
""" Open windows"""
|
|
223504
223598
|
|
|
223505
223599
|
xr_session_settings: XrSessionSettings
|
{fake_bpy_module_latest-20260202.dist-info → fake_bpy_module_latest-20260203.dist-info}/RECORD
RENAMED
|
@@ -113,7 +113,7 @@ bl_operators/grease_pencil/__init__.pyi,sha256=aYuRtDCkR5cWIZ9YZ1PfrfsCpsnewS9D-
|
|
|
113
113
|
bl_operators/image/__init__.pyi,sha256=Q0BfMC_waIJh2Bd1OnVnWD-fOHQHHqHORsYskeKf72k,3242
|
|
114
114
|
bl_operators/image_as_planes/__init__.pyi,sha256=2ZQE5QfI0WJ7g6Ilhb94O8fGv82ytyi0Tl2m9mtobSw,4684
|
|
115
115
|
bl_operators/mesh/__init__.pyi,sha256=_oPv0pZKG3wnDCyjLJKkVQ4RStIw2rHpJjGuKz3P3WY,1510
|
|
116
|
-
bl_operators/node/__init__.pyi,sha256=
|
|
116
|
+
bl_operators/node/__init__.pyi,sha256=3IKQAqdC1st49yTmaGno6XissyH2qR2cLxCdqansRdk,18764
|
|
117
117
|
bl_operators/node_editor/__init__.pyi,sha256=nXKuGcFgA7viFPwVoXogOT1iClUnXhtrK_rZTTXJ2Go,136
|
|
118
118
|
bl_operators/node_editor/node_functions/__init__.pyi,sha256=lvnouyugGqmyzgLR8aRsLj823dK3wC22vEu8lucNhJI,626
|
|
119
119
|
bl_operators/object/__init__.pyi,sha256=gxWZIVsZSLmnGqPzrPYdyjIgXoR52zeAZLh1Wl0haSo,10820
|
|
@@ -209,7 +209,7 @@ bl_ui/space_toolsystem_common/__init__.pyi,sha256=0wapsLJDJuc7K6B5kjWvB9_dWN5e3_
|
|
|
209
209
|
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=1NzcfTRSQBrrTgvP5Ny3GxkCCKay-oKOA-8po5_TYsE,10803
|
|
210
210
|
bl_ui/space_topbar/__init__.pyi,sha256=q4Tz_jdCISzmLA6AyzMKcXvT_t3nFuR9NoJmTLNdW54,14195
|
|
211
211
|
bl_ui/space_userpref/__init__.pyi,sha256=hQ66l2-cMrW7lbgbfd5v_18KO_ixsqfEuedLisKyCbA,76296
|
|
212
|
-
bl_ui/space_view3d/__init__.pyi,sha256=
|
|
212
|
+
bl_ui/space_view3d/__init__.pyi,sha256=eA8dtB3p2HueQ9tTeEc8VnXa2vMsA9pms6mGXwCnW0Q,144657
|
|
213
213
|
bl_ui/space_view3d_sidebar/__init__.pyi,sha256=2FDlkAEMUQOkoCeAT65tBiFEycOVlLAVWpdF9bRlZDM,2875
|
|
214
214
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=Cl1jP3vPYJCdXr82LWmol7jJQxRA0zIaYLbzS94RFQY,59713
|
|
215
215
|
bl_ui/utils/__init__.pyi,sha256=ljnA9UEJuHjOECvmj0JrqHBYqtd8GGy7IaBhwV_pIns,534
|
|
@@ -233,7 +233,7 @@ bpy/app/translations/__init__.pyi,sha256=FjV31T5EUMoe51lpvW_VZr7Db1xyvb5jhGJqKwc
|
|
|
233
233
|
bpy/msgbus/__init__.pyi,sha256=CyDlC-2zd1YZ0G9Oik2DNyGJ2_WevZPtQL5rov00R10,3232
|
|
234
234
|
bpy/ops/__init__.pyi,sha256=oyhZEf0VnUeUM7XXXOg9k4qnzcpqDDS14azXU-N0ZRA,5992
|
|
235
235
|
bpy/ops/action/__init__.pyi,sha256=ZQS8ZsyUUYvrZnSXbBBuMk9VRpIA8G903hzyWgUDNx4,13770
|
|
236
|
-
bpy/ops/anim/__init__.pyi,sha256=
|
|
236
|
+
bpy/ops/anim/__init__.pyi,sha256=42Yvub7nUMe46-3p99_eeYFhz4GcaZRZpMyXTjAV65o,20451
|
|
237
237
|
bpy/ops/armature/__init__.pyi,sha256=l3oHUya1-vl-pQ5jADaJrbupvLIfKh50FrqqsU2gGD4,15970
|
|
238
238
|
bpy/ops/asset/__init__.pyi,sha256=t1QQjBQh58YZ2M192SKSILn9gdOsD4qLLfF4kJKhXbc,7116
|
|
239
239
|
bpy/ops/boid/__init__.pyi,sha256=A7pM1H3KmlsN_j-UbwuL4ZwpShb_pG4hN96HdXZ10o8,1483
|
|
@@ -261,7 +261,7 @@ bpy/ops/geometry/__init__.pyi,sha256=b80f9JX_UD4IhK_1_axFhrKAn98xgHTELJwIRBU_Hwc
|
|
|
261
261
|
bpy/ops/gizmogroup/__init__.pyi,sha256=mfEyJCn684c9TchOJwhgWN7YPSsahywqmxrWMUT8kKM,999
|
|
262
262
|
bpy/ops/gpencil/__init__.pyi,sha256=XM07ORfWuOrU1QxEYGq8e_i0S77zCZfZcBVO0xsHs28,3596
|
|
263
263
|
bpy/ops/graph/__init__.pyi,sha256=50X5j7x-Hmr4yGXn31Y33nnwxBOq-vuyZ9MJp6IhmQ4,32430
|
|
264
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
264
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=0ubnex5w7mwtzHTid2kOFHE6E6fuZ5Otyh6Mypv6fCA,53723
|
|
265
265
|
bpy/ops/image/__init__.pyi,sha256=rIipwh26ZdR2wsVQujtJzm3EO917q7BrqtMILeaix58,37003
|
|
266
266
|
bpy/ops/import_anim/__init__.pyi,sha256=sfh2i6scbkcTW6yLaptXvt-9v9Wv6aLzG8smWj7WsYk,2364
|
|
267
267
|
bpy/ops/import_curve/__init__.pyi,sha256=_AIT_Xmc_lIS8VGNrRxco4GjFV9iXWEB2X902_FHuP0,592
|
|
@@ -274,7 +274,7 @@ bpy/ops/material/__init__.pyi,sha256=UAGeEyAaBsF_rIrgYNPwCZDT-MNrOS8CvtFN9rlXcpo
|
|
|
274
274
|
bpy/ops/mball/__init__.pyi,sha256=JYYaV4p5U26FaVphBLCOewgP5l2I0hPAHf9PFxRk-gQ,3088
|
|
275
275
|
bpy/ops/mesh/__init__.pyi,sha256=DK3AjAMxd8PdYnSTuz3pRFHM9Nz69PG8VfURCCYmZg8,96789
|
|
276
276
|
bpy/ops/nla/__init__.pyi,sha256=BKhMtxIO-S1uvKYDWWGtkdImtHOkh0vuMCQPXU-DMHo,13934
|
|
277
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
277
|
+
bpy/ops/node/__init__.pyi,sha256=MzlcX96mZfi0ER1ymsDaayiPqBS_Sss-x0f6sceqg3s,63050
|
|
278
278
|
bpy/ops/object/__init__.pyi,sha256=cHg85Sxal2-oXbLheSjQm7h3w1YdhwdjVMFx_-kWReY,132852
|
|
279
279
|
bpy/ops/outliner/__init__.pyi,sha256=4rZO3LukZbZZ9PjRcMOF573eXPEmQ_HTFqeAzQWXnDQ,21389
|
|
280
280
|
bpy/ops/paint/__init__.pyi,sha256=oaTyzz8ZtxSoBxnxyiCNyiZX_T4pA9BaLigyj8rLLk4,29251
|
|
@@ -313,7 +313,7 @@ bpy/path/__init__.pyi,sha256=jgXGlVLUTr15BhcgCVnkz6WlJp4yjpHhJc4TJAXSbsU,4632
|
|
|
313
313
|
bpy/props/__init__.pyi,sha256=BFnRoY78kkf6szROPfp4HSETs8yEgMeKE4QeSd2vDrs,41820
|
|
314
314
|
bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
315
315
|
bpy/stub_internal/rna_enums/__init__.pyi,sha256=NnK6Jb3XCXqtrGzzDSTYkDmqztbccJFDxutBEkqxx-8,145433
|
|
316
|
-
bpy/types/__init__.pyi,sha256=
|
|
316
|
+
bpy/types/__init__.pyi,sha256=JJeMPywjYbQzmunVBw8oPF_je8sL1uzgMsGN5ib1UAk,5427483
|
|
317
317
|
bpy/utils/__init__.pyi,sha256=7ERJ_QG-UJismh3PC1WKuO-4bDbzDLDniHLhv9KiHNA,13288
|
|
318
318
|
bpy/utils/previews/__init__.pyi,sha256=ByUvnneVHqE8dr5c1-hYsf-6qaKWdU0KP0IbwA5QN00,2028
|
|
319
319
|
bpy/utils/units/__init__.pyi,sha256=CbBgOpnx48WP0flNilskhsmA7YCAnbbj07vr3OXlMG8,2214
|
|
@@ -379,7 +379,7 @@ rna_keymap_ui/__init__.pyi,sha256=HjNXbu5w-94HLbvVQlEWXV3JVrgWpNz9jiJ3mzGMCNg,48
|
|
|
379
379
|
rna_keymap_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
380
380
|
rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
|
|
381
381
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
382
|
-
fake_bpy_module_latest-
|
|
383
|
-
fake_bpy_module_latest-
|
|
384
|
-
fake_bpy_module_latest-
|
|
385
|
-
fake_bpy_module_latest-
|
|
382
|
+
fake_bpy_module_latest-20260203.dist-info/METADATA,sha256=3dwf88DugSr1l1yTbrg-ZgDnuhN3OEqSO3iZvDmSicI,7902
|
|
383
|
+
fake_bpy_module_latest-20260203.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
384
|
+
fake_bpy_module_latest-20260203.dist-info/top_level.txt,sha256=LGIXuHDoaVTgSTMScq2hvwZRtozSAzYE7RqrFaRqT6o,553
|
|
385
|
+
fake_bpy_module_latest-20260203.dist-info/RECORD,,
|
{fake_bpy_module_latest-20260202.dist-info → fake_bpy_module_latest-20260203.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|