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

bpy/ops/file/__init__.pyi CHANGED
@@ -505,6 +505,7 @@ def select(
505
505
  /,
506
506
  *,
507
507
  wait_to_deselect_others: bool | None = False,
508
+ use_select_on_click: bool | None = False,
508
509
  mouse_x: int | None = 0,
509
510
  mouse_y: int | None = 0,
510
511
  extend: bool | None = False,
@@ -520,6 +521,8 @@ def select(
520
521
  :type undo: bool | None
521
522
  :param wait_to_deselect_others: Wait to Deselect Others
522
523
  :type wait_to_deselect_others: bool | None
524
+ :param use_select_on_click: Act on Click, Instead of selecting on mouse press, wait to see if theres drag event. Otherwise select on mouse release
525
+ :type use_select_on_click: bool | None
523
526
  :param mouse_x: Mouse X
524
527
  :type mouse_x: int | None
525
528
  :param mouse_y: Mouse Y
@@ -164,6 +164,7 @@ def clickselect(
164
164
  /,
165
165
  *,
166
166
  wait_to_deselect_others: bool | None = False,
167
+ use_select_on_click: bool | None = False,
167
168
  mouse_x: int | None = 0,
168
169
  mouse_y: int | None = 0,
169
170
  extend: bool | None = False,
@@ -177,6 +178,8 @@ def clickselect(
177
178
  :type undo: bool | None
178
179
  :param wait_to_deselect_others: Wait to Deselect Others
179
180
  :type wait_to_deselect_others: bool | None
181
+ :param use_select_on_click: Act on Click, Instead of selecting on mouse press, wait to see if theres drag event. Otherwise select on mouse release
182
+ :type use_select_on_click: bool | None
180
183
  :param mouse_x: Mouse X
181
184
  :type mouse_x: int | None
182
185
  :param mouse_y: Mouse Y
@@ -109,6 +109,7 @@ def select(
109
109
  /,
110
110
  *,
111
111
  wait_to_deselect_others: bool | None = False,
112
+ use_select_on_click: bool | None = False,
112
113
  mouse_x: int | None = 0,
113
114
  mouse_y: int | None = 0,
114
115
  extend: bool | None = False,
@@ -120,6 +121,8 @@ def select(
120
121
  :type undo: bool | None
121
122
  :param wait_to_deselect_others: Wait to Deselect Others
122
123
  :type wait_to_deselect_others: bool | None
124
+ :param use_select_on_click: Act on Click, Instead of selecting on mouse press, wait to see if theres drag event. Otherwise select on mouse release
125
+ :type use_select_on_click: bool | None
123
126
  :param mouse_x: Mouse X
124
127
  :type mouse_x: int | None
125
128
  :param mouse_y: Mouse Y
bpy/ops/nla/__init__.pyi CHANGED
@@ -177,6 +177,7 @@ def click_select(
177
177
  /,
178
178
  *,
179
179
  wait_to_deselect_others: bool | None = False,
180
+ use_select_on_click: bool | None = False,
180
181
  mouse_x: int | None = 0,
181
182
  mouse_y: int | None = 0,
182
183
  extend: bool | None = False,
@@ -188,6 +189,8 @@ def click_select(
188
189
  :type undo: bool | None
189
190
  :param wait_to_deselect_others: Wait to Deselect Others
190
191
  :type wait_to_deselect_others: bool | None
192
+ :param use_select_on_click: Act on Click, Instead of selecting on mouse press, wait to see if theres drag event. Otherwise select on mouse release
193
+ :type use_select_on_click: bool | None
191
194
  :param mouse_x: Mouse X
192
195
  :type mouse_x: int | None
193
196
  :param mouse_y: Mouse Y
bpy/ops/node/__init__.pyi CHANGED
@@ -1733,6 +1733,21 @@ def new_compositing_node_group(
1733
1733
  :type name: str
1734
1734
  """
1735
1735
 
1736
+ def new_compositor_sequencer_node_group(
1737
+ execution_context: int | str | None = None,
1738
+ undo: bool | None = None,
1739
+ /,
1740
+ *,
1741
+ name: str = "Sequencer Compositor Nodes",
1742
+ ) -> None:
1743
+ """Create a new compositor node group for sequencer
1744
+
1745
+ :type execution_context: int | str | None
1746
+ :type undo: bool | None
1747
+ :param name: Name
1748
+ :type name: str
1749
+ """
1750
+
1736
1751
  def new_geometry_node_group_assign(
1737
1752
  execution_context: int | str | None = None,
1738
1753
  undo: bool | None = None,
@@ -1568,6 +1568,7 @@ def select(
1568
1568
  /,
1569
1569
  *,
1570
1570
  wait_to_deselect_others: bool | None = False,
1571
+ use_select_on_click: bool | None = False,
1571
1572
  mouse_x: int | None = 0,
1572
1573
  mouse_y: int | None = 0,
1573
1574
  extend: bool | None = False,
@@ -1587,6 +1588,8 @@ def select(
1587
1588
  :type undo: bool | None
1588
1589
  :param wait_to_deselect_others: Wait to Deselect Others
1589
1590
  :type wait_to_deselect_others: bool | None
1591
+ :param use_select_on_click: Act on Click, Instead of selecting on mouse press, wait to see if theres drag event. Otherwise select on mouse release
1592
+ :type use_select_on_click: bool | None
1590
1593
  :param mouse_x: Mouse X
1591
1594
  :type mouse_x: int | None
1592
1595
  :param mouse_y: Mouse Y
@@ -1778,6 +1781,7 @@ def select_handle(
1778
1781
  /,
1779
1782
  *,
1780
1783
  wait_to_deselect_others: bool | None = False,
1784
+ use_select_on_click: bool | None = False,
1781
1785
  mouse_x: int | None = 0,
1782
1786
  mouse_y: int | None = 0,
1783
1787
  ignore_connections: bool | None = False,
@@ -1788,6 +1792,8 @@ def select_handle(
1788
1792
  :type undo: bool | None
1789
1793
  :param wait_to_deselect_others: Wait to Deselect Others
1790
1794
  :type wait_to_deselect_others: bool | None
1795
+ :param use_select_on_click: Act on Click, Instead of selecting on mouse press, wait to see if theres drag event. Otherwise select on mouse release
1796
+ :type use_select_on_click: bool | None
1791
1797
  :param mouse_x: Mouse X
1792
1798
  :type mouse_x: int | None
1793
1799
  :param mouse_y: Mouse Y
bpy/ops/ui/__init__.pyi CHANGED
@@ -454,6 +454,10 @@ def view_item_select(
454
454
  undo: bool | None = None,
455
455
  /,
456
456
  *,
457
+ wait_to_deselect_others: bool | None = False,
458
+ use_select_on_click: bool | None = False,
459
+ mouse_x: int | None = 0,
460
+ mouse_y: int | None = 0,
457
461
  extend: bool | None = False,
458
462
  range_select: bool | None = False,
459
463
  ) -> None:
@@ -461,6 +465,14 @@ def view_item_select(
461
465
 
462
466
  :type execution_context: int | str | None
463
467
  :type undo: bool | None
468
+ :param wait_to_deselect_others: Wait to Deselect Others
469
+ :type wait_to_deselect_others: bool | None
470
+ :param use_select_on_click: Act on Click, Instead of selecting on mouse press, wait to see if theres drag event. Otherwise select on mouse release
471
+ :type use_select_on_click: bool | None
472
+ :param mouse_x: Mouse X
473
+ :type mouse_x: int | None
474
+ :param mouse_y: Mouse Y
475
+ :type mouse_y: int | None
464
476
  :param extend: extend, Extend Selection
465
477
  :type extend: bool | None
466
478
  :param range_select: Range Select, Select all between clicked and active items
@@ -2883,6 +2883,7 @@ type StripColorItems = typing.Literal[
2883
2883
  type StripModifierTypeItems = typing.Literal[
2884
2884
  "BRIGHT_CONTRAST", # Brightness/Contrast.
2885
2885
  "COLOR_BALANCE", # Color Balance.
2886
+ "COMPOSITOR", # Compositor.
2886
2887
  "CURVES", # Curves.
2887
2888
  "HUE_CORRECT", # Hue Correct.
2888
2889
  "MASK", # Mask.
@@ -2902,6 +2903,7 @@ type StripSoundModifierTypeItems = typing.Literal[
2902
2903
  type StripVideoModifierTypeItems = typing.Literal[
2903
2904
  "BRIGHT_CONTRAST", # Brightness/Contrast.
2904
2905
  "COLOR_BALANCE", # Color Balance.
2906
+ "COMPOSITOR", # Compositor.
2905
2907
  "CURVES", # Curves.
2906
2908
  "HUE_CORRECT", # Hue Correct.
2907
2909
  "MASK", # Mask.