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.

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