fake-bpy-module 20240927__py3-none-any.whl → 20240929__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/generic_ui_list/__init__.pyi +2 -2
- bl_ui/space_dopesheet/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +36 -0
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +144 -120
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +220 -200
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +68 -68
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +449 -226
- bpy/typing/__init__.pyi +1 -0
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/view2d/__init__.pyi
CHANGED
|
@@ -4,7 +4,7 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def edge_pan(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
7
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
*,
|
|
@@ -17,7 +17,7 @@ def edge_pan(
|
|
|
17
17
|
):
|
|
18
18
|
"""Pan the view when the mouse is held at an edge
|
|
19
19
|
|
|
20
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
20
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
21
21
|
:type execution_context: int | str | None
|
|
22
22
|
:type undo: bool | None
|
|
23
23
|
:param inside_padding: Inside Padding, Inside distance in UI units from the edge of the region within which to start panning
|
|
@@ -35,19 +35,19 @@ def edge_pan(
|
|
|
35
35
|
"""
|
|
36
36
|
|
|
37
37
|
def ndof(
|
|
38
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
38
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
39
39
|
execution_context: int | str | None = None,
|
|
40
40
|
undo: bool | None = None,
|
|
41
41
|
):
|
|
42
42
|
"""Use a 3D mouse device to pan/zoom the view
|
|
43
43
|
|
|
44
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
44
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
45
45
|
:type execution_context: int | str | None
|
|
46
46
|
:type undo: bool | None
|
|
47
47
|
"""
|
|
48
48
|
|
|
49
49
|
def pan(
|
|
50
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
50
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
51
51
|
execution_context: int | str | None = None,
|
|
52
52
|
undo: bool | None = None,
|
|
53
53
|
*,
|
|
@@ -56,7 +56,7 @@ def pan(
|
|
|
56
56
|
):
|
|
57
57
|
"""Pan the view
|
|
58
58
|
|
|
59
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
59
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
60
60
|
:type execution_context: int | str | None
|
|
61
61
|
:type undo: bool | None
|
|
62
62
|
:param deltax: Delta X
|
|
@@ -66,19 +66,19 @@ def pan(
|
|
|
66
66
|
"""
|
|
67
67
|
|
|
68
68
|
def reset(
|
|
69
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
69
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
70
70
|
execution_context: int | str | None = None,
|
|
71
71
|
undo: bool | None = None,
|
|
72
72
|
):
|
|
73
73
|
"""Reset the view
|
|
74
74
|
|
|
75
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
75
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
76
76
|
:type execution_context: int | str | None
|
|
77
77
|
:type undo: bool | None
|
|
78
78
|
"""
|
|
79
79
|
|
|
80
80
|
def scroll_down(
|
|
81
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
81
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
82
82
|
execution_context: int | str | None = None,
|
|
83
83
|
undo: bool | None = None,
|
|
84
84
|
*,
|
|
@@ -88,7 +88,7 @@ def scroll_down(
|
|
|
88
88
|
):
|
|
89
89
|
"""Scroll the view down
|
|
90
90
|
|
|
91
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
91
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
92
92
|
:type execution_context: int | str | None
|
|
93
93
|
:type undo: bool | None
|
|
94
94
|
:param deltax: Delta X
|
|
@@ -100,7 +100,7 @@ def scroll_down(
|
|
|
100
100
|
"""
|
|
101
101
|
|
|
102
102
|
def scroll_left(
|
|
103
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
103
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
104
104
|
execution_context: int | str | None = None,
|
|
105
105
|
undo: bool | None = None,
|
|
106
106
|
*,
|
|
@@ -109,7 +109,7 @@ def scroll_left(
|
|
|
109
109
|
):
|
|
110
110
|
"""Scroll the view left
|
|
111
111
|
|
|
112
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
112
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
113
113
|
:type execution_context: int | str | None
|
|
114
114
|
:type undo: bool | None
|
|
115
115
|
:param deltax: Delta X
|
|
@@ -119,7 +119,7 @@ def scroll_left(
|
|
|
119
119
|
"""
|
|
120
120
|
|
|
121
121
|
def scroll_right(
|
|
122
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
122
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
123
123
|
execution_context: int | str | None = None,
|
|
124
124
|
undo: bool | None = None,
|
|
125
125
|
*,
|
|
@@ -128,7 +128,7 @@ def scroll_right(
|
|
|
128
128
|
):
|
|
129
129
|
"""Scroll the view right
|
|
130
130
|
|
|
131
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
131
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
132
132
|
:type execution_context: int | str | None
|
|
133
133
|
:type undo: bool | None
|
|
134
134
|
:param deltax: Delta X
|
|
@@ -138,7 +138,7 @@ def scroll_right(
|
|
|
138
138
|
"""
|
|
139
139
|
|
|
140
140
|
def scroll_up(
|
|
141
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
141
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
142
142
|
execution_context: int | str | None = None,
|
|
143
143
|
undo: bool | None = None,
|
|
144
144
|
*,
|
|
@@ -148,7 +148,7 @@ def scroll_up(
|
|
|
148
148
|
):
|
|
149
149
|
"""Scroll the view up
|
|
150
150
|
|
|
151
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
151
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
152
152
|
:type execution_context: int | str | None
|
|
153
153
|
:type undo: bool | None
|
|
154
154
|
:param deltax: Delta X
|
|
@@ -160,19 +160,19 @@ def scroll_up(
|
|
|
160
160
|
"""
|
|
161
161
|
|
|
162
162
|
def scroller_activate(
|
|
163
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
163
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
164
164
|
execution_context: int | str | None = None,
|
|
165
165
|
undo: bool | None = None,
|
|
166
166
|
):
|
|
167
167
|
"""Scroll view by mouse click and drag
|
|
168
168
|
|
|
169
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
169
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
170
170
|
:type execution_context: int | str | None
|
|
171
171
|
:type undo: bool | None
|
|
172
172
|
"""
|
|
173
173
|
|
|
174
174
|
def smoothview(
|
|
175
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
175
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
176
176
|
execution_context: int | str | None = None,
|
|
177
177
|
undo: bool | None = None,
|
|
178
178
|
*,
|
|
@@ -184,7 +184,7 @@ def smoothview(
|
|
|
184
184
|
):
|
|
185
185
|
"""Undocumented, consider contributing.
|
|
186
186
|
|
|
187
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
187
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
188
188
|
:type execution_context: int | str | None
|
|
189
189
|
:type undo: bool | None
|
|
190
190
|
:param xmin: X Min
|
|
@@ -200,7 +200,7 @@ def smoothview(
|
|
|
200
200
|
"""
|
|
201
201
|
|
|
202
202
|
def zoom(
|
|
203
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
203
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
204
204
|
execution_context: int | str | None = None,
|
|
205
205
|
undo: bool | None = None,
|
|
206
206
|
*,
|
|
@@ -210,7 +210,7 @@ def zoom(
|
|
|
210
210
|
):
|
|
211
211
|
"""Zoom in/out the view
|
|
212
212
|
|
|
213
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
213
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
214
214
|
:type execution_context: int | str | None
|
|
215
215
|
:type undo: bool | None
|
|
216
216
|
:param deltax: Delta X
|
|
@@ -222,7 +222,7 @@ def zoom(
|
|
|
222
222
|
"""
|
|
223
223
|
|
|
224
224
|
def zoom_border(
|
|
225
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
225
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
226
226
|
execution_context: int | str | None = None,
|
|
227
227
|
undo: bool | None = None,
|
|
228
228
|
*,
|
|
@@ -235,7 +235,7 @@ def zoom_border(
|
|
|
235
235
|
):
|
|
236
236
|
"""Zoom in the view to the nearest item contained in the border
|
|
237
237
|
|
|
238
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
238
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
239
239
|
:type execution_context: int | str | None
|
|
240
240
|
:type undo: bool | None
|
|
241
241
|
:param xmin: X Min
|
|
@@ -253,7 +253,7 @@ def zoom_border(
|
|
|
253
253
|
"""
|
|
254
254
|
|
|
255
255
|
def zoom_in(
|
|
256
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
256
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
257
257
|
execution_context: int | str | None = None,
|
|
258
258
|
undo: bool | None = None,
|
|
259
259
|
*,
|
|
@@ -262,7 +262,7 @@ def zoom_in(
|
|
|
262
262
|
):
|
|
263
263
|
"""Zoom in the view
|
|
264
264
|
|
|
265
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
265
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
266
266
|
:type execution_context: int | str | None
|
|
267
267
|
:type undo: bool | None
|
|
268
268
|
:param zoomfacx: Zoom Factor X
|
|
@@ -272,7 +272,7 @@ def zoom_in(
|
|
|
272
272
|
"""
|
|
273
273
|
|
|
274
274
|
def zoom_out(
|
|
275
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
275
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
276
276
|
execution_context: int | str | None = None,
|
|
277
277
|
undo: bool | None = None,
|
|
278
278
|
*,
|
|
@@ -281,7 +281,7 @@ def zoom_out(
|
|
|
281
281
|
):
|
|
282
282
|
"""Zoom out the view
|
|
283
283
|
|
|
284
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
284
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
285
285
|
:type execution_context: int | str | None
|
|
286
286
|
:type undo: bool | None
|
|
287
287
|
:param zoomfacx: Zoom Factor X
|