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

@@ -33,6 +33,32 @@ class NODE_FH_image_node(bpy.types.FileHandler):
33
33
  :param context:
34
34
  """
35
35
 
36
+ class NODE_OT_add_closure_zone(NodeAddZoneOperator, bpy.types.Operator):
37
+ """Add a Closure zone"""
38
+
39
+ add_default_geometry_link: typing.Any
40
+ bl_idname: typing.Any
41
+ bl_label: typing.Any
42
+ bl_options: typing.Any
43
+ bl_rna: typing.Any
44
+ id_data: typing.Any
45
+ input_node_type: typing.Any
46
+ output_node_type: typing.Any
47
+
48
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
49
+ """
50
+
51
+ :return: The RNA type or default when not found.
52
+ :rtype: bpy.types.Struct
53
+ """
54
+
55
+ def bl_rna_get_subclass_py(self) -> typing.Any:
56
+ """
57
+
58
+ :return: The class or default when not found.
59
+ :rtype: typing.Any
60
+ """
61
+
36
62
  class NODE_OT_add_foreach_geometry_element_zone(
37
63
  NodeAddZoneOperator, bpy.types.Operator
38
64
  ):
@@ -30,6 +30,7 @@ class NODE_MT_category_layout(bpy.types.Menu):
30
30
  :param _context:
31
31
  """
32
32
 
33
+ def add_closure_zone(layout, label): ...
33
34
  def add_foreach_geometry_element_zone(layout, label): ...
34
35
  def add_node_type(layout, node_type, *, label=None, poll=None, search_weight=0.0):
35
36
  """Add a node type to a menu."""
@@ -837,6 +837,32 @@ class NODE_MT_geometry_node_GEO_GREASE_PENCIL_READ(bpy.types.Menu):
837
837
  :param _context:
838
838
  """
839
839
 
840
+ class NODE_MT_geometry_node_GEO_GREASE_PENCIL_WRITE(bpy.types.Menu):
841
+ bl_idname: typing.Any
842
+ bl_label: typing.Any
843
+ bl_rna: typing.Any
844
+ id_data: typing.Any
845
+
846
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
847
+ """
848
+
849
+ :return: The RNA type or default when not found.
850
+ :rtype: bpy.types.Struct
851
+ """
852
+
853
+ def bl_rna_get_subclass_py(self) -> typing.Any:
854
+ """
855
+
856
+ :return: The class or default when not found.
857
+ :rtype: typing.Any
858
+ """
859
+
860
+ def draw(self, _context):
861
+ """
862
+
863
+ :param _context:
864
+ """
865
+
840
866
  class NODE_MT_geometry_node_GEO_INPUT(bpy.types.Menu):
841
867
  bl_idname: typing.Any
842
868
  bl_label: typing.Any
@@ -26,6 +26,27 @@ class RENDER_MT_framerate_presets(bpy.types.Menu):
26
26
  :rtype: typing.Any
27
27
  """
28
28
 
29
+ class RENDER_MT_pixeldensity_presets(bpy.types.Menu):
30
+ bl_label: typing.Any
31
+ bl_rna: typing.Any
32
+ id_data: typing.Any
33
+ preset_operator: typing.Any
34
+ preset_subdir: typing.Any
35
+
36
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
37
+ """
38
+
39
+ :return: The RNA type or default when not found.
40
+ :rtype: bpy.types.Struct
41
+ """
42
+
43
+ def bl_rna_get_subclass_py(self) -> typing.Any:
44
+ """
45
+
46
+ :return: The class or default when not found.
47
+ :rtype: typing.Any
48
+ """
49
+
29
50
  class RENDER_PT_encoding(RenderOutputButtonsPanel, bpy.types.Panel):
30
51
  COMPAT_ENGINES: typing.Any
31
52
  bl_context: typing.Any
@@ -329,6 +350,45 @@ class RENDER_PT_output_color_management(RenderOutputButtonsPanel, bpy.types.Pane
329
350
  :param context:
330
351
  """
331
352
 
353
+ class RENDER_PT_output_pixel_density(RenderOutputButtonsPanel, bpy.types.Panel):
354
+ COMPAT_ENGINES: typing.Any
355
+ bl_context: typing.Any
356
+ bl_label: typing.Any
357
+ bl_options: typing.Any
358
+ bl_parent_id: typing.Any
359
+ bl_region_type: typing.Any
360
+ bl_rna: typing.Any
361
+ bl_space_type: typing.Any
362
+ id_data: typing.Any
363
+
364
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
365
+ """
366
+
367
+ :return: The RNA type or default when not found.
368
+ :rtype: bpy.types.Struct
369
+ """
370
+
371
+ def bl_rna_get_subclass_py(self) -> typing.Any:
372
+ """
373
+
374
+ :return: The class or default when not found.
375
+ :rtype: typing.Any
376
+ """
377
+
378
+ def draw(self, context):
379
+ """
380
+
381
+ :param context:
382
+ """
383
+
384
+ @staticmethod
385
+ def draw_pixeldensity(layout, rd):
386
+ """
387
+
388
+ :param layout:
389
+ :param rd:
390
+ """
391
+
332
392
  class RENDER_PT_output_views(RenderOutputButtonsPanel, bpy.types.Panel):
333
393
  COMPAT_ENGINES: typing.Any
334
394
  bl_context: typing.Any
@@ -1188,6 +1188,75 @@ class RENDER_PT_gpencil(RenderButtonsPanel, bpy.types.Panel):
1188
1188
  :param context:
1189
1189
  """
1190
1190
 
1191
+ @classmethod
1192
+ def poll(cls, context):
1193
+ """
1194
+
1195
+ :param context:
1196
+ """
1197
+
1198
+ class RENDER_PT_grease_pencil_render(RenderButtonsPanel, bpy.types.Panel):
1199
+ COMPAT_ENGINES: typing.Any
1200
+ bl_context: typing.Any
1201
+ bl_label: typing.Any
1202
+ bl_options: typing.Any
1203
+ bl_parent_id: typing.Any
1204
+ bl_region_type: typing.Any
1205
+ bl_rna: typing.Any
1206
+ bl_space_type: typing.Any
1207
+ id_data: typing.Any
1208
+
1209
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1210
+ """
1211
+
1212
+ :return: The RNA type or default when not found.
1213
+ :rtype: bpy.types.Struct
1214
+ """
1215
+
1216
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1217
+ """
1218
+
1219
+ :return: The class or default when not found.
1220
+ :rtype: typing.Any
1221
+ """
1222
+
1223
+ def draw(self, context):
1224
+ """
1225
+
1226
+ :param context:
1227
+ """
1228
+
1229
+ class RENDER_PT_grease_pencil_viewport(RenderButtonsPanel, bpy.types.Panel):
1230
+ COMPAT_ENGINES: typing.Any
1231
+ bl_context: typing.Any
1232
+ bl_label: typing.Any
1233
+ bl_options: typing.Any
1234
+ bl_parent_id: typing.Any
1235
+ bl_region_type: typing.Any
1236
+ bl_rna: typing.Any
1237
+ bl_space_type: typing.Any
1238
+ id_data: typing.Any
1239
+
1240
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1241
+ """
1242
+
1243
+ :return: The RNA type or default when not found.
1244
+ :rtype: bpy.types.Struct
1245
+ """
1246
+
1247
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1248
+ """
1249
+
1250
+ :return: The class or default when not found.
1251
+ :rtype: typing.Any
1252
+ """
1253
+
1254
+ def draw(self, context):
1255
+ """
1256
+
1257
+ :param context:
1258
+ """
1259
+
1191
1260
  class RENDER_PT_hydra_debug(RenderButtonsPanel, bpy.types.Panel):
1192
1261
  COMPAT_ENGINES: typing.Any
1193
1262
  bl_context: typing.Any
@@ -1045,7 +1045,7 @@ class IMAGE_PT_overlay_image(bpy.types.Panel):
1045
1045
  :param context:
1046
1046
  """
1047
1047
 
1048
- class IMAGE_PT_overlay_texture_paint(bpy.types.Panel):
1048
+ class IMAGE_PT_overlay_uv_display(bpy.types.Panel):
1049
1049
  bl_label: typing.Any
1050
1050
  bl_parent_id: typing.Any
1051
1051
  bl_region_type: typing.Any
bl_ui_utils/__init__.pyi CHANGED
@@ -2,4 +2,3 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import numpy.typing as npt
5
- from . import layout as layout
@@ -1771,6 +1771,8 @@ type IconItems = typing.Literal[
1771
1771
  "NODE_SOCKET_ROTATION", # NODE_SOCKET_ROTATION.
1772
1772
  "NODE_SOCKET_MENU", # NODE_SOCKET_MENU.
1773
1773
  "NODE_SOCKET_MATRIX", # NODE_SOCKET_MATRIX.
1774
+ "NODE_SOCKET_BUNDLE", # NODE_SOCKET_BUNDLE.
1775
+ "NODE_SOCKET_CLOSURE", # NODE_SOCKET_CLOSURE.
1774
1776
  ]
1775
1777
  type IdTypeItems = typing.Literal[
1776
1778
  "ACTION", # Action.
@@ -2183,6 +2185,8 @@ type NodeSocketDataTypeItems = typing.Literal[
2183
2185
  "COLLECTION", # Collection.
2184
2186
  "TEXTURE", # Texture.
2185
2187
  "MATERIAL", # Material.
2188
+ "BUNDLE", # Bundle.
2189
+ "CLOSURE", # Closure.
2186
2190
  ]
2187
2191
  type NodeSocketInOutItems = typing.Literal[
2188
2192
  "IN", # Input.
@@ -2206,6 +2210,8 @@ type NodeSocketTypeItems = typing.Literal[
2206
2210
  "TEXTURE", # Texture.
2207
2211
  "MATERIAL", # Material.
2208
2212
  "MENU", # Menu.
2213
+ "BUNDLE", # Bundle.
2214
+ "CLOSURE", # Closure.
2209
2215
  ]
2210
2216
  type NodeTreeInterfaceItemTypeItems = typing.Literal[
2211
2217
  "SOCKET", # Socket.
bpy/app/__init__.pyi CHANGED
@@ -98,7 +98,7 @@ build_linkflags: typing.Any
98
98
  """
99
99
 
100
100
  build_options: typing.Any
101
- """ Constant value bpy.app.build_options(bullet=True, codec_avi=False, codec_ffmpeg=True, codec_sndfile=True, compositor_cpu=True, cycles=True, cycles_osl=True, freestyle=True, image_cineon=True, image_dds=True, image_hdr=True, image_openexr=True, image_openjpeg=True, image_tiff=True, input_ndof=True, audaspace=True, international=True, openal=True, opensubdiv=True, sdl=False, coreaudio=False, jack=False, pulseaudio=False, wasapi=False, libmv=True, mod_oceansim=True, mod_remesh=True, collada=True, io_wavefront_obj=True, io_ply=True, io_stl=True, io_gpencil=True, opencolorio=True, openmp=True, openvdb=True, alembic=True, usd=True, fluid=True, xr_openxr=True, potrace=True, pugixml=True, haru=True)
101
+ """ Constant value bpy.app.build_options(bullet=True, codec_avi=False, codec_ffmpeg=True, codec_sndfile=True, compositor_cpu=True, cycles=True, cycles_osl=True, freestyle=True, image_cineon=True, image_dds=True, image_hdr=True, image_openexr=True, image_openjpeg=True, image_tiff=True, input_ndof=True, audaspace=True, international=True, openal=True, opensubdiv=True, sdl=False, coreaudio=False, jack=False, pulseaudio=False, wasapi=False, libmv=True, mod_oceansim=True, mod_remesh=True, collada=True, io_wavefront_obj=True, io_ply=True, io_stl=True, io_gpencil=True, opencolorio=True, openmp=False, openvdb=True, alembic=True, usd=True, fluid=True, xr_openxr=True, potrace=True, pugixml=True, haru=True)
102
102
  """
103
103
 
104
104
  build_platform: typing.Any
bpy/ops/node/__init__.pyi CHANGED
@@ -16,6 +16,28 @@ def activate_viewer(
16
16
  :type undo: bool | None
17
17
  """
18
18
 
19
+ def add_closure_zone(
20
+ execution_context: int | str | None = None,
21
+ undo: bool | None = None,
22
+ /,
23
+ *,
24
+ use_transform: bool | None = False,
25
+ settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
26
+ | None = None,
27
+ offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
28
+ ):
29
+ """Add a Closure zone
30
+
31
+ :type execution_context: int | str | None
32
+ :type undo: bool | None
33
+ :param use_transform: Use Transform, Start transform operator after inserting the node
34
+ :type use_transform: bool | None
35
+ :param settings: Settings, Settings to be applied on the newly created node
36
+ :type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] | None
37
+ :param offset: Offset, Offset of nodes from the cursor when added
38
+ :type offset: collections.abc.Iterable[float] | None
39
+ """
40
+
19
41
  def add_collection(
20
42
  execution_context: int | str | None = None,
21
43
  undo: bool | None = None,
@@ -566,6 +588,72 @@ def clipboard_paste(
566
588
  :type offset: collections.abc.Iterable[float] | None
567
589
  """
568
590
 
591
+ def closure_input_item_add(
592
+ execution_context: int | str | None = None, undo: bool | None = None
593
+ ):
594
+ """Add item below active item
595
+
596
+ :type execution_context: int | str | None
597
+ :type undo: bool | None
598
+ """
599
+
600
+ def closure_input_item_move(
601
+ execution_context: int | str | None = None,
602
+ undo: bool | None = None,
603
+ /,
604
+ *,
605
+ direction: typing.Literal["UP", "DOWN"] | None = "UP",
606
+ ):
607
+ """Move active item
608
+
609
+ :type execution_context: int | str | None
610
+ :type undo: bool | None
611
+ :param direction: Direction, Move direction
612
+ :type direction: typing.Literal['UP','DOWN'] | None
613
+ """
614
+
615
+ def closure_input_item_remove(
616
+ execution_context: int | str | None = None, undo: bool | None = None
617
+ ):
618
+ """Remove active item
619
+
620
+ :type execution_context: int | str | None
621
+ :type undo: bool | None
622
+ """
623
+
624
+ def closure_output_item_add(
625
+ execution_context: int | str | None = None, undo: bool | None = None
626
+ ):
627
+ """Add item below active item
628
+
629
+ :type execution_context: int | str | None
630
+ :type undo: bool | None
631
+ """
632
+
633
+ def closure_output_item_move(
634
+ execution_context: int | str | None = None,
635
+ undo: bool | None = None,
636
+ /,
637
+ *,
638
+ direction: typing.Literal["UP", "DOWN"] | None = "UP",
639
+ ):
640
+ """Move active item
641
+
642
+ :type execution_context: int | str | None
643
+ :type undo: bool | None
644
+ :param direction: Direction, Move direction
645
+ :type direction: typing.Literal['UP','DOWN'] | None
646
+ """
647
+
648
+ def closure_output_item_remove(
649
+ execution_context: int | str | None = None, undo: bool | None = None
650
+ ):
651
+ """Remove active item
652
+
653
+ :type execution_context: int | str | None
654
+ :type undo: bool | None
655
+ """
656
+
569
657
  def collapse_hide_unused_toggle(
570
658
  execution_context: int | str | None = None, undo: bool | None = None
571
659
  ):
@@ -575,6 +663,39 @@ def collapse_hide_unused_toggle(
575
663
  :type undo: bool | None
576
664
  """
577
665
 
666
+ def combine_bundle_item_add(
667
+ execution_context: int | str | None = None, undo: bool | None = None
668
+ ):
669
+ """Add item below active item
670
+
671
+ :type execution_context: int | str | None
672
+ :type undo: bool | None
673
+ """
674
+
675
+ def combine_bundle_item_move(
676
+ execution_context: int | str | None = None,
677
+ undo: bool | None = None,
678
+ /,
679
+ *,
680
+ direction: typing.Literal["UP", "DOWN"] | None = "UP",
681
+ ):
682
+ """Move active item
683
+
684
+ :type execution_context: int | str | None
685
+ :type undo: bool | None
686
+ :param direction: Direction, Move direction
687
+ :type direction: typing.Literal['UP','DOWN'] | None
688
+ """
689
+
690
+ def combine_bundle_item_remove(
691
+ execution_context: int | str | None = None, undo: bool | None = None
692
+ ):
693
+ """Remove active item
694
+
695
+ :type execution_context: int | str | None
696
+ :type undo: bool | None
697
+ """
698
+
578
699
  def connect_to_output(
579
700
  execution_context: int | str | None = None,
580
701
  undo: bool | None = None,
@@ -775,6 +896,72 @@ def enum_definition_item_remove(
775
896
  :type undo: bool | None
776
897
  """
777
898
 
899
+ def evaluate_closure_input_item_add(
900
+ execution_context: int | str | None = None, undo: bool | None = None
901
+ ):
902
+ """Add item below active item
903
+
904
+ :type execution_context: int | str | None
905
+ :type undo: bool | None
906
+ """
907
+
908
+ def evaluate_closure_input_item_move(
909
+ execution_context: int | str | None = None,
910
+ undo: bool | None = None,
911
+ /,
912
+ *,
913
+ direction: typing.Literal["UP", "DOWN"] | None = "UP",
914
+ ):
915
+ """Move active item
916
+
917
+ :type execution_context: int | str | None
918
+ :type undo: bool | None
919
+ :param direction: Direction, Move direction
920
+ :type direction: typing.Literal['UP','DOWN'] | None
921
+ """
922
+
923
+ def evaluate_closure_input_item_remove(
924
+ execution_context: int | str | None = None, undo: bool | None = None
925
+ ):
926
+ """Remove active item
927
+
928
+ :type execution_context: int | str | None
929
+ :type undo: bool | None
930
+ """
931
+
932
+ def evaluate_closure_output_item_add(
933
+ execution_context: int | str | None = None, undo: bool | None = None
934
+ ):
935
+ """Add item below active item
936
+
937
+ :type execution_context: int | str | None
938
+ :type undo: bool | None
939
+ """
940
+
941
+ def evaluate_closure_output_item_move(
942
+ execution_context: int | str | None = None,
943
+ undo: bool | None = None,
944
+ /,
945
+ *,
946
+ direction: typing.Literal["UP", "DOWN"] | None = "UP",
947
+ ):
948
+ """Move active item
949
+
950
+ :type execution_context: int | str | None
951
+ :type undo: bool | None
952
+ :param direction: Direction, Move direction
953
+ :type direction: typing.Literal['UP','DOWN'] | None
954
+ """
955
+
956
+ def evaluate_closure_output_item_remove(
957
+ execution_context: int | str | None = None, undo: bool | None = None
958
+ ):
959
+ """Remove active item
960
+
961
+ :type execution_context: int | str | None
962
+ :type undo: bool | None
963
+ """
964
+
778
965
  def find_node(execution_context: int | str | None = None, undo: bool | None = None):
779
966
  """Search for a node by name and focus and select it
780
967
 
@@ -1642,6 +1829,39 @@ def select_same_type_step(
1642
1829
  :type prev: bool | None
1643
1830
  """
1644
1831
 
1832
+ def separate_bundle_item_add(
1833
+ execution_context: int | str | None = None, undo: bool | None = None
1834
+ ):
1835
+ """Add item below active item
1836
+
1837
+ :type execution_context: int | str | None
1838
+ :type undo: bool | None
1839
+ """
1840
+
1841
+ def separate_bundle_item_move(
1842
+ execution_context: int | str | None = None,
1843
+ undo: bool | None = None,
1844
+ /,
1845
+ *,
1846
+ direction: typing.Literal["UP", "DOWN"] | None = "UP",
1847
+ ):
1848
+ """Move active item
1849
+
1850
+ :type execution_context: int | str | None
1851
+ :type undo: bool | None
1852
+ :param direction: Direction, Move direction
1853
+ :type direction: typing.Literal['UP','DOWN'] | None
1854
+ """
1855
+
1856
+ def separate_bundle_item_remove(
1857
+ execution_context: int | str | None = None, undo: bool | None = None
1858
+ ):
1859
+ """Remove active item
1860
+
1861
+ :type execution_context: int | str | None
1862
+ :type undo: bool | None
1863
+ """
1864
+
1645
1865
  def shader_script_update(
1646
1866
  execution_context: int | str | None = None, undo: bool | None = None
1647
1867
  ):
@@ -3980,6 +3980,15 @@ def shape_key_clear(
3980
3980
  :type undo: bool | None
3981
3981
  """
3982
3982
 
3983
+ def shape_key_copy(
3984
+ execution_context: int | str | None = None, undo: bool | None = None
3985
+ ):
3986
+ """Duplicate the acive shape key
3987
+
3988
+ :type execution_context: int | str | None
3989
+ :type undo: bool | None
3990
+ """
3991
+
3983
3992
  def shape_key_lock(
3984
3993
  execution_context: int | str | None = None,
3985
3994
  undo: bool | None = None,
@@ -718,6 +718,7 @@ def snap_selected_to_cursor(
718
718
  /,
719
719
  *,
720
720
  use_offset: bool | None = True,
721
+ use_rotation: bool | None = False,
721
722
  ):
722
723
  """Snap selected item(s) to the 3D cursor
723
724
 
@@ -725,6 +726,8 @@ def snap_selected_to_cursor(
725
726
  :type undo: bool | None
726
727
  :param use_offset: Offset, If the selection should be snapped as a whole or by each object center
727
728
  :type use_offset: bool | None
729
+ :param use_rotation: Rotation, If the selection should be rotated to match the cursor
730
+ :type use_rotation: bool | None
728
731
  """
729
732
 
730
733
  def snap_selected_to_grid(
bpy/path/__init__.pyi CHANGED
@@ -105,7 +105,9 @@ def is_subdir(path: bytes | str, directory) -> bool:
105
105
  :rtype: bool
106
106
  """
107
107
 
108
- def module_names(path: str, *, recursive: bool = False, package: str = "") -> list[str]:
108
+ def module_names(
109
+ path: str, *, recursive: bool = False, package: str = ""
110
+ ) -> list[tuple[str, str]]:
109
111
  """Return a list of modules which can be imported from path.
110
112
 
111
113
  :param path: a directory to scan.
@@ -115,7 +117,7 @@ def module_names(path: str, *, recursive: bool = False, package: str = "") -> li
115
117
  :param package: Optional string, used as the prefix for module names (without the trailing ".").
116
118
  :type package: str
117
119
  :return: a list of string pairs (module_name, module_file).
118
- :rtype: list[str]
120
+ :rtype: list[tuple[str, str]]
119
121
  """
120
122
 
121
123
  def native_pathsep(path: str) -> str: