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

@@ -3135,6 +3135,34 @@ def modifier_set_active(
3135
3135
 
3136
3136
  ...
3137
3137
 
3138
+ def modifiers_clear(
3139
+ override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
3140
+ execution_context: typing.Optional[typing.Union[str, int]] = None,
3141
+ undo: typing.Optional[bool] = None,
3142
+ ):
3143
+ """Clear all modifiers from the selected objects
3144
+
3145
+ :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
3146
+ :type execution_context: typing.Optional[typing.Union[str, int]]
3147
+ :type undo: typing.Optional[bool]
3148
+ """
3149
+
3150
+ ...
3151
+
3152
+ def modifiers_copy_to_selected(
3153
+ override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
3154
+ execution_context: typing.Optional[typing.Union[str, int]] = None,
3155
+ undo: typing.Optional[bool] = None,
3156
+ ):
3157
+ """Copy modifiers to other selected objects
3158
+
3159
+ :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
3160
+ :type execution_context: typing.Optional[typing.Union[str, int]]
3161
+ :type undo: typing.Optional[bool]
3162
+ """
3163
+
3164
+ ...
3165
+
3138
3166
  def move_to_collection(
3139
3167
  override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
3140
3168
  execution_context: typing.Optional[typing.Union[str, int]] = None,
@@ -583,7 +583,7 @@ def mask_box_gesture(
583
583
  mode: typing.Optional[typing.Any] = "VALUE",
584
584
  value: typing.Optional[typing.Any] = 1.0,
585
585
  ):
586
- """Add mask within the box as you move the brush
586
+ """Mask within a rectangle defined by the cursor
587
587
 
588
588
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
589
589
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -657,7 +657,7 @@ def mask_lasso_gesture(
657
657
  mode: typing.Optional[typing.Any] = "VALUE",
658
658
  value: typing.Optional[typing.Any] = 1.0,
659
659
  ):
660
- """Add mask within the lasso as you move the brush
660
+ """Mask within a shape defined by the cursor
661
661
 
662
662
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
663
663
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -698,7 +698,7 @@ def mask_line_gesture(
698
698
  mode: typing.Optional[typing.Any] = "VALUE",
699
699
  value: typing.Optional[typing.Any] = 1.0,
700
700
  ):
701
- """Add mask to the right of a line as you move the brush
701
+ """Mask to one side of a line defined by the cursor
702
702
 
703
703
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
704
704
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -49,7 +49,7 @@ def cloth_filter(
49
49
  bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
50
50
  ] = None,
51
51
  type: typing.Optional[typing.Any] = "GRAVITY",
52
- force_axis: typing.Optional[typing.Any] = {'"Z"', '"Y"', '"X"'},
52
+ force_axis: typing.Optional[typing.Any] = {'"Y"', '"Z"', '"X"'},
53
53
  orientation: typing.Optional[typing.Any] = "LOCAL",
54
54
  cloth_mass: typing.Optional[typing.Any] = 1.0,
55
55
  cloth_damping: typing.Optional[typing.Any] = 0.0,
@@ -284,7 +284,7 @@ def face_set_box_gesture(
284
284
  wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
285
285
  use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
286
286
  ):
287
- """Add face set within the box as you move the brush
287
+ """Add a face set in a rectangle defined by the cursor
288
288
 
289
289
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
290
290
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -381,7 +381,7 @@ def face_set_lasso_gesture(
381
381
  ] = None,
382
382
  use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
383
383
  ):
384
- """Add face set within the lasso as you move the brush
384
+ """Add a face set in a shape defined by the cursor
385
385
 
386
386
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
387
387
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -603,7 +603,7 @@ def mesh_filter(
603
603
  bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
604
604
  ] = None,
605
605
  type: typing.Optional[typing.Any] = "INFLATE",
606
- deform_axis: typing.Optional[typing.Any] = {'"Z"', '"Y"', '"X"'},
606
+ deform_axis: typing.Optional[typing.Any] = {'"Y"', '"Z"', '"X"'},
607
607
  orientation: typing.Optional[typing.Any] = "LOCAL",
608
608
  surface_smooth_shape_preservation: typing.Optional[typing.Any] = 0.5,
609
609
  surface_smooth_current_vertex: typing.Optional[typing.Any] = 0.5,
@@ -888,7 +888,7 @@ def trim_box_gesture(
888
888
  trim_extrude_mode: typing.Optional[typing.Any] = "FIXED",
889
889
  trim_solver: typing.Optional[typing.Any] = "FAST",
890
890
  ):
891
- """Trims the mesh within the box as you move the brush
891
+ """Execute a boolean operation on the mesh and a rectangle defined by the cursor
892
892
 
893
893
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
894
894
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -963,7 +963,7 @@ def trim_lasso_gesture(
963
963
  trim_extrude_mode: typing.Optional[typing.Any] = "FIXED",
964
964
  trim_solver: typing.Optional[typing.Any] = "FAST",
965
965
  ):
966
- """Trims the mesh within the lasso as you move the brush
966
+ """Execute a boolean operation on the mesh and a shape defined by the cursor
967
967
 
968
968
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
969
969
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -1015,6 +1015,89 @@ def trim_lasso_gesture(
1015
1015
 
1016
1016
  ...
1017
1017
 
1018
+ def trim_line_gesture(
1019
+ override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
1020
+ execution_context: typing.Optional[typing.Union[str, int]] = None,
1021
+ undo: typing.Optional[bool] = None,
1022
+ xstart: typing.Optional[typing.Any] = 0,
1023
+ xend: typing.Optional[typing.Any] = 0,
1024
+ ystart: typing.Optional[typing.Any] = 0,
1025
+ yend: typing.Optional[typing.Any] = 0,
1026
+ flip: typing.Optional[typing.Union[bool, typing.Any]] = False,
1027
+ cursor: typing.Optional[typing.Any] = 5,
1028
+ use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
1029
+ use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
1030
+ location: typing.Optional[typing.Any] = (0, 0),
1031
+ trim_mode: typing.Optional[typing.Any] = "DIFFERENCE",
1032
+ use_cursor_depth: typing.Optional[typing.Union[bool, typing.Any]] = False,
1033
+ trim_orientation: typing.Optional[typing.Any] = "VIEW",
1034
+ trim_extrude_mode: typing.Optional[typing.Any] = "FIXED",
1035
+ trim_solver: typing.Optional[typing.Any] = "FAST",
1036
+ ):
1037
+ """Remove a portion of the mesh on one side of a line
1038
+
1039
+ :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
1040
+ :type execution_context: typing.Optional[typing.Union[str, int]]
1041
+ :type undo: typing.Optional[bool]
1042
+ :param xstart: X Start
1043
+ :type xstart: typing.Optional[typing.Any]
1044
+ :param xend: X End
1045
+ :type xend: typing.Optional[typing.Any]
1046
+ :param ystart: Y Start
1047
+ :type ystart: typing.Optional[typing.Any]
1048
+ :param yend: Y End
1049
+ :type yend: typing.Optional[typing.Any]
1050
+ :param flip: Flip
1051
+ :type flip: typing.Optional[typing.Union[bool, typing.Any]]
1052
+ :param cursor: Cursor, Mouse cursor style to use during the modal operator
1053
+ :type cursor: typing.Optional[typing.Any]
1054
+ :param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
1055
+ :type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
1056
+ :param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
1057
+ :type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
1058
+ :param location: Location, Mouse location
1059
+ :type location: typing.Optional[typing.Any]
1060
+ :param trim_mode: Trim Mode
1061
+
1062
+ DIFFERENCE
1063
+ Difference -- Use a difference boolean operation.
1064
+
1065
+ UNION
1066
+ Union -- Use a union boolean operation.
1067
+
1068
+ JOIN
1069
+ Join -- Join the new mesh as separate geometry, without performing any boolean operation.
1070
+ :type trim_mode: typing.Optional[typing.Any]
1071
+ :param use_cursor_depth: Use Cursor for Depth, Use cursor location and radius for the dimensions and position of the trimming shape
1072
+ :type use_cursor_depth: typing.Optional[typing.Union[bool, typing.Any]]
1073
+ :param trim_orientation: Shape Orientation
1074
+
1075
+ VIEW
1076
+ View -- Use the view to orientate the trimming shape.
1077
+
1078
+ SURFACE
1079
+ Surface -- Use the surface normal to orientate the trimming shape.
1080
+ :type trim_orientation: typing.Optional[typing.Any]
1081
+ :param trim_extrude_mode: Extrude Mode
1082
+
1083
+ PROJECT
1084
+ Project -- Project back faces when extruding.
1085
+
1086
+ FIXED
1087
+ Fixed -- Extrude back faces by fixed amount.
1088
+ :type trim_extrude_mode: typing.Optional[typing.Any]
1089
+ :param trim_solver: Solver
1090
+
1091
+ EXACT
1092
+ Exact -- Use the exact boolean solver.
1093
+
1094
+ FAST
1095
+ Fast -- Use the fast float boolean solver.
1096
+ :type trim_solver: typing.Optional[typing.Any]
1097
+ """
1098
+
1099
+ ...
1100
+
1018
1101
  def uv_sculpt_grab(
1019
1102
  override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
1020
1103
  execution_context: typing.Optional[typing.Union[str, int]] = None,