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/screen/__init__.pyi
CHANGED
|
@@ -5,7 +5,7 @@ import bpy.types
|
|
|
5
5
|
import bpy.typing
|
|
6
6
|
|
|
7
7
|
def actionzone(
|
|
8
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
8
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
9
9
|
execution_context: int | str | None = None,
|
|
10
10
|
undo: bool | None = None,
|
|
11
11
|
*,
|
|
@@ -13,7 +13,7 @@ def actionzone(
|
|
|
13
13
|
):
|
|
14
14
|
"""Handle area action zones for mouse actions/gestures
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
:param modifier: Modifier, Modifier state
|
|
@@ -21,7 +21,7 @@ def actionzone(
|
|
|
21
21
|
"""
|
|
22
22
|
|
|
23
23
|
def animation_cancel(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
24
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
25
25
|
execution_context: int | str | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
27
|
*,
|
|
@@ -29,7 +29,7 @@ def animation_cancel(
|
|
|
29
29
|
):
|
|
30
30
|
"""Cancel animation, returning to the original frame
|
|
31
31
|
|
|
32
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
32
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
33
33
|
:type execution_context: int | str | None
|
|
34
34
|
:type undo: bool | None
|
|
35
35
|
:param restore_frame: Restore Frame, Restore the frame when animation was initialized
|
|
@@ -37,7 +37,7 @@ def animation_cancel(
|
|
|
37
37
|
"""
|
|
38
38
|
|
|
39
39
|
def animation_play(
|
|
40
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
40
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
41
41
|
execution_context: int | str | None = None,
|
|
42
42
|
undo: bool | None = None,
|
|
43
43
|
*,
|
|
@@ -46,7 +46,7 @@ def animation_play(
|
|
|
46
46
|
):
|
|
47
47
|
"""Play animation
|
|
48
48
|
|
|
49
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
49
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
50
50
|
:type execution_context: int | str | None
|
|
51
51
|
:type undo: bool | None
|
|
52
52
|
:param reverse: Play in Reverse, Animation is played backwards
|
|
@@ -56,43 +56,43 @@ def animation_play(
|
|
|
56
56
|
"""
|
|
57
57
|
|
|
58
58
|
def animation_step(
|
|
59
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
59
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
60
60
|
execution_context: int | str | None = None,
|
|
61
61
|
undo: bool | None = None,
|
|
62
62
|
):
|
|
63
63
|
"""Step through animation by position
|
|
64
64
|
|
|
65
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
65
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
66
66
|
:type execution_context: int | str | None
|
|
67
67
|
:type undo: bool | None
|
|
68
68
|
"""
|
|
69
69
|
|
|
70
70
|
def area_close(
|
|
71
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
71
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
72
72
|
execution_context: int | str | None = None,
|
|
73
73
|
undo: bool | None = None,
|
|
74
74
|
):
|
|
75
75
|
"""Close selected area
|
|
76
76
|
|
|
77
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
77
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
78
78
|
:type execution_context: int | str | None
|
|
79
79
|
:type undo: bool | None
|
|
80
80
|
"""
|
|
81
81
|
|
|
82
82
|
def area_dupli(
|
|
83
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
83
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
84
84
|
execution_context: int | str | None = None,
|
|
85
85
|
undo: bool | None = None,
|
|
86
86
|
):
|
|
87
87
|
"""Duplicate selected area into new window
|
|
88
88
|
|
|
89
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
89
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
90
90
|
:type execution_context: int | str | None
|
|
91
91
|
:type undo: bool | None
|
|
92
92
|
"""
|
|
93
93
|
|
|
94
94
|
def area_join(
|
|
95
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
95
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
96
96
|
execution_context: int | str | None = None,
|
|
97
97
|
undo: bool | None = None,
|
|
98
98
|
*,
|
|
@@ -101,7 +101,7 @@ def area_join(
|
|
|
101
101
|
):
|
|
102
102
|
"""Join selected areas into new window
|
|
103
103
|
|
|
104
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
104
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
105
105
|
:type execution_context: int | str | None
|
|
106
106
|
:type undo: bool | None
|
|
107
107
|
:param source_xy: Source location
|
|
@@ -111,7 +111,7 @@ def area_join(
|
|
|
111
111
|
"""
|
|
112
112
|
|
|
113
113
|
def area_move(
|
|
114
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
114
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
115
115
|
execution_context: int | str | None = None,
|
|
116
116
|
undo: bool | None = None,
|
|
117
117
|
*,
|
|
@@ -121,7 +121,7 @@ def area_move(
|
|
|
121
121
|
):
|
|
122
122
|
"""Move selected area edges
|
|
123
123
|
|
|
124
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
124
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
125
125
|
:type execution_context: int | str | None
|
|
126
126
|
:type undo: bool | None
|
|
127
127
|
:param x: X
|
|
@@ -133,19 +133,19 @@ def area_move(
|
|
|
133
133
|
"""
|
|
134
134
|
|
|
135
135
|
def area_options(
|
|
136
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
136
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
137
137
|
execution_context: int | str | None = None,
|
|
138
138
|
undo: bool | None = None,
|
|
139
139
|
):
|
|
140
140
|
"""Operations for splitting and merging
|
|
141
141
|
|
|
142
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
142
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
143
143
|
:type execution_context: int | str | None
|
|
144
144
|
:type undo: bool | None
|
|
145
145
|
"""
|
|
146
146
|
|
|
147
147
|
def area_split(
|
|
148
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
148
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
149
149
|
execution_context: int | str | None = None,
|
|
150
150
|
undo: bool | None = None,
|
|
151
151
|
*,
|
|
@@ -155,7 +155,7 @@ def area_split(
|
|
|
155
155
|
):
|
|
156
156
|
"""Split selected area into new windows
|
|
157
157
|
|
|
158
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
158
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
159
159
|
:type execution_context: int | str | None
|
|
160
160
|
:type undo: bool | None
|
|
161
161
|
:param direction: Direction
|
|
@@ -167,7 +167,7 @@ def area_split(
|
|
|
167
167
|
"""
|
|
168
168
|
|
|
169
169
|
def area_swap(
|
|
170
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
170
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
171
171
|
execution_context: int | str | None = None,
|
|
172
172
|
undo: bool | None = None,
|
|
173
173
|
*,
|
|
@@ -175,7 +175,7 @@ def area_swap(
|
|
|
175
175
|
):
|
|
176
176
|
"""Swap selected areas screen positions
|
|
177
177
|
|
|
178
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
178
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
179
179
|
:type execution_context: int | str | None
|
|
180
180
|
:type undo: bool | None
|
|
181
181
|
:param cursor: Cursor
|
|
@@ -183,43 +183,43 @@ def area_swap(
|
|
|
183
183
|
"""
|
|
184
184
|
|
|
185
185
|
def back_to_previous(
|
|
186
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
186
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
187
187
|
execution_context: int | str | None = None,
|
|
188
188
|
undo: bool | None = None,
|
|
189
189
|
):
|
|
190
190
|
"""Revert back to the original screen layout, before fullscreen area overlay
|
|
191
191
|
|
|
192
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
192
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
193
193
|
:type execution_context: int | str | None
|
|
194
194
|
:type undo: bool | None
|
|
195
195
|
"""
|
|
196
196
|
|
|
197
197
|
def delete(
|
|
198
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
198
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
199
199
|
execution_context: int | str | None = None,
|
|
200
200
|
undo: bool | None = None,
|
|
201
201
|
):
|
|
202
202
|
"""Delete active screen
|
|
203
203
|
|
|
204
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
204
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
205
205
|
:type execution_context: int | str | None
|
|
206
206
|
:type undo: bool | None
|
|
207
207
|
"""
|
|
208
208
|
|
|
209
209
|
def drivers_editor_show(
|
|
210
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
210
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
211
211
|
execution_context: int | str | None = None,
|
|
212
212
|
undo: bool | None = None,
|
|
213
213
|
):
|
|
214
214
|
"""Show drivers editor in a separate window
|
|
215
215
|
|
|
216
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
216
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
217
217
|
:type execution_context: int | str | None
|
|
218
218
|
:type undo: bool | None
|
|
219
219
|
"""
|
|
220
220
|
|
|
221
221
|
def frame_jump(
|
|
222
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
222
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
223
223
|
execution_context: int | str | None = None,
|
|
224
224
|
undo: bool | None = None,
|
|
225
225
|
*,
|
|
@@ -227,7 +227,7 @@ def frame_jump(
|
|
|
227
227
|
):
|
|
228
228
|
"""Jump to first/last frame in frame range
|
|
229
229
|
|
|
230
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
230
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
231
231
|
:type execution_context: int | str | None
|
|
232
232
|
:type undo: bool | None
|
|
233
233
|
:param end: Last Frame, Jump to the last frame of the frame range
|
|
@@ -235,7 +235,7 @@ def frame_jump(
|
|
|
235
235
|
"""
|
|
236
236
|
|
|
237
237
|
def frame_offset(
|
|
238
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
238
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
239
239
|
execution_context: int | str | None = None,
|
|
240
240
|
undo: bool | None = None,
|
|
241
241
|
*,
|
|
@@ -243,7 +243,7 @@ def frame_offset(
|
|
|
243
243
|
):
|
|
244
244
|
"""Move current frame forward/backward by a given number
|
|
245
245
|
|
|
246
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
246
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
247
247
|
:type execution_context: int | str | None
|
|
248
248
|
:type undo: bool | None
|
|
249
249
|
:param delta: Delta
|
|
@@ -251,31 +251,31 @@ def frame_offset(
|
|
|
251
251
|
"""
|
|
252
252
|
|
|
253
253
|
def header_toggle_menus(
|
|
254
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
254
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
255
255
|
execution_context: int | str | None = None,
|
|
256
256
|
undo: bool | None = None,
|
|
257
257
|
):
|
|
258
258
|
"""Expand or collapse the header pulldown menus
|
|
259
259
|
|
|
260
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
260
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
261
261
|
:type execution_context: int | str | None
|
|
262
262
|
:type undo: bool | None
|
|
263
263
|
"""
|
|
264
264
|
|
|
265
265
|
def info_log_show(
|
|
266
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
266
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
267
267
|
execution_context: int | str | None = None,
|
|
268
268
|
undo: bool | None = None,
|
|
269
269
|
):
|
|
270
270
|
"""Show info log in a separate window
|
|
271
271
|
|
|
272
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
272
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
273
273
|
:type execution_context: int | str | None
|
|
274
274
|
:type undo: bool | None
|
|
275
275
|
"""
|
|
276
276
|
|
|
277
277
|
def keyframe_jump(
|
|
278
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
278
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
279
279
|
execution_context: int | str | None = None,
|
|
280
280
|
undo: bool | None = None,
|
|
281
281
|
*,
|
|
@@ -283,7 +283,7 @@ def keyframe_jump(
|
|
|
283
283
|
):
|
|
284
284
|
"""Jump to previous/next keyframe
|
|
285
285
|
|
|
286
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
286
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
287
287
|
:type execution_context: int | str | None
|
|
288
288
|
:type undo: bool | None
|
|
289
289
|
:param next: Next Keyframe
|
|
@@ -291,7 +291,7 @@ def keyframe_jump(
|
|
|
291
291
|
"""
|
|
292
292
|
|
|
293
293
|
def marker_jump(
|
|
294
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
294
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
295
295
|
execution_context: int | str | None = None,
|
|
296
296
|
undo: bool | None = None,
|
|
297
297
|
*,
|
|
@@ -299,7 +299,7 @@ def marker_jump(
|
|
|
299
299
|
):
|
|
300
300
|
"""Jump to previous/next marker
|
|
301
301
|
|
|
302
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
302
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
303
303
|
:type execution_context: int | str | None
|
|
304
304
|
:type undo: bool | None
|
|
305
305
|
:param next: Next Marker
|
|
@@ -307,91 +307,91 @@ def marker_jump(
|
|
|
307
307
|
"""
|
|
308
308
|
|
|
309
309
|
def new(
|
|
310
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
310
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
311
311
|
execution_context: int | str | None = None,
|
|
312
312
|
undo: bool | None = None,
|
|
313
313
|
):
|
|
314
314
|
"""Add a new screen
|
|
315
315
|
|
|
316
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
316
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
317
317
|
:type execution_context: int | str | None
|
|
318
318
|
:type undo: bool | None
|
|
319
319
|
"""
|
|
320
320
|
|
|
321
321
|
def redo_last(
|
|
322
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
322
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
323
323
|
execution_context: int | str | None = None,
|
|
324
324
|
undo: bool | None = None,
|
|
325
325
|
):
|
|
326
326
|
"""Display parameters for last action performed
|
|
327
327
|
|
|
328
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
328
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
329
329
|
:type execution_context: int | str | None
|
|
330
330
|
:type undo: bool | None
|
|
331
331
|
"""
|
|
332
332
|
|
|
333
333
|
def region_blend(
|
|
334
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
334
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
335
335
|
execution_context: int | str | None = None,
|
|
336
336
|
undo: bool | None = None,
|
|
337
337
|
):
|
|
338
338
|
"""Blend in and out overlapping region
|
|
339
339
|
|
|
340
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
340
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
341
341
|
:type execution_context: int | str | None
|
|
342
342
|
:type undo: bool | None
|
|
343
343
|
"""
|
|
344
344
|
|
|
345
345
|
def region_context_menu(
|
|
346
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
346
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
347
347
|
execution_context: int | str | None = None,
|
|
348
348
|
undo: bool | None = None,
|
|
349
349
|
):
|
|
350
350
|
"""Display region context menu
|
|
351
351
|
|
|
352
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
352
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
353
353
|
:type execution_context: int | str | None
|
|
354
354
|
:type undo: bool | None
|
|
355
355
|
"""
|
|
356
356
|
|
|
357
357
|
def region_flip(
|
|
358
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
358
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
359
359
|
execution_context: int | str | None = None,
|
|
360
360
|
undo: bool | None = None,
|
|
361
361
|
):
|
|
362
362
|
"""Toggle the region's alignment (left/right or top/bottom)
|
|
363
363
|
|
|
364
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
364
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
365
365
|
:type execution_context: int | str | None
|
|
366
366
|
:type undo: bool | None
|
|
367
367
|
"""
|
|
368
368
|
|
|
369
369
|
def region_quadview(
|
|
370
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
370
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
371
371
|
execution_context: int | str | None = None,
|
|
372
372
|
undo: bool | None = None,
|
|
373
373
|
):
|
|
374
374
|
"""Split selected area into camera, front, right, and top views
|
|
375
375
|
|
|
376
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
376
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
377
377
|
:type execution_context: int | str | None
|
|
378
378
|
:type undo: bool | None
|
|
379
379
|
"""
|
|
380
380
|
|
|
381
381
|
def region_scale(
|
|
382
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
382
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
383
383
|
execution_context: int | str | None = None,
|
|
384
384
|
undo: bool | None = None,
|
|
385
385
|
):
|
|
386
386
|
"""Scale selected area
|
|
387
387
|
|
|
388
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
388
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
389
389
|
:type execution_context: int | str | None
|
|
390
390
|
:type undo: bool | None
|
|
391
391
|
"""
|
|
392
392
|
|
|
393
393
|
def region_toggle(
|
|
394
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
394
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
395
395
|
execution_context: int | str | None = None,
|
|
396
396
|
undo: bool | None = None,
|
|
397
397
|
*,
|
|
@@ -399,7 +399,7 @@ def region_toggle(
|
|
|
399
399
|
):
|
|
400
400
|
"""Hide or unhide the region
|
|
401
401
|
|
|
402
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
402
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
403
403
|
:type execution_context: int | str | None
|
|
404
404
|
:type undo: bool | None
|
|
405
405
|
:param region_type: Region Type, Type of the region to toggle
|
|
@@ -407,7 +407,7 @@ def region_toggle(
|
|
|
407
407
|
"""
|
|
408
408
|
|
|
409
409
|
def repeat_history(
|
|
410
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
410
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
411
411
|
execution_context: int | str | None = None,
|
|
412
412
|
undo: bool | None = None,
|
|
413
413
|
*,
|
|
@@ -415,7 +415,7 @@ def repeat_history(
|
|
|
415
415
|
):
|
|
416
416
|
"""Display menu for previous actions performed
|
|
417
417
|
|
|
418
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
418
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
419
419
|
:type execution_context: int | str | None
|
|
420
420
|
:type undo: bool | None
|
|
421
421
|
:param index: Index
|
|
@@ -423,19 +423,19 @@ def repeat_history(
|
|
|
423
423
|
"""
|
|
424
424
|
|
|
425
425
|
def repeat_last(
|
|
426
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
426
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
427
427
|
execution_context: int | str | None = None,
|
|
428
428
|
undo: bool | None = None,
|
|
429
429
|
):
|
|
430
430
|
"""Repeat last action
|
|
431
431
|
|
|
432
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
432
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
433
433
|
:type execution_context: int | str | None
|
|
434
434
|
:type undo: bool | None
|
|
435
435
|
"""
|
|
436
436
|
|
|
437
437
|
def screen_full_area(
|
|
438
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
438
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
439
439
|
execution_context: int | str | None = None,
|
|
440
440
|
undo: bool | None = None,
|
|
441
441
|
*,
|
|
@@ -443,7 +443,7 @@ def screen_full_area(
|
|
|
443
443
|
):
|
|
444
444
|
"""Toggle display selected area as fullscreen/maximized
|
|
445
445
|
|
|
446
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
446
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
447
447
|
:type execution_context: int | str | None
|
|
448
448
|
:type undo: bool | None
|
|
449
449
|
:param use_hide_panels: Hide Panels, Hide all the panels
|
|
@@ -451,7 +451,7 @@ def screen_full_area(
|
|
|
451
451
|
"""
|
|
452
452
|
|
|
453
453
|
def screen_set(
|
|
454
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
454
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
455
455
|
execution_context: int | str | None = None,
|
|
456
456
|
undo: bool | None = None,
|
|
457
457
|
*,
|
|
@@ -459,7 +459,7 @@ def screen_set(
|
|
|
459
459
|
):
|
|
460
460
|
"""Cycle through available screens
|
|
461
461
|
|
|
462
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
462
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
463
463
|
:type execution_context: int | str | None
|
|
464
464
|
:type undo: bool | None
|
|
465
465
|
:param delta: Delta
|
|
@@ -467,7 +467,7 @@ def screen_set(
|
|
|
467
467
|
"""
|
|
468
468
|
|
|
469
469
|
def screenshot(
|
|
470
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
470
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
471
471
|
execution_context: int | str | None = None,
|
|
472
472
|
undo: bool | None = None,
|
|
473
473
|
*,
|
|
@@ -502,7 +502,7 @@ def screenshot(
|
|
|
502
502
|
):
|
|
503
503
|
"""Capture a picture of the whole Blender window
|
|
504
504
|
|
|
505
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
505
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
506
506
|
:type execution_context: int | str | None
|
|
507
507
|
:type undo: bool | None
|
|
508
508
|
:param filepath: File Path, Path to file
|
|
@@ -570,7 +570,7 @@ def screenshot(
|
|
|
570
570
|
"""
|
|
571
571
|
|
|
572
572
|
def screenshot_area(
|
|
573
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
573
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
574
574
|
execution_context: int | str | None = None,
|
|
575
575
|
undo: bool | None = None,
|
|
576
576
|
*,
|
|
@@ -605,7 +605,7 @@ def screenshot_area(
|
|
|
605
605
|
):
|
|
606
606
|
"""Capture a picture of an editor
|
|
607
607
|
|
|
608
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
608
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
609
609
|
:type execution_context: int | str | None
|
|
610
610
|
:type undo: bool | None
|
|
611
611
|
:param filepath: File Path, Path to file
|
|
@@ -673,7 +673,7 @@ def screenshot_area(
|
|
|
673
673
|
"""
|
|
674
674
|
|
|
675
675
|
def space_context_cycle(
|
|
676
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
676
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
677
677
|
execution_context: int | str | None = None,
|
|
678
678
|
undo: bool | None = None,
|
|
679
679
|
*,
|
|
@@ -681,7 +681,7 @@ def space_context_cycle(
|
|
|
681
681
|
):
|
|
682
682
|
"""Cycle through the editor context by activating the next/previous one
|
|
683
683
|
|
|
684
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
684
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
685
685
|
:type execution_context: int | str | None
|
|
686
686
|
:type undo: bool | None
|
|
687
687
|
:param direction: Direction, Direction to cycle through
|
|
@@ -689,7 +689,7 @@ def space_context_cycle(
|
|
|
689
689
|
"""
|
|
690
690
|
|
|
691
691
|
def space_type_set_or_cycle(
|
|
692
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
692
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
693
693
|
execution_context: int | str | None = None,
|
|
694
694
|
undo: bool | None = None,
|
|
695
695
|
*,
|
|
@@ -697,7 +697,7 @@ def space_type_set_or_cycle(
|
|
|
697
697
|
):
|
|
698
698
|
"""Set the space type or cycle subtype
|
|
699
699
|
|
|
700
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
700
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
701
701
|
:type execution_context: int | str | None
|
|
702
702
|
:type undo: bool | None
|
|
703
703
|
:param space_type: Type
|
|
@@ -705,19 +705,19 @@ def space_type_set_or_cycle(
|
|
|
705
705
|
"""
|
|
706
706
|
|
|
707
707
|
def spacedata_cleanup(
|
|
708
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
708
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
709
709
|
execution_context: int | str | None = None,
|
|
710
710
|
undo: bool | None = None,
|
|
711
711
|
):
|
|
712
712
|
"""Remove unused settings for invisible editors
|
|
713
713
|
|
|
714
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
714
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
715
715
|
:type execution_context: int | str | None
|
|
716
716
|
:type undo: bool | None
|
|
717
717
|
"""
|
|
718
718
|
|
|
719
719
|
def userpref_show(
|
|
720
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
720
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
721
721
|
execution_context: int | str | None = None,
|
|
722
722
|
undo: bool | None = None,
|
|
723
723
|
*,
|
|
@@ -725,7 +725,7 @@ def userpref_show(
|
|
|
725
725
|
):
|
|
726
726
|
"""Edit user preferences and system settings
|
|
727
727
|
|
|
728
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
728
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
729
729
|
:type execution_context: int | str | None
|
|
730
730
|
:type undo: bool | None
|
|
731
731
|
:param section: Section to activate in the Preferences
|
|
@@ -733,7 +733,7 @@ def userpref_show(
|
|
|
733
733
|
"""
|
|
734
734
|
|
|
735
735
|
def workspace_cycle(
|
|
736
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
736
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
737
737
|
execution_context: int | str | None = None,
|
|
738
738
|
undo: bool | None = None,
|
|
739
739
|
*,
|
|
@@ -741,7 +741,7 @@ def workspace_cycle(
|
|
|
741
741
|
):
|
|
742
742
|
"""Cycle through workspaces
|
|
743
743
|
|
|
744
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
744
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
745
745
|
:type execution_context: int | str | None
|
|
746
746
|
:type undo: bool | None
|
|
747
747
|
:param direction: Direction, Direction to cycle through
|
bpy/ops/script/__init__.pyi
CHANGED
|
@@ -4,7 +4,7 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def execute_preset(
|
|
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
|
*,
|
|
@@ -13,7 +13,7 @@ def execute_preset(
|
|
|
13
13
|
):
|
|
14
14
|
"""Load a preset
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
:param filepath: filepath
|
|
@@ -23,7 +23,7 @@ def execute_preset(
|
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
25
|
def python_file_run(
|
|
26
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
26
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
27
27
|
execution_context: int | str | None = None,
|
|
28
28
|
undo: bool | None = None,
|
|
29
29
|
*,
|
|
@@ -31,7 +31,7 @@ def python_file_run(
|
|
|
31
31
|
):
|
|
32
32
|
"""Run Python file
|
|
33
33
|
|
|
34
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
34
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
35
35
|
:type execution_context: int | str | None
|
|
36
36
|
:type undo: bool | None
|
|
37
37
|
:param filepath: Path
|
|
@@ -39,13 +39,13 @@ def python_file_run(
|
|
|
39
39
|
"""
|
|
40
40
|
|
|
41
41
|
def reload(
|
|
42
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
42
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
43
43
|
execution_context: int | str | None = None,
|
|
44
44
|
undo: bool | None = None,
|
|
45
45
|
):
|
|
46
46
|
"""Reload scripts
|
|
47
47
|
|
|
48
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
48
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
49
49
|
:type execution_context: int | str | None
|
|
50
50
|
:type undo: bool | None
|
|
51
51
|
"""
|