fake-bpy-module 20240620__py3-none-any.whl → 20240621__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_ui/space_userpref/__init__.pyi +225 -0
- bpy/ops/action/__init__.pyi +50 -50
- bpy/ops/anim/__init__.pyi +94 -94
- bpy/ops/armature/__init__.pyi +54 -54
- bpy/ops/asset/__init__.pyi +50 -50
- bpy/ops/brush/__init__.pyi +10 -10
- bpy/ops/buttons/__init__.pyi +88 -88
- bpy/ops/cachefile/__init__.pyi +88 -88
- bpy/ops/camera/__init__.pyi +14 -14
- bpy/ops/clip/__init__.pyi +175 -174
- bpy/ops/cloth/__init__.pyi +6 -6
- bpy/ops/collection/__init__.pyi +8 -8
- bpy/ops/console/__init__.pyi +26 -26
- bpy/ops/constraint/__init__.pyi +42 -42
- bpy/ops/curve/__init__.pyi +167 -122
- bpy/ops/curves/__init__.pyi +75 -58
- bpy/ops/cycles/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +50 -50
- bpy/ops/export_anim/__init__.pyi +14 -14
- bpy/ops/export_scene/__init__.pyi +250 -250
- bpy/ops/extensions/__init__.pyi +73 -73
- bpy/ops/file/__init__.pyi +94 -94
- bpy/ops/fluid/__init__.pyi +6 -6
- bpy/ops/font/__init__.pyi +100 -100
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +10 -10
- bpy/ops/gpencil/__init__.pyi +411 -410
- bpy/ops/graph/__init__.pyi +194 -194
- bpy/ops/grease_pencil/__init__.pyi +100 -100
- bpy/ops/image/__init__.pyi +399 -390
- bpy/ops/import_anim/__init__.pyi +16 -16
- bpy/ops/import_curve/__init__.pyi +4 -4
- bpy/ops/import_scene/__init__.pyi +56 -56
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +8 -8
- bpy/ops/marker/__init__.pyi +34 -34
- bpy/ops/mask/__init__.pyi +63 -62
- bpy/ops/mball/__init__.pyi +12 -12
- bpy/ops/mesh/__init__.pyi +893 -790
- bpy/ops/nla/__init__.pyi +70 -70
- bpy/ops/node/__init__.pyi +192 -192
- bpy/ops/object/__init__.pyi +1013 -840
- bpy/ops/outliner/__init__.pyi +44 -44
- bpy/ops/paint/__init__.pyi +169 -168
- bpy/ops/paintcurve/__init__.pyi +12 -12
- bpy/ops/palette/__init__.pyi +4 -4
- bpy/ops/particle/__init__.pyi +34 -34
- bpy/ops/pose/__init__.pyi +60 -60
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +150 -150
- bpy/ops/ptcache/__init__.pyi +4 -4
- bpy/ops/render/__init__.pyi +56 -56
- bpy/ops/rigidbody/__init__.pyi +8 -8
- bpy/ops/scene/__init__.pyi +20 -20
- bpy/ops/screen/__init__.pyi +128 -128
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +207 -202
- bpy/ops/sculpt_curves/__init__.pyi +12 -12
- bpy/ops/sequencer/__init__.pyi +465 -464
- bpy/ops/sound/__init__.pyi +154 -154
- bpy/ops/spreadsheet/__init__.pyi +6 -6
- bpy/ops/surface/__init__.pyi +109 -60
- bpy/ops/text/__init__.pyi +110 -110
- bpy/ops/text_editor/__init__.pyi +6 -6
- bpy/ops/transform/__init__.pyi +628 -566
- bpy/ops/ui/__init__.pyi +25 -24
- bpy/ops/uilist/__init__.pyi +12 -12
- bpy/ops/uv/__init__.pyi +235 -234
- bpy/ops/view2d/__init__.pyi +72 -72
- bpy/ops/view3d/__init__.pyi +144 -144
- bpy/ops/wm/__init__.pyi +1813 -1806
- bpy/ops/workspace/__init__.pyi +4 -4
- bpy/types/__init__.pyi +1611 -1802
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/RECORD +77 -77
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/top_level.txt +0 -0
bpy/ops/view2d/__init__.pyi
CHANGED
|
@@ -10,12 +10,12 @@ def edge_pan(
|
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
*,
|
|
13
|
-
inside_padding:
|
|
14
|
-
outside_padding:
|
|
15
|
-
speed_ramp:
|
|
16
|
-
max_speed:
|
|
17
|
-
delay:
|
|
18
|
-
zoom_influence:
|
|
13
|
+
inside_padding: float | None = 1.0,
|
|
14
|
+
outside_padding: float | None = 0.0,
|
|
15
|
+
speed_ramp: float | None = 1.0,
|
|
16
|
+
max_speed: float | None = 500.0,
|
|
17
|
+
delay: float | None = 1.0,
|
|
18
|
+
zoom_influence: float | None = 0.0,
|
|
19
19
|
):
|
|
20
20
|
"""Pan the view when the mouse is held at an edge
|
|
21
21
|
|
|
@@ -23,17 +23,17 @@ def edge_pan(
|
|
|
23
23
|
:type execution_context: int | str | None
|
|
24
24
|
:type undo: bool | None
|
|
25
25
|
:param inside_padding: Inside Padding, Inside distance in UI units from the edge of the region within which to start panning
|
|
26
|
-
:type inside_padding:
|
|
26
|
+
:type inside_padding: float | None
|
|
27
27
|
:param outside_padding: Outside Padding, Outside distance in UI units from the edge of the region at which to stop panning
|
|
28
|
-
:type outside_padding:
|
|
28
|
+
:type outside_padding: float | None
|
|
29
29
|
:param speed_ramp: Speed Ramp, Width of the zone in UI units where speed increases with distance from the edge
|
|
30
|
-
:type speed_ramp:
|
|
30
|
+
:type speed_ramp: float | None
|
|
31
31
|
:param max_speed: Max Speed, Maximum speed in UI units per second
|
|
32
|
-
:type max_speed:
|
|
32
|
+
:type max_speed: float | None
|
|
33
33
|
:param delay: Delay, Delay in seconds before maximum speed is reached
|
|
34
|
-
:type delay:
|
|
34
|
+
:type delay: float | None
|
|
35
35
|
:param zoom_influence: Zoom Influence, Influence of the zoom factor on scroll speed
|
|
36
|
-
:type zoom_influence:
|
|
36
|
+
:type zoom_influence: float | None
|
|
37
37
|
"""
|
|
38
38
|
|
|
39
39
|
...
|
|
@@ -57,8 +57,8 @@ def pan(
|
|
|
57
57
|
execution_context: int | str | None = None,
|
|
58
58
|
undo: bool | None = None,
|
|
59
59
|
*,
|
|
60
|
-
deltax:
|
|
61
|
-
deltay:
|
|
60
|
+
deltax: int | None = 0,
|
|
61
|
+
deltay: int | None = 0,
|
|
62
62
|
):
|
|
63
63
|
"""Pan the view
|
|
64
64
|
|
|
@@ -66,9 +66,9 @@ def pan(
|
|
|
66
66
|
:type execution_context: int | str | None
|
|
67
67
|
:type undo: bool | None
|
|
68
68
|
:param deltax: Delta X
|
|
69
|
-
:type deltax:
|
|
69
|
+
:type deltax: int | None
|
|
70
70
|
:param deltay: Delta Y
|
|
71
|
-
:type deltay:
|
|
71
|
+
:type deltay: int | None
|
|
72
72
|
"""
|
|
73
73
|
|
|
74
74
|
...
|
|
@@ -92,9 +92,9 @@ def scroll_down(
|
|
|
92
92
|
execution_context: int | str | None = None,
|
|
93
93
|
undo: bool | None = None,
|
|
94
94
|
*,
|
|
95
|
-
deltax:
|
|
96
|
-
deltay:
|
|
97
|
-
page: bool |
|
|
95
|
+
deltax: int | None = 0,
|
|
96
|
+
deltay: int | None = 0,
|
|
97
|
+
page: bool | None = False,
|
|
98
98
|
):
|
|
99
99
|
"""Scroll the view down
|
|
100
100
|
|
|
@@ -102,11 +102,11 @@ def scroll_down(
|
|
|
102
102
|
:type execution_context: int | str | None
|
|
103
103
|
:type undo: bool | None
|
|
104
104
|
:param deltax: Delta X
|
|
105
|
-
:type deltax:
|
|
105
|
+
:type deltax: int | None
|
|
106
106
|
:param deltay: Delta Y
|
|
107
|
-
:type deltay:
|
|
107
|
+
:type deltay: int | None
|
|
108
108
|
:param page: Page, Scroll down one page
|
|
109
|
-
:type page: bool |
|
|
109
|
+
:type page: bool | None
|
|
110
110
|
"""
|
|
111
111
|
|
|
112
112
|
...
|
|
@@ -116,8 +116,8 @@ def scroll_left(
|
|
|
116
116
|
execution_context: int | str | None = None,
|
|
117
117
|
undo: bool | None = None,
|
|
118
118
|
*,
|
|
119
|
-
deltax:
|
|
120
|
-
deltay:
|
|
119
|
+
deltax: int | None = 0,
|
|
120
|
+
deltay: int | None = 0,
|
|
121
121
|
):
|
|
122
122
|
"""Scroll the view left
|
|
123
123
|
|
|
@@ -125,9 +125,9 @@ def scroll_left(
|
|
|
125
125
|
:type execution_context: int | str | None
|
|
126
126
|
:type undo: bool | None
|
|
127
127
|
:param deltax: Delta X
|
|
128
|
-
:type deltax:
|
|
128
|
+
:type deltax: int | None
|
|
129
129
|
:param deltay: Delta Y
|
|
130
|
-
:type deltay:
|
|
130
|
+
:type deltay: int | None
|
|
131
131
|
"""
|
|
132
132
|
|
|
133
133
|
...
|
|
@@ -137,8 +137,8 @@ def scroll_right(
|
|
|
137
137
|
execution_context: int | str | None = None,
|
|
138
138
|
undo: bool | None = None,
|
|
139
139
|
*,
|
|
140
|
-
deltax:
|
|
141
|
-
deltay:
|
|
140
|
+
deltax: int | None = 0,
|
|
141
|
+
deltay: int | None = 0,
|
|
142
142
|
):
|
|
143
143
|
"""Scroll the view right
|
|
144
144
|
|
|
@@ -146,9 +146,9 @@ def scroll_right(
|
|
|
146
146
|
:type execution_context: int | str | None
|
|
147
147
|
:type undo: bool | None
|
|
148
148
|
:param deltax: Delta X
|
|
149
|
-
:type deltax:
|
|
149
|
+
:type deltax: int | None
|
|
150
150
|
:param deltay: Delta Y
|
|
151
|
-
:type deltay:
|
|
151
|
+
:type deltay: int | None
|
|
152
152
|
"""
|
|
153
153
|
|
|
154
154
|
...
|
|
@@ -158,9 +158,9 @@ def scroll_up(
|
|
|
158
158
|
execution_context: int | str | None = None,
|
|
159
159
|
undo: bool | None = None,
|
|
160
160
|
*,
|
|
161
|
-
deltax:
|
|
162
|
-
deltay:
|
|
163
|
-
page: bool |
|
|
161
|
+
deltax: int | None = 0,
|
|
162
|
+
deltay: int | None = 0,
|
|
163
|
+
page: bool | None = False,
|
|
164
164
|
):
|
|
165
165
|
"""Scroll the view up
|
|
166
166
|
|
|
@@ -168,11 +168,11 @@ def scroll_up(
|
|
|
168
168
|
:type execution_context: int | str | None
|
|
169
169
|
:type undo: bool | None
|
|
170
170
|
:param deltax: Delta X
|
|
171
|
-
:type deltax:
|
|
171
|
+
:type deltax: int | None
|
|
172
172
|
:param deltay: Delta Y
|
|
173
|
-
:type deltay:
|
|
173
|
+
:type deltay: int | None
|
|
174
174
|
:param page: Page, Scroll up one page
|
|
175
|
-
:type page: bool |
|
|
175
|
+
:type page: bool | None
|
|
176
176
|
"""
|
|
177
177
|
|
|
178
178
|
...
|
|
@@ -196,11 +196,11 @@ def smoothview(
|
|
|
196
196
|
execution_context: int | str | None = None,
|
|
197
197
|
undo: bool | None = None,
|
|
198
198
|
*,
|
|
199
|
-
xmin:
|
|
200
|
-
xmax:
|
|
201
|
-
ymin:
|
|
202
|
-
ymax:
|
|
203
|
-
wait_for_input: bool |
|
|
199
|
+
xmin: int | None = 0,
|
|
200
|
+
xmax: int | None = 0,
|
|
201
|
+
ymin: int | None = 0,
|
|
202
|
+
ymax: int | None = 0,
|
|
203
|
+
wait_for_input: bool | None = True,
|
|
204
204
|
):
|
|
205
205
|
"""Undocumented, consider contributing.
|
|
206
206
|
|
|
@@ -208,15 +208,15 @@ def smoothview(
|
|
|
208
208
|
:type execution_context: int | str | None
|
|
209
209
|
:type undo: bool | None
|
|
210
210
|
:param xmin: X Min
|
|
211
|
-
:type xmin:
|
|
211
|
+
:type xmin: int | None
|
|
212
212
|
:param xmax: X Max
|
|
213
|
-
:type xmax:
|
|
213
|
+
:type xmax: int | None
|
|
214
214
|
:param ymin: Y Min
|
|
215
|
-
:type ymin:
|
|
215
|
+
:type ymin: int | None
|
|
216
216
|
:param ymax: Y Max
|
|
217
|
-
:type ymax:
|
|
217
|
+
:type ymax: int | None
|
|
218
218
|
:param wait_for_input: Wait for Input
|
|
219
|
-
:type wait_for_input: bool |
|
|
219
|
+
:type wait_for_input: bool | None
|
|
220
220
|
"""
|
|
221
221
|
|
|
222
222
|
...
|
|
@@ -226,9 +226,9 @@ def zoom(
|
|
|
226
226
|
execution_context: int | str | None = None,
|
|
227
227
|
undo: bool | None = None,
|
|
228
228
|
*,
|
|
229
|
-
deltax:
|
|
230
|
-
deltay:
|
|
231
|
-
use_cursor_init: bool |
|
|
229
|
+
deltax: float | None = 0.0,
|
|
230
|
+
deltay: float | None = 0.0,
|
|
231
|
+
use_cursor_init: bool | None = True,
|
|
232
232
|
):
|
|
233
233
|
"""Zoom in/out the view
|
|
234
234
|
|
|
@@ -236,11 +236,11 @@ def zoom(
|
|
|
236
236
|
:type execution_context: int | str | None
|
|
237
237
|
:type undo: bool | None
|
|
238
238
|
:param deltax: Delta X
|
|
239
|
-
:type deltax:
|
|
239
|
+
:type deltax: float | None
|
|
240
240
|
:param deltay: Delta Y
|
|
241
|
-
:type deltay:
|
|
241
|
+
:type deltay: float | None
|
|
242
242
|
:param use_cursor_init: Use Mouse Position, Allow the initial mouse position to be used
|
|
243
|
-
:type use_cursor_init: bool |
|
|
243
|
+
:type use_cursor_init: bool | None
|
|
244
244
|
"""
|
|
245
245
|
|
|
246
246
|
...
|
|
@@ -250,12 +250,12 @@ def zoom_border(
|
|
|
250
250
|
execution_context: int | str | None = None,
|
|
251
251
|
undo: bool | None = None,
|
|
252
252
|
*,
|
|
253
|
-
xmin:
|
|
254
|
-
xmax:
|
|
255
|
-
ymin:
|
|
256
|
-
ymax:
|
|
257
|
-
wait_for_input: bool |
|
|
258
|
-
zoom_out: bool |
|
|
253
|
+
xmin: int | None = 0,
|
|
254
|
+
xmax: int | None = 0,
|
|
255
|
+
ymin: int | None = 0,
|
|
256
|
+
ymax: int | None = 0,
|
|
257
|
+
wait_for_input: bool | None = True,
|
|
258
|
+
zoom_out: bool | None = False,
|
|
259
259
|
):
|
|
260
260
|
"""Zoom in the view to the nearest item contained in the border
|
|
261
261
|
|
|
@@ -263,17 +263,17 @@ def zoom_border(
|
|
|
263
263
|
:type execution_context: int | str | None
|
|
264
264
|
:type undo: bool | None
|
|
265
265
|
:param xmin: X Min
|
|
266
|
-
:type xmin:
|
|
266
|
+
:type xmin: int | None
|
|
267
267
|
:param xmax: X Max
|
|
268
|
-
:type xmax:
|
|
268
|
+
:type xmax: int | None
|
|
269
269
|
:param ymin: Y Min
|
|
270
|
-
:type ymin:
|
|
270
|
+
:type ymin: int | None
|
|
271
271
|
:param ymax: Y Max
|
|
272
|
-
:type ymax:
|
|
272
|
+
:type ymax: int | None
|
|
273
273
|
:param wait_for_input: Wait for Input
|
|
274
|
-
:type wait_for_input: bool |
|
|
274
|
+
:type wait_for_input: bool | None
|
|
275
275
|
:param zoom_out: Zoom Out
|
|
276
|
-
:type zoom_out: bool |
|
|
276
|
+
:type zoom_out: bool | None
|
|
277
277
|
"""
|
|
278
278
|
|
|
279
279
|
...
|
|
@@ -283,8 +283,8 @@ def zoom_in(
|
|
|
283
283
|
execution_context: int | str | None = None,
|
|
284
284
|
undo: bool | None = None,
|
|
285
285
|
*,
|
|
286
|
-
zoomfacx:
|
|
287
|
-
zoomfacy:
|
|
286
|
+
zoomfacx: float | None = 0.0,
|
|
287
|
+
zoomfacy: float | None = 0.0,
|
|
288
288
|
):
|
|
289
289
|
"""Zoom in the view
|
|
290
290
|
|
|
@@ -292,9 +292,9 @@ def zoom_in(
|
|
|
292
292
|
:type execution_context: int | str | None
|
|
293
293
|
:type undo: bool | None
|
|
294
294
|
:param zoomfacx: Zoom Factor X
|
|
295
|
-
:type zoomfacx:
|
|
295
|
+
:type zoomfacx: float | None
|
|
296
296
|
:param zoomfacy: Zoom Factor Y
|
|
297
|
-
:type zoomfacy:
|
|
297
|
+
:type zoomfacy: float | None
|
|
298
298
|
"""
|
|
299
299
|
|
|
300
300
|
...
|
|
@@ -304,8 +304,8 @@ def zoom_out(
|
|
|
304
304
|
execution_context: int | str | None = None,
|
|
305
305
|
undo: bool | None = None,
|
|
306
306
|
*,
|
|
307
|
-
zoomfacx:
|
|
308
|
-
zoomfacy:
|
|
307
|
+
zoomfacx: float | None = 0.0,
|
|
308
|
+
zoomfacy: float | None = 0.0,
|
|
309
309
|
):
|
|
310
310
|
"""Zoom out the view
|
|
311
311
|
|
|
@@ -313,9 +313,9 @@ def zoom_out(
|
|
|
313
313
|
:type execution_context: int | str | None
|
|
314
314
|
:type undo: bool | None
|
|
315
315
|
:param zoomfacx: Zoom Factor X
|
|
316
|
-
:type zoomfacx:
|
|
316
|
+
:type zoomfacx: float | None
|
|
317
317
|
:param zoomfacy: Zoom Factor Y
|
|
318
|
-
:type zoomfacy:
|
|
318
|
+
:type zoomfacy: float | None
|
|
319
319
|
"""
|
|
320
320
|
|
|
321
321
|
...
|