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

@@ -285,6 +285,36 @@ class VIEWLAYER_PT_layer_passes_lightgroups(
285
285
  :rtype: typing.Any
286
286
  """
287
287
 
288
+ class VIEWLAYER_PT_override(ViewLayerButtonsPanel, bpy.types.Panel):
289
+ COMPAT_ENGINES: typing.Any
290
+ bl_context: typing.Any
291
+ bl_label: typing.Any
292
+ bl_options: typing.Any
293
+ bl_region_type: typing.Any
294
+ bl_rna: typing.Any
295
+ bl_space_type: typing.Any
296
+ id_data: typing.Any
297
+
298
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
299
+ """
300
+
301
+ :return: The RNA type or default when not found.
302
+ :rtype: bpy.types.Struct
303
+ """
304
+
305
+ def bl_rna_get_subclass_py(self) -> typing.Any:
306
+ """
307
+
308
+ :return: The class or default when not found.
309
+ :rtype: typing.Any
310
+ """
311
+
312
+ def draw(self, context) -> None:
313
+ """
314
+
315
+ :param context:
316
+ """
317
+
288
318
  class VIEWLAYER_PT_workbench_layer_passes_data(ViewLayerButtonsPanel, bpy.types.Panel):
289
319
  COMPAT_ENGINES: typing.Any
290
320
  bl_context: typing.Any
@@ -2818,6 +2818,41 @@ class USERPREF_PT_theme_interface_icons(CenterAlignMixIn, ThemePanel, bpy.types.
2818
2818
  :param layout:
2819
2819
  """
2820
2820
 
2821
+ class USERPREF_PT_theme_interface_panel(CenterAlignMixIn, ThemePanel, bpy.types.Panel):
2822
+ """Base class for panels to center align contents with some horizontal margin.
2823
+ Deriving classes need to implement a draw_centered(context, layout) function.
2824
+ """
2825
+
2826
+ bl_context: typing.Any
2827
+ bl_label: typing.Any
2828
+ bl_options: typing.Any
2829
+ bl_parent_id: typing.Any
2830
+ bl_region_type: typing.Any
2831
+ bl_rna: typing.Any
2832
+ bl_space_type: typing.Any
2833
+ id_data: typing.Any
2834
+
2835
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
2836
+ """
2837
+
2838
+ :return: The RNA type or default when not found.
2839
+ :rtype: bpy.types.Struct
2840
+ """
2841
+
2842
+ def bl_rna_get_subclass_py(self) -> typing.Any:
2843
+ """
2844
+
2845
+ :return: The class or default when not found.
2846
+ :rtype: typing.Any
2847
+ """
2848
+
2849
+ def draw_centered(self, context, layout) -> None:
2850
+ """
2851
+
2852
+ :param context:
2853
+ :param layout:
2854
+ """
2855
+
2821
2856
  class USERPREF_PT_theme_interface_state(CenterAlignMixIn, ThemePanel, bpy.types.Panel):
2822
2857
  """Base class for panels to center align contents with some horizontal margin.
2823
2858
  Deriving classes need to implement a draw_centered(context, layout) function.
@@ -344,6 +344,7 @@ def effect_strip_add(
344
344
  "COLORMIX",
345
345
  ]
346
346
  | None = "CROSS",
347
+ move_strips: bool | None = True,
347
348
  frame_start: int | None = 0,
348
349
  frame_end: int | None = 0,
349
350
  channel: int | None = 1,
@@ -410,6 +411,8 @@ def effect_strip_add(
410
411
  COLORMIX
411
412
  Color Mix -- Combine two strips using blend modes.
412
413
  :type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','TRANSFORM','COLOR','SPEED','MULTICAM','ADJUSTMENT','GAUSSIAN_BLUR','TEXT','COLORMIX'] | None
414
+ :param move_strips: Move Strips, Move strips after adding them to the timeline
415
+ :type move_strips: bool | None
413
416
  :param frame_start: Start Frame, Start frame of the sequence strip
414
417
  :type frame_start: int | None
415
418
  :param frame_end: End Frame, End frame for the color strip
@@ -663,6 +666,7 @@ def image_strip_add(
663
666
  "ASSET_CATALOG",
664
667
  ]
665
668
  | None = "",
669
+ move_strips: bool | None = True,
666
670
  frame_start: int | None = 0,
667
671
  frame_end: int | None = 0,
668
672
  channel: int | None = 1,
@@ -758,6 +762,8 @@ def image_strip_add(
758
762
  ASSET_CATALOG
759
763
  Asset Catalog -- Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
760
764
  :type sort_method: typing.Literal['DEFAULT','FILE_SORT_ALPHA','FILE_SORT_EXTENSION','FILE_SORT_TIME','FILE_SORT_SIZE','ASSET_CATALOG'] | None
765
+ :param move_strips: Move Strips, Move strips after adding them to the timeline
766
+ :type move_strips: bool | None
761
767
  :param frame_start: Start Frame, Start frame of the sequence strip
762
768
  :type frame_start: int | None
763
769
  :param frame_end: End Frame, End frame for the color strip
@@ -819,6 +825,7 @@ def mask_strip_add(
819
825
  undo: bool | None = None,
820
826
  /,
821
827
  *,
828
+ move_strips: bool | None = True,
822
829
  frame_start: int | None = 0,
823
830
  channel: int | None = 1,
824
831
  replace_sel: bool | None = True,
@@ -831,6 +838,8 @@ def mask_strip_add(
831
838
 
832
839
  :type execution_context: int | str | None
833
840
  :type undo: bool | None
841
+ :param move_strips: Move Strips, Move strips after adding them to the timeline
842
+ :type move_strips: bool | None
834
843
  :param frame_start: Start Frame, Start frame of the sequence strip
835
844
  :type frame_start: int | None
836
845
  :param channel: Channel, Channel to place this strip into
@@ -917,6 +926,7 @@ def movie_strip_add(
917
926
  "ASSET_CATALOG",
918
927
  ]
919
928
  | None = "",
929
+ move_strips: bool | None = True,
920
930
  frame_start: int | None = 0,
921
931
  channel: int | None = 1,
922
932
  replace_sel: bool | None = True,
@@ -1015,6 +1025,8 @@ def movie_strip_add(
1015
1025
  ASSET_CATALOG
1016
1026
  Asset Catalog -- Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
1017
1027
  :type sort_method: typing.Literal['DEFAULT','FILE_SORT_ALPHA','FILE_SORT_EXTENSION','FILE_SORT_TIME','FILE_SORT_SIZE','ASSET_CATALOG'] | None
1028
+ :param move_strips: Move Strips, Move strips after adding them to the timeline
1029
+ :type move_strips: bool | None
1018
1030
  :param frame_start: Start Frame, Start frame of the sequence strip
1019
1031
  :type frame_start: int | None
1020
1032
  :param channel: Channel, Channel to place this strip into
@@ -1056,6 +1068,7 @@ def movieclip_strip_add(
1056
1068
  undo: bool | None = None,
1057
1069
  /,
1058
1070
  *,
1071
+ move_strips: bool | None = True,
1059
1072
  frame_start: int | None = 0,
1060
1073
  channel: int | None = 1,
1061
1074
  replace_sel: bool | None = True,
@@ -1068,6 +1081,8 @@ def movieclip_strip_add(
1068
1081
 
1069
1082
  :type execution_context: int | str | None
1070
1083
  :type undo: bool | None
1084
+ :param move_strips: Move Strips, Move strips after adding them to the timeline
1085
+ :type move_strips: bool | None
1071
1086
  :param frame_start: Start Frame, Start frame of the sequence strip
1072
1087
  :type frame_start: int | None
1073
1088
  :param channel: Channel, Channel to place this strip into
@@ -1356,6 +1371,7 @@ def scene_strip_add(
1356
1371
  undo: bool | None = None,
1357
1372
  /,
1358
1373
  *,
1374
+ move_strips: bool | None = True,
1359
1375
  frame_start: int | None = 0,
1360
1376
  channel: int | None = 1,
1361
1377
  replace_sel: bool | None = True,
@@ -1368,6 +1384,8 @@ def scene_strip_add(
1368
1384
 
1369
1385
  :type execution_context: int | str | None
1370
1386
  :type undo: bool | None
1387
+ :param move_strips: Move Strips, Move strips after adding them to the timeline
1388
+ :type move_strips: bool | None
1371
1389
  :param frame_start: Start Frame, Start frame of the sequence strip
1372
1390
  :type frame_start: int | None
1373
1391
  :param channel: Channel, Channel to place this strip into
@@ -1389,6 +1407,7 @@ def scene_strip_add_new(
1389
1407
  undo: bool | None = None,
1390
1408
  /,
1391
1409
  *,
1410
+ move_strips: bool | None = True,
1392
1411
  frame_start: int | None = 0,
1393
1412
  channel: int | None = 1,
1394
1413
  replace_sel: bool | None = True,
@@ -1401,6 +1420,8 @@ def scene_strip_add_new(
1401
1420
 
1402
1421
  :type execution_context: int | str | None
1403
1422
  :type undo: bool | None
1423
+ :param move_strips: Move Strips, Move strips after adding them to the timeline
1424
+ :type move_strips: bool | None
1404
1425
  :param frame_start: Start Frame, Start frame of the sequence strip
1405
1426
  :type frame_start: int | None
1406
1427
  :param channel: Channel, Channel to place this strip into
@@ -1815,6 +1836,7 @@ def sound_strip_add(
1815
1836
  "ASSET_CATALOG",
1816
1837
  ]
1817
1838
  | None = "",
1839
+ move_strips: bool | None = True,
1818
1840
  frame_start: int | None = 0,
1819
1841
  channel: int | None = 1,
1820
1842
  replace_sel: bool | None = True,
@@ -1906,6 +1928,8 @@ def sound_strip_add(
1906
1928
  ASSET_CATALOG
1907
1929
  Asset Catalog -- Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
1908
1930
  :type sort_method: typing.Literal['DEFAULT','FILE_SORT_ALPHA','FILE_SORT_EXTENSION','FILE_SORT_TIME','FILE_SORT_SIZE','ASSET_CATALOG'] | None
1931
+ :param move_strips: Move Strips, Move strips after adding them to the timeline
1932
+ :type move_strips: bool | None
1909
1933
  :param frame_start: Start Frame, Start frame of the sequence strip
1910
1934
  :type frame_start: int | None
1911
1935
  :param channel: Channel, Channel to place this strip into
@@ -627,6 +627,9 @@ def seq_slide(
627
627
  value: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
628
628
  use_restore_handle_selection: bool | None = False,
629
629
  snap: bool | None = False,
630
+ texture_space: bool | None = False,
631
+ remove_on_cancel: bool | None = False,
632
+ use_duplicated_keyframes: bool | None = False,
630
633
  view2d_edge_pan: bool | None = False,
631
634
  release_confirm: bool | None = False,
632
635
  use_accurate: bool | None = False,
@@ -641,6 +644,12 @@ def seq_slide(
641
644
  :type use_restore_handle_selection: bool | None
642
645
  :param snap: Use Snapping Options
643
646
  :type snap: bool | None
647
+ :param texture_space: Edit Texture Space, Edit object data texture space
648
+ :type texture_space: bool | None
649
+ :param remove_on_cancel: Remove on Cancel, Remove elements on cancel
650
+ :type remove_on_cancel: bool | None
651
+ :param use_duplicated_keyframes: Duplicated Keyframes, Transform duplicated keyframes
652
+ :type use_duplicated_keyframes: bool | None
644
653
  :param view2d_edge_pan: Edge Pan, Enable edge panning in 2D view
645
654
  :type view2d_edge_pan: bool | None
646
655
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
@@ -1985,7 +1985,6 @@ type MeshSelectModeUvItems = typing.Literal[
1985
1985
  "VERTEX", # Vertex.Vertex selection mode.
1986
1986
  "EDGE", # Edge.Edge selection mode.
1987
1987
  "FACE", # Face.Face selection mode.
1988
- "ISLAND", # Island.Island selection mode.
1989
1988
  ]
1990
1989
  type MetaelemTypeItems = typing.Literal[
1991
1990
  "BALL", # Ball.