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/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
|
bpy/ops/graph/__init__.pyi
CHANGED
|
@@ -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
|
bpy/ops/marker/__init__.pyi
CHANGED
|
@@ -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
|