fake-bpy-module 20250121__py3-none-any.whl → 20250123__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

bl_ui/anim/__init__.pyi CHANGED
@@ -27,3 +27,9 @@ class ANIM_MT_keyframe_insert_pie(bpy.types.Menu):
27
27
 
28
28
  :param _context:
29
29
  """
30
+
31
+ def draw_action_and_slot_selector_for_id(layout, animated_id):
32
+ """Draw the action and slot selector for an ID, using the given layout.The ID must be an animatable ID.Note that the slot selector is only drawn when the ID has an assigned
33
+ Action.
34
+
35
+ """
@@ -155,6 +155,23 @@ class MASK_MT_visibility(bpy.types.Menu):
155
155
  :param _context:
156
156
  """
157
157
 
158
+ class MASK_PT_animation:
159
+ bl_label: typing.Any
160
+ bl_options: typing.Any
161
+
162
+ def draw(self, context):
163
+ """
164
+
165
+ :param context:
166
+ """
167
+
168
+ @classmethod
169
+ def poll(cls, context):
170
+ """
171
+
172
+ :param context:
173
+ """
174
+
158
175
  class MASK_PT_display:
159
176
  bl_label: typing.Any
160
177
 
@@ -210,6 +210,35 @@ class MATERIAL_PT_gpencil_material_presets(bl_ui.utils.PresetPanel, bpy.types.Pa
210
210
  :rtype: typing.Any
211
211
  """
212
212
 
213
+ class MATERIAL_PT_gpencil_preview(GPMaterialButtonsPanel, bpy.types.Panel):
214
+ bl_context: typing.Any
215
+ bl_label: typing.Any
216
+ bl_options: typing.Any
217
+ bl_region_type: typing.Any
218
+ bl_rna: typing.Any
219
+ bl_space_type: typing.Any
220
+ id_data: typing.Any
221
+
222
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
223
+ """
224
+
225
+ :return: The RNA type or default when not found.
226
+ :rtype: bpy.types.Struct
227
+ """
228
+
229
+ def bl_rna_get_subclass_py(self) -> typing.Any:
230
+ """
231
+
232
+ :return: The class or default when not found.
233
+ :rtype: typing.Any
234
+ """
235
+
236
+ def draw(self, context):
237
+ """
238
+
239
+ :param context:
240
+ """
241
+
213
242
  class MATERIAL_PT_gpencil_settings(GPMaterialButtonsPanel, bpy.types.Panel):
214
243
  bl_context: typing.Any
215
244
  bl_label: typing.Any
@@ -860,6 +860,34 @@ class CLIP_PT_active_mask_spline(
860
860
  :rtype: typing.Any
861
861
  """
862
862
 
863
+ class CLIP_PT_animation(CLIP_PT_clip_view_panel, bpy.types.Panel):
864
+ bl_category: typing.Any
865
+ bl_label: typing.Any
866
+ bl_region_type: typing.Any
867
+ bl_rna: typing.Any
868
+ bl_space_type: typing.Any
869
+ id_data: typing.Any
870
+
871
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
872
+ """
873
+
874
+ :return: The RNA type or default when not found.
875
+ :rtype: bpy.types.Struct
876
+ """
877
+
878
+ def bl_rna_get_subclass_py(self) -> typing.Any:
879
+ """
880
+
881
+ :return: The class or default when not found.
882
+ :rtype: typing.Any
883
+ """
884
+
885
+ def draw(self, context):
886
+ """
887
+
888
+ :param context:
889
+ """
890
+
863
891
  class CLIP_PT_annotation(
864
892
  CLIP_PT_clip_view_panel,
865
893
  bl_ui.properties_grease_pencil_common.AnnotationDataPanel,
@@ -1115,6 +1143,31 @@ class CLIP_PT_mask(bl_ui.properties_mask_common.MASK_PT_mask, bpy.types.Panel):
1115
1143
  :rtype: typing.Any
1116
1144
  """
1117
1145
 
1146
+ class CLIP_PT_mask_animation(
1147
+ bl_ui.properties_mask_common.MASK_PT_animation, bpy.types.Panel
1148
+ ):
1149
+ bl_category: typing.Any
1150
+ bl_label: typing.Any
1151
+ bl_options: typing.Any
1152
+ bl_region_type: typing.Any
1153
+ bl_rna: typing.Any
1154
+ bl_space_type: typing.Any
1155
+ id_data: typing.Any
1156
+
1157
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1158
+ """
1159
+
1160
+ :return: The RNA type or default when not found.
1161
+ :rtype: bpy.types.Struct
1162
+ """
1163
+
1164
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1165
+ """
1166
+
1167
+ :return: The class or default when not found.
1168
+ :rtype: typing.Any
1169
+ """
1170
+
1118
1171
  class CLIP_PT_mask_display(
1119
1172
  bl_ui.properties_mask_common.MASK_PT_display, bpy.types.Panel
1120
1173
  ):
@@ -881,6 +881,31 @@ class IMAGE_PT_mask(bl_ui.properties_mask_common.MASK_PT_mask, bpy.types.Panel):
881
881
  :rtype: typing.Any
882
882
  """
883
883
 
884
+ class IMAGE_PT_mask_animation(
885
+ bl_ui.properties_mask_common.MASK_PT_animation, bpy.types.Panel
886
+ ):
887
+ bl_category: typing.Any
888
+ bl_label: typing.Any
889
+ bl_options: typing.Any
890
+ bl_region_type: typing.Any
891
+ bl_rna: typing.Any
892
+ bl_space_type: typing.Any
893
+ id_data: typing.Any
894
+
895
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
896
+ """
897
+
898
+ :return: The RNA type or default when not found.
899
+ :rtype: bpy.types.Struct
900
+ """
901
+
902
+ def bl_rna_get_subclass_py(self) -> typing.Any:
903
+ """
904
+
905
+ :return: The class or default when not found.
906
+ :rtype: typing.Any
907
+ """
908
+
884
909
  class IMAGE_PT_mask_display(
885
910
  bl_ui.properties_mask_common.MASK_PT_display, bpy.types.Panel
886
911
  ):
@@ -313,6 +313,8 @@ def gltf(
313
313
  export_frame_range: bool | None = False,
314
314
  export_frame_step: int | None = 1,
315
315
  export_force_sampling: bool | None = True,
316
+ export_sampling_interpolation_fallback: typing.Literal["LINEAR", "STEP"]
317
+ | None = "LINEAR",
316
318
  export_pointer_animation: bool | None = False,
317
319
  export_animation_mode: typing.Literal[
318
320
  "ACTIONS", "ACTIVE_ACTIONS", "BROADCAST", "NLA_TRACKS", "SCENE"
@@ -552,6 +554,14 @@ def gltf(
552
554
  :type export_frame_step: int | None
553
555
  :param export_force_sampling: Always Sample Animations, Apply sampling to all animations
554
556
  :type export_force_sampling: bool | None
557
+ :param export_sampling_interpolation_fallback: Sampling Interpolation Fallback, Interpolation fallback for sampled animations, when the property is not keyed
558
+
559
+ LINEAR
560
+ Linear -- Linear interpolation between keyframes.
561
+
562
+ STEP
563
+ Step -- No interpolation between keyframes.
564
+ :type export_sampling_interpolation_fallback: typing.Literal['LINEAR','STEP'] | None
555
565
  :param export_pointer_animation: Export Animation Pointer (Experimental), Export material, Light & Camera animation as Animation Pointer. Available only for baked animation mode 'NLA Tracks' and 'Scene'
556
566
  :type export_pointer_animation: bool | None
557
567
  :param export_animation_mode: Animation Mode, Export Animation mode
@@ -430,6 +430,7 @@ def interpolate_sequence(
430
430
  step: int | None = 1,
431
431
  layers: typing.Literal["ACTIVE", "ALL"] | None = "ACTIVE",
432
432
  exclude_breakdowns: bool | None = False,
433
+ use_selection: bool | None = False,
433
434
  flip: typing.Literal["NONE", "FLIP", "AUTO"] | None = "AUTO",
434
435
  smooth_steps: int | None = 1,
435
436
  smooth_factor: float | None = 0.0,
@@ -463,6 +464,8 @@ def interpolate_sequence(
463
464
  :type layers: typing.Literal['ACTIVE','ALL'] | None
464
465
  :param exclude_breakdowns: Exclude Breakdowns, Exclude existing Breakdowns keyframes as interpolation extremes
465
466
  :type exclude_breakdowns: bool | None
467
+ :param use_selection: Use Selection, Use only selected strokes for interpolating
468
+ :type use_selection: bool | None
466
469
  :param flip: Flip Mode, Invert destination stroke to match start and end with source stroke
467
470
  :type flip: typing.Literal['NONE','FLIP','AUTO'] | None
468
471
  :param smooth_steps: Iterations, Number of times to smooth newly created strokes
bpy/types/__init__.pyi CHANGED
@@ -23712,6 +23712,7 @@ Property types used in class declarations are all in bpy.props
23712
23712
  --------------------
23713
23713
 
23714
23714
  * SequenceEditor.sequences
23715
+ * SequenceEditor.strips
23715
23716
 
23716
23717
  :columns: 2
23717
23718
 
@@ -79670,9 +79671,13 @@ FileHandler
79670
79671
  --------------------
79671
79672
 
79672
79673
  * bpy.context.active_sequence_strip
79674
+ * bpy.context.active_strip
79673
79675
  * bpy.context.selected_editable_sequences
79676
+ * bpy.context.selected_editable_strips
79674
79677
  * bpy.context.selected_sequences
79678
+ * bpy.context.selected_strips
79675
79679
  * bpy.context.sequences
79680
+ * bpy.context.strips
79676
79681
  * AddStrip.input_1
79677
79682
  * AddStrip.input_2
79678
79683
  * AlphaOverStrip.input_1
@@ -79688,6 +79693,7 @@ FileHandler
79688
79693
  * GaussianBlurStrip.input_1
79689
79694
  * GlowStrip.input_1
79690
79695
  * MetaStrip.sequences
79696
+ * MetaStrip.strips
79691
79697
  * MultiplyStrip.input_1
79692
79698
  * MultiplyStrip.input_2
79693
79699
  * OverDropStrip.input_1
@@ -79697,6 +79703,8 @@ FileHandler
79697
79703
  * SequenceEditor.meta_stack
79698
79704
  * SequenceEditor.sequences
79699
79705
  * SequenceEditor.sequences_all
79706
+ * SequenceEditor.strips
79707
+ * SequenceEditor.strips_all
79700
79708
  * SpeedControlStrip.input_1
79701
79709
  * Strip.move_to_meta
79702
79710
  * Strip.parent_meta
@@ -100229,6 +100237,7 @@ of the scene and only show nodes of the renderer they are designed for.
100229
100237
  --------------------
100230
100238
 
100231
100239
  * MetaStrip.sequences
100240
+ * MetaStrip.strips
100232
100241
 
100233
100242
  :columns: 2
100234
100243
 
@@ -109095,6 +109104,26 @@ class IDMaterials(bpy_prop_collection[Material], bpy_struct):
109095
109104
  :rtype: typing.Any
109096
109105
  """
109097
109106
 
109107
+ @typing.overload
109108
+ def __getitem__(self, key: int | str) -> Material | None:
109109
+ """
109110
+
109111
+ :param key:
109112
+ :type key: int | str
109113
+ :return:
109114
+ :rtype: Material | None
109115
+ """
109116
+
109117
+ @typing.overload
109118
+ def __getitem__(self, key: slice) -> list[Material | None, ...]:
109119
+ """
109120
+
109121
+ :param key:
109122
+ :type key: slice
109123
+ :return:
109124
+ :rtype: list[Material | None, ...]
109125
+ """
109126
+
109098
109127
  class IDOverrideLibraryProperties(
109099
109128
  bpy_prop_collection[IDOverrideLibraryProperty], bpy_struct
109100
109129
  ):
@@ -132783,6 +132812,30 @@ Returns a tuple of the data-block, data path to the property, and array index.
132783
132812
  :type: AnyType | None
132784
132813
  """
132785
132814
 
132815
+ active_strip: Strip | None
132816
+ """
132817
+
132818
+ :type: Strip | None
132819
+ """
132820
+
132821
+ strips: list[Strip]
132822
+ """
132823
+
132824
+ :type: list[Strip]
132825
+ """
132826
+
132827
+ selected_strips: list[Strip]
132828
+ """
132829
+
132830
+ :type: list[Strip]
132831
+ """
132832
+
132833
+ selected_editable_strips: list[Strip]
132834
+ """
132835
+
132836
+ :type: list[Strip]
132837
+ """
132838
+
132786
132839
  edit_text: Text | None
132787
132840
  """
132788
132841
 
@@ -176044,6 +176097,12 @@ class MetaStrip(Strip, bpy_struct):
176044
176097
  """
176045
176098
 
176046
176099
  sequences: StripsMeta
176100
+ """ (Deprecated: Replaced by '.strips') Strips nested in meta strip
176101
+
176102
+ :type: StripsMeta
176103
+ """
176104
+
176105
+ strips: StripsMeta
176047
176106
  """ Strips nested in meta strip
176048
176107
 
176049
176108
  :type: StripsMeta
@@ -199130,13 +199189,13 @@ class SequenceEditor(bpy_struct):
199130
199189
  """
199131
199190
 
199132
199191
  sequences: StripsTopLevel
199133
- """ Top-level strips only
199192
+ """ (Deprecated: Replaced by '.strips') Top-level strips only
199134
199193
 
199135
199194
  :type: StripsTopLevel
199136
199195
  """
199137
199196
 
199138
199197
  sequences_all: bpy_prop_collection[Strip]
199139
- """ All strips, recursively including those inside metastrips
199198
+ """ (Deprecated: Replaced by '.strips_all') All strips, recursively including those inside metastrips
199140
199199
 
199141
199200
  :type: bpy_prop_collection[Strip]
199142
199201
  """
@@ -199153,6 +199212,18 @@ class SequenceEditor(bpy_struct):
199153
199212
  :type: bool
199154
199213
  """
199155
199214
 
199215
+ strips: StripsTopLevel
199216
+ """ Top-level strips only
199217
+
199218
+ :type: StripsTopLevel
199219
+ """
199220
+
199221
+ strips_all: bpy_prop_collection[Strip]
199222
+ """ All strips, recursively including those inside metastrips
199223
+
199224
+ :type: bpy_prop_collection[Strip]
199225
+ """
199226
+
199156
199227
  use_cache_composite: bool
199157
199228
  """ Cache intermediate composited images, for faster tweaking of stacked strips at the cost of memory usage
199158
199229
 
@@ -232818,6 +232889,8 @@ CLIP_PT_active_mask_point: bl_ui.space_clip.CLIP_PT_active_mask_point
232818
232889
 
232819
232890
  CLIP_PT_active_mask_spline: bl_ui.space_clip.CLIP_PT_active_mask_spline
232820
232891
 
232892
+ CLIP_PT_animation: bl_ui.space_clip.CLIP_PT_animation
232893
+
232821
232894
  CLIP_PT_annotation: bl_ui.space_clip.CLIP_PT_annotation
232822
232895
 
232823
232896
  CLIP_PT_camera_presets: bl_ui.space_clip.CLIP_PT_camera_presets
@@ -232836,6 +232909,8 @@ CLIP_PT_marker_display: bl_ui.space_clip.CLIP_PT_marker_display
232836
232909
 
232837
232910
  CLIP_PT_mask: bl_ui.space_clip.CLIP_PT_mask
232838
232911
 
232912
+ CLIP_PT_mask_animation: bl_ui.space_clip.CLIP_PT_mask_animation
232913
+
232839
232914
  CLIP_PT_mask_display: bl_ui.space_clip.CLIP_PT_mask_display
232840
232915
 
232841
232916
  CLIP_PT_mask_layers: bl_ui.space_clip.CLIP_PT_mask_layers
@@ -233458,6 +233533,8 @@ IMAGE_PT_image_properties: bl_ui.space_image.IMAGE_PT_image_properties
233458
233533
 
233459
233534
  IMAGE_PT_mask: bl_ui.space_image.IMAGE_PT_mask
233460
233535
 
233536
+ IMAGE_PT_mask_animation: bl_ui.space_image.IMAGE_PT_mask_animation
233537
+
233461
233538
  IMAGE_PT_mask_display: bl_ui.space_image.IMAGE_PT_mask_display
233462
233539
 
233463
233540
  IMAGE_PT_mask_layers: bl_ui.space_image.IMAGE_PT_mask_layers
@@ -233574,6 +233651,8 @@ MATERIAL_PT_gpencil_fillcolor: bl_ui.properties_material_gpencil.MATERIAL_PT_gpe
233574
233651
 
233575
233652
  MATERIAL_PT_gpencil_material_presets: bl_ui.properties_material_gpencil.MATERIAL_PT_gpencil_material_presets
233576
233653
 
233654
+ MATERIAL_PT_gpencil_preview: bl_ui.properties_material_gpencil.MATERIAL_PT_gpencil_preview
233655
+
233577
233656
  MATERIAL_PT_gpencil_settings: bl_ui.properties_material_gpencil.MATERIAL_PT_gpencil_settings
233578
233657
 
233579
233658
  MATERIAL_PT_gpencil_slots: bl_ui.properties_material_gpencil.MATERIAL_PT_gpencil_slots
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: fake-bpy-module
3
- Version: 20250121
3
+ Version: 20250123
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
@@ -100,7 +100,7 @@ bl_text_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
100
  bl_text_utils/external_editor/__init__.pyi,sha256=9i4t4dLw6lYydq8d5O-VCtghlkS1MuaypeDD0dNVodI,117
101
101
  bl_ui/__init__.pyi,sha256=1r51D8PicbD-QVUctmIy1-HlvGww8Neh3VIkKpkM5b4,6876
102
102
  bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
- bl_ui/anim/__init__.pyi,sha256=rfW-hFN0qy_jfivUrTMUZ7GIppMA5hycMUlWWj5wloo,614
103
+ bl_ui/anim/__init__.pyi,sha256=QyZprkGrf0hlIBcJc20TCUwHHBmRG76RdqJtDlsAP4c,876
104
104
  bl_ui/asset_shelf/__init__.pyi,sha256=t-xDmFic0fqVPdMcY7iFrprYEpNNmJeEN4XhPUx_m9w,763
105
105
  bl_ui/generic_ui_list/__init__.pyi,sha256=E9S37L1rZLNoVKSC_Rc2_lZ7O_-8j3U6FujiN5i0t24,4205
106
106
  bl_ui/node_add_menu/__init__.pyi,sha256=47u8vW3h1ub07M_kPJfQ1pbEdHeckMek5HSTwfYR7f8,1148
@@ -130,9 +130,9 @@ bl_ui/properties_data_speaker/__init__.pyi,sha256=YRayS4IxkfcvwOAJlqfSL4kjzBcaqo
130
130
  bl_ui/properties_data_volume/__init__.pyi,sha256=w6ct8kb74x8X0l1vLq6Ymq-fzezD387sQv-lBH7wohM,7115
131
131
  bl_ui/properties_freestyle/__init__.pyi,sha256=JxNJb9q2e8hRqNb7ynucmV5GKCG7y_HdQJgc9z9Th8w,22822
132
132
  bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=LQ6kY4XcaeHZdUr4Wr-vmQQerZ6VStZlX6mt8jltOc4,8859
133
- bl_ui/properties_mask_common/__init__.pyi,sha256=-Ae0CtS1OQZRwJ38l1xj-115MJo9xEQieAarliMc40s,5796
133
+ bl_ui/properties_mask_common/__init__.pyi,sha256=TStuByqFZ24UxTzymKnQZFIrHjxcx__sUgUMvqgTRYc,6048
134
134
  bl_ui/properties_material/__init__.pyi,sha256=J3GrRdWFeh4p5w2qKtC5Dwz0XF301ATcsCPcV4kXWe0,13499
135
- bl_ui/properties_material_gpencil/__init__.pyi,sha256=xY7bZUCPnZdCODKxzvJLWJ6EyrRSs0jiyNNsNxsTahk,7917
135
+ bl_ui/properties_material_gpencil/__init__.pyi,sha256=nzPF77aPdfB82IJ0Gt5kXMy8Lcsu5m2MmhR_uyUwEIY,8590
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
@@ -152,12 +152,12 @@ bl_ui/properties_texture/__init__.pyi,sha256=8d7ZCVj0-wZLdtj3Fzan96sCP4p_TZg0C_N
152
152
  bl_ui/properties_view_layer/__init__.pyi,sha256=TovT-zfWqw63JTXntcJbzKJ_72lSMfQI6BVuyEcPYK4,9243
153
153
  bl_ui/properties_workspace/__init__.pyi,sha256=ssIg71Vro4yRSS2302fKnsWRhyjBZtSyY59dOg71z1w,3463
154
154
  bl_ui/properties_world/__init__.pyi,sha256=2BvXUUUI6BdaA61DKNR3xNGGLSiK5kfeHW25x-s4p7w,9145
155
- bl_ui/space_clip/__init__.pyi,sha256=I9bHrnPSZnkPYGxKw3tlUqch3FnyL4fpyjIzG-rqpKk,45001
155
+ bl_ui/space_clip/__init__.pyi,sha256=xWGyDkY-cqgl5TKk4r6Rf-cA79V1fWjFVfreeQVfUps,46259
156
156
  bl_ui/space_console/__init__.pyi,sha256=jHE-NegnXq5WiuRTy89jw6hkYwLAjwEJryGzPJ7GrZw,3273
157
157
  bl_ui/space_dopesheet/__init__.pyi,sha256=1VTtwpoxDb56GB8pt93MAhdybZbLzeWX7Im9VNYLwLg,18072
158
158
  bl_ui/space_filebrowser/__init__.pyi,sha256=mFlZd3CLqrkdD-_nftH3A8f1hVHwHeGUvWBFEpIIoaM,19466
159
159
  bl_ui/space_graph/__init__.pyi,sha256=cO21vtPuhxnj57ylVGmpJFDbsPIttY0i7Hjep_kLTOo,10987
160
- bl_ui/space_image/__init__.pyi,sha256=HO1Je2i9wtBtwirMt8LvXsj3uiMGjHLI8ML2S1zCLqY,44587
160
+ bl_ui/space_image/__init__.pyi,sha256=23C8BkJeKsV3enUja85AYm0weN8I0RzQT3HsotbjHuE,45208
161
161
  bl_ui/space_info/__init__.pyi,sha256=u0Bz7_HxRJrOKh0Ae7M0PvcA_H0_qI9dkcN_MW2SJa0,3285
162
162
  bl_ui/space_nla/__init__.pyi,sha256=uT7nGRBlJlDS-wYZGGGuMs17DK-_XsYoa1qkop7ZVyM,9535
163
163
  bl_ui/space_node/__init__.pyi,sha256=sHP77K93twJEnel9dlQFAMjCBhLpC58LS6oK96OP1xo,17979
@@ -219,7 +219,7 @@ bpy/ops/cycles/__init__.pyi,sha256=TzurmelE8U7FLjghhDWt-0HBU-cyTALEWTfG4taUCSI,1
219
219
  bpy/ops/dpaint/__init__.pyi,sha256=LhNcaKIZxU6RVVV3Am5d-0r3fVmTqc_UbXwM53yPFCQ,1555
220
220
  bpy/ops/ed/__init__.pyi,sha256=XrnkDR-2DzjfrqGDmMjiI0ZoYJmnUdX6yGdtpePIAis,7102
221
221
  bpy/ops/export_anim/__init__.pyi,sha256=wyCP8IO0cjr0ixNFGfFblD8ASLG4tQ-l2v3a9UnHAlw,2027
222
- bpy/ops/export_scene/__init__.pyi,sha256=Li_LFi4Pd4bGT0t1PKqbXoaU9b_2fGlbI3ZRXAn6W3c,39583
222
+ bpy/ops/export_scene/__init__.pyi,sha256=1mZzNHNdWBwIOyslTrxTQn9Z6BqNp0ZlVblvJmKBW8M,40066
223
223
  bpy/ops/extensions/__init__.pyi,sha256=GtWfFBmoeA2PoRiMqdgYu7cuSXJuVRnLgFpOa-B3M5E,12748
224
224
  bpy/ops/file/__init__.pyi,sha256=EwxedztM5v4x6oQd7FV0VbAHAtRKChgHTMuhkHUDDQ8,19260
225
225
  bpy/ops/fluid/__init__.pyi,sha256=toNBTcKttDwaWx21Nzf2HNBWKT7vZh8IDcIR2nG_ad4,3191
@@ -228,7 +228,7 @@ bpy/ops/geometry/__init__.pyi,sha256=5E3W4rVQTQmgHc8p8Adr9EHk-VsTrhwYbCvchw4Ax7c
228
228
  bpy/ops/gizmogroup/__init__.pyi,sha256=lsDnIxuI4uIqJJEiLNmKUuMq2uqlc6HQAqDHY3T9tf8,1262
229
229
  bpy/ops/gpencil/__init__.pyi,sha256=cqeFGa_2tSDBDSWhsWVQVZx5BhHs08wiW4And1rhfVE,4832
230
230
  bpy/ops/graph/__init__.pyi,sha256=LxlhLzlxAjlrVyfx09PY74t15-khJK0tiasNQyYUqw4,41703
231
- bpy/ops/grease_pencil/__init__.pyi,sha256=pWFEIdxwfHRa-Y9BOV617a3zJobIBcwIUBxiZXTFb4g,61504
231
+ bpy/ops/grease_pencil/__init__.pyi,sha256=iL2Mbb1OtW7ooGB-Jws1Y5EsFp6ZjzI5OW0SSs4KXrE,61674
232
232
  bpy/ops/image/__init__.pyi,sha256=GiNPnZRmVUdtFmuckOxdV55Po_2ul_qda5wU2fFrm6U,52466
233
233
  bpy/ops/import_anim/__init__.pyi,sha256=aE1pDcT6TlridpXwg7tF-E3tXLcm83n7j1vVgn_-g7A,3046
234
234
  bpy/ops/import_curve/__init__.pyi,sha256=sDhKpg3cI-y0NYuUo8ey3jb3h-KKergdPUDKlQ-C2iI,485
@@ -277,7 +277,7 @@ bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHC
277
277
  bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
278
278
  bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
279
279
  bpy/props/__init__.pyi,sha256=ZldUQ1MIMYkmYB0PpIP7HwwzMGpVB4rM3KeZOqV54sU,35236
280
- bpy/types/__init__.pyi,sha256=c0UFd9moZtaP386PM5880JICDMgFRt-kc0uG_dmS8so,5419377
280
+ bpy/types/__init__.pyi,sha256=UfALt4biDslJ3Ehg2kCREzbuK0_QBCEn25FOBzx9LRE,5421068
281
281
  bpy/utils/__init__.pyi,sha256=0xYpOGROz80lrcCe4nko-nEkU-lsKJV09rjES5JIu7I,14765
282
282
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
283
283
  bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
@@ -326,7 +326,7 @@ gpu/texture/__init__.pyi,sha256=NWixhD9M2vFrAIWlQDM0Co-CNRiU7BbL7imkSOloHHI,641
326
326
  gpu/types/__init__.pyi,sha256=Q8Gym2MsHoDFLW7snVIfPMUGCQns-XA2URYfeOV3nnk,27923
327
327
  gpu_extras/__init__.pyi,sha256=oNgtMNheClZ_iCmKSH63hBJ4U0huayOWKil-qPvYHds,213
328
328
  gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
329
- gpu_extras/batch/__init__.pyi,sha256=t-kFLEyZ0OABqt8VbtSwvo60S7vw15Tq5HRea-G3odE,1278
329
+ gpu_extras/batch/__init__.pyi,sha256=nbeZNWRKChMLBkKYc4mLF9abAffVyzEHp01yf64gZK8,1279
330
330
  gpu_extras/presets/__init__.pyi,sha256=pDhGELr5vKTZ9yDsLJ4Y836Kmh7cs95rDhSwd1i5e-s,1647
331
331
  graphviz_export/__init__.pyi,sha256=LBiepSfMSL7Qix8FZ6LYKmbPgu1AHRvRw3yHDDWYrEw,215
332
332
  graphviz_export/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -340,7 +340,7 @@ keyingsets_builtins/__init__.pyi,sha256=FmSnRj8eAiQ_O-X_-kAHM_a8rCv_HZBrjXLXDRss
340
340
  keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
341
341
  keyingsets_utils/__init__.pyi,sha256=UpGuAqOVl6bmy3rffJhqFS8ZKhUtAV-MfVyuuHtqXQI,770
342
342
  keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
343
- mathutils/__init__.pyi,sha256=6k0vyekOaDi8Kj5xt5wOmICGqTcVQdi02dULF7RFICQ,89157
343
+ mathutils/__init__.pyi,sha256=I80TgzGwK0Xvj-9lrikpgylvmC5DiE6PYt0NTpKXCgg,89255
344
344
  mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
345
345
  mathutils/bvhtree/__init__.pyi,sha256=UtzuOlaUjgPwVQZnDiZhPrzgrFmgpyVY7z9WqoZzNsI,4933
346
346
  mathutils/geometry/__init__.pyi,sha256=q6y5a8T54ZNoIlqkfjx2nZ8iF7G-uHfeFrN7SJqrapc,23278
@@ -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-20250121.dist-info/METADATA,sha256=o4-NCwdl4YvJU4QwDyqcIRiAZ9PacR0ImxfT50I_lpk,7289
363
- fake_bpy_module-20250121.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
364
- fake_bpy_module-20250121.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
365
- fake_bpy_module-20250121.dist-info/RECORD,,
362
+ fake_bpy_module-20250123.dist-info/METADATA,sha256=lgEFA7DILyG-DNiWYXhzH4KJKwmfLQOUyIhF3Mtbxvg,7289
363
+ fake_bpy_module-20250123.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
364
+ fake_bpy_module-20250123.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
365
+ fake_bpy_module-20250123.dist-info/RECORD,,
@@ -1,7 +1,6 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bgl
5
4
  import gpu.types
6
5
 
7
6
  def batch_for_shader(
@@ -9,7 +8,7 @@ def batch_for_shader(
9
8
  type: str,
10
9
  content: dict[
11
10
  str,
12
- bgl.Buffer
11
+ gpu.types.Buffer
13
12
  | collections.abc.Sequence[float]
14
13
  | collections.abc.Sequence[int]
15
14
  | collections.abc.Sequence[collections.abc.Sequence[float]]
@@ -26,7 +25,7 @@ def batch_for_shader(
26
25
  :type type: str
27
26
  :param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
28
27
  For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
29
- :type content: dict[str, bgl.Buffer | collections.abc.Sequence[float] | collections.abc.Sequence[int] | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[collections.abc.Sequence[int]]]
28
+ :type content: dict[str, gpu.types.Buffer | collections.abc.Sequence[float] | collections.abc.Sequence[int] | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[collections.abc.Sequence[int]]]
30
29
  :return: compatible batch
31
30
  :rtype: gpu.types.GPUBatch
32
31
  """
mathutils/__init__.pyi CHANGED
@@ -348,13 +348,13 @@ class Color:
348
348
  """
349
349
 
350
350
  @typing.overload
351
- def __setitem__(self, key: slice, value: collections.abc.Iterable[float] | Vector):
351
+ def __setitem__(self, key: slice, value: collections.abc.Iterable[float] | Color):
352
352
  """
353
353
 
354
354
  :param key:
355
355
  :type key: slice
356
356
  :param value:
357
- :type value: collections.abc.Iterable[float] | Vector
357
+ :type value: collections.abc.Iterable[float] | Color
358
358
  """
359
359
 
360
360
  class Euler:
@@ -527,13 +527,13 @@ class Euler:
527
527
  """
528
528
 
529
529
  @typing.overload
530
- def __setitem__(self, key: slice, value: collections.abc.Iterable[float]):
530
+ def __setitem__(self, key: slice, value: collections.abc.Iterable[float] | Euler):
531
531
  """
532
532
 
533
533
  :param key:
534
534
  :type key: slice
535
535
  :param value:
536
- :type value: collections.abc.Iterable[float]
536
+ :type value: collections.abc.Iterable[float] | Euler
537
537
  """
538
538
 
539
539
  class Matrix:
@@ -1005,14 +1005,15 @@ class Matrix:
1005
1005
  def __setitem__(
1006
1006
  self,
1007
1007
  key: slice,
1008
- value: collections.abc.Iterable[Vector | collections.abc.Iterable[float]],
1008
+ value: collections.abc.Iterable[Vector | collections.abc.Iterable[float]]
1009
+ | Matrix,
1009
1010
  ):
1010
1011
  """
1011
1012
 
1012
1013
  :param key:
1013
1014
  :type key: slice
1014
1015
  :param value:
1015
- :type value: collections.abc.Iterable[Vector | collections.abc.Iterable[float]]
1016
+ :type value: collections.abc.Iterable[Vector | collections.abc.Iterable[float]] | Matrix
1016
1017
  """
1017
1018
 
1018
1019
  def __len__(self) -> int:
@@ -1429,13 +1430,15 @@ class Quaternion:
1429
1430
  """
1430
1431
 
1431
1432
  @typing.overload
1432
- def __setitem__(self, key: slice, value: collections.abc.Iterable[float]):
1433
+ def __setitem__(
1434
+ self, key: slice, value: collections.abc.Iterable[float] | Quaternion
1435
+ ):
1433
1436
  """
1434
1437
 
1435
1438
  :param key:
1436
1439
  :type key: slice
1437
1440
  :param value:
1438
- :type value: collections.abc.Iterable[float]
1441
+ :type value: collections.abc.Iterable[float] | Quaternion
1439
1442
  """
1440
1443
 
1441
1444
  def __add__(
@@ -3966,13 +3969,13 @@ class Vector:
3966
3969
  """
3967
3970
 
3968
3971
  @typing.overload
3969
- def __setitem__(self, key: slice, value: collections.abc.Iterable[float]):
3972
+ def __setitem__(self, key: slice, value: collections.abc.Iterable[float] | Vector):
3970
3973
  """
3971
3974
 
3972
3975
  :param key:
3973
3976
  :type key: slice
3974
3977
  :param value:
3975
- :type value: collections.abc.Iterable[float]
3978
+ :type value: collections.abc.Iterable[float] | Vector
3976
3979
  """
3977
3980
 
3978
3981
  def __neg__(self) -> typing_extensions.Self: