fake-bpy-module-latest 20260202__py3-none-any.whl → 20260204__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.
@@ -467,6 +467,8 @@ class NODE_OT_swap_empty_group(NodeSwapOperator, _bpy_types.Operator):
467
467
  bl_options: typing.Any
468
468
  bl_rna: typing.Any
469
469
  id_data: typing.Any
470
+ id_prop_names: typing.Any
471
+ image_user_settings: typing.Any
470
472
  properties_to_pass: typing.Any
471
473
 
472
474
  def bl_rna_get_subclass(self) -> bpy.types.Struct:
@@ -510,6 +512,8 @@ class NODE_OT_swap_node(NodeSwapOperator, _bpy_types.Operator):
510
512
  bl_options: typing.Any
511
513
  bl_rna: typing.Any
512
514
  id_data: typing.Any
515
+ id_prop_names: typing.Any
516
+ image_user_settings: typing.Any
513
517
  properties_to_pass: typing.Any
514
518
 
515
519
  def bl_rna_get_subclass(self) -> bpy.types.Struct:
@@ -558,6 +562,8 @@ class NODE_OT_swap_zone(NodeSwapOperator, ZoneOperator, _bpy_types.Operator):
558
562
  bl_options: typing.Any
559
563
  bl_rna: typing.Any
560
564
  id_data: typing.Any
565
+ id_prop_names: typing.Any
566
+ image_user_settings: typing.Any
561
567
  properties_to_pass: typing.Any
562
568
 
563
569
  def bl_rna_get_subclass(self) -> bpy.types.Struct:
@@ -794,6 +800,8 @@ class NodeAddOperator(NodeOperator):
794
800
  """
795
801
 
796
802
  class NodeSwapOperator(NodeOperator):
803
+ id_prop_names: typing.Any
804
+ image_user_settings: typing.Any
797
805
  properties_to_pass: typing.Any
798
806
 
799
807
  @staticmethod
@@ -810,6 +818,20 @@ class NodeSwapOperator(NodeOperator):
810
818
  :param context:
811
819
  """
812
820
 
821
+ def transfer_datablock_properties(self, old_node, new_node) -> None:
822
+ """
823
+
824
+ :param old_node:
825
+ :param new_node:
826
+ """
827
+
828
+ def transfer_image_user_settings(self, old_node, new_node) -> None:
829
+ """
830
+
831
+ :param old_node:
832
+ :param new_node:
833
+ """
834
+
813
835
  def transfer_input_values(self, old_node, new_node) -> None:
814
836
  """
815
837
 
@@ -244,7 +244,7 @@ class RENDER_PT_eevee_clamping(RenderButtonsPanel, _bpy_types.Panel):
244
244
  COMPAT_ENGINES: typing.Any
245
245
  bl_context: typing.Any
246
246
  bl_label: typing.Any
247
- bl_options: typing.Any
247
+ bl_parent_id: typing.Any
248
248
  bl_region_type: typing.Any
249
249
  bl_rna: typing.Any
250
250
  bl_space_type: typing.Any
@@ -534,6 +534,76 @@ class RENDER_PT_eevee_hair(RenderButtonsPanel, _bpy_types.Panel):
534
534
  :param context:
535
535
  """
536
536
 
537
+ class RENDER_PT_eevee_light_paths(RenderButtonsPanel, _bpy_types.Panel):
538
+ COMPAT_ENGINES: typing.Any
539
+ bl_context: typing.Any
540
+ bl_label: typing.Any
541
+ bl_options: typing.Any
542
+ bl_region_type: typing.Any
543
+ bl_rna: typing.Any
544
+ bl_space_type: typing.Any
545
+ id_data: typing.Any
546
+
547
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
548
+ """
549
+
550
+ :return: The RNA type or default when not found.
551
+ """
552
+
553
+ def bl_rna_get_subclass_py(self) -> typing.Any:
554
+ """
555
+
556
+ :return: The class or default when not found.
557
+ """
558
+
559
+ def draw(self, context) -> None:
560
+ """
561
+
562
+ :param context:
563
+ """
564
+
565
+ @classmethod
566
+ def poll(cls, context) -> None:
567
+ """
568
+
569
+ :param context:
570
+ """
571
+
572
+ class RENDER_PT_eevee_light_paths_intensity(RenderButtonsPanel, _bpy_types.Panel):
573
+ COMPAT_ENGINES: typing.Any
574
+ bl_context: typing.Any
575
+ bl_label: typing.Any
576
+ bl_parent_id: typing.Any
577
+ bl_region_type: typing.Any
578
+ bl_rna: typing.Any
579
+ bl_space_type: typing.Any
580
+ id_data: typing.Any
581
+
582
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
583
+ """
584
+
585
+ :return: The RNA type or default when not found.
586
+ """
587
+
588
+ def bl_rna_get_subclass_py(self) -> typing.Any:
589
+ """
590
+
591
+ :return: The class or default when not found.
592
+ """
593
+
594
+ def draw(self, context) -> None:
595
+ """
596
+
597
+ :param context:
598
+ """
599
+
600
+ @classmethod
601
+ def poll(cls, context) -> None:
602
+ """
603
+
604
+ :param context:
605
+ """
606
+
537
607
  class RENDER_PT_eevee_motion_blur(RenderButtonsPanel, _bpy_types.Panel):
538
608
  COMPAT_ENGINES: typing.Any
539
609
  bl_context: typing.Any
@@ -1225,10 +1225,10 @@ class VIEW3D_MT_edit_greasepencil_delete(_bpy_types.Menu):
1225
1225
  :return: The class or default when not found.
1226
1226
  """
1227
1227
 
1228
- def draw(self, _context) -> None:
1228
+ def draw(self, context) -> None:
1229
1229
  """
1230
1230
 
1231
- :param _context:
1231
+ :param context:
1232
1232
  """
1233
1233
 
1234
1234
  class VIEW3D_MT_edit_greasepencil_point(_bpy_types.Menu):
bpy/ops/anim/__init__.pyi CHANGED
@@ -618,6 +618,20 @@ def previewrange_set(
618
618
  :param wait_for_input: Wait for Input
619
619
  """
620
620
 
621
+ def replace_action(
622
+ execution_context: int | str | None = None,
623
+ undo: bool | None = None,
624
+ /,
625
+ *,
626
+ old_session_uid: int | None = 0,
627
+ new_session_uid: int | None = 0,
628
+ ) -> None:
629
+ """Swap all users of one action to another one. The normal action slot assignment rules apply. This ignores the NLA and Action Constraints
630
+
631
+ :param old_session_uid: Old Action, Old Actions session uid to replace
632
+ :param new_session_uid: Replacement Action, The replacement Actions session uid to remap all selected Actions users to
633
+ """
634
+
621
635
  def scene_range_frame(
622
636
  execution_context: int | str | None = None,
623
637
  undo: bool | None = None,
@@ -171,8 +171,22 @@ def delete(
171
171
  execution_context: int | str | None = None,
172
172
  undo: bool | None = None,
173
173
  /,
174
+ *,
175
+ mode: typing.Literal["ALL", "STROKES", "FILLS"] | None = "ALL",
174
176
  ) -> None:
175
- """Delete selected strokes or points"""
177
+ """Delete selected strokes or points
178
+
179
+ :param mode: Mode, The kind of strokes or fills to delete
180
+
181
+ ALL
182
+ All -- Delete all selected strokes or points.
183
+
184
+ STROKES
185
+ Only Strokes -- Delete only strokes and not fills.
186
+
187
+ FILLS
188
+ Only Fills -- Delte only fills and not strokes.
189
+ """
176
190
 
177
191
  def delete_breakdown(
178
192
  execution_context: int | str | None = None,
@@ -461,6 +475,13 @@ def interpolate_sequence(
461
475
  :param period: Period, Time between bounces for elastic easing
462
476
  """
463
477
 
478
+ def join_fills(
479
+ execution_context: int | str | None = None,
480
+ undo: bool | None = None,
481
+ /,
482
+ ) -> None:
483
+ """Join selected strokes into one fill to create holes"""
484
+
464
485
  def join_selection(
465
486
  execution_context: int | str | None = None,
466
487
  undo: bool | None = None,
@@ -1128,6 +1149,20 @@ def select_alternate(
1128
1149
  :param deselect_ends: Deselect Ends, (De)select the first and last point of each stroke
1129
1150
  """
1130
1151
 
1152
+ def select_by_stroke_type(
1153
+ execution_context: int | str | None = None,
1154
+ undo: bool | None = None,
1155
+ /,
1156
+ *,
1157
+ type: typing.Literal["STROKE", "FILL"] | None = "STROKE",
1158
+ deselect: bool | None = False,
1159
+ ) -> None:
1160
+ """Select/Deselect all strokes or fills
1161
+
1162
+ :param type: Type
1163
+ :param deselect: Deselect, Unselect strokes
1164
+ """
1165
+
1131
1166
  def select_ends(
1132
1167
  execution_context: int | str | None = None,
1133
1168
  undo: bool | None = None,
@@ -1142,6 +1177,13 @@ def select_ends(
1142
1177
  :param amount_end: Amount End, Number of points to select from the end
1143
1178
  """
1144
1179
 
1180
+ def select_fill(
1181
+ execution_context: int | str | None = None,
1182
+ undo: bool | None = None,
1183
+ /,
1184
+ ) -> None:
1185
+ """Select all curves in a fill"""
1186
+
1145
1187
  def select_less(
1146
1188
  execution_context: int | str | None = None,
1147
1189
  undo: bool | None = None,
@@ -1221,6 +1263,18 @@ def separate(
1221
1263
  By Layer -- Separate by layer.
1222
1264
  """
1223
1265
 
1266
+ def separate_fills(
1267
+ execution_context: int | str | None = None,
1268
+ undo: bool | None = None,
1269
+ /,
1270
+ *,
1271
+ individual: bool | None = True,
1272
+ ) -> None:
1273
+ """Separate the selected strokes from current fill
1274
+
1275
+ :param individual: Individual, Create a separate fill for each individual stroke
1276
+ """
1277
+
1224
1278
  def set_active_material(
1225
1279
  execution_context: int | str | None = None,
1226
1280
  undo: bool | None = None,
@@ -1327,6 +1381,18 @@ def set_start_point(
1327
1381
  ) -> None:
1328
1382
  """Select which point is the beginning of the curve"""
1329
1383
 
1384
+ def set_stroke_type(
1385
+ execution_context: int | str | None = None,
1386
+ undo: bool | None = None,
1387
+ /,
1388
+ *,
1389
+ type: typing.Literal["STROKE", "FILL", "BOTH"] | None = "STROKE",
1390
+ ) -> None:
1391
+ """Set the stroke type (stroke, fill, or both) of the selected strokes
1392
+
1393
+ :param type: Type
1394
+ """
1395
+
1330
1396
  def set_uniform_opacity(
1331
1397
  execution_context: int | str | None = None,
1332
1398
  undo: bool | None = None,
bpy/ops/node/__init__.pyi CHANGED
@@ -1458,6 +1458,20 @@ def link(
1458
1458
  :param zoom_influence: Zoom Influence, Influence of the zoom factor on scroll speed
1459
1459
  """
1460
1460
 
1461
+ def link_drag_operation_test(
1462
+ execution_context: int | str | None = None,
1463
+ undo: bool | None = None,
1464
+ /,
1465
+ *,
1466
+ find_link_operations: bool | None = False,
1467
+ link_operation_index: int | None = -1,
1468
+ ) -> None:
1469
+ """Run a node link-drag operation for testing
1470
+
1471
+ :param find_link_operations: Find Link Operations, Write link operation names for the context socket the "link_operation_names" property of the node tree
1472
+ :param link_operation_index: Link Operation Index, Link operation to execute on the context socket
1473
+ """
1474
+
1461
1475
  def link_make(
1462
1476
  execution_context: int | str | None = None,
1463
1477
  undo: bool | None = None,
@@ -2148,7 +2162,7 @@ def viewer_border(
2148
2162
  ymax: int | None = 0,
2149
2163
  wait_for_input: bool | None = True,
2150
2164
  ) -> None:
2151
- """Set the boundaries for viewer operations
2165
+ """Set the boundaries for viewer operations (Not implemented)
2152
2166
 
2153
2167
  :param xmin: X Min
2154
2168
  :param xmax: X Max
bpy/ops/pose/__init__.pyi CHANGED
@@ -624,7 +624,7 @@ def select_linked(
624
624
  undo: bool | None = None,
625
625
  /,
626
626
  ) -> None:
627
- """Select all bones linked by parent/child connections to the current selection"""
627
+ """Select all bones linked by connected parent/child relationships from the current selection"""
628
628
 
629
629
  def select_linked_pick(
630
630
  execution_context: int | str | None = None,
@@ -633,7 +633,7 @@ def select_linked_pick(
633
633
  *,
634
634
  extend: bool | None = False,
635
635
  ) -> None:
636
- """Select bones linked by parent/child connections under the mouse cursor
636
+ """Select bones linked by connected parent/child relationships under the mouse cursor
637
637
 
638
638
  :param extend: Extend, Extend selection instead of deselecting everything first
639
639
  """
@@ -771,7 +771,7 @@ type FmodifierTypeItems = typing.Literal[
771
771
  "NOISE", # Noise.Add pseudo-random noise on top of F-Curves.
772
772
  "LIMITS", # Limits.Restrict maximum and minimum values of F-Curve.
773
773
  "STEPPED", # Stepped Interpolation.Snap values to nearest grid step, e.g. for a stop-motion look.
774
- "SMOOTH", # Gaussian Smoothing.Smooth curve using Gaussian smoothing.
774
+ "SMOOTH", # Smooth (Gaussian).Smooth curve using Gaussian smoothing.
775
775
  ]
776
776
  type GeometryComponentTypeItems = typing.Literal[
777
777
  "MESH", # Mesh.Mesh component containing point, corner, edge and face data.