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

Files changed (44) hide show
  1. bl_ui/node_add_menu_shader/__init__.pyi +0 -1
  2. bl_ui/properties_data_camera/__init__.pyi +0 -2
  3. bl_ui/space_node/__init__.pyi +0 -1
  4. bmesh/ops/__init__.pyi +1 -1
  5. bpy/__init__.pyi +0 -1
  6. bpy/_typing/__init__.pyi +4 -0
  7. bpy/{typing → _typing/rna_enums}/__init__.pyi +9 -9
  8. bpy/app/__init__.pyi +3 -3
  9. bpy/ops/action/__init__.pyi +13 -13
  10. bpy/ops/boid/__init__.pyi +3 -3
  11. bpy/ops/brush/__init__.pyi +3 -3
  12. bpy/ops/clip/__init__.pyi +3 -3
  13. bpy/ops/curve/__init__.pyi +5 -5
  14. bpy/ops/curves/__init__.pyi +9 -9
  15. bpy/ops/dpaint/__init__.pyi +3 -3
  16. bpy/ops/geometry/__init__.pyi +19 -19
  17. bpy/ops/graph/__init__.pyi +17 -17
  18. bpy/ops/grease_pencil/__init__.pyi +9 -27
  19. bpy/ops/image/__init__.pyi +9 -9
  20. bpy/ops/lattice/__init__.pyi +3 -3
  21. bpy/ops/mesh/__init__.pyi +54 -43
  22. bpy/ops/nla/__init__.pyi +3 -3
  23. bpy/ops/node/__init__.pyi +3 -3
  24. bpy/ops/object/__init__.pyi +69 -69
  25. bpy/ops/outliner/__init__.pyi +5 -5
  26. bpy/ops/paint/__init__.pyi +7 -7
  27. bpy/ops/pose/__init__.pyi +13 -13
  28. bpy/ops/rigidbody/__init__.pyi +9 -9
  29. bpy/ops/scene/__init__.pyi +10 -9
  30. bpy/ops/screen/__init__.pyi +7 -7
  31. bpy/ops/sequencer/__init__.pyi +3 -3
  32. bpy/ops/sound/__init__.pyi +3 -3
  33. bpy/ops/transform/__init__.pyi +87 -73
  34. bpy/ops/uv/__init__.pyi +3 -3
  35. bpy/ops/wm/__init__.pyi +18 -15
  36. bpy/props/__init__.pyi +61 -63
  37. bpy/types/__init__.pyi +31646 -31532
  38. bpy/utils/__init__.pyi +3 -10
  39. {fake_bpy_module-20250103.dist-info → fake_bpy_module-20250108.dist-info}/METADATA +1 -1
  40. {fake_bpy_module-20250103.dist-info → fake_bpy_module-20250108.dist-info}/RECORD +44 -43
  41. {fake_bpy_module-20250103.dist-info → fake_bpy_module-20250108.dist-info}/WHEEL +1 -1
  42. freestyle/utils/__init__.pyi +1 -1
  43. gpu_extras/batch/__init__.pyi +3 -2
  44. {fake_bpy_module-20250103.dist-info → fake_bpy_module-20250108.dist-info}/top_level.txt +0 -0
@@ -1,9 +1,9 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
+ import bpy._typing.rna_enums
4
5
  import bpy.ops.transform
5
6
  import bpy.types
6
- import bpy.typing
7
7
 
8
8
  def active_frame_delete(
9
9
  execution_context: int | str | None = None,
@@ -445,7 +445,7 @@ def interpolate_sequence(
445
445
  "ELASTIC",
446
446
  ]
447
447
  | None = "LINEAR",
448
- easing: bpy.typing.BeztripleInterpolationEasingItems | None = "EASE_IN",
448
+ easing: bpy._typing.rna_enums.BeztripleInterpolationEasingItems | None = "EASE_IN",
449
449
  back: float | None = 1.702,
450
450
  amplitude: float | None = 0.15,
451
451
  period: float | None = 0.15,
@@ -505,7 +505,7 @@ def interpolate_sequence(
505
505
  Elastic -- Exponentially decaying sine wave, like an elastic band.
506
506
  :type type: typing.Literal['LINEAR','CUSTOM','SINE','QUAD','CUBIC','QUART','QUINT','EXPO','CIRC','BACK','BOUNCE','ELASTIC'] | None
507
507
  :param easing: Easing, Which ends of the segment between the preceding and following Grease Pencil frames easing interpolation is applied to
508
- :type easing: bpy.typing.BeztripleInterpolationEasingItems | None
508
+ :type easing: bpy._typing.rna_enums.BeztripleInterpolationEasingItems | None
509
509
  :param back: Back, Amount of overshoot for 'back' easing
510
510
  :type back: float | None
511
511
  :param amplitude: Amplitude, Amount to boost elastic bounces for 'elastic' easing
@@ -784,24 +784,6 @@ def layer_remove(execution_context: int | str | None = None, undo: bool | None =
784
784
  :type undo: bool | None
785
785
  """
786
786
 
787
- def layer_reorder(
788
- execution_context: int | str | None = None,
789
- undo: bool | None = None,
790
- /,
791
- *,
792
- target_layer_name: str = "Layer",
793
- location: typing.Literal["ABOVE", "BELOW"] | None = "ABOVE",
794
- ):
795
- """Reorder the active Grease Pencil layer
796
-
797
- :type execution_context: int | str | None
798
- :type undo: bool | None
799
- :param target_layer_name: Target Name, Name of the target layer
800
- :type target_layer_name: str
801
- :param location: Location
802
- :type location: typing.Literal['ABOVE','BELOW'] | None
803
- """
804
-
805
787
  def layer_reveal(execution_context: int | str | None = None, undo: bool | None = None):
806
788
  """Show all Grease Pencil layers
807
789
 
@@ -1370,7 +1352,7 @@ def set_curve_type(
1370
1352
  undo: bool | None = None,
1371
1353
  /,
1372
1354
  *,
1373
- type: bpy.typing.CurvesTypeItems | None = "POLY",
1355
+ type: bpy._typing.rna_enums.CurvesTypeItems | None = "POLY",
1374
1356
  use_handles: bool | None = False,
1375
1357
  ):
1376
1358
  """Set type of selected curves
@@ -1378,7 +1360,7 @@ def set_curve_type(
1378
1360
  :type execution_context: int | str | None
1379
1361
  :type undo: bool | None
1380
1362
  :param type: Type, Curve type
1381
- :type type: bpy.typing.CurvesTypeItems | None
1363
+ :type type: bpy._typing.rna_enums.CurvesTypeItems | None
1382
1364
  :param use_handles: Handles, Take handle information into account in the conversion
1383
1365
  :type use_handles: bool | None
1384
1366
  """
@@ -1388,14 +1370,14 @@ def set_handle_type(
1388
1370
  undo: bool | None = None,
1389
1371
  /,
1390
1372
  *,
1391
- type: bpy.typing.CurvesHandleTypeItems | None = "AUTO",
1373
+ type: bpy._typing.rna_enums.CurvesHandleTypeItems | None = "AUTO",
1392
1374
  ):
1393
1375
  """Set the handle type for bezier curves
1394
1376
 
1395
1377
  :type execution_context: int | str | None
1396
1378
  :type undo: bool | None
1397
1379
  :param type: Type
1398
- :type type: bpy.typing.CurvesHandleTypeItems | None
1380
+ :type type: bpy._typing.rna_enums.CurvesHandleTypeItems | None
1399
1381
  """
1400
1382
 
1401
1383
  def set_material(
@@ -1418,14 +1400,14 @@ def set_selection_mode(
1418
1400
  undo: bool | None = None,
1419
1401
  /,
1420
1402
  *,
1421
- mode: bpy.typing.GreasePencilSelectmodeItems | None = "POINT",
1403
+ mode: bpy._typing.rna_enums.GreasePencilSelectmodeItems | None = "POINT",
1422
1404
  ):
1423
1405
  """Change the selection mode for Grease Pencil strokes
1424
1406
 
1425
1407
  :type execution_context: int | str | None
1426
1408
  :type undo: bool | None
1427
1409
  :param mode: Mode
1428
- :type mode: bpy.typing.GreasePencilSelectmodeItems | None
1410
+ :type mode: bpy._typing.rna_enums.GreasePencilSelectmodeItems | None
1429
1411
  """
1430
1412
 
1431
1413
  def set_start_point(
@@ -1,8 +1,8 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
+ import bpy._typing.rna_enums
4
5
  import bpy.types
5
- import bpy.typing
6
6
  import mathutils
7
7
 
8
8
  def add_render_slot(
@@ -659,7 +659,7 @@ def new(
659
659
  height: int | None = 1024,
660
660
  color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 1.0),
661
661
  alpha: bool | None = True,
662
- generated_type: bpy.typing.ImageGeneratedTypeItems | None = "BLANK",
662
+ generated_type: bpy._typing.rna_enums.ImageGeneratedTypeItems | None = "BLANK",
663
663
  float: bool | None = False,
664
664
  use_stereo_3d: bool | None = False,
665
665
  tiled: bool | None = False,
@@ -679,7 +679,7 @@ def new(
679
679
  :param alpha: Alpha, Create an image with an alpha channel
680
680
  :type alpha: bool | None
681
681
  :param generated_type: Generated Type, Fill the image with a grid for UV map testing
682
- :type generated_type: bpy.typing.ImageGeneratedTypeItems | None
682
+ :type generated_type: bpy._typing.rna_enums.ImageGeneratedTypeItems | None
683
683
  :param float: 32-bit Float, Create image with 32-bit floating-point bit depth
684
684
  :type float: bool | None
685
685
  :param use_stereo_3d: Stereo 3D, Create an image with left and right views
@@ -1243,7 +1243,7 @@ def tile_add(
1243
1243
  label: str = "",
1244
1244
  fill: bool | None = True,
1245
1245
  color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 1.0),
1246
- generated_type: bpy.typing.ImageGeneratedTypeItems | None = "BLANK",
1246
+ generated_type: bpy._typing.rna_enums.ImageGeneratedTypeItems | None = "BLANK",
1247
1247
  width: int | None = 1024,
1248
1248
  height: int | None = 1024,
1249
1249
  float: bool | None = False,
@@ -1264,7 +1264,7 @@ def tile_add(
1264
1264
  :param color: Color, Default fill color
1265
1265
  :type color: collections.abc.Iterable[float] | None
1266
1266
  :param generated_type: Generated Type, Fill the image with a grid for UV map testing
1267
- :type generated_type: bpy.typing.ImageGeneratedTypeItems | None
1267
+ :type generated_type: bpy._typing.rna_enums.ImageGeneratedTypeItems | None
1268
1268
  :param width: Width, Image width
1269
1269
  :type width: int | None
1270
1270
  :param height: Height, Image height
@@ -1281,7 +1281,7 @@ def tile_fill(
1281
1281
  /,
1282
1282
  *,
1283
1283
  color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 1.0),
1284
- generated_type: bpy.typing.ImageGeneratedTypeItems | None = "BLANK",
1284
+ generated_type: bpy._typing.rna_enums.ImageGeneratedTypeItems | None = "BLANK",
1285
1285
  width: int | None = 1024,
1286
1286
  height: int | None = 1024,
1287
1287
  float: bool | None = False,
@@ -1294,7 +1294,7 @@ def tile_fill(
1294
1294
  :param color: Color, Default fill color
1295
1295
  :type color: collections.abc.Iterable[float] | None
1296
1296
  :param generated_type: Generated Type, Fill the image with a grid for UV map testing
1297
- :type generated_type: bpy.typing.ImageGeneratedTypeItems | None
1297
+ :type generated_type: bpy._typing.rna_enums.ImageGeneratedTypeItems | None
1298
1298
  :param width: Width, Image width
1299
1299
  :type width: int | None
1300
1300
  :param height: Height, Image height
@@ -1317,7 +1317,7 @@ def unpack(
1317
1317
  undo: bool | None = None,
1318
1318
  /,
1319
1319
  *,
1320
- method: bpy.typing.UnpackMethodItems | None = "USE_LOCAL",
1320
+ method: bpy._typing.rna_enums.UnpackMethodItems | None = "USE_LOCAL",
1321
1321
  id: str = "",
1322
1322
  ):
1323
1323
  """Save an image packed in the .blend file to disk
@@ -1325,7 +1325,7 @@ def unpack(
1325
1325
  :type execution_context: int | str | None
1326
1326
  :type undo: bool | None
1327
1327
  :param method: Method, How to unpack
1328
- :type method: bpy.typing.UnpackMethodItems | None
1328
+ :type method: bpy._typing.rna_enums.UnpackMethodItems | None
1329
1329
  :param id: Image Name, Image data-block name to unpack
1330
1330
  :type id: str
1331
1331
  """
@@ -1,7 +1,7 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.typing
4
+ import bpy._typing.rna_enums
5
5
 
6
6
  def flip(
7
7
  execution_context: int | str | None = None,
@@ -64,7 +64,7 @@ def select_mirror(
64
64
  undo: bool | None = None,
65
65
  /,
66
66
  *,
67
- axis: set[bpy.typing.AxisFlagXyzItems] | None = {"X"},
67
+ axis: set[bpy._typing.rna_enums.AxisFlagXyzItems] | None = {"X"},
68
68
  extend: bool | None = False,
69
69
  ):
70
70
  """Select mirrored lattice points
@@ -72,7 +72,7 @@ def select_mirror(
72
72
  :type execution_context: int | str | None
73
73
  :type undo: bool | None
74
74
  :param axis: Axis
75
- :type axis: set[bpy.typing.AxisFlagXyzItems] | None
75
+ :type axis: set[bpy._typing.rna_enums.AxisFlagXyzItems] | None
76
76
  :param extend: Extend, Extend the selection
77
77
  :type extend: bool | None
78
78
  """
bpy/ops/mesh/__init__.pyi CHANGED
@@ -1,8 +1,8 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
+ import bpy._typing.rna_enums
4
5
  import bpy.ops.transform
5
- import bpy.typing
6
6
  import mathutils
7
7
 
8
8
  def attribute_set(
@@ -305,7 +305,8 @@ def bridge_edge_loops(
305
305
  interpolation: typing.Literal["LINEAR", "PATH", "SURFACE"] | None = "PATH",
306
306
  smoothness: float | None = 1.0,
307
307
  profile_shape_factor: float | None = 0.0,
308
- profile_shape: bpy.typing.ProportionalFalloffCurveOnlyItems | None = "SMOOTH",
308
+ profile_shape: bpy._typing.rna_enums.ProportionalFalloffCurveOnlyItems
309
+ | None = "SMOOTH",
309
310
  ):
310
311
  """Create a bridge of faces between two or more selected edge loops
311
312
 
@@ -328,7 +329,7 @@ def bridge_edge_loops(
328
329
  :param profile_shape_factor: Profile Factor, How much intermediary new edges are shrunk/expanded
329
330
  :type profile_shape_factor: float | None
330
331
  :param profile_shape: Profile Shape, Shape of the profile
331
- :type profile_shape: bpy.typing.ProportionalFalloffCurveOnlyItems | None
332
+ :type profile_shape: bpy._typing.rna_enums.ProportionalFalloffCurveOnlyItems | None
332
333
  """
333
334
 
334
335
  def colors_reverse(
@@ -461,7 +462,7 @@ def decimate(
461
462
  vertex_group_factor: float | None = 1.0,
462
463
  invert_vertex_group: bool | None = False,
463
464
  use_symmetry: bool | None = False,
464
- symmetry_axis: bpy.typing.AxisXyzItems | None = "Y",
465
+ symmetry_axis: bpy._typing.rna_enums.AxisXyzItems | None = "Y",
465
466
  ):
466
467
  """Simplify geometry by collapsing edges
467
468
 
@@ -478,7 +479,7 @@ def decimate(
478
479
  :param use_symmetry: Symmetry, Maintain symmetry on an axis
479
480
  :type use_symmetry: bool | None
480
481
  :param symmetry_axis: Axis, Axis of symmetry
481
- :type symmetry_axis: bpy.typing.AxisXyzItems | None
482
+ :type symmetry_axis: bpy._typing.rna_enums.AxisXyzItems | None
482
483
  """
483
484
 
484
485
  def delete(
@@ -588,7 +589,7 @@ def dissolve_limited(
588
589
  *,
589
590
  angle_limit: float | None = 0.0872665,
590
591
  use_dissolve_boundaries: bool | None = False,
591
- delimit: set[bpy.typing.MeshDelimitModeItems] | None = {"NORMAL"},
592
+ delimit: set[bpy._typing.rna_enums.MeshDelimitModeItems] | None = {"NORMAL"},
592
593
  ):
593
594
  """Dissolve selected edges and vertices, limited by the angle of surrounding geometry
594
595
 
@@ -599,7 +600,7 @@ def dissolve_limited(
599
600
  :param use_dissolve_boundaries: All Boundaries, Dissolve all vertices in between face boundaries
600
601
  :type use_dissolve_boundaries: bool | None
601
602
  :param delimit: Delimit, Delimit dissolve operation
602
- :type delimit: set[bpy.typing.MeshDelimitModeItems] | None
603
+ :type delimit: set[bpy._typing.rna_enums.MeshDelimitModeItems] | None
603
604
  """
604
605
 
605
606
  def dissolve_mode(
@@ -1461,7 +1462,8 @@ def loopcut(
1461
1462
  *,
1462
1463
  number_cuts: int | None = 1,
1463
1464
  smoothness: float | None = 0.0,
1464
- falloff: bpy.typing.ProportionalFalloffCurveOnlyItems | None = "INVERSE_SQUARE",
1465
+ falloff: bpy._typing.rna_enums.ProportionalFalloffCurveOnlyItems
1466
+ | None = "INVERSE_SQUARE",
1465
1467
  object_index: int | None = -1,
1466
1468
  edge_index: int | None = -1,
1467
1469
  mesh_select_mode_init: collections.abc.Iterable[bool] | None = (
@@ -1479,7 +1481,7 @@ def loopcut(
1479
1481
  :param smoothness: Smoothness, Smoothness factor
1480
1482
  :type smoothness: float | None
1481
1483
  :param falloff: Falloff, Falloff type of the feather
1482
- :type falloff: bpy.typing.ProportionalFalloffCurveOnlyItems | None
1484
+ :type falloff: bpy._typing.rna_enums.ProportionalFalloffCurveOnlyItems | None
1483
1485
  :param object_index: Object Index
1484
1486
  :type object_index: int | None
1485
1487
  :param edge_index: Edge Index
@@ -1819,7 +1821,8 @@ def polybuild_delete_at_cursor(
1819
1821
  *,
1820
1822
  mirror: bool | None = False,
1821
1823
  use_proportional_edit: bool | None = False,
1822
- proportional_edit_falloff: bpy.typing.ProportionalFalloffItems | None = "SMOOTH",
1824
+ proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
1825
+ | None = "SMOOTH",
1823
1826
  proportional_size: float | None = 1.0,
1824
1827
  use_proportional_connected: bool | None = False,
1825
1828
  use_proportional_projected: bool | None = False,
@@ -1835,7 +1838,7 @@ def polybuild_delete_at_cursor(
1835
1838
  :param use_proportional_edit: Proportional Editing
1836
1839
  :type use_proportional_edit: bool | None
1837
1840
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
1838
- :type proportional_edit_falloff: bpy.typing.ProportionalFalloffItems | None
1841
+ :type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
1839
1842
  :param proportional_size: Proportional Size
1840
1843
  :type proportional_size: float | None
1841
1844
  :param use_proportional_connected: Connected
@@ -1886,7 +1889,8 @@ def polybuild_face_at_cursor(
1886
1889
  create_quads: bool | None = True,
1887
1890
  mirror: bool | None = False,
1888
1891
  use_proportional_edit: bool | None = False,
1889
- proportional_edit_falloff: bpy.typing.ProportionalFalloffItems | None = "SMOOTH",
1892
+ proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
1893
+ | None = "SMOOTH",
1890
1894
  proportional_size: float | None = 1.0,
1891
1895
  use_proportional_connected: bool | None = False,
1892
1896
  use_proportional_projected: bool | None = False,
@@ -1904,7 +1908,7 @@ def polybuild_face_at_cursor(
1904
1908
  :param use_proportional_edit: Proportional Editing
1905
1909
  :type use_proportional_edit: bool | None
1906
1910
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
1907
- :type proportional_edit_falloff: bpy.typing.ProportionalFalloffItems | None
1911
+ :type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
1908
1912
  :param proportional_size: Proportional Size
1909
1913
  :type proportional_size: float | None
1910
1914
  :param use_proportional_connected: Connected
@@ -1942,7 +1946,8 @@ def polybuild_split_at_cursor(
1942
1946
  *,
1943
1947
  mirror: bool | None = False,
1944
1948
  use_proportional_edit: bool | None = False,
1945
- proportional_edit_falloff: bpy.typing.ProportionalFalloffItems | None = "SMOOTH",
1949
+ proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
1950
+ | None = "SMOOTH",
1946
1951
  proportional_size: float | None = 1.0,
1947
1952
  use_proportional_connected: bool | None = False,
1948
1953
  use_proportional_projected: bool | None = False,
@@ -1958,7 +1963,7 @@ def polybuild_split_at_cursor(
1958
1963
  :param use_proportional_edit: Proportional Editing
1959
1964
  :type use_proportional_edit: bool | None
1960
1965
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
1961
- :type proportional_edit_falloff: bpy.typing.ProportionalFalloffItems | None
1966
+ :type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
1962
1967
  :param proportional_size: Proportional Size
1963
1968
  :type proportional_size: float | None
1964
1969
  :param use_proportional_connected: Connected
@@ -1996,7 +2001,8 @@ def polybuild_transform_at_cursor(
1996
2001
  *,
1997
2002
  mirror: bool | None = False,
1998
2003
  use_proportional_edit: bool | None = False,
1999
- proportional_edit_falloff: bpy.typing.ProportionalFalloffItems | None = "SMOOTH",
2004
+ proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
2005
+ | None = "SMOOTH",
2000
2006
  proportional_size: float | None = 1.0,
2001
2007
  use_proportional_connected: bool | None = False,
2002
2008
  use_proportional_projected: bool | None = False,
@@ -2012,7 +2018,7 @@ def polybuild_transform_at_cursor(
2012
2018
  :param use_proportional_edit: Proportional Editing
2013
2019
  :type use_proportional_edit: bool | None
2014
2020
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
2015
- :type proportional_edit_falloff: bpy.typing.ProportionalFalloffItems | None
2021
+ :type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
2016
2022
  :param proportional_size: Proportional Size
2017
2023
  :type proportional_size: float | None
2018
2024
  :param use_proportional_connected: Connected
@@ -2692,17 +2698,19 @@ def quads_convert_to_tris(
2692
2698
  undo: bool | None = None,
2693
2699
  /,
2694
2700
  *,
2695
- quad_method: bpy.typing.ModifierTriangulateQuadMethodItems | None = "BEAUTY",
2696
- ngon_method: bpy.typing.ModifierTriangulateNgonMethodItems | None = "BEAUTY",
2701
+ quad_method: bpy._typing.rna_enums.ModifierTriangulateQuadMethodItems
2702
+ | None = "BEAUTY",
2703
+ ngon_method: bpy._typing.rna_enums.ModifierTriangulateNgonMethodItems
2704
+ | None = "BEAUTY",
2697
2705
  ):
2698
2706
  """Triangulate selected faces
2699
2707
 
2700
2708
  :type execution_context: int | str | None
2701
2709
  :type undo: bool | None
2702
2710
  :param quad_method: Quad Method, Method for splitting the quads into triangles
2703
- :type quad_method: bpy.typing.ModifierTriangulateQuadMethodItems | None
2711
+ :type quad_method: bpy._typing.rna_enums.ModifierTriangulateQuadMethodItems | None
2704
2712
  :param ngon_method: N-gon Method, Method for splitting the n-gons into triangles
2705
- :type ngon_method: bpy.typing.ModifierTriangulateNgonMethodItems | None
2713
+ :type ngon_method: bpy._typing.rna_enums.ModifierTriangulateNgonMethodItems | None
2706
2714
  """
2707
2715
 
2708
2716
  def region_to_loop(
@@ -2757,7 +2765,8 @@ def rip(
2757
2765
  *,
2758
2766
  mirror: bool | None = False,
2759
2767
  use_proportional_edit: bool | None = False,
2760
- proportional_edit_falloff: bpy.typing.ProportionalFalloffItems | None = "SMOOTH",
2768
+ proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
2769
+ | None = "SMOOTH",
2761
2770
  proportional_size: float | None = 1.0,
2762
2771
  use_proportional_connected: bool | None = False,
2763
2772
  use_proportional_projected: bool | None = False,
@@ -2774,7 +2783,7 @@ def rip(
2774
2783
  :param use_proportional_edit: Proportional Editing
2775
2784
  :type use_proportional_edit: bool | None
2776
2785
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
2777
- :type proportional_edit_falloff: bpy.typing.ProportionalFalloffItems | None
2786
+ :type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
2778
2787
  :param proportional_size: Proportional Size
2779
2788
  :type proportional_size: float | None
2780
2789
  :param use_proportional_connected: Connected
@@ -2796,7 +2805,8 @@ def rip_edge(
2796
2805
  *,
2797
2806
  mirror: bool | None = False,
2798
2807
  use_proportional_edit: bool | None = False,
2799
- proportional_edit_falloff: bpy.typing.ProportionalFalloffItems | None = "SMOOTH",
2808
+ proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
2809
+ | None = "SMOOTH",
2800
2810
  proportional_size: float | None = 1.0,
2801
2811
  use_proportional_connected: bool | None = False,
2802
2812
  use_proportional_projected: bool | None = False,
@@ -2812,7 +2822,7 @@ def rip_edge(
2812
2822
  :param use_proportional_edit: Proportional Editing
2813
2823
  :type use_proportional_edit: bool | None
2814
2824
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
2815
- :type proportional_edit_falloff: bpy.typing.ProportionalFalloffItems | None
2825
+ :type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
2816
2826
  :param proportional_size: Proportional Size
2817
2827
  :type proportional_size: float | None
2818
2828
  :param use_proportional_connected: Connected
@@ -2917,9 +2927,9 @@ def select_axis(
2917
2927
  undo: bool | None = None,
2918
2928
  /,
2919
2929
  *,
2920
- orientation: bpy.typing.TransformOrientationItems | None = "LOCAL",
2930
+ orientation: bpy._typing.rna_enums.TransformOrientationItems | None = "LOCAL",
2921
2931
  sign: typing.Literal["POS", "NEG", "ALIGN"] | None = "POS",
2922
- axis: bpy.typing.AxisXyzItems | None = "X",
2932
+ axis: bpy._typing.rna_enums.AxisXyzItems | None = "X",
2923
2933
  threshold: float | None = 0.0001,
2924
2934
  ):
2925
2935
  """Select all data in the mesh on a single axis
@@ -2927,11 +2937,11 @@ def select_axis(
2927
2937
  :type execution_context: int | str | None
2928
2938
  :type undo: bool | None
2929
2939
  :param orientation: Axis Mode, Axis orientation
2930
- :type orientation: bpy.typing.TransformOrientationItems | None
2940
+ :type orientation: bpy._typing.rna_enums.TransformOrientationItems | None
2931
2941
  :param sign: Axis Sign, Side to select
2932
2942
  :type sign: typing.Literal['POS','NEG','ALIGN'] | None
2933
2943
  :param axis: Axis, Select the axis to compare each vertex on
2934
- :type axis: bpy.typing.AxisXyzItems | None
2944
+ :type axis: bpy._typing.rna_enums.AxisXyzItems | None
2935
2945
  :param threshold: Threshold
2936
2946
  :type threshold: float | None
2937
2947
  """
@@ -3019,14 +3029,14 @@ def select_linked(
3019
3029
  undo: bool | None = None,
3020
3030
  /,
3021
3031
  *,
3022
- delimit: set[bpy.typing.MeshDelimitModeItems] | None = {"SEAM"},
3032
+ delimit: set[bpy._typing.rna_enums.MeshDelimitModeItems] | None = {"SEAM"},
3023
3033
  ):
3024
3034
  """Select all vertices connected to the current selection
3025
3035
 
3026
3036
  :type execution_context: int | str | None
3027
3037
  :type undo: bool | None
3028
3038
  :param delimit: Delimit, Delimit selected region
3029
- :type delimit: set[bpy.typing.MeshDelimitModeItems] | None
3039
+ :type delimit: set[bpy._typing.rna_enums.MeshDelimitModeItems] | None
3030
3040
  """
3031
3041
 
3032
3042
  def select_linked_pick(
@@ -3035,7 +3045,7 @@ def select_linked_pick(
3035
3045
  /,
3036
3046
  *,
3037
3047
  deselect: bool | None = False,
3038
- delimit: set[bpy.typing.MeshDelimitModeItems] | None = {"SEAM"},
3048
+ delimit: set[bpy._typing.rna_enums.MeshDelimitModeItems] | None = {"SEAM"},
3039
3049
  object_index: int | None = -1,
3040
3050
  index: int | None = -1,
3041
3051
  ):
@@ -3046,7 +3056,7 @@ def select_linked_pick(
3046
3056
  :param deselect: Deselect
3047
3057
  :type deselect: bool | None
3048
3058
  :param delimit: Delimit, Delimit selected region
3049
- :type delimit: set[bpy.typing.MeshDelimitModeItems] | None
3059
+ :type delimit: set[bpy._typing.rna_enums.MeshDelimitModeItems] | None
3050
3060
  :type object_index: int | None
3051
3061
  :type index: int | None
3052
3062
  """
@@ -3071,7 +3081,7 @@ def select_mirror(
3071
3081
  undo: bool | None = None,
3072
3082
  /,
3073
3083
  *,
3074
- axis: set[bpy.typing.AxisFlagXyzItems] | None = {"X"},
3084
+ axis: set[bpy._typing.rna_enums.AxisFlagXyzItems] | None = {"X"},
3075
3085
  extend: bool | None = False,
3076
3086
  ):
3077
3087
  """Select mesh items at mirrored locations
@@ -3079,7 +3089,7 @@ def select_mirror(
3079
3089
  :type execution_context: int | str | None
3080
3090
  :type undo: bool | None
3081
3091
  :param axis: Axis
3082
- :type axis: set[bpy.typing.AxisFlagXyzItems] | None
3092
+ :type axis: set[bpy._typing.rna_enums.AxisFlagXyzItems] | None
3083
3093
  :param extend: Extend, Extend the existing selection
3084
3094
  :type extend: bool | None
3085
3095
  """
@@ -3091,7 +3101,7 @@ def select_mode(
3091
3101
  *,
3092
3102
  use_extend: bool | None = False,
3093
3103
  use_expand: bool | None = False,
3094
- type: bpy.typing.MeshSelectModeItems | None = "VERT",
3104
+ type: bpy._typing.rna_enums.MeshSelectModeItems | None = "VERT",
3095
3105
  action: typing.Literal["DISABLE", "ENABLE", "TOGGLE"] | None = "TOGGLE",
3096
3106
  ):
3097
3107
  """Change selection mode
@@ -3103,7 +3113,7 @@ def select_mode(
3103
3113
  :param use_expand: Expand
3104
3114
  :type use_expand: bool | None
3105
3115
  :param type: Type
3106
- :type type: bpy.typing.MeshSelectModeItems | None
3116
+ :type type: bpy._typing.rna_enums.MeshSelectModeItems | None
3107
3117
  :param action: Action, Selection action to execute
3108
3118
 
3109
3119
  DISABLE
@@ -3599,7 +3609,8 @@ def subdivide_edgering(
3599
3609
  interpolation: typing.Literal["LINEAR", "PATH", "SURFACE"] | None = "PATH",
3600
3610
  smoothness: float | None = 1.0,
3601
3611
  profile_shape_factor: float | None = 0.0,
3602
- profile_shape: bpy.typing.ProportionalFalloffCurveOnlyItems | None = "SMOOTH",
3612
+ profile_shape: bpy._typing.rna_enums.ProportionalFalloffCurveOnlyItems
3613
+ | None = "SMOOTH",
3603
3614
  ):
3604
3615
  """Subdivide perpendicular edges to the selected edge-ring
3605
3616
 
@@ -3614,7 +3625,7 @@ def subdivide_edgering(
3614
3625
  :param profile_shape_factor: Profile Factor, How much intermediary new edges are shrunk/expanded
3615
3626
  :type profile_shape_factor: float | None
3616
3627
  :param profile_shape: Profile Shape, Shape of the profile
3617
- :type profile_shape: bpy.typing.ProportionalFalloffCurveOnlyItems | None
3628
+ :type profile_shape: bpy._typing.rna_enums.ProportionalFalloffCurveOnlyItems | None
3618
3629
  """
3619
3630
 
3620
3631
  def symmetrize(
@@ -3622,7 +3633,7 @@ def symmetrize(
3622
3633
  undo: bool | None = None,
3623
3634
  /,
3624
3635
  *,
3625
- direction: bpy.typing.SymmetrizeDirectionItems | None = "NEGATIVE_X",
3636
+ direction: bpy._typing.rna_enums.SymmetrizeDirectionItems | None = "NEGATIVE_X",
3626
3637
  threshold: float | None = 0.0001,
3627
3638
  ):
3628
3639
  """Enforce symmetry (both form and topological) across an axis
@@ -3630,7 +3641,7 @@ def symmetrize(
3630
3641
  :type execution_context: int | str | None
3631
3642
  :type undo: bool | None
3632
3643
  :param direction: Direction, Which sides to copy from and to
3633
- :type direction: bpy.typing.SymmetrizeDirectionItems | None
3644
+ :type direction: bpy._typing.rna_enums.SymmetrizeDirectionItems | None
3634
3645
  :param threshold: Threshold, Limit for snap middle vertices to the axis center
3635
3646
  :type threshold: float | None
3636
3647
  """
@@ -3640,7 +3651,7 @@ def symmetry_snap(
3640
3651
  undo: bool | None = None,
3641
3652
  /,
3642
3653
  *,
3643
- direction: bpy.typing.SymmetrizeDirectionItems | None = "NEGATIVE_X",
3654
+ direction: bpy._typing.rna_enums.SymmetrizeDirectionItems | None = "NEGATIVE_X",
3644
3655
  threshold: float | None = 0.05,
3645
3656
  factor: float | None = 0.5,
3646
3657
  use_center: bool | None = True,
@@ -3650,7 +3661,7 @@ def symmetry_snap(
3650
3661
  :type execution_context: int | str | None
3651
3662
  :type undo: bool | None
3652
3663
  :param direction: Direction, Which sides to copy from and to
3653
- :type direction: bpy.typing.SymmetrizeDirectionItems | None
3664
+ :type direction: bpy._typing.rna_enums.SymmetrizeDirectionItems | None
3654
3665
  :param threshold: Threshold, Distance within which matching vertices are searched
3655
3666
  :type threshold: float | None
3656
3667
  :param factor: Factor, Mix factor of the locations of the vertices
bpy/ops/nla/__init__.pyi CHANGED
@@ -1,8 +1,8 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
+ import bpy._typing.rna_enums
4
5
  import bpy.ops.transform
5
- import bpy.typing
6
6
 
7
7
  def action_pushdown(
8
8
  execution_context: int | str | None = None,
@@ -252,7 +252,7 @@ def fmodifier_add(
252
252
  undo: bool | None = None,
253
253
  /,
254
254
  *,
255
- type: bpy.typing.FmodifierTypeItems | None = "NULL",
255
+ type: bpy._typing.rna_enums.FmodifierTypeItems | None = "NULL",
256
256
  only_active: bool | None = True,
257
257
  ):
258
258
  """Add F-Modifier to the active/selected NLA-Strips
@@ -260,7 +260,7 @@ def fmodifier_add(
260
260
  :type execution_context: int | str | None
261
261
  :type undo: bool | None
262
262
  :param type: Type
263
- :type type: bpy.typing.FmodifierTypeItems | None
263
+ :type type: bpy._typing.rna_enums.FmodifierTypeItems | None
264
264
  :param only_active: Only Active, Only add a F-Modifier of the specified type to the active strip
265
265
  :type only_active: bool | None
266
266
  """
bpy/ops/node/__init__.pyi CHANGED
@@ -2,9 +2,9 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import bl_operators.node
5
+ import bpy._typing.rna_enums
5
6
  import bpy.ops.transform
6
7
  import bpy.types
7
- import bpy.typing
8
8
 
9
9
  def add_collection(
10
10
  execution_context: int | str | None = None,
@@ -216,7 +216,7 @@ def add_group_asset(
216
216
  undo: bool | None = None,
217
217
  /,
218
218
  *,
219
- asset_library_type: bpy.typing.AssetLibraryTypeItems | None = "LOCAL",
219
+ asset_library_type: bpy._typing.rna_enums.AssetLibraryTypeItems | None = "LOCAL",
220
220
  asset_library_identifier: str = "",
221
221
  relative_asset_identifier: str = "",
222
222
  ):
@@ -225,7 +225,7 @@ def add_group_asset(
225
225
  :type execution_context: int | str | None
226
226
  :type undo: bool | None
227
227
  :param asset_library_type: Asset Library Type
228
- :type asset_library_type: bpy.typing.AssetLibraryTypeItems | None
228
+ :type asset_library_type: bpy._typing.rna_enums.AssetLibraryTypeItems | None
229
229
  :param asset_library_identifier: Asset Library Identifier
230
230
  :type asset_library_identifier: str
231
231
  :param relative_asset_identifier: Relative Asset Identifier