fake-bpy-module 20240821__py3-none-any.whl → 20240823__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/sequencer/__init__.pyi +41 -0
- bpy/types/__init__.pyi +461 -23
- bpy/utils/units/__init__.pyi +1 -1
- {fake_bpy_module-20240821.dist-info → fake_bpy_module-20240823.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240821.dist-info → fake_bpy_module-20240823.dist-info}/RECORD +7 -7
- {fake_bpy_module-20240821.dist-info → fake_bpy_module-20240823.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240821.dist-info → fake_bpy_module-20240823.dist-info}/top_level.txt +0 -0
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -248,6 +248,24 @@ def change_scene(
|
|
|
248
248
|
|
|
249
249
|
...
|
|
250
250
|
|
|
251
|
+
def connect(
|
|
252
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
253
|
+
execution_context: int | str | None = None,
|
|
254
|
+
undo: bool | None = None,
|
|
255
|
+
*,
|
|
256
|
+
toggle: bool | None = True,
|
|
257
|
+
):
|
|
258
|
+
"""Link selected strips together for simplified group selection
|
|
259
|
+
|
|
260
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
261
|
+
:type execution_context: int | str | None
|
|
262
|
+
:type undo: bool | None
|
|
263
|
+
:param toggle: Toggle, Toggle strip connections
|
|
264
|
+
:type toggle: bool | None
|
|
265
|
+
"""
|
|
266
|
+
|
|
267
|
+
...
|
|
268
|
+
|
|
251
269
|
def copy(
|
|
252
270
|
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
253
271
|
execution_context: int | str | None = None,
|
|
@@ -326,6 +344,20 @@ def delete(
|
|
|
326
344
|
|
|
327
345
|
...
|
|
328
346
|
|
|
347
|
+
def disconnect(
|
|
348
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
349
|
+
execution_context: int | str | None = None,
|
|
350
|
+
undo: bool | None = None,
|
|
351
|
+
):
|
|
352
|
+
"""Unlink selected strips so that they can be selected individually
|
|
353
|
+
|
|
354
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
355
|
+
:type execution_context: int | str | None
|
|
356
|
+
:type undo: bool | None
|
|
357
|
+
"""
|
|
358
|
+
|
|
359
|
+
...
|
|
360
|
+
|
|
329
361
|
def duplicate(
|
|
330
362
|
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
331
363
|
execution_context: int | str | None = None,
|
|
@@ -1600,6 +1632,7 @@ def select(
|
|
|
1600
1632
|
linked_handle: bool | None = False,
|
|
1601
1633
|
linked_time: bool | None = False,
|
|
1602
1634
|
side_of_frame: bool | None = False,
|
|
1635
|
+
ignore_connections: bool | None = False,
|
|
1603
1636
|
):
|
|
1604
1637
|
"""Select a strip (last selected becomes the "active strip")
|
|
1605
1638
|
|
|
@@ -1630,6 +1663,8 @@ def select(
|
|
|
1630
1663
|
:type linked_time: bool | None
|
|
1631
1664
|
:param side_of_frame: Side of Frame, Select all strips on same side of the current frame as the mouse cursor
|
|
1632
1665
|
:type side_of_frame: bool | None
|
|
1666
|
+
:param ignore_connections: Ignore Connections, Select strips individually whether or not they are connected
|
|
1667
|
+
:type ignore_connections: bool | None
|
|
1633
1668
|
"""
|
|
1634
1669
|
|
|
1635
1670
|
...
|
|
@@ -1677,6 +1712,7 @@ def select_box(
|
|
|
1677
1712
|
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
1678
1713
|
tweak: bool | None = False,
|
|
1679
1714
|
include_handles: bool | None = False,
|
|
1715
|
+
ignore_connections: bool | None = False,
|
|
1680
1716
|
):
|
|
1681
1717
|
"""Select strips using box selection
|
|
1682
1718
|
|
|
@@ -1708,6 +1744,8 @@ def select_box(
|
|
|
1708
1744
|
:type tweak: bool | None
|
|
1709
1745
|
:param include_handles: Select Handles, Select the strips and their handles
|
|
1710
1746
|
:type include_handles: bool | None
|
|
1747
|
+
:param ignore_connections: Ignore Connections, Select strips individually whether or not they are connected
|
|
1748
|
+
:type ignore_connections: bool | None
|
|
1711
1749
|
"""
|
|
1712
1750
|
|
|
1713
1751
|
...
|
|
@@ -1768,6 +1806,7 @@ def select_handle(
|
|
|
1768
1806
|
wait_to_deselect_others: bool | None = False,
|
|
1769
1807
|
mouse_x: int | None = 0,
|
|
1770
1808
|
mouse_y: int | None = 0,
|
|
1809
|
+
ignore_connections: bool | None = False,
|
|
1771
1810
|
):
|
|
1772
1811
|
"""Select strip handle
|
|
1773
1812
|
|
|
@@ -1780,6 +1819,8 @@ def select_handle(
|
|
|
1780
1819
|
:type mouse_x: int | None
|
|
1781
1820
|
:param mouse_y: Mouse Y
|
|
1782
1821
|
:type mouse_y: int | None
|
|
1822
|
+
:param ignore_connections: Ignore Connections, Select strips individually whether or not they are connected
|
|
1823
|
+
:type ignore_connections: bool | None
|
|
1783
1824
|
"""
|
|
1784
1825
|
|
|
1785
1826
|
...
|