fake-bpy-module 20240812__py3-none-any.whl → 20240813__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_view3d/__init__.pyi +31 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +110 -110
- 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 +166 -166
- 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 +208 -208
- bpy/ops/object/__init__.pyi +473 -473
- 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 +72 -72
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +174 -174
- 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 +64 -64
- 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 +226 -226
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +44 -34
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/RECORD +83 -83
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/top_level.txt +0 -0
bpy/ops/text/__init__.pyi
CHANGED
|
@@ -7,13 +7,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def autocomplete(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
):
|
|
14
14
|
"""Show a list of used text in the open document
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
"""
|
|
@@ -21,7 +21,7 @@ def autocomplete(
|
|
|
21
21
|
...
|
|
22
22
|
|
|
23
23
|
def comment_toggle(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
24
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
25
25
|
execution_context: int | str | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
27
|
*,
|
|
@@ -29,7 +29,7 @@ def comment_toggle(
|
|
|
29
29
|
):
|
|
30
30
|
"""Undocumented, consider contributing.
|
|
31
31
|
|
|
32
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
32
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
33
33
|
:type execution_context: int | str | None
|
|
34
34
|
:type undo: bool | None
|
|
35
35
|
:param type: Type, Add or remove comments
|
|
@@ -39,7 +39,7 @@ def comment_toggle(
|
|
|
39
39
|
...
|
|
40
40
|
|
|
41
41
|
def convert_whitespace(
|
|
42
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
42
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
43
43
|
execution_context: int | str | None = None,
|
|
44
44
|
undo: bool | None = None,
|
|
45
45
|
*,
|
|
@@ -47,7 +47,7 @@ def convert_whitespace(
|
|
|
47
47
|
):
|
|
48
48
|
"""Convert whitespaces by type
|
|
49
49
|
|
|
50
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
50
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
51
51
|
:type execution_context: int | str | None
|
|
52
52
|
:type undo: bool | None
|
|
53
53
|
:param type: Type, Type of whitespace to convert to
|
|
@@ -57,13 +57,13 @@ def convert_whitespace(
|
|
|
57
57
|
...
|
|
58
58
|
|
|
59
59
|
def copy(
|
|
60
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
60
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
61
61
|
execution_context: int | str | None = None,
|
|
62
62
|
undo: bool | None = None,
|
|
63
63
|
):
|
|
64
64
|
"""Copy selected text to clipboard
|
|
65
65
|
|
|
66
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
66
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
67
67
|
:type execution_context: int | str | None
|
|
68
68
|
:type undo: bool | None
|
|
69
69
|
"""
|
|
@@ -71,7 +71,7 @@ def copy(
|
|
|
71
71
|
...
|
|
72
72
|
|
|
73
73
|
def cursor_set(
|
|
74
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
74
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
75
75
|
execution_context: int | str | None = None,
|
|
76
76
|
undo: bool | None = None,
|
|
77
77
|
*,
|
|
@@ -80,7 +80,7 @@ def cursor_set(
|
|
|
80
80
|
):
|
|
81
81
|
"""Set cursor position
|
|
82
82
|
|
|
83
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
83
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
84
84
|
:type execution_context: int | str | None
|
|
85
85
|
:type undo: bool | None
|
|
86
86
|
:param x: X
|
|
@@ -92,13 +92,13 @@ def cursor_set(
|
|
|
92
92
|
...
|
|
93
93
|
|
|
94
94
|
def cut(
|
|
95
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
95
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
96
96
|
execution_context: int | str | None = None,
|
|
97
97
|
undo: bool | None = None,
|
|
98
98
|
):
|
|
99
99
|
"""Cut selected text to clipboard
|
|
100
100
|
|
|
101
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
101
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
102
102
|
:type execution_context: int | str | None
|
|
103
103
|
:type undo: bool | None
|
|
104
104
|
"""
|
|
@@ -106,7 +106,7 @@ def cut(
|
|
|
106
106
|
...
|
|
107
107
|
|
|
108
108
|
def delete(
|
|
109
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
109
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
110
110
|
execution_context: int | str | None = None,
|
|
111
111
|
undo: bool | None = None,
|
|
112
112
|
*,
|
|
@@ -117,7 +117,7 @@ def delete(
|
|
|
117
117
|
):
|
|
118
118
|
"""Delete text by cursor position
|
|
119
119
|
|
|
120
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
120
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
121
121
|
:type execution_context: int | str | None
|
|
122
122
|
:type undo: bool | None
|
|
123
123
|
:param type: Type, Which part of the text to delete
|
|
@@ -127,13 +127,13 @@ def delete(
|
|
|
127
127
|
...
|
|
128
128
|
|
|
129
129
|
def duplicate_line(
|
|
130
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
130
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
131
131
|
execution_context: int | str | None = None,
|
|
132
132
|
undo: bool | None = None,
|
|
133
133
|
):
|
|
134
134
|
"""Duplicate the current line
|
|
135
135
|
|
|
136
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
136
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
137
137
|
:type execution_context: int | str | None
|
|
138
138
|
:type undo: bool | None
|
|
139
139
|
"""
|
|
@@ -141,13 +141,13 @@ def duplicate_line(
|
|
|
141
141
|
...
|
|
142
142
|
|
|
143
143
|
def find(
|
|
144
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
144
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
145
145
|
execution_context: int | str | None = None,
|
|
146
146
|
undo: bool | None = None,
|
|
147
147
|
):
|
|
148
148
|
"""Find specified text
|
|
149
149
|
|
|
150
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
150
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
151
151
|
:type execution_context: int | str | None
|
|
152
152
|
:type undo: bool | None
|
|
153
153
|
"""
|
|
@@ -155,13 +155,13 @@ def find(
|
|
|
155
155
|
...
|
|
156
156
|
|
|
157
157
|
def find_set_selected(
|
|
158
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
158
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
159
159
|
execution_context: int | str | None = None,
|
|
160
160
|
undo: bool | None = None,
|
|
161
161
|
):
|
|
162
162
|
"""Find specified text and set as selected
|
|
163
163
|
|
|
164
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
164
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
165
165
|
:type execution_context: int | str | None
|
|
166
166
|
:type undo: bool | None
|
|
167
167
|
"""
|
|
@@ -169,13 +169,13 @@ def find_set_selected(
|
|
|
169
169
|
...
|
|
170
170
|
|
|
171
171
|
def indent(
|
|
172
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
172
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
173
173
|
execution_context: int | str | None = None,
|
|
174
174
|
undo: bool | None = None,
|
|
175
175
|
):
|
|
176
176
|
"""Indent selected text
|
|
177
177
|
|
|
178
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
178
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
179
179
|
:type execution_context: int | str | None
|
|
180
180
|
:type undo: bool | None
|
|
181
181
|
"""
|
|
@@ -183,13 +183,13 @@ def indent(
|
|
|
183
183
|
...
|
|
184
184
|
|
|
185
185
|
def indent_or_autocomplete(
|
|
186
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
186
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
187
187
|
execution_context: int | str | None = None,
|
|
188
188
|
undo: bool | None = None,
|
|
189
189
|
):
|
|
190
190
|
"""Indent selected text or autocomplete
|
|
191
191
|
|
|
192
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
192
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
193
193
|
:type execution_context: int | str | None
|
|
194
194
|
:type undo: bool | None
|
|
195
195
|
"""
|
|
@@ -197,7 +197,7 @@ def indent_or_autocomplete(
|
|
|
197
197
|
...
|
|
198
198
|
|
|
199
199
|
def insert(
|
|
200
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
200
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
201
201
|
execution_context: int | str | None = None,
|
|
202
202
|
undo: bool | None = None,
|
|
203
203
|
*,
|
|
@@ -205,7 +205,7 @@ def insert(
|
|
|
205
205
|
):
|
|
206
206
|
"""Insert text at cursor position
|
|
207
207
|
|
|
208
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
208
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
209
209
|
:type execution_context: int | str | None
|
|
210
210
|
:type undo: bool | None
|
|
211
211
|
:param text: Text, Text to insert at the cursor position
|
|
@@ -215,7 +215,7 @@ def insert(
|
|
|
215
215
|
...
|
|
216
216
|
|
|
217
217
|
def jump(
|
|
218
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
218
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
219
219
|
execution_context: int | str | None = None,
|
|
220
220
|
undo: bool | None = None,
|
|
221
221
|
*,
|
|
@@ -223,7 +223,7 @@ def jump(
|
|
|
223
223
|
):
|
|
224
224
|
"""Jump cursor to line
|
|
225
225
|
|
|
226
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
226
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
227
227
|
:type execution_context: int | str | None
|
|
228
228
|
:type undo: bool | None
|
|
229
229
|
:param line: Line, Line number to jump to
|
|
@@ -233,7 +233,7 @@ def jump(
|
|
|
233
233
|
...
|
|
234
234
|
|
|
235
235
|
def jump_to_file_at_point(
|
|
236
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
236
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
237
237
|
execution_context: int | str | None = None,
|
|
238
238
|
undo: bool | None = None,
|
|
239
239
|
*,
|
|
@@ -243,7 +243,7 @@ def jump_to_file_at_point(
|
|
|
243
243
|
):
|
|
244
244
|
"""Jump to a file for the text editor
|
|
245
245
|
|
|
246
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
246
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
247
247
|
:type execution_context: int | str | None
|
|
248
248
|
:type undo: bool | None
|
|
249
249
|
:param filepath: Filepath
|
|
@@ -257,13 +257,13 @@ def jump_to_file_at_point(
|
|
|
257
257
|
...
|
|
258
258
|
|
|
259
259
|
def line_break(
|
|
260
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
260
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
261
261
|
execution_context: int | str | None = None,
|
|
262
262
|
undo: bool | None = None,
|
|
263
263
|
):
|
|
264
264
|
"""Insert line break at cursor position
|
|
265
265
|
|
|
266
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
266
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
267
267
|
:type execution_context: int | str | None
|
|
268
268
|
:type undo: bool | None
|
|
269
269
|
"""
|
|
@@ -271,13 +271,13 @@ def line_break(
|
|
|
271
271
|
...
|
|
272
272
|
|
|
273
273
|
def line_number(
|
|
274
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
274
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
275
275
|
execution_context: int | str | None = None,
|
|
276
276
|
undo: bool | None = None,
|
|
277
277
|
):
|
|
278
278
|
"""The current line number
|
|
279
279
|
|
|
280
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
280
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
281
281
|
:type execution_context: int | str | None
|
|
282
282
|
:type undo: bool | None
|
|
283
283
|
"""
|
|
@@ -285,13 +285,13 @@ def line_number(
|
|
|
285
285
|
...
|
|
286
286
|
|
|
287
287
|
def make_internal(
|
|
288
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
288
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
289
289
|
execution_context: int | str | None = None,
|
|
290
290
|
undo: bool | None = None,
|
|
291
291
|
):
|
|
292
292
|
"""Make active text file internal
|
|
293
293
|
|
|
294
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
294
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
295
295
|
:type execution_context: int | str | None
|
|
296
296
|
:type undo: bool | None
|
|
297
297
|
"""
|
|
@@ -299,7 +299,7 @@ def make_internal(
|
|
|
299
299
|
...
|
|
300
300
|
|
|
301
301
|
def move(
|
|
302
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
302
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
303
303
|
execution_context: int | str | None = None,
|
|
304
304
|
undo: bool | None = None,
|
|
305
305
|
*,
|
|
@@ -321,7 +321,7 @@ def move(
|
|
|
321
321
|
):
|
|
322
322
|
"""Move cursor to position type
|
|
323
323
|
|
|
324
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
324
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
325
325
|
:type execution_context: int | str | None
|
|
326
326
|
:type undo: bool | None
|
|
327
327
|
:param type: Type, Where to move cursor to
|
|
@@ -331,7 +331,7 @@ def move(
|
|
|
331
331
|
...
|
|
332
332
|
|
|
333
333
|
def move_lines(
|
|
334
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
334
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
335
335
|
execution_context: int | str | None = None,
|
|
336
336
|
undo: bool | None = None,
|
|
337
337
|
*,
|
|
@@ -339,7 +339,7 @@ def move_lines(
|
|
|
339
339
|
):
|
|
340
340
|
"""Move the currently selected line(s) up/down
|
|
341
341
|
|
|
342
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
342
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
343
343
|
:type execution_context: int | str | None
|
|
344
344
|
:type undo: bool | None
|
|
345
345
|
:param direction: Direction
|
|
@@ -349,7 +349,7 @@ def move_lines(
|
|
|
349
349
|
...
|
|
350
350
|
|
|
351
351
|
def move_select(
|
|
352
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
352
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
353
353
|
execution_context: int | str | None = None,
|
|
354
354
|
undo: bool | None = None,
|
|
355
355
|
*,
|
|
@@ -371,7 +371,7 @@ def move_select(
|
|
|
371
371
|
):
|
|
372
372
|
"""Move the cursor while selecting
|
|
373
373
|
|
|
374
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
374
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
375
375
|
:type execution_context: int | str | None
|
|
376
376
|
:type undo: bool | None
|
|
377
377
|
:param type: Type, Where to move cursor to, to make a selection
|
|
@@ -381,13 +381,13 @@ def move_select(
|
|
|
381
381
|
...
|
|
382
382
|
|
|
383
383
|
def new(
|
|
384
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
384
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
385
385
|
execution_context: int | str | None = None,
|
|
386
386
|
undo: bool | None = None,
|
|
387
387
|
):
|
|
388
388
|
"""Create a new text data-block
|
|
389
389
|
|
|
390
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
390
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
391
391
|
:type execution_context: int | str | None
|
|
392
392
|
:type undo: bool | None
|
|
393
393
|
"""
|
|
@@ -395,7 +395,7 @@ def new(
|
|
|
395
395
|
...
|
|
396
396
|
|
|
397
397
|
def open(
|
|
398
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
398
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
399
399
|
execution_context: int | str | None = None,
|
|
400
400
|
undo: bool | None = None,
|
|
401
401
|
*,
|
|
@@ -436,7 +436,7 @@ def open(
|
|
|
436
436
|
):
|
|
437
437
|
"""Open a new text data-block
|
|
438
438
|
|
|
439
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
439
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
440
440
|
:type execution_context: int | str | None
|
|
441
441
|
:type undo: bool | None
|
|
442
442
|
:param filepath: File Path, Path to file
|
|
@@ -519,13 +519,13 @@ def open(
|
|
|
519
519
|
...
|
|
520
520
|
|
|
521
521
|
def overwrite_toggle(
|
|
522
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
522
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
523
523
|
execution_context: int | str | None = None,
|
|
524
524
|
undo: bool | None = None,
|
|
525
525
|
):
|
|
526
526
|
"""Toggle overwrite while typing
|
|
527
527
|
|
|
528
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
528
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
529
529
|
:type execution_context: int | str | None
|
|
530
530
|
:type undo: bool | None
|
|
531
531
|
"""
|
|
@@ -533,7 +533,7 @@ def overwrite_toggle(
|
|
|
533
533
|
...
|
|
534
534
|
|
|
535
535
|
def paste(
|
|
536
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
536
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
537
537
|
execution_context: int | str | None = None,
|
|
538
538
|
undo: bool | None = None,
|
|
539
539
|
*,
|
|
@@ -541,7 +541,7 @@ def paste(
|
|
|
541
541
|
):
|
|
542
542
|
"""Paste text from clipboard
|
|
543
543
|
|
|
544
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
544
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
545
545
|
:type execution_context: int | str | None
|
|
546
546
|
:type undo: bool | None
|
|
547
547
|
:param selection: Selection, Paste text selected elsewhere rather than copied (X11/Wayland only)
|
|
@@ -551,13 +551,13 @@ def paste(
|
|
|
551
551
|
...
|
|
552
552
|
|
|
553
553
|
def refresh_pyconstraints(
|
|
554
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
554
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
555
555
|
execution_context: int | str | None = None,
|
|
556
556
|
undo: bool | None = None,
|
|
557
557
|
):
|
|
558
558
|
"""Refresh all pyconstraints
|
|
559
559
|
|
|
560
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
560
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
561
561
|
:type execution_context: int | str | None
|
|
562
562
|
:type undo: bool | None
|
|
563
563
|
"""
|
|
@@ -565,13 +565,13 @@ def refresh_pyconstraints(
|
|
|
565
565
|
...
|
|
566
566
|
|
|
567
567
|
def reload(
|
|
568
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
568
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
569
569
|
execution_context: int | str | None = None,
|
|
570
570
|
undo: bool | None = None,
|
|
571
571
|
):
|
|
572
572
|
"""Reload active text data-block from its file
|
|
573
573
|
|
|
574
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
574
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
575
575
|
:type execution_context: int | str | None
|
|
576
576
|
:type undo: bool | None
|
|
577
577
|
"""
|
|
@@ -579,7 +579,7 @@ def reload(
|
|
|
579
579
|
...
|
|
580
580
|
|
|
581
581
|
def replace(
|
|
582
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
582
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
583
583
|
execution_context: int | str | None = None,
|
|
584
584
|
undo: bool | None = None,
|
|
585
585
|
*,
|
|
@@ -587,7 +587,7 @@ def replace(
|
|
|
587
587
|
):
|
|
588
588
|
"""Replace text with the specified text
|
|
589
589
|
|
|
590
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
590
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
591
591
|
:type execution_context: int | str | None
|
|
592
592
|
:type undo: bool | None
|
|
593
593
|
:param all: Replace All, Replace all occurrences
|
|
@@ -597,13 +597,13 @@ def replace(
|
|
|
597
597
|
...
|
|
598
598
|
|
|
599
599
|
def replace_set_selected(
|
|
600
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
600
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
601
601
|
execution_context: int | str | None = None,
|
|
602
602
|
undo: bool | None = None,
|
|
603
603
|
):
|
|
604
604
|
"""Replace text with specified text and set as selected
|
|
605
605
|
|
|
606
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
606
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
607
607
|
:type execution_context: int | str | None
|
|
608
608
|
:type undo: bool | None
|
|
609
609
|
"""
|
|
@@ -611,7 +611,7 @@ def replace_set_selected(
|
|
|
611
611
|
...
|
|
612
612
|
|
|
613
613
|
def resolve_conflict(
|
|
614
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
614
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
615
615
|
execution_context: int | str | None = None,
|
|
616
616
|
undo: bool | None = None,
|
|
617
617
|
*,
|
|
@@ -620,7 +620,7 @@ def resolve_conflict(
|
|
|
620
620
|
):
|
|
621
621
|
"""When external text is out of sync, resolve the conflict
|
|
622
622
|
|
|
623
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
623
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
624
624
|
:type execution_context: int | str | None
|
|
625
625
|
:type undo: bool | None
|
|
626
626
|
:param resolution: Resolution, How to solve conflict due to differences in internal and external text
|
|
@@ -630,13 +630,13 @@ def resolve_conflict(
|
|
|
630
630
|
...
|
|
631
631
|
|
|
632
632
|
def run_script(
|
|
633
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
633
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
634
634
|
execution_context: int | str | None = None,
|
|
635
635
|
undo: bool | None = None,
|
|
636
636
|
):
|
|
637
637
|
"""Run active script
|
|
638
638
|
|
|
639
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
639
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
640
640
|
:type execution_context: int | str | None
|
|
641
641
|
:type undo: bool | None
|
|
642
642
|
"""
|
|
@@ -644,13 +644,13 @@ def run_script(
|
|
|
644
644
|
...
|
|
645
645
|
|
|
646
646
|
def save(
|
|
647
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
647
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
648
648
|
execution_context: int | str | None = None,
|
|
649
649
|
undo: bool | None = None,
|
|
650
650
|
):
|
|
651
651
|
"""Save active text data-block
|
|
652
652
|
|
|
653
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
653
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
654
654
|
:type execution_context: int | str | None
|
|
655
655
|
:type undo: bool | None
|
|
656
656
|
"""
|
|
@@ -658,7 +658,7 @@ def save(
|
|
|
658
658
|
...
|
|
659
659
|
|
|
660
660
|
def save_as(
|
|
661
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
661
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
662
662
|
execution_context: int | str | None = None,
|
|
663
663
|
undo: bool | None = None,
|
|
664
664
|
*,
|
|
@@ -691,7 +691,7 @@ def save_as(
|
|
|
691
691
|
):
|
|
692
692
|
"""Save active text file with options
|
|
693
693
|
|
|
694
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
694
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
695
695
|
:type execution_context: int | str | None
|
|
696
696
|
:type undo: bool | None
|
|
697
697
|
:param filepath: File Path, Path to file
|
|
@@ -757,7 +757,7 @@ def save_as(
|
|
|
757
757
|
...
|
|
758
758
|
|
|
759
759
|
def scroll(
|
|
760
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
760
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
761
761
|
execution_context: int | str | None = None,
|
|
762
762
|
undo: bool | None = None,
|
|
763
763
|
*,
|
|
@@ -765,7 +765,7 @@ def scroll(
|
|
|
765
765
|
):
|
|
766
766
|
"""Undocumented, consider contributing.
|
|
767
767
|
|
|
768
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
768
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
769
769
|
:type execution_context: int | str | None
|
|
770
770
|
:type undo: bool | None
|
|
771
771
|
:param lines: Lines, Number of lines to scroll
|
|
@@ -775,7 +775,7 @@ def scroll(
|
|
|
775
775
|
...
|
|
776
776
|
|
|
777
777
|
def scroll_bar(
|
|
778
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
778
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
779
779
|
execution_context: int | str | None = None,
|
|
780
780
|
undo: bool | None = None,
|
|
781
781
|
*,
|
|
@@ -783,7 +783,7 @@ def scroll_bar(
|
|
|
783
783
|
):
|
|
784
784
|
"""Undocumented, consider contributing.
|
|
785
785
|
|
|
786
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
786
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
787
787
|
:type execution_context: int | str | None
|
|
788
788
|
:type undo: bool | None
|
|
789
789
|
:param lines: Lines, Number of lines to scroll
|
|
@@ -793,13 +793,13 @@ def scroll_bar(
|
|
|
793
793
|
...
|
|
794
794
|
|
|
795
795
|
def select_all(
|
|
796
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
796
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
797
797
|
execution_context: int | str | None = None,
|
|
798
798
|
undo: bool | None = None,
|
|
799
799
|
):
|
|
800
800
|
"""Select all text
|
|
801
801
|
|
|
802
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
802
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
803
803
|
:type execution_context: int | str | None
|
|
804
804
|
:type undo: bool | None
|
|
805
805
|
"""
|
|
@@ -807,13 +807,13 @@ def select_all(
|
|
|
807
807
|
...
|
|
808
808
|
|
|
809
809
|
def select_line(
|
|
810
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
810
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
811
811
|
execution_context: int | str | None = None,
|
|
812
812
|
undo: bool | None = None,
|
|
813
813
|
):
|
|
814
814
|
"""Select text by line
|
|
815
815
|
|
|
816
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
816
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
817
817
|
:type execution_context: int | str | None
|
|
818
818
|
:type undo: bool | None
|
|
819
819
|
"""
|
|
@@ -821,13 +821,13 @@ def select_line(
|
|
|
821
821
|
...
|
|
822
822
|
|
|
823
823
|
def select_word(
|
|
824
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
824
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
825
825
|
execution_context: int | str | None = None,
|
|
826
826
|
undo: bool | None = None,
|
|
827
827
|
):
|
|
828
828
|
"""Select word under cursor
|
|
829
829
|
|
|
830
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
830
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
831
831
|
:type execution_context: int | str | None
|
|
832
832
|
:type undo: bool | None
|
|
833
833
|
"""
|
|
@@ -835,13 +835,13 @@ def select_word(
|
|
|
835
835
|
...
|
|
836
836
|
|
|
837
837
|
def selection_set(
|
|
838
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
838
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
839
839
|
execution_context: int | str | None = None,
|
|
840
840
|
undo: bool | None = None,
|
|
841
841
|
):
|
|
842
842
|
"""Set text selection
|
|
843
843
|
|
|
844
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
844
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
845
845
|
:type execution_context: int | str | None
|
|
846
846
|
:type undo: bool | None
|
|
847
847
|
"""
|
|
@@ -849,13 +849,13 @@ def selection_set(
|
|
|
849
849
|
...
|
|
850
850
|
|
|
851
851
|
def start_find(
|
|
852
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
852
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
853
853
|
execution_context: int | str | None = None,
|
|
854
854
|
undo: bool | None = None,
|
|
855
855
|
):
|
|
856
856
|
"""Start searching text
|
|
857
857
|
|
|
858
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
858
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
859
859
|
:type execution_context: int | str | None
|
|
860
860
|
:type undo: bool | None
|
|
861
861
|
"""
|
|
@@ -863,7 +863,7 @@ def start_find(
|
|
|
863
863
|
...
|
|
864
864
|
|
|
865
865
|
def to_3d_object(
|
|
866
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
866
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
867
867
|
execution_context: int | str | None = None,
|
|
868
868
|
undo: bool | None = None,
|
|
869
869
|
*,
|
|
@@ -871,7 +871,7 @@ def to_3d_object(
|
|
|
871
871
|
):
|
|
872
872
|
"""Create 3D text object from active text data-block
|
|
873
873
|
|
|
874
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
874
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
875
875
|
:type execution_context: int | str | None
|
|
876
876
|
:type undo: bool | None
|
|
877
877
|
:param split_lines: Split Lines, Create one object per line in the text
|
|
@@ -881,13 +881,13 @@ def to_3d_object(
|
|
|
881
881
|
...
|
|
882
882
|
|
|
883
883
|
def unindent(
|
|
884
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
884
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
885
885
|
execution_context: int | str | None = None,
|
|
886
886
|
undo: bool | None = None,
|
|
887
887
|
):
|
|
888
888
|
"""Unindent selected text
|
|
889
889
|
|
|
890
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
890
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
891
891
|
:type execution_context: int | str | None
|
|
892
892
|
:type undo: bool | None
|
|
893
893
|
"""
|
|
@@ -895,13 +895,13 @@ def unindent(
|
|
|
895
895
|
...
|
|
896
896
|
|
|
897
897
|
def unlink(
|
|
898
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
898
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
899
899
|
execution_context: int | str | None = None,
|
|
900
900
|
undo: bool | None = None,
|
|
901
901
|
):
|
|
902
902
|
"""Unlink active text data-block
|
|
903
903
|
|
|
904
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
904
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
905
905
|
:type execution_context: int | str | None
|
|
906
906
|
:type undo: bool | None
|
|
907
907
|
"""
|