fake-bpy-module 20241002__py3-none-any.whl → 20241003__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.

@@ -24,6 +24,12 @@ class StaleFiles:
24
24
  :param paths:
25
25
  """
26
26
 
27
+ def state_load_remove_and_store(self, *, paths):
28
+ """
29
+
30
+ :param paths:
31
+ """
32
+
27
33
  def state_remove_all(self): ...
28
34
  def state_store(self, *, check_exists):
29
35
  """
addon_utils/__init__.pyi CHANGED
@@ -62,4 +62,5 @@ def paths(): ...
62
62
  def reset_all(*, reload_scripts=False):
63
63
  """Sets the addon state based on the user preferences."""
64
64
 
65
+ def stale_pending_remove_paths(path_base, paths): ...
65
66
  def stale_pending_stage_paths(path_base, paths): ...
@@ -67,6 +67,36 @@ class DATA_PT_grease_pencil_animation(
67
67
  :rtype: typing.Any
68
68
  """
69
69
 
70
+ class DATA_PT_grease_pencil_attributes(DataButtonsPanel, bpy.types.Panel):
71
+ COMPAT_ENGINES: typing.Any
72
+ bl_context: typing.Any
73
+ bl_label: typing.Any
74
+ bl_options: typing.Any
75
+ bl_region_type: typing.Any
76
+ bl_rna: typing.Any
77
+ bl_space_type: typing.Any
78
+ id_data: typing.Any
79
+
80
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
81
+ """
82
+
83
+ :return: The RNA type or default when not found.
84
+ :rtype: bpy.types.Struct
85
+ """
86
+
87
+ def bl_rna_get_subclass_py(self) -> typing.Any:
88
+ """
89
+
90
+ :return: The class or default when not found.
91
+ :rtype: typing.Any
92
+ """
93
+
94
+ def draw(self, context):
95
+ """
96
+
97
+ :param context:
98
+ """
99
+
70
100
  class DATA_PT_grease_pencil_custom_props(
71
101
  rna_prop_ui.PropertyPanel, DataButtonsPanel, bpy.types.Panel
72
102
  ):
@@ -448,6 +478,55 @@ class GREASE_PENCIL_MT_layer_mask_add(bpy.types.Menu):
448
478
  :param context:
449
479
  """
450
480
 
481
+ class GREASE_PENCIL_UL_attributes(bpy.types.UIList):
482
+ bl_rna: typing.Any
483
+ id_data: typing.Any
484
+
485
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
486
+ """
487
+
488
+ :return: The RNA type or default when not found.
489
+ :rtype: bpy.types.Struct
490
+ """
491
+
492
+ def bl_rna_get_subclass_py(self) -> typing.Any:
493
+ """
494
+
495
+ :return: The class or default when not found.
496
+ :rtype: typing.Any
497
+ """
498
+
499
+ def draw_item(
500
+ self,
501
+ _context,
502
+ layout,
503
+ _data,
504
+ attribute,
505
+ _icon,
506
+ _active_data,
507
+ _active_propname,
508
+ _index,
509
+ ):
510
+ """
511
+
512
+ :param _context:
513
+ :param layout:
514
+ :param _data:
515
+ :param attribute:
516
+ :param _icon:
517
+ :param _active_data:
518
+ :param _active_propname:
519
+ :param _index:
520
+ """
521
+
522
+ def filter_items(self, _context, data, property):
523
+ """
524
+
525
+ :param _context:
526
+ :param data:
527
+ :param property:
528
+ """
529
+
451
530
  class GREASE_PENCIL_UL_masks(bpy.types.UIList):
452
531
  bl_rna: typing.Any
453
532
  id_data: typing.Any
@@ -286,13 +286,13 @@ class TextureMaskPanel(BrushPanel):
286
286
  :param context:
287
287
  """
288
288
 
289
- def brush_basic__draw_color_selector(context, layout, brush, gp_settings, props): ...
289
+ def brush_basic__draw_color_selector(context, layout, brush, gp_settings): ...
290
290
  def brush_basic_gpencil_paint_settings(layout, context, brush, *, compact=False): ...
291
291
  def brush_basic_gpencil_sculpt_settings(layout, _context, brush, *, compact=False): ...
292
292
  def brush_basic_gpencil_vertex_settings(layout, _context, brush, *, compact=False): ...
293
293
  def brush_basic_gpencil_weight_settings(layout, _context, brush, *, compact=False): ...
294
294
  def brush_basic_grease_pencil_paint_settings(
295
- layout, context, brush, *, compact=False
295
+ layout, context, brush, props, *, compact=False
296
296
  ): ...
297
297
  def brush_basic_grease_pencil_vertex_settings(
298
298
  layout, context, brush, *, compact=False
@@ -397,7 +397,6 @@ class _defs_sequencer_generic:
397
397
 
398
398
  class _defs_sequencer_select:
399
399
  box_preview: typing.Any
400
- box_timeline: typing.Any
401
400
  select_preview: typing.Any
402
401
  select_timeline: typing.Any
403
402
 
@@ -60,6 +60,14 @@ annotation_pre: list[collections.abc.Callable[[bpy.types.Scene], None]]
60
60
  """ on drawing an annotation (before)
61
61
  """
62
62
 
63
+ blend_import_post: list[collections.abc.Callable[[bpy.types.Scene], None]]
64
+ """ on linking or appending data (after), get a single BlendImportContext parameter
65
+ """
66
+
67
+ blend_import_pre: list[collections.abc.Callable[[bpy.types.Scene], None]]
68
+ """ on linking or appending data (before), get a single BlendImportContext parameter
69
+ """
70
+
63
71
  composite_cancel: list[collections.abc.Callable[[bpy.types.Scene], None]]
64
72
  """ on a compositing background job (cancel)
65
73
  """
@@ -736,6 +736,31 @@ def layer_mask_reorder(
736
736
  :type direction: typing.Literal['UP','DOWN'] | None
737
737
  """
738
738
 
739
+ def layer_merge(
740
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
741
+ execution_context: int | str | None = None,
742
+ undo: bool | None = None,
743
+ *,
744
+ mode: typing.Literal["ACTIVE", "GROUP", "ALL"] | None = "ACTIVE",
745
+ ):
746
+ """Combine layers based on the mode into one layer
747
+
748
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
749
+ :type execution_context: int | str | None
750
+ :type undo: bool | None
751
+ :param mode: Mode
752
+
753
+ ACTIVE
754
+ Active -- Combine the active layer with the layer just below (if it exists).
755
+
756
+ GROUP
757
+ Group -- Combine layers in the active group into a single layer.
758
+
759
+ ALL
760
+ All -- Combine all layers into a single layer.
761
+ :type mode: typing.Literal['ACTIVE','GROUP','ALL'] | None
762
+ """
763
+
739
764
  def layer_move(
740
765
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
741
766
  execution_context: int | str | None = None,
@@ -922,6 +947,22 @@ def move_to_layer(
922
947
  :type add_new_layer: bool | None
923
948
  """
924
949
 
950
+ def paintmode_toggle(
951
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
952
+ execution_context: int | str | None = None,
953
+ undo: bool | None = None,
954
+ *,
955
+ back: bool | None = False,
956
+ ):
957
+ """Enter/Exit paint mode for Grease Pencil strokes
958
+
959
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
960
+ :type execution_context: int | str | None
961
+ :type undo: bool | None
962
+ :param back: Return to Previous Mode, Return to previous mode
963
+ :type back: bool | None
964
+ """
965
+
925
966
  def paste(
926
967
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
927
968
  execution_context: int | str | None = None,
@@ -1162,6 +1203,22 @@ def sculpt_paint(
1162
1203
  :type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
1163
1204
  """
1164
1205
 
1206
+ def sculptmode_toggle(
1207
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1208
+ execution_context: int | str | None = None,
1209
+ undo: bool | None = None,
1210
+ *,
1211
+ back: bool | None = False,
1212
+ ):
1213
+ """Enter/Exit sculpt mode for Grease Pencil strokes
1214
+
1215
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1216
+ :type execution_context: int | str | None
1217
+ :type undo: bool | None
1218
+ :param back: Return to Previous Mode, Return to previous mode
1219
+ :type back: bool | None
1220
+ """
1221
+
1165
1222
  def select_all(
1166
1223
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1167
1224
  execution_context: int | str | None = None,
@@ -1955,6 +2012,22 @@ def vertex_group_smooth(
1955
2012
  :type repeat: int | None
1956
2013
  """
1957
2014
 
2015
+ def vertexmode_toggle(
2016
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2017
+ execution_context: int | str | None = None,
2018
+ undo: bool | None = None,
2019
+ *,
2020
+ back: bool | None = False,
2021
+ ):
2022
+ """Enter/Exit vertex paint mode for Grease Pencil strokes
2023
+
2024
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2025
+ :type execution_context: int | str | None
2026
+ :type undo: bool | None
2027
+ :param back: Return to Previous Mode, Return to previous mode
2028
+ :type back: bool | None
2029
+ """
2030
+
1958
2031
  def weight_brush_stroke(
1959
2032
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1960
2033
  execution_context: int | str | None = None,
@@ -2022,3 +2095,19 @@ def weight_toggle_direction(
2022
2095
  :type execution_context: int | str | None
2023
2096
  :type undo: bool | None
2024
2097
  """
2098
+
2099
+ def weightmode_toggle(
2100
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2101
+ execution_context: int | str | None = None,
2102
+ undo: bool | None = None,
2103
+ *,
2104
+ back: bool | None = False,
2105
+ ):
2106
+ """Enter/Exit weight paint mode for Grease Pencil strokes
2107
+
2108
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2109
+ :type execution_context: int | str | None
2110
+ :type undo: bool | None
2111
+ :param back: Return to Previous Mode, Return to previous mode
2112
+ :type back: bool | None
2113
+ """
@@ -1598,7 +1598,6 @@ def select_box(
1598
1598
  ymax: int | None = 0,
1599
1599
  wait_for_input: bool | None = True,
1600
1600
  mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
1601
- tweak: bool | None = False,
1602
1601
  include_handles: bool | None = False,
1603
1602
  ignore_connections: bool | None = False,
1604
1603
  ):
@@ -1628,8 +1627,6 @@ def select_box(
1628
1627
  SUB
1629
1628
  Subtract -- Subtract existing selection.
1630
1629
  :type mode: typing.Literal['SET','ADD','SUB'] | None
1631
- :param tweak: Tweak, Operator has been activated using a click-drag event
1632
- :type tweak: bool | None
1633
1630
  :param include_handles: Select Handles, Select the strips and their handles
1634
1631
  :type include_handles: bool | None
1635
1632
  :param ignore_connections: Ignore Connections, Select strips individually whether or not they are connected
bpy/ops/ui/__init__.pyi CHANGED
@@ -499,6 +499,18 @@ def view_item_rename(
499
499
  :type undo: bool | None
500
500
  """
501
501
 
502
+ def view_scroll(
503
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
504
+ execution_context: int | str | None = None,
505
+ undo: bool | None = None,
506
+ ):
507
+ """Undocumented, consider contributing.
508
+
509
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
510
+ :type execution_context: int | str | None
511
+ :type undo: bool | None
512
+ """
513
+
502
514
  def view_start_filter(
503
515
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
504
516
  execution_context: int | str | None = None,
bpy/types/__init__.pyi CHANGED
@@ -4481,6 +4481,48 @@
4481
4481
  :columns: 2
4482
4482
 
4483
4483
 
4484
+ --------------------
4485
+
4486
+ * bpy_struct.id_data
4487
+
4488
+ :columns: 2
4489
+
4490
+
4491
+ --------------------
4492
+
4493
+ * bpy_struct.as_pointer
4494
+ * bpy_struct.driver_add
4495
+ * bpy_struct.driver_remove
4496
+ * bpy_struct.get
4497
+ * bpy_struct.id_properties_clear
4498
+ * bpy_struct.id_properties_ensure
4499
+ * bpy_struct.id_properties_ui
4500
+ * bpy_struct.is_property_hidden
4501
+ * bpy_struct.is_property_overridable_library
4502
+ * bpy_struct.is_property_readonly
4503
+ * bpy_struct.is_property_set
4504
+ * bpy_struct.items
4505
+ * bpy_struct.keyframe_delete
4506
+ * bpy_struct.keyframe_insert
4507
+ * bpy_struct.keys
4508
+ * bpy_struct.path_from_id
4509
+ * bpy_struct.path_resolve
4510
+ * bpy_struct.pop
4511
+ * bpy_struct.property_overridable_library_set
4512
+ * bpy_struct.property_unset
4513
+ * bpy_struct.type_recast
4514
+ * bpy_struct.values
4515
+
4516
+ :columns: 2
4517
+
4518
+
4519
+ --------------------
4520
+
4521
+ * BlendImportContextItem.source_libraries
4522
+
4523
+ :columns: 2
4524
+
4525
+
4484
4526
  --------------------
4485
4527
 
4486
4528
  * bpy_struct.id_data
@@ -18839,6 +18881,48 @@
18839
18881
  :columns: 2
18840
18882
 
18841
18883
 
18884
+ --------------------
18885
+
18886
+ * BlendImportContext.import_items
18887
+
18888
+ :columns: 2
18889
+
18890
+
18891
+ --------------------
18892
+
18893
+ * bpy_struct.id_data
18894
+
18895
+ :columns: 2
18896
+
18897
+
18898
+ --------------------
18899
+
18900
+ * bpy_struct.as_pointer
18901
+ * bpy_struct.driver_add
18902
+ * bpy_struct.driver_remove
18903
+ * bpy_struct.get
18904
+ * bpy_struct.id_properties_clear
18905
+ * bpy_struct.id_properties_ensure
18906
+ * bpy_struct.id_properties_ui
18907
+ * bpy_struct.is_property_hidden
18908
+ * bpy_struct.is_property_overridable_library
18909
+ * bpy_struct.is_property_readonly
18910
+ * bpy_struct.is_property_set
18911
+ * bpy_struct.items
18912
+ * bpy_struct.keyframe_delete
18913
+ * bpy_struct.keyframe_insert
18914
+ * bpy_struct.keys
18915
+ * bpy_struct.path_from_id
18916
+ * bpy_struct.path_resolve
18917
+ * bpy_struct.pop
18918
+ * bpy_struct.property_overridable_library_set
18919
+ * bpy_struct.property_unset
18920
+ * bpy_struct.type_recast
18921
+ * bpy_struct.values
18922
+
18923
+ :columns: 2
18924
+
18925
+
18842
18926
  --------------------
18843
18927
 
18844
18928
  * ToolSettings.statvis
@@ -36729,6 +36813,48 @@ of the scene and only show nodes of the renderer they are designed for.
36729
36813
  :columns: 2
36730
36814
 
36731
36815
 
36816
+ --------------------
36817
+
36818
+ * bpy_struct.id_data
36819
+
36820
+ :columns: 2
36821
+
36822
+
36823
+ --------------------
36824
+
36825
+ * bpy_struct.as_pointer
36826
+ * bpy_struct.driver_add
36827
+ * bpy_struct.driver_remove
36828
+ * bpy_struct.get
36829
+ * bpy_struct.id_properties_clear
36830
+ * bpy_struct.id_properties_ensure
36831
+ * bpy_struct.id_properties_ui
36832
+ * bpy_struct.is_property_hidden
36833
+ * bpy_struct.is_property_overridable_library
36834
+ * bpy_struct.is_property_readonly
36835
+ * bpy_struct.is_property_set
36836
+ * bpy_struct.items
36837
+ * bpy_struct.keyframe_delete
36838
+ * bpy_struct.keyframe_insert
36839
+ * bpy_struct.keys
36840
+ * bpy_struct.path_from_id
36841
+ * bpy_struct.path_resolve
36842
+ * bpy_struct.pop
36843
+ * bpy_struct.property_overridable_library_set
36844
+ * bpy_struct.property_unset
36845
+ * bpy_struct.type_recast
36846
+ * bpy_struct.values
36847
+
36848
+ :columns: 2
36849
+
36850
+
36851
+ --------------------
36852
+
36853
+ * BlendImportContextItem.source_libraries
36854
+
36855
+ :columns: 2
36856
+
36857
+
36732
36858
  --------------------
36733
36859
 
36734
36860
  * bpy_struct.id_data
@@ -38928,6 +39054,41 @@ of the scene and only show nodes of the renderer they are designed for.
38928
39054
  :columns: 2
38929
39055
 
38930
39056
 
39057
+ --------------------
39058
+
39059
+ * bpy_struct.id_data
39060
+
39061
+ :columns: 2
39062
+
39063
+
39064
+ --------------------
39065
+
39066
+ * bpy_struct.as_pointer
39067
+ * bpy_struct.driver_add
39068
+ * bpy_struct.driver_remove
39069
+ * bpy_struct.get
39070
+ * bpy_struct.id_properties_clear
39071
+ * bpy_struct.id_properties_ensure
39072
+ * bpy_struct.id_properties_ui
39073
+ * bpy_struct.is_property_hidden
39074
+ * bpy_struct.is_property_overridable_library
39075
+ * bpy_struct.is_property_readonly
39076
+ * bpy_struct.is_property_set
39077
+ * bpy_struct.items
39078
+ * bpy_struct.keyframe_delete
39079
+ * bpy_struct.keyframe_insert
39080
+ * bpy_struct.keys
39081
+ * bpy_struct.path_from_id
39082
+ * bpy_struct.path_resolve
39083
+ * bpy_struct.pop
39084
+ * bpy_struct.property_overridable_library_set
39085
+ * bpy_struct.property_unset
39086
+ * bpy_struct.type_recast
39087
+ * bpy_struct.values
39088
+
39089
+ :columns: 2
39090
+
39091
+
38931
39092
  --------------------
38932
39093
 
38933
39094
  * bpy_struct.id_data
@@ -40259,6 +40420,9 @@ The USDHookExample
40259
40420
  * ActionSlots.new
40260
40421
  * AssetRepresentation.local_id
40261
40422
  * BlendDataObjects.new
40423
+ * BlendImportContextItem.id
40424
+ * BlendImportContextItem.library_override_id
40425
+ * BlendImportContextItem.reusable_local_id
40262
40426
  * Depsgraph.id_eval_get
40263
40427
  * Depsgraph.id_eval_get
40264
40428
  * Depsgraph.ids
@@ -67749,6 +67913,48 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
67749
67913
  :columns: 2
67750
67914
 
67751
67915
 
67916
+ --------------------
67917
+
67918
+ * bpy_struct.id_data
67919
+
67920
+ :columns: 2
67921
+
67922
+
67923
+ --------------------
67924
+
67925
+ * bpy_struct.as_pointer
67926
+ * bpy_struct.driver_add
67927
+ * bpy_struct.driver_remove
67928
+ * bpy_struct.get
67929
+ * bpy_struct.id_properties_clear
67930
+ * bpy_struct.id_properties_ensure
67931
+ * bpy_struct.id_properties_ui
67932
+ * bpy_struct.is_property_hidden
67933
+ * bpy_struct.is_property_overridable_library
67934
+ * bpy_struct.is_property_readonly
67935
+ * bpy_struct.is_property_set
67936
+ * bpy_struct.items
67937
+ * bpy_struct.keyframe_delete
67938
+ * bpy_struct.keyframe_insert
67939
+ * bpy_struct.keys
67940
+ * bpy_struct.path_from_id
67941
+ * bpy_struct.path_resolve
67942
+ * bpy_struct.pop
67943
+ * bpy_struct.property_overridable_library_set
67944
+ * bpy_struct.property_unset
67945
+ * bpy_struct.type_recast
67946
+ * bpy_struct.values
67947
+
67948
+ :columns: 2
67949
+
67950
+
67951
+ --------------------
67952
+
67953
+ * BlendImportContext.import_items
67954
+
67955
+ :columns: 2
67956
+
67957
+
67752
67958
  --------------------
67753
67959
 
67754
67960
  * bpy_struct.id_data
@@ -82462,6 +82668,60 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
82462
82668
  :columns: 2
82463
82669
 
82464
82670
 
82671
+ --------------------
82672
+
82673
+ * bpy_struct.id_data
82674
+ * UIList.bl_idname
82675
+ * UIList.list_id
82676
+ * UIList.layout_type
82677
+ * UIList.use_filter_show
82678
+ * UIList.filter_name
82679
+ * UIList.use_filter_invert
82680
+ * UIList.use_filter_sort_alpha
82681
+ * UIList.use_filter_sort_reverse
82682
+ * UIList.use_filter_sort_lock
82683
+ * UIList.bitflag_filter_item
82684
+
82685
+ :columns: 2
82686
+
82687
+
82688
+ --------------------
82689
+
82690
+ * bpy_struct.as_pointer
82691
+ * bpy_struct.driver_add
82692
+ * bpy_struct.driver_remove
82693
+ * bpy_struct.get
82694
+ * bpy_struct.id_properties_clear
82695
+ * bpy_struct.id_properties_ensure
82696
+ * bpy_struct.id_properties_ui
82697
+ * bpy_struct.is_property_hidden
82698
+ * bpy_struct.is_property_overridable_library
82699
+ * bpy_struct.is_property_readonly
82700
+ * bpy_struct.is_property_set
82701
+ * bpy_struct.items
82702
+ * bpy_struct.keyframe_delete
82703
+ * bpy_struct.keyframe_insert
82704
+ * bpy_struct.keys
82705
+ * bpy_struct.path_from_id
82706
+ * bpy_struct.path_resolve
82707
+ * bpy_struct.pop
82708
+ * bpy_struct.property_overridable_library_set
82709
+ * bpy_struct.property_unset
82710
+ * bpy_struct.type_recast
82711
+ * bpy_struct.values
82712
+ * UIList.draw_item
82713
+ * UIList.draw_filter
82714
+ * UIList.filter_items
82715
+ * UIList.append
82716
+ * UIList.is_extended
82717
+ * UIList.prepend
82718
+ * UIList.remove
82719
+ * UIList.bl_rna_get_subclass
82720
+ * UIList.bl_rna_get_subclass_py
82721
+
82722
+ :columns: 2
82723
+
82724
+
82465
82725
  --------------------
82466
82726
 
82467
82727
  * bpy_struct.id_data
@@ -97377,6 +97637,7 @@ Executing the operator will then print all values.
97377
97637
 
97378
97638
  * BlendData.libraries
97379
97639
  * BlendDataLibraries.remove
97640
+ * BlendImportContextItem.source_library
97380
97641
  * ID.library
97381
97642
  * Library.parent
97382
97643
 
@@ -105839,6 +106100,58 @@ class BlendDataWorlds(bpy_prop_collection[World], bpy_struct):
105839
106100
  :rtype: typing.Any
105840
106101
  """
105841
106102
 
106103
+ class BlendImportContextItems(bpy_prop_collection[BlendImportContextItem], bpy_struct):
106104
+ """Collection of blendfile import context items"""
106105
+
106106
+ @classmethod
106107
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
106108
+ """
106109
+
106110
+ :param id: The RNA type identifier.
106111
+ :type id: str | None
106112
+ :param default:
106113
+ :return: The RNA type or default when not found.
106114
+ :rtype: Struct
106115
+ """
106116
+
106117
+ @classmethod
106118
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
106119
+ """
106120
+
106121
+ :param id: The RNA type identifier.
106122
+ :type id: str | None
106123
+ :param default:
106124
+ :return: The class or default when not found.
106125
+ :rtype: typing.Any
106126
+ """
106127
+
106128
+ class BlendImportContextLibraries(
106129
+ bpy_prop_collection[BlendImportContextLibrary], bpy_struct
106130
+ ):
106131
+ """Collection of source libraries, i.e. blendfile paths"""
106132
+
106133
+ @classmethod
106134
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
106135
+ """
106136
+
106137
+ :param id: The RNA type identifier.
106138
+ :type id: str | None
106139
+ :param default:
106140
+ :return: The RNA type or default when not found.
106141
+ :rtype: Struct
106142
+ """
106143
+
106144
+ @classmethod
106145
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
106146
+ """
106147
+
106148
+ :param id: The RNA type identifier.
106149
+ :type id: str | None
106150
+ :param default:
106151
+ :return: The class or default when not found.
106152
+ :rtype: typing.Any
106153
+ """
106154
+
105842
106155
  class BoneCollectionMemberships(bpy_prop_collection[BoneCollection], bpy_struct):
105843
106156
  """The Bone Collections that contain this Bone"""
105844
106157
 
@@ -115333,6 +115646,180 @@ class BlendData(bpy_struct):
115333
115646
  :rtype: dict
115334
115647
  """
115335
115648
 
115649
+ class BlendImportContext(bpy_struct):
115650
+ """Contextual data for a blendfile library/linked-data related operation. Currently only exposed as read-only data for the pre/post blendimport handlers"""
115651
+
115652
+ import_items: BlendImportContextItems
115653
+ """
115654
+
115655
+ :type: BlendImportContextItems
115656
+ """
115657
+
115658
+ options: set[
115659
+ typing.Literal[
115660
+ "LINK",
115661
+ "MAKE_PATHS_RELATIVE",
115662
+ "USE_PLACEHOLDERS",
115663
+ "FORCE_INDIRECT",
115664
+ "APPEND_SET_FAKEUSER",
115665
+ "APPEND_RECURSIVE",
115666
+ "APPEND_LOCAL_ID_REUSE",
115667
+ "APPEND_ASSET_DATA_CLEAR",
115668
+ "SELECT_OBJECTS",
115669
+ "USE_ACTIVE_COLLECTION",
115670
+ "OBDATA_INSTANCE",
115671
+ "COLLECTION_INSTANCE",
115672
+ ]
115673
+ ]
115674
+ """ Options for this blendfile import operation
115675
+
115676
+ :type: set[typing.Literal['LINK','MAKE_PATHS_RELATIVE','USE_PLACEHOLDERS','FORCE_INDIRECT','APPEND_SET_FAKEUSER','APPEND_RECURSIVE','APPEND_LOCAL_ID_REUSE','APPEND_ASSET_DATA_CLEAR','SELECT_OBJECTS','USE_ACTIVE_COLLECTION','OBDATA_INSTANCE','COLLECTION_INSTANCE']]
115677
+ """
115678
+
115679
+ process_stage: typing.Literal["INIT", "DONE"]
115680
+ """ Current stage of the import process
115681
+
115682
+ :type: typing.Literal['INIT','DONE']
115683
+ """
115684
+
115685
+ @classmethod
115686
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
115687
+ """
115688
+
115689
+ :param id: The RNA type identifier.
115690
+ :type id: str | None
115691
+ :param default:
115692
+ :return: The RNA type or default when not found.
115693
+ :rtype: Struct
115694
+ """
115695
+
115696
+ @classmethod
115697
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
115698
+ """
115699
+
115700
+ :param id: The RNA type identifier.
115701
+ :type id: str | None
115702
+ :param default:
115703
+ :return: The class or default when not found.
115704
+ :rtype: typing.Any
115705
+ """
115706
+
115707
+ class BlendImportContextItem(bpy_struct):
115708
+ """An item (representing a data-block) in a BlendImportContext data. Currently only exposed as read-only data for the pre/post linking handlers"""
115709
+
115710
+ append_action: typing.Literal[
115711
+ "UNSET", "KEEP_LINKED", "REUSE_LOCAL", "MAKE_LOCAL", "COPY_LOCAL"
115712
+ ]
115713
+ """ How this item has been handled by the append operation. Only set if the data has been appended
115714
+
115715
+ :type: typing.Literal['UNSET','KEEP_LINKED','REUSE_LOCAL','MAKE_LOCAL','COPY_LOCAL']
115716
+ """
115717
+
115718
+ id: ID
115719
+ """ The imported ID. None until it has been linked or appended. May be the same as reusable_local_id when appended
115720
+
115721
+ :type: ID
115722
+ """
115723
+
115724
+ id_type: bpy.typing.IdTypeItems
115725
+ """ ID type of the item
115726
+
115727
+ :type: bpy.typing.IdTypeItems
115728
+ """
115729
+
115730
+ import_info: set[
115731
+ typing.Literal[
115732
+ "INDIRECT_USAGE", "LIBOVERRIDE_DEPENDENCY", "LIBOVERRIDE_DEPENDENCY_ONLY"
115733
+ ]
115734
+ ]
115735
+ """ Various status info about an item after it has been imported
115736
+
115737
+ :type: set[typing.Literal['INDIRECT_USAGE','LIBOVERRIDE_DEPENDENCY','LIBOVERRIDE_DEPENDENCY_ONLY']]
115738
+ """
115739
+
115740
+ library_override_id: ID
115741
+ """ The library override of the linked ID. None until it has been created
115742
+
115743
+ :type: ID
115744
+ """
115745
+
115746
+ name: str
115747
+ """ ID name of the item
115748
+
115749
+ :type: str
115750
+ """
115751
+
115752
+ reusable_local_id: ID
115753
+ """ The already existing local ID that may be reused in append & reuse case. None until it has been found
115754
+
115755
+ :type: ID
115756
+ """
115757
+
115758
+ source_libraries: BlendImportContextLibraries
115759
+ """ List of libraries to search and import that ID from. The ID will be imported from the first file in that list that contains it
115760
+
115761
+ :type: BlendImportContextLibraries
115762
+ """
115763
+
115764
+ source_library: Library
115765
+ """ Library ID representing the blendfile from which the ID was imported. None until the ID has been linked or appended
115766
+
115767
+ :type: Library
115768
+ """
115769
+
115770
+ @classmethod
115771
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
115772
+ """
115773
+
115774
+ :param id: The RNA type identifier.
115775
+ :type id: str | None
115776
+ :param default:
115777
+ :return: The RNA type or default when not found.
115778
+ :rtype: Struct
115779
+ """
115780
+
115781
+ @classmethod
115782
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
115783
+ """
115784
+
115785
+ :param id: The RNA type identifier.
115786
+ :type id: str | None
115787
+ :param default:
115788
+ :return: The class or default when not found.
115789
+ :rtype: typing.Any
115790
+ """
115791
+
115792
+ class BlendImportContextLibrary(bpy_struct):
115793
+ """Library (blendfile) reference in a BlendImportContext data. Currently only exposed as read-only data for the pre/post blendimport handlers"""
115794
+
115795
+ filepath: str
115796
+ """
115797
+
115798
+ :type: str
115799
+ """
115800
+
115801
+ @classmethod
115802
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
115803
+ """
115804
+
115805
+ :param id: The RNA type identifier.
115806
+ :type id: str | None
115807
+ :param default:
115808
+ :return: The RNA type or default when not found.
115809
+ :rtype: Struct
115810
+ """
115811
+
115812
+ @classmethod
115813
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
115814
+ """
115815
+
115816
+ :param id: The RNA type identifier.
115817
+ :type id: str | None
115818
+ :param default:
115819
+ :return: The class or default when not found.
115820
+ :rtype: typing.Any
115821
+ """
115822
+
115336
115823
  class BlendTexture(Texture, ID, bpy_struct):
115337
115824
  """Procedural color blending texture"""
115338
115825
 
@@ -143614,6 +144101,60 @@ class GPencilStrokePoint(bpy_struct):
143614
144101
  :rtype: typing.Any
143615
144102
  """
143616
144103
 
144104
+ class GREASE_PENCIL_UL_attributes(UIList, bpy_struct):
144105
+ def draw_item(
144106
+ self,
144107
+ _context,
144108
+ layout,
144109
+ _data,
144110
+ attribute,
144111
+ _icon,
144112
+ _active_data,
144113
+ _active_propname,
144114
+ _index,
144115
+ ):
144116
+ """
144117
+
144118
+ :param _context:
144119
+ :param layout:
144120
+ :param _data:
144121
+ :param attribute:
144122
+ :param _icon:
144123
+ :param _active_data:
144124
+ :param _active_propname:
144125
+ :param _index:
144126
+ """
144127
+
144128
+ def filter_items(self, _context, data, property):
144129
+ """
144130
+
144131
+ :param _context:
144132
+ :param data:
144133
+ :param property:
144134
+ """
144135
+
144136
+ @classmethod
144137
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
144138
+ """
144139
+
144140
+ :param id: The RNA type identifier.
144141
+ :type id: str | None
144142
+ :param default:
144143
+ :return: The RNA type or default when not found.
144144
+ :rtype: Struct
144145
+ """
144146
+
144147
+ @classmethod
144148
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
144149
+ """
144150
+
144151
+ :param id: The RNA type identifier.
144152
+ :type id: str | None
144153
+ :param default:
144154
+ :return: The class or default when not found.
144155
+ :rtype: typing.Any
144156
+ """
144157
+
143617
144158
  class GREASE_PENCIL_UL_masks(UIList, bpy_struct):
143618
144159
  def draw_item(
143619
144160
  self,
@@ -204825,6 +205366,14 @@ class ShaderNodeVolumePrincipled(ShaderNode, NodeInternal, Node, bpy_struct):
204825
205366
  class ShaderNodeVolumeScatter(ShaderNode, NodeInternal, Node, bpy_struct):
204826
205367
  """Scatter light as it passes through the volume, often used to add fog to a scene"""
204827
205368
 
205369
+ phase: typing.Literal[
205370
+ "HENYEY_GREENSTEIN", "FOURNIER_FORAND", "DRAINE", "RAYLEIGH", "MIE"
205371
+ ]
205372
+ """ Phase function for the scattered light
205373
+
205374
+ :type: typing.Literal['HENYEY_GREENSTEIN','FOURNIER_FORAND','DRAINE','RAYLEIGH','MIE']
205375
+ """
205376
+
204828
205377
  @classmethod
204829
205378
  def is_registered_node_type(cls) -> bool:
204830
205379
  """True if a registered node type
@@ -230545,6 +231094,8 @@ DATA_PT_gpencil_vertex_groups: bl_ui.properties_data_gpencil.DATA_PT_gpencil_ver
230545
231094
 
230546
231095
  DATA_PT_grease_pencil_animation: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_animation
230547
231096
 
231097
+ DATA_PT_grease_pencil_attributes: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_attributes
231098
+
230548
231099
  DATA_PT_grease_pencil_custom_props: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_custom_props
230549
231100
 
230550
231101
  DATA_PT_grease_pencil_layer_adjustments: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_adjustments
@@ -230895,6 +231446,8 @@ GREASE_PENCIL_MT_snap: bl_ui.properties_grease_pencil_common.GREASE_PENCIL_MT_sn
230895
231446
 
230896
231447
  GREASE_PENCIL_MT_snap_pie: bl_ui.properties_grease_pencil_common.GREASE_PENCIL_MT_snap_pie
230897
231448
 
231449
+ GREASE_PENCIL_UL_attributes: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_UL_attributes
231450
+
230898
231451
  GREASE_PENCIL_UL_masks: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_UL_masks
230899
231452
 
230900
231453
  IMAGE_AST_brush_paint: bl_ui.space_image.IMAGE_AST_brush_paint
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20241002
3
+ Version: 20241003
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -4,7 +4,7 @@ _bpy_internal/addons/__init__.pyi,sha256=eRZoWZ_DDDk1an1t7icuk0mtm_YUuSsWD7vsg6Y
4
4
  _bpy_internal/addons/cli/__init__.pyi,sha256=78S0XD4GcfiZ98YrBrms-BCZGj-22RnW-0K4kaqFL4o,103
5
5
  _bpy_internal/extensions/__init__.pyi,sha256=ZGyTE9mr3RLfqj0GTwlGwzvQbp5szHhRlmSz0575T9k,211
6
6
  _bpy_internal/extensions/junction_module/__init__.pyi,sha256=ktaqFveW9pjEnfWTl7eDEpqPZ8sk5L7mpDfSZ3wUkyM,944
7
- _bpy_internal/extensions/stale_file_manager/__init__.pyi,sha256=Xu8SG4bssixPbQeBBB54sU-eioLVhjUQL15p6t8K0Sc,593
7
+ _bpy_internal/extensions/stale_file_manager/__init__.pyi,sha256=kxjVoScm3xS7rP0ZGLHHCnk9rQqTxn963J-P6BKtiZE,694
8
8
  _bpy_internal/extensions/wheel_manager/__init__.pyi,sha256=fyGuauqxLkLP_q22i4-c3b38atInoyLrAPjfzXZ_mdk,913
9
9
  _bpy_internal/freedesktop/__init__.pyi,sha256=GBH61jYeX5oUBWpWTdT01eVNBaKSP1-7J6vzAEX8pg0,809
10
10
  _bpy_internal/grease_pencil/__init__.pyi,sha256=59jc9JrMDQUQWZM07gI9dbBQgxuRLxOfMJxd88PsCtY,93
@@ -13,7 +13,7 @@ _bpy_internal/system_info/__init__.pyi,sha256=cR0YfdA5e1gzPoJPkqRHZUm8ArCVuyulST
13
13
  _bpy_internal/system_info/text_generate_runtime/__init__.pyi,sha256=KkCIdvrNtqXRvKaojEVaARNyX3CFnj8UCo7B_nKLC0A,86
14
14
  _bpy_internal/system_info/url_prefill_runtime/__init__.pyi,sha256=L1cEExq7nGmeqjqhRH6p5yUL4CN6iEQY0wAYLSw2nKw,109
15
15
  _bpy_internal/system_info/url_prefill_startup/__init__.pyi,sha256=cL1oQCJ1CvBoUdGEPgZVpxOOJPA7bZUJpzRl8zglcYk,107
16
- addon_utils/__init__.pyi,sha256=ltke7QAZcFXMd4rOXJtU6ZKEL7Fbuw6IKZFpebSjhAI,1976
16
+ addon_utils/__init__.pyi,sha256=6zQhoIXOxuxnfg6tUBTvdWvc2hWf7pZtGPZIhVk8OOw,2030
17
17
  addon_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
18
  animsys_refactor/__init__.pyi,sha256=FVtTS8ep5YY_wxoK9FesObKvYKIffFgmOyS74iuza0s,643
19
19
  animsys_refactor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -118,7 +118,7 @@ bl_ui/properties_data_curve/__init__.pyi,sha256=BCk8kJKO0-SyER6jlDw2l7XtwD6Sc9-9
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
120
  bl_ui/properties_data_gpencil/__init__.pyi,sha256=7FJCtytO9CmNvB_mQV2XJLrSakH19QITJr_dW2eMtXs,14269
121
- bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=2SKSlxWrj1TmawVfyVwd-_wm3NGrqE8lZv8SW9GqMqk,12270
121
+ bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=TprZ921sQ9ywTtTX2fb6he2Lq99dI03oCEHoChXNuic,13971
122
122
  bl_ui/properties_data_lattice/__init__.pyi,sha256=sjJh19kVQpSQV_j_7dXO0OdvKAyRNVlkoyABdJIYsPw,3504
123
123
  bl_ui/properties_data_light/__init__.pyi,sha256=4UpAkSBTbjH-SeUAb1_NLXqc_8_oqip_a0CZNb55jR4,10726
124
124
  bl_ui/properties_data_lightprobe/__init__.pyi,sha256=micXmIresZ3nptUhIKrsUe7dMYQkTd-H2SMi-kkMysg,10705
@@ -136,7 +136,7 @@ bl_ui/properties_material/__init__.pyi,sha256=J3GrRdWFeh4p5w2qKtC5Dwz0XF301ATcsC
136
136
  bl_ui/properties_material_gpencil/__init__.pyi,sha256=zfCV8bG4-NABgQNpZjhRRR4Ttr0qS2H17seuJlJgX4c,8621
137
137
  bl_ui/properties_object/__init__.pyi,sha256=o9wiWVZ0eDAxBHcdwM98UmVft2YgMHi0fLmmehxzBaM,11379
138
138
  bl_ui/properties_output/__init__.pyi,sha256=1fkDdDyAz2lTcSUnef8fai-1hTw9ztgvJsafPT_8vcU,13760
139
- bl_ui/properties_paint_common/__init__.pyi,sha256=p74bD-jvyiyBpSKBqKWdcpe5DhIOsYsx6_JBIvFK9uM,7009
139
+ bl_ui/properties_paint_common/__init__.pyi,sha256=VgibBHChxQZjc4AdgluvJTZLG1nq2us3R-HFeykeAQ8,7009
140
140
  bl_ui/properties_particle/__init__.pyi,sha256=HVO0ZWeKHj7ZNP4Bh8ji6IunnLDTpPDNRVZg6TQ8wOU,43414
141
141
  bl_ui/properties_physics_cloth/__init__.pyi,sha256=z4BUwpMH-UQsZv7OfyPU_HHwCGeL-rcpMyY02M-Ew2Q,10647
142
142
  bl_ui/properties_physics_common/__init__.pyi,sha256=2lJ-nAiO5aVycUimdzvPYJAfVyvsnBdaE9nQ9UN2W4w,1338
@@ -170,7 +170,7 @@ bl_ui/space_statusbar/__init__.pyi,sha256=Kb64lM_S6RVATyQB1kQu-x7JSGceXsGqNyJ6AR
170
170
  bl_ui/space_text/__init__.pyi,sha256=l5CwsrWjvBl_CQQQqfjH7SbRVeAkK7z9R8UAi7GY59c,8799
171
171
  bl_ui/space_time/__init__.pyi,sha256=CsHClliVjg_FdPpaJzh2EgWkPTMZ0-_l0DCEXhx0fP8,4723
172
172
  bl_ui/space_toolsystem_common/__init__.pyi,sha256=IFq4tTh_oM6-dQWMZbuRo6HhYinOLBFC8ORj0S5ZWcs,3185
173
- bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=5CDL5ln5EuGRBoYIM8NTs5Ytyg902JXtavDM2MofTFQ,11051
173
+ bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=UNeClTvCwngdhWjPGO6awJhMmtZz6IE2Ejah-GcY7Hs,11022
174
174
  bl_ui/space_topbar/__init__.pyi,sha256=nBXvsE4g5M25m_fVVXWAYRPGpJFq3p95K8W-hue91z4,16175
175
175
  bl_ui/space_userpref/__init__.pyi,sha256=EGCdnPQ4iTmERhhzHcb3l-QZBQpZGoGjHMGeTlcyryY,79706
176
176
  bl_ui/space_view3d/__init__.pyi,sha256=lbPA9fJIuYHrtd3fZC-bJa0hk6FhTDyIlJYGUZkhn-Y,168464
@@ -192,7 +192,7 @@ bmesh/utils/__init__.pyi,sha256=i4IgP-3cnkYsh2sWLDC9HT8_H4mRddQXokkmiLyIqVA,5926
192
192
  bpy/__init__.pyi,sha256=dozab_KhjTikiJAE59kzHS9tbX9OJc8U1vPdj6gNFJY,502
193
193
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
194
  bpy/app/__init__.pyi,sha256=plH8mDdC_x_2fICzVr-E4ILgD37N60YMFN01qWVrE3Q,8156
195
- bpy/app/handlers/__init__.pyi,sha256=YiiC51yiCxNK2N4lpcvXSXYvl1IyQp2gf7QI9xYNCuM,6550
195
+ bpy/app/handlers/__init__.pyi,sha256=4e57CnucOnRaP2gpa0R-1aOpXv3hjNogJz-fQ3H5SgM,6878
196
196
  bpy/app/icons/__init__.pyi,sha256=_5y3YuN1ZF9NB4gFUtZpaLjYm8c6zDjnvUIfunA1md4,1020
197
197
  bpy/app/timers/__init__.pyi,sha256=vtrATRAmkTfP1CknievwpOCC19cPOMowyLTE6Ie9GSg,2126
198
198
  bpy/app/translations/__init__.pyi,sha256=9iWErXQPvd96E9x0WJdCNSuzBwreKolCPk-kuHA38t4,6800
@@ -227,7 +227,7 @@ bpy/ops/geometry/__init__.pyi,sha256=Ix8MGXa5gZBQT3aWGmDfrKPx-MTtmloRflfwiHicuTU
227
227
  bpy/ops/gizmogroup/__init__.pyi,sha256=OFN5NNvr_HFc_L7pvjSWKY_D8nF2_Ue8z6nGjB-_xac,1595
228
228
  bpy/ops/gpencil/__init__.pyi,sha256=Kquv3mCTVCIrdbPO4JtM9NWYsQuR9U9XzWVtj9HNmGI,108001
229
229
  bpy/ops/graph/__init__.pyi,sha256=uH--tIvXthUVXBm5vcmpGw_OgRG5mMZ8ITttZBqUDSo,51543
230
- bpy/ops/grease_pencil/__init__.pyi,sha256=1lIU44ZumkB7mQNSI7YiBMqa8NriBMndkW_RjuHkfRs,71293
230
+ bpy/ops/grease_pencil/__init__.pyi,sha256=TIt5uvDgbVcPCFc5u0V7yWDaZExXDqes8VaecZbdCOQ,74238
231
231
  bpy/ops/image/__init__.pyi,sha256=dJQe9-vHnpLHxDqXWfx3Yq9CyIHKkCBsxf4-vS1rmu8,59838
232
232
  bpy/ops/import_anim/__init__.pyi,sha256=7BExOyxBpXdbfQQN_foBI0FIfqHte9U1nfWEvNKYH0Y,3216
233
233
  bpy/ops/import_curve/__init__.pyi,sha256=U3eiL0CsWblWZe8O58JOxSXhr2sgHRHKwVzozIMsck4,651
@@ -258,7 +258,7 @@ bpy/ops/screen/__init__.pyi,sha256=brjCQalre8Km7BxXPI6t0j3NBggA1IrsiOwNZ9AmhKc,2
258
258
  bpy/ops/script/__init__.pyi,sha256=qJGs4LY_-NgCKFwGkOBwvig0LFr5v72A9nL-LQ21HrY,1460
259
259
  bpy/ops/sculpt/__init__.pyi,sha256=s4QH5ISS9KMBMQ7vCjHP1U7GbC_Pu-pyvNeqB5OftC0,52345
260
260
  bpy/ops/sculpt_curves/__init__.pyi,sha256=h9WZL7nJe6THcD9vxr7_qxeHb3s9dLuE-GSqd5s8dac,3310
261
- bpy/ops/sequencer/__init__.pyi,sha256=OC_d30lBPdgJ1gyDEF6y6zbHMWTpWg444Tunblb7dLk,87076
261
+ bpy/ops/sequencer/__init__.pyi,sha256=lZ9h-vVdFTnxM34QtqYqa7VSSNc4y4orOc-gF-xugx0,86929
262
262
  bpy/ops/sound/__init__.pyi,sha256=wxDDo9nBG2YwbAnOKMemcIJvk42mmHatbDkEU5h9Z7c,17938
263
263
  bpy/ops/spreadsheet/__init__.pyi,sha256=Nmr0N99wGYPusUlQC4WGJf2E3WETSGDLjnyGZ9yHQUc,2003
264
264
  bpy/ops/surface/__init__.pyi,sha256=hWXTtX4irgUJXJzgBqM5aHqV04qpu6h0pN0YMGJKE2c,11250
@@ -266,7 +266,7 @@ bpy/ops/text/__init__.pyi,sha256=iOIrpyZwmzcCkOcEE1pu4MfJr9ucWkOTcuzPnd3fm6E,277
266
266
  bpy/ops/text_editor/__init__.pyi,sha256=f-dugyqMTV3ZhWnGNpV9igyNbfrqx8GC_TK7mRiJQOU,801
267
267
  bpy/ops/texture/__init__.pyi,sha256=zw8XpITxHcPRMIOlyNwJpe7dXyYyfWg3CvAuDL_gUd4,1710
268
268
  bpy/ops/transform/__init__.pyi,sha256=NtBJgqlRKj3CH6mHA3sf5Slf_KpSWamoj-rWNEIz7SU,61406
269
- bpy/ops/ui/__init__.pyi,sha256=6nZqHbkFptV9sDbWYrlxaJ9W05viZVCQLeOmu8uY_dM,17973
269
+ bpy/ops/ui/__init__.pyi,sha256=YQdKVsMFZS0C58ORk2XksyRSAJzALZDuUcE7-jbSNoA,18355
270
270
  bpy/ops/uilist/__init__.pyi,sha256=L4xQFB8gZEK8eR2tymJBIVwALoVQLh9gwGkIjDzORyI,2086
271
271
  bpy/ops/uv/__init__.pyi,sha256=ociGOFaeH4aChcVFMtC167ZWtM4roFQveDgKiqbAK3c,52706
272
272
  bpy/ops/view2d/__init__.pyi,sha256=UWYslz64I_HIULKVyiYd9bVK38ypxss_9EZySgQkyuI,9137
@@ -276,7 +276,7 @@ bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJ
276
276
  bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
277
277
  bpy/path/__init__.pyi,sha256=lXSqQ4p4zukM_-6TaN4v7lNWFVY0xbYGMkOVLpkbpsI,5444
278
278
  bpy/props/__init__.pyi,sha256=jUUCk6C-K0f8Qt8-ln9GB_IH0NteN6meCPjr2spyhq4,29439
279
- bpy/types/__init__.pyi,sha256=2szWxj5BDSBK05kSZA6rP28gF6r2LWErpRL2ZmKvwjE,5359451
279
+ bpy/types/__init__.pyi,sha256=kI7DYXzD6MNlUc9RGLsIRAV-MdTXYQ6JD0lnmDakw8U,5372902
280
280
  bpy/typing/__init__.pyi,sha256=7jjNtrLEpp8FCObTBb-IvF1rzAzDIXa1vaDvS58s9yg,137984
281
281
  bpy/utils/__init__.pyi,sha256=AEb3oVPPh_gqLyKORj6rsxDPWvXIHjqp_eME3z98GcM,13117
282
282
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
@@ -312,7 +312,7 @@ freestyle/functions/__init__.pyi,sha256=30U2pD5T1CwjzNMIskAt9gB6f0jAWPVT0lpDu4jg
312
312
  freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
313
313
  freestyle/shaders/__init__.pyi,sha256=1Ov48B4P7LV3dwjBqHqqqbPFRBZWjENqIDaFb97Qdj0,23835
314
314
  freestyle/types/__init__.pyi,sha256=BuPHFpzzSFCoQGopL50P9RbrTSHfsMM-XaFLuI3xrWs,98897
315
- freestyle/utils/__init__.pyi,sha256=lW5JWrilkFTvRmtYoS3hbmWfj2abo2hHsvp4eyGLbcQ,5108
315
+ freestyle/utils/__init__.pyi,sha256=DdX3Qj2yTIu8jXdOAnf_9yKhJ5AQFnS_zVvSAdTfBpU,5108
316
316
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=uPNpwsSaqruftJiGu-P0a3YrjEkE4vLigWGh0Lvrtx4,3405
317
317
  gpu/__init__.pyi,sha256=vySMnQlOzFH_SMmm7p86InVADL4-y4m5_8wTYtYOLPo,7975
318
318
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -359,7 +359,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
359
359
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
360
360
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
361
361
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
- fake_bpy_module-20241002.dist-info/METADATA,sha256=nUAmBA5xfji7eljR0q_kXJsZasC-nFur8FKzMEEhKg8,7289
363
- fake_bpy_module-20241002.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
364
- fake_bpy_module-20241002.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
365
- fake_bpy_module-20241002.dist-info/RECORD,,
362
+ fake_bpy_module-20241003.dist-info/METADATA,sha256=NKuuL7U5DZBVVglRrqLwXQvm2GXqNDZabwszWo0qNRk,7289
363
+ fake_bpy_module-20241003.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
364
+ fake_bpy_module-20241003.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
365
+ fake_bpy_module-20241003.dist-info/RECORD,,
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
124
124
  """get the diffuse RGBA color from an FEdge"""
125
125
 
126
126
  def normal_at_I0D(it): ...
127
- def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
127
+ def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
128
128
  """Yields a tuple containing the previous and current object"""
129
129
 
130
130
  def rgb_to_bw(r, g, b):