fake-bpy-module 20250926__py3-none-any.whl → 20250928__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.
- bl_operators/node/__init__.pyi +0 -9
- bl_ui/node_add_menu/__init__.pyi +16 -15
- bl_ui/node_add_menu_compositor/__init__.pyi +17 -17
- bl_ui/node_add_menu_geometry/__init__.pyi +56 -56
- bl_ui/node_add_menu_shader/__init__.pyi +10 -10
- bl_ui/node_add_menu_texture/__init__.pyi +1 -1
- bl_ui/properties_render/__init__.pyi +31 -0
- bl_ui/space_node/__init__.pyi +2 -2
- bpy/ops/action/__init__.pyi +3 -0
- bpy/ops/file/__init__.pyi +3 -0
- bpy/ops/graph/__init__.pyi +3 -0
- bpy/ops/marker/__init__.pyi +3 -0
- bpy/ops/nla/__init__.pyi +3 -0
- bpy/ops/node/__init__.pyi +206 -0
- bpy/ops/sequencer/__init__.pyi +6 -0
- bpy/ops/ui/__init__.pyi +12 -0
- bpy/stub_internal/rna_enums/__init__.pyi +2 -0
- bpy/types/__init__.pyi +635 -30
- {fake_bpy_module-20250926.dist-info → fake_bpy_module-20250928.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250926.dist-info → fake_bpy_module-20250928.dist-info}/RECORD +23 -23
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20250926.dist-info → fake_bpy_module-20250928.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250926.dist-info → fake_bpy_module-20250928.dist-info}/top_level.txt +0 -0
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -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.
|