fake-bpy-module 20240508__py3-none-any.whl → 20240509__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bpy/ops/action/__init__.pyi +152 -76
- bpy/ops/anim/__init__.pyi +212 -106
- bpy/ops/armature/__init__.pyi +192 -96
- bpy/ops/asset/__init__.pyi +64 -32
- bpy/ops/boid/__init__.pyi +32 -16
- bpy/ops/brush/__init__.pyi +36 -18
- bpy/ops/buttons/__init__.pyi +24 -12
- bpy/ops/cachefile/__init__.pyi +20 -10
- bpy/ops/camera/__init__.pyi +8 -4
- bpy/ops/clip/__init__.pyi +368 -184
- bpy/ops/cloth/__init__.pyi +4 -2
- bpy/ops/collection/__init__.pyi +36 -18
- bpy/ops/console/__init__.pyi +84 -42
- bpy/ops/constraint/__init__.pyi +72 -36
- bpy/ops/curve/__init__.pyi +204 -102
- bpy/ops/curves/__init__.pyi +108 -54
- bpy/ops/cycles/__init__.pyi +12 -6
- bpy/ops/dpaint/__init__.pyi +20 -10
- bpy/ops/ed/__init__.pyi +48 -24
- bpy/ops/export_anim/__init__.pyi +4 -2
- bpy/ops/export_mesh/__init__.pyi +4 -2
- bpy/ops/export_scene/__init__.pyi +16 -10
- bpy/ops/file/__init__.pyi +160 -80
- bpy/ops/fluid/__init__.pyi +56 -28
- bpy/ops/font/__init__.pyi +92 -46
- bpy/ops/geometry/__init__.pyi +40 -20
- bpy/ops/gizmogroup/__init__.pyi +8 -4
- bpy/ops/gpencil/__init__.pyi +600 -300
- bpy/ops/graph/__init__.pyi +260 -130
- bpy/ops/grease_pencil/__init__.pyi +268 -134
- bpy/ops/image/__init__.pyi +188 -94
- bpy/ops/import_anim/__init__.pyi +4 -2
- bpy/ops/import_curve/__init__.pyi +4 -2
- bpy/ops/import_mesh/__init__.pyi +4 -2
- bpy/ops/import_scene/__init__.pyi +12 -6
- bpy/ops/info/__init__.pyi +28 -14
- bpy/ops/lattice/__init__.pyi +32 -16
- bpy/ops/marker/__init__.pyi +44 -22
- bpy/ops/mask/__init__.pyi +156 -78
- bpy/ops/material/__init__.pyi +12 -6
- bpy/ops/mball/__init__.pyi +32 -16
- bpy/ops/mesh/__init__.pyi +652 -326
- bpy/ops/nla/__init__.pyi +159 -81
- bpy/ops/node/__init__.pyi +404 -202
- bpy/ops/object/__init__.pyi +1002 -490
- bpy/ops/outliner/__init__.pyi +276 -138
- bpy/ops/paint/__init__.pyi +212 -106
- bpy/ops/paintcurve/__init__.pyi +32 -16
- bpy/ops/palette/__init__.pyi +28 -14
- bpy/ops/particle/__init__.pyi +144 -72
- bpy/ops/pose/__init__.pyi +156 -78
- bpy/ops/poselib/__init__.pyi +36 -18
- bpy/ops/preferences/__init__.pyi +152 -76
- bpy/ops/ptcache/__init__.pyi +28 -14
- bpy/ops/render/__init__.pyi +48 -24
- bpy/ops/rigidbody/__init__.pyi +52 -26
- bpy/ops/scene/__init__.pyi +156 -78
- bpy/ops/screen/__init__.pyi +156 -78
- bpy/ops/script/__init__.pyi +12 -6
- bpy/ops/sculpt/__init__.pyi +134 -68
- bpy/ops/sculpt_curves/__init__.pyi +16 -8
- bpy/ops/sequencer/__init__.pyi +340 -170
- bpy/ops/sound/__init__.pyi +28 -14
- bpy/ops/spreadsheet/__init__.pyi +16 -8
- bpy/ops/surface/__init__.pyi +24 -12
- bpy/ops/text/__init__.pyi +172 -86
- bpy/ops/text_editor/__init__.pyi +4 -2
- bpy/ops/texture/__init__.pyi +16 -8
- bpy/ops/transform/__init__.pyi +108 -54
- bpy/ops/ui/__init__.pyi +132 -66
- bpy/ops/uilist/__init__.pyi +12 -6
- bpy/ops/uv/__init__.pyi +196 -98
- bpy/ops/view2d/__init__.pyi +56 -28
- bpy/ops/view3d/__init__.pyi +268 -134
- bpy/ops/wm/__init__.pyi +493 -224
- bpy/ops/workspace/__init__.pyi +28 -14
- bpy/ops/world/__init__.pyi +4 -2
- bpy/types/__init__.pyi +396 -28
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/RECORD +83 -83
- mathutils/__init__.pyi +20 -0
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/top_level.txt +0 -0
bpy/ops/uv/__init__.pyi
CHANGED
|
@@ -5,14 +5,16 @@ import bpy.types
|
|
|
5
5
|
GenericType = typing.TypeVar("GenericType")
|
|
6
6
|
|
|
7
7
|
def align(
|
|
8
|
-
override_context: typing.Optional[
|
|
8
|
+
override_context: typing.Optional[
|
|
9
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
10
|
+
] = None,
|
|
9
11
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
10
12
|
undo: typing.Optional[bool] = None,
|
|
11
13
|
axis: typing.Optional[typing.Any] = "ALIGN_AUTO",
|
|
12
14
|
):
|
|
13
15
|
"""Aligns selected UV vertices on a line
|
|
14
16
|
|
|
15
|
-
:type override_context: typing.Optional[typing.Union[
|
|
17
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
16
18
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
17
19
|
:type undo: typing.Optional[bool]
|
|
18
20
|
:param axis: Axis, Axis to align UV locations on
|
|
@@ -40,7 +42,9 @@ def align(
|
|
|
40
42
|
...
|
|
41
43
|
|
|
42
44
|
def align_rotation(
|
|
43
|
-
override_context: typing.Optional[
|
|
45
|
+
override_context: typing.Optional[
|
|
46
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
47
|
+
] = None,
|
|
44
48
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
45
49
|
undo: typing.Optional[bool] = None,
|
|
46
50
|
method: typing.Optional[typing.Any] = "AUTO",
|
|
@@ -49,7 +53,7 @@ def align_rotation(
|
|
|
49
53
|
):
|
|
50
54
|
"""Align the UV island's rotation
|
|
51
55
|
|
|
52
|
-
:type override_context: typing.Optional[typing.Union[
|
|
56
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
53
57
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
54
58
|
:type undo: typing.Optional[bool]
|
|
55
59
|
:param method: Method, Method to calculate rotation angle
|
|
@@ -81,7 +85,9 @@ def align_rotation(
|
|
|
81
85
|
...
|
|
82
86
|
|
|
83
87
|
def average_islands_scale(
|
|
84
|
-
override_context: typing.Optional[
|
|
88
|
+
override_context: typing.Optional[
|
|
89
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
90
|
+
] = None,
|
|
85
91
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
86
92
|
undo: typing.Optional[bool] = None,
|
|
87
93
|
scale_uv: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -89,7 +95,7 @@ def average_islands_scale(
|
|
|
89
95
|
):
|
|
90
96
|
"""Average the size of separate UV islands, based on their area in 3D space
|
|
91
97
|
|
|
92
|
-
:type override_context: typing.Optional[typing.Union[
|
|
98
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
93
99
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
94
100
|
:type undo: typing.Optional[bool]
|
|
95
101
|
:param scale_uv: Non-Uniform, Scale U and V independently
|
|
@@ -101,13 +107,15 @@ def average_islands_scale(
|
|
|
101
107
|
...
|
|
102
108
|
|
|
103
109
|
def copy(
|
|
104
|
-
override_context: typing.Optional[
|
|
110
|
+
override_context: typing.Optional[
|
|
111
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
112
|
+
] = None,
|
|
105
113
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
106
114
|
undo: typing.Optional[bool] = None,
|
|
107
115
|
):
|
|
108
116
|
"""Copy selected UV vertices
|
|
109
117
|
|
|
110
|
-
:type override_context: typing.Optional[typing.Union[
|
|
118
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
111
119
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
112
120
|
:type undo: typing.Optional[bool]
|
|
113
121
|
"""
|
|
@@ -115,7 +123,9 @@ def copy(
|
|
|
115
123
|
...
|
|
116
124
|
|
|
117
125
|
def cube_project(
|
|
118
|
-
override_context: typing.Optional[
|
|
126
|
+
override_context: typing.Optional[
|
|
127
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
128
|
+
] = None,
|
|
119
129
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
120
130
|
undo: typing.Optional[bool] = None,
|
|
121
131
|
cube_size: typing.Optional[typing.Any] = 1.0,
|
|
@@ -125,7 +135,7 @@ def cube_project(
|
|
|
125
135
|
):
|
|
126
136
|
"""Project the UV vertices of the mesh over the six faces of a cube
|
|
127
137
|
|
|
128
|
-
:type override_context: typing.Optional[typing.Union[
|
|
138
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
129
139
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
130
140
|
:type undo: typing.Optional[bool]
|
|
131
141
|
:param cube_size: Cube Size, Size of the cube to project on
|
|
@@ -141,14 +151,16 @@ def cube_project(
|
|
|
141
151
|
...
|
|
142
152
|
|
|
143
153
|
def cursor_set(
|
|
144
|
-
override_context: typing.Optional[
|
|
154
|
+
override_context: typing.Optional[
|
|
155
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
156
|
+
] = None,
|
|
145
157
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
146
158
|
undo: typing.Optional[bool] = None,
|
|
147
159
|
location: typing.Optional[typing.Any] = (0.0, 0.0),
|
|
148
160
|
):
|
|
149
161
|
"""Set 2D cursor location
|
|
150
162
|
|
|
151
|
-
:type override_context: typing.Optional[typing.Union[
|
|
163
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
152
164
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
153
165
|
:type undo: typing.Optional[bool]
|
|
154
166
|
:param location: Location, Cursor location in normalized (0.0 to 1.0) coordinates
|
|
@@ -158,7 +170,9 @@ def cursor_set(
|
|
|
158
170
|
...
|
|
159
171
|
|
|
160
172
|
def cylinder_project(
|
|
161
|
-
override_context: typing.Optional[
|
|
173
|
+
override_context: typing.Optional[
|
|
174
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
175
|
+
] = None,
|
|
162
176
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
163
177
|
undo: typing.Optional[bool] = None,
|
|
164
178
|
direction: typing.Optional[typing.Any] = "VIEW_ON_EQUATOR",
|
|
@@ -172,7 +186,7 @@ def cylinder_project(
|
|
|
172
186
|
):
|
|
173
187
|
"""Project the UV vertices of the mesh over the curved wall of a cylinder
|
|
174
188
|
|
|
175
|
-
:type override_context: typing.Optional[typing.Union[
|
|
189
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
176
190
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
177
191
|
:type undo: typing.Optional[bool]
|
|
178
192
|
:param direction: Direction, Direction of the sphere or cylinder
|
|
@@ -217,7 +231,9 @@ def cylinder_project(
|
|
|
217
231
|
...
|
|
218
232
|
|
|
219
233
|
def export_layout(
|
|
220
|
-
override_context: typing.Optional[
|
|
234
|
+
override_context: typing.Optional[
|
|
235
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
236
|
+
] = None,
|
|
221
237
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
222
238
|
undo: typing.Optional[bool] = None,
|
|
223
239
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -231,7 +247,7 @@ def export_layout(
|
|
|
231
247
|
):
|
|
232
248
|
"""Export UV layout to file
|
|
233
249
|
|
|
234
|
-
:type override_context: typing.Optional[typing.Union[
|
|
250
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
235
251
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
236
252
|
:type undo: typing.Optional[bool]
|
|
237
253
|
:param filepath: filepath
|
|
@@ -273,14 +289,16 @@ def export_layout(
|
|
|
273
289
|
...
|
|
274
290
|
|
|
275
291
|
def follow_active_quads(
|
|
276
|
-
override_context: typing.Optional[
|
|
292
|
+
override_context: typing.Optional[
|
|
293
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
294
|
+
] = None,
|
|
277
295
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
278
296
|
undo: typing.Optional[bool] = None,
|
|
279
297
|
mode: typing.Optional[typing.Any] = "LENGTH_AVERAGE",
|
|
280
298
|
):
|
|
281
299
|
"""Follow UVs from active quads along continuous face loops
|
|
282
300
|
|
|
283
|
-
:type override_context: typing.Optional[typing.Union[
|
|
301
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
284
302
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
285
303
|
:type undo: typing.Optional[bool]
|
|
286
304
|
:param mode: Edge Length Mode, Method to space UV edge loops
|
|
@@ -299,14 +317,16 @@ def follow_active_quads(
|
|
|
299
317
|
...
|
|
300
318
|
|
|
301
319
|
def hide(
|
|
302
|
-
override_context: typing.Optional[
|
|
320
|
+
override_context: typing.Optional[
|
|
321
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
322
|
+
] = None,
|
|
303
323
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
304
324
|
undo: typing.Optional[bool] = None,
|
|
305
325
|
unselected: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
306
326
|
):
|
|
307
327
|
"""Hide (un)selected UV vertices
|
|
308
328
|
|
|
309
|
-
:type override_context: typing.Optional[typing.Union[
|
|
329
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
310
330
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
311
331
|
:type undo: typing.Optional[bool]
|
|
312
332
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
@@ -316,7 +336,9 @@ def hide(
|
|
|
316
336
|
...
|
|
317
337
|
|
|
318
338
|
def lightmap_pack(
|
|
319
|
-
override_context: typing.Optional[
|
|
339
|
+
override_context: typing.Optional[
|
|
340
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
341
|
+
] = None,
|
|
320
342
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
321
343
|
undo: typing.Optional[bool] = None,
|
|
322
344
|
PREF_CONTEXT: typing.Optional[typing.Any] = "SEL_FACES",
|
|
@@ -327,7 +349,7 @@ def lightmap_pack(
|
|
|
327
349
|
):
|
|
328
350
|
"""Pack each face's UVs into the UV bounds
|
|
329
351
|
|
|
330
|
-
:type override_context: typing.Optional[typing.Union[
|
|
352
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
331
353
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
332
354
|
:type undo: typing.Optional[bool]
|
|
333
355
|
:param PREF_CONTEXT: Selection
|
|
@@ -351,14 +373,16 @@ def lightmap_pack(
|
|
|
351
373
|
...
|
|
352
374
|
|
|
353
375
|
def mark_seam(
|
|
354
|
-
override_context: typing.Optional[
|
|
376
|
+
override_context: typing.Optional[
|
|
377
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
378
|
+
] = None,
|
|
355
379
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
356
380
|
undo: typing.Optional[bool] = None,
|
|
357
381
|
clear: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
358
382
|
):
|
|
359
383
|
"""Mark selected UV edges as seams
|
|
360
384
|
|
|
361
|
-
:type override_context: typing.Optional[typing.Union[
|
|
385
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
362
386
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
363
387
|
:type undo: typing.Optional[bool]
|
|
364
388
|
:param clear: Clear Seams, Clear instead of marking seams
|
|
@@ -368,7 +392,9 @@ def mark_seam(
|
|
|
368
392
|
...
|
|
369
393
|
|
|
370
394
|
def minimize_stretch(
|
|
371
|
-
override_context: typing.Optional[
|
|
395
|
+
override_context: typing.Optional[
|
|
396
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
397
|
+
] = None,
|
|
372
398
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
373
399
|
undo: typing.Optional[bool] = None,
|
|
374
400
|
fill_holes: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -377,7 +403,7 @@ def minimize_stretch(
|
|
|
377
403
|
):
|
|
378
404
|
"""Reduce UV stretching by relaxing angles
|
|
379
405
|
|
|
380
|
-
:type override_context: typing.Optional[typing.Union[
|
|
406
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
381
407
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
382
408
|
:type undo: typing.Optional[bool]
|
|
383
409
|
:param fill_holes: Fill Holes, Virtually fill holes in mesh before unwrapping, to better avoid overlaps and preserve symmetry
|
|
@@ -391,7 +417,9 @@ def minimize_stretch(
|
|
|
391
417
|
...
|
|
392
418
|
|
|
393
419
|
def pack_islands(
|
|
394
|
-
override_context: typing.Optional[
|
|
420
|
+
override_context: typing.Optional[
|
|
421
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
422
|
+
] = None,
|
|
395
423
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
396
424
|
undo: typing.Optional[bool] = None,
|
|
397
425
|
udim_source: typing.Optional[typing.Any] = "CLOSEST_UDIM",
|
|
@@ -407,7 +435,7 @@ def pack_islands(
|
|
|
407
435
|
):
|
|
408
436
|
"""Transform all islands so that they fill up the UV/UDIM space as much as possible
|
|
409
437
|
|
|
410
|
-
:type override_context: typing.Optional[typing.Union[
|
|
438
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
411
439
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
412
440
|
:type undo: typing.Optional[bool]
|
|
413
441
|
:param udim_source: Pack to
|
|
@@ -489,13 +517,15 @@ def pack_islands(
|
|
|
489
517
|
...
|
|
490
518
|
|
|
491
519
|
def paste(
|
|
492
|
-
override_context: typing.Optional[
|
|
520
|
+
override_context: typing.Optional[
|
|
521
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
522
|
+
] = None,
|
|
493
523
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
494
524
|
undo: typing.Optional[bool] = None,
|
|
495
525
|
):
|
|
496
526
|
"""Paste selected UV vertices
|
|
497
527
|
|
|
498
|
-
:type override_context: typing.Optional[typing.Union[
|
|
528
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
499
529
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
500
530
|
:type undo: typing.Optional[bool]
|
|
501
531
|
"""
|
|
@@ -503,7 +533,9 @@ def paste(
|
|
|
503
533
|
...
|
|
504
534
|
|
|
505
535
|
def pin(
|
|
506
|
-
override_context: typing.Optional[
|
|
536
|
+
override_context: typing.Optional[
|
|
537
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
538
|
+
] = None,
|
|
507
539
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
508
540
|
undo: typing.Optional[bool] = None,
|
|
509
541
|
clear: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -511,7 +543,7 @@ def pin(
|
|
|
511
543
|
):
|
|
512
544
|
"""Set/clear selected UV vertices as anchored between multiple unwrap operations
|
|
513
545
|
|
|
514
|
-
:type override_context: typing.Optional[typing.Union[
|
|
546
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
515
547
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
516
548
|
:type undo: typing.Optional[bool]
|
|
517
549
|
:param clear: Clear, Clear pinning for the selection instead of setting it
|
|
@@ -523,7 +555,9 @@ def pin(
|
|
|
523
555
|
...
|
|
524
556
|
|
|
525
557
|
def project_from_view(
|
|
526
|
-
override_context: typing.Optional[
|
|
558
|
+
override_context: typing.Optional[
|
|
559
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
560
|
+
] = None,
|
|
527
561
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
528
562
|
undo: typing.Optional[bool] = None,
|
|
529
563
|
orthographic: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -534,7 +568,7 @@ def project_from_view(
|
|
|
534
568
|
):
|
|
535
569
|
"""Project the UV vertices of the mesh as seen in current 3D view
|
|
536
570
|
|
|
537
|
-
:type override_context: typing.Optional[typing.Union[
|
|
571
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
538
572
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
539
573
|
:type undo: typing.Optional[bool]
|
|
540
574
|
:param orthographic: Orthographic, Use orthographic projection
|
|
@@ -552,7 +586,9 @@ def project_from_view(
|
|
|
552
586
|
...
|
|
553
587
|
|
|
554
588
|
def randomize_uv_transform(
|
|
555
|
-
override_context: typing.Optional[
|
|
589
|
+
override_context: typing.Optional[
|
|
590
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
591
|
+
] = None,
|
|
556
592
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
557
593
|
undo: typing.Optional[bool] = None,
|
|
558
594
|
random_seed: typing.Optional[typing.Any] = 0,
|
|
@@ -566,7 +602,7 @@ def randomize_uv_transform(
|
|
|
566
602
|
):
|
|
567
603
|
"""Randomize the UV island's location, rotation, and scale
|
|
568
604
|
|
|
569
|
-
:type override_context: typing.Optional[typing.Union[
|
|
605
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
570
606
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
571
607
|
:type undo: typing.Optional[bool]
|
|
572
608
|
:param random_seed: Random Seed, Seed value for the random generator
|
|
@@ -590,7 +626,9 @@ def randomize_uv_transform(
|
|
|
590
626
|
...
|
|
591
627
|
|
|
592
628
|
def remove_doubles(
|
|
593
|
-
override_context: typing.Optional[
|
|
629
|
+
override_context: typing.Optional[
|
|
630
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
631
|
+
] = None,
|
|
594
632
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
595
633
|
undo: typing.Optional[bool] = None,
|
|
596
634
|
threshold: typing.Optional[typing.Any] = 0.02,
|
|
@@ -598,7 +636,7 @@ def remove_doubles(
|
|
|
598
636
|
):
|
|
599
637
|
"""Selected UV vertices that are within a radius of each other are welded together
|
|
600
638
|
|
|
601
|
-
:type override_context: typing.Optional[typing.Union[
|
|
639
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
602
640
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
603
641
|
:type undo: typing.Optional[bool]
|
|
604
642
|
:param threshold: Merge Distance, Maximum distance between welded vertices
|
|
@@ -610,13 +648,15 @@ def remove_doubles(
|
|
|
610
648
|
...
|
|
611
649
|
|
|
612
650
|
def reset(
|
|
613
|
-
override_context: typing.Optional[
|
|
651
|
+
override_context: typing.Optional[
|
|
652
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
653
|
+
] = None,
|
|
614
654
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
615
655
|
undo: typing.Optional[bool] = None,
|
|
616
656
|
):
|
|
617
657
|
"""Reset UV projection
|
|
618
658
|
|
|
619
|
-
:type override_context: typing.Optional[typing.Union[
|
|
659
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
620
660
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
621
661
|
:type undo: typing.Optional[bool]
|
|
622
662
|
"""
|
|
@@ -624,14 +664,16 @@ def reset(
|
|
|
624
664
|
...
|
|
625
665
|
|
|
626
666
|
def reveal(
|
|
627
|
-
override_context: typing.Optional[
|
|
667
|
+
override_context: typing.Optional[
|
|
668
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
669
|
+
] = None,
|
|
628
670
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
629
671
|
undo: typing.Optional[bool] = None,
|
|
630
672
|
select: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
631
673
|
):
|
|
632
674
|
"""Reveal all hidden UV vertices
|
|
633
675
|
|
|
634
|
-
:type override_context: typing.Optional[typing.Union[
|
|
676
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
635
677
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
636
678
|
:type undo: typing.Optional[bool]
|
|
637
679
|
:param select: Select
|
|
@@ -641,7 +683,9 @@ def reveal(
|
|
|
641
683
|
...
|
|
642
684
|
|
|
643
685
|
def rip(
|
|
644
|
-
override_context: typing.Optional[
|
|
686
|
+
override_context: typing.Optional[
|
|
687
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
688
|
+
] = None,
|
|
645
689
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
646
690
|
undo: typing.Optional[bool] = None,
|
|
647
691
|
mirror: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -651,7 +695,7 @@ def rip(
|
|
|
651
695
|
):
|
|
652
696
|
"""Rip selected vertices or a selected region
|
|
653
697
|
|
|
654
|
-
:type override_context: typing.Optional[typing.Union[
|
|
698
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
655
699
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
656
700
|
:type undo: typing.Optional[bool]
|
|
657
701
|
:param mirror: Mirror Editing
|
|
@@ -667,7 +711,9 @@ def rip(
|
|
|
667
711
|
...
|
|
668
712
|
|
|
669
713
|
def rip_move(
|
|
670
|
-
override_context: typing.Optional[
|
|
714
|
+
override_context: typing.Optional[
|
|
715
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
716
|
+
] = None,
|
|
671
717
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
672
718
|
undo: typing.Optional[bool] = None,
|
|
673
719
|
UV_OT_rip: typing.Optional[rip] = None,
|
|
@@ -675,7 +721,7 @@ def rip_move(
|
|
|
675
721
|
):
|
|
676
722
|
"""Unstitch UVs and move the result
|
|
677
723
|
|
|
678
|
-
:type override_context: typing.Optional[typing.Union[
|
|
724
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
679
725
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
680
726
|
:type undo: typing.Optional[bool]
|
|
681
727
|
:param UV_OT_rip: UV Rip, Rip selected vertices or a selected region
|
|
@@ -687,7 +733,9 @@ def rip_move(
|
|
|
687
733
|
...
|
|
688
734
|
|
|
689
735
|
def seams_from_islands(
|
|
690
|
-
override_context: typing.Optional[
|
|
736
|
+
override_context: typing.Optional[
|
|
737
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
738
|
+
] = None,
|
|
691
739
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
692
740
|
undo: typing.Optional[bool] = None,
|
|
693
741
|
mark_seams: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -695,7 +743,7 @@ def seams_from_islands(
|
|
|
695
743
|
):
|
|
696
744
|
"""Set mesh seams according to island setup in the UV editor
|
|
697
745
|
|
|
698
|
-
:type override_context: typing.Optional[typing.Union[
|
|
746
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
699
747
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
700
748
|
:type undo: typing.Optional[bool]
|
|
701
749
|
:param mark_seams: Mark Seams, Mark boundary edges as seams
|
|
@@ -707,7 +755,9 @@ def seams_from_islands(
|
|
|
707
755
|
...
|
|
708
756
|
|
|
709
757
|
def select(
|
|
710
|
-
override_context: typing.Optional[
|
|
758
|
+
override_context: typing.Optional[
|
|
759
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
760
|
+
] = None,
|
|
711
761
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
712
762
|
undo: typing.Optional[bool] = None,
|
|
713
763
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -719,7 +769,7 @@ def select(
|
|
|
719
769
|
):
|
|
720
770
|
"""Select UV vertices
|
|
721
771
|
|
|
722
|
-
:type override_context: typing.Optional[typing.Union[
|
|
772
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
723
773
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
724
774
|
:type undo: typing.Optional[bool]
|
|
725
775
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -739,14 +789,16 @@ def select(
|
|
|
739
789
|
...
|
|
740
790
|
|
|
741
791
|
def select_all(
|
|
742
|
-
override_context: typing.Optional[
|
|
792
|
+
override_context: typing.Optional[
|
|
793
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
794
|
+
] = None,
|
|
743
795
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
744
796
|
undo: typing.Optional[bool] = None,
|
|
745
797
|
action: typing.Optional[typing.Any] = "TOGGLE",
|
|
746
798
|
):
|
|
747
799
|
"""Change selection of all UV vertices
|
|
748
800
|
|
|
749
|
-
:type override_context: typing.Optional[typing.Union[
|
|
801
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
750
802
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
751
803
|
:type undo: typing.Optional[bool]
|
|
752
804
|
:param action: Action, Selection action to execute
|
|
@@ -768,7 +820,9 @@ def select_all(
|
|
|
768
820
|
...
|
|
769
821
|
|
|
770
822
|
def select_box(
|
|
771
|
-
override_context: typing.Optional[
|
|
823
|
+
override_context: typing.Optional[
|
|
824
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
825
|
+
] = None,
|
|
772
826
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
773
827
|
undo: typing.Optional[bool] = None,
|
|
774
828
|
pinned: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -781,7 +835,7 @@ def select_box(
|
|
|
781
835
|
):
|
|
782
836
|
"""Select UV vertices using box selection
|
|
783
837
|
|
|
784
|
-
:type override_context: typing.Optional[typing.Union[
|
|
838
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
785
839
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
786
840
|
:type undo: typing.Optional[bool]
|
|
787
841
|
:param pinned: Pinned, Border select pinned UVs only
|
|
@@ -812,7 +866,9 @@ def select_box(
|
|
|
812
866
|
...
|
|
813
867
|
|
|
814
868
|
def select_circle(
|
|
815
|
-
override_context: typing.Optional[
|
|
869
|
+
override_context: typing.Optional[
|
|
870
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
871
|
+
] = None,
|
|
816
872
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
817
873
|
undo: typing.Optional[bool] = None,
|
|
818
874
|
x: typing.Optional[typing.Any] = 0,
|
|
@@ -823,7 +879,7 @@ def select_circle(
|
|
|
823
879
|
):
|
|
824
880
|
"""Select UV vertices using circle selection
|
|
825
881
|
|
|
826
|
-
:type override_context: typing.Optional[typing.Union[
|
|
882
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
827
883
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
828
884
|
:type undo: typing.Optional[bool]
|
|
829
885
|
:param x: X
|
|
@@ -850,7 +906,9 @@ def select_circle(
|
|
|
850
906
|
...
|
|
851
907
|
|
|
852
908
|
def select_edge_ring(
|
|
853
|
-
override_context: typing.Optional[
|
|
909
|
+
override_context: typing.Optional[
|
|
910
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
911
|
+
] = None,
|
|
854
912
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
855
913
|
undo: typing.Optional[bool] = None,
|
|
856
914
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -858,7 +916,7 @@ def select_edge_ring(
|
|
|
858
916
|
):
|
|
859
917
|
"""Select an edge ring of connected UV vertices
|
|
860
918
|
|
|
861
|
-
:type override_context: typing.Optional[typing.Union[
|
|
919
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
862
920
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
863
921
|
:type undo: typing.Optional[bool]
|
|
864
922
|
:param extend: Extend, Extend selection rather than clearing the existing selection
|
|
@@ -870,7 +928,9 @@ def select_edge_ring(
|
|
|
870
928
|
...
|
|
871
929
|
|
|
872
930
|
def select_lasso(
|
|
873
|
-
override_context: typing.Optional[
|
|
931
|
+
override_context: typing.Optional[
|
|
932
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
933
|
+
] = None,
|
|
874
934
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
875
935
|
undo: typing.Optional[bool] = None,
|
|
876
936
|
path: typing.Optional[
|
|
@@ -880,7 +940,7 @@ def select_lasso(
|
|
|
880
940
|
):
|
|
881
941
|
"""Select UVs using lasso selection
|
|
882
942
|
|
|
883
|
-
:type override_context: typing.Optional[typing.Union[
|
|
943
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
884
944
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
885
945
|
:type undo: typing.Optional[bool]
|
|
886
946
|
:param path: Path
|
|
@@ -901,13 +961,15 @@ def select_lasso(
|
|
|
901
961
|
...
|
|
902
962
|
|
|
903
963
|
def select_less(
|
|
904
|
-
override_context: typing.Optional[
|
|
964
|
+
override_context: typing.Optional[
|
|
965
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
966
|
+
] = None,
|
|
905
967
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
906
968
|
undo: typing.Optional[bool] = None,
|
|
907
969
|
):
|
|
908
970
|
"""Deselect UV vertices at the boundary of each selection region
|
|
909
971
|
|
|
910
|
-
:type override_context: typing.Optional[typing.Union[
|
|
972
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
911
973
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
912
974
|
:type undo: typing.Optional[bool]
|
|
913
975
|
"""
|
|
@@ -915,13 +977,15 @@ def select_less(
|
|
|
915
977
|
...
|
|
916
978
|
|
|
917
979
|
def select_linked(
|
|
918
|
-
override_context: typing.Optional[
|
|
980
|
+
override_context: typing.Optional[
|
|
981
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
982
|
+
] = None,
|
|
919
983
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
920
984
|
undo: typing.Optional[bool] = None,
|
|
921
985
|
):
|
|
922
986
|
"""Select all UV vertices linked to the active UV map
|
|
923
987
|
|
|
924
|
-
:type override_context: typing.Optional[typing.Union[
|
|
988
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
925
989
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
926
990
|
:type undo: typing.Optional[bool]
|
|
927
991
|
"""
|
|
@@ -929,7 +993,9 @@ def select_linked(
|
|
|
929
993
|
...
|
|
930
994
|
|
|
931
995
|
def select_linked_pick(
|
|
932
|
-
override_context: typing.Optional[
|
|
996
|
+
override_context: typing.Optional[
|
|
997
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
998
|
+
] = None,
|
|
933
999
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
934
1000
|
undo: typing.Optional[bool] = None,
|
|
935
1001
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -938,7 +1004,7 @@ def select_linked_pick(
|
|
|
938
1004
|
):
|
|
939
1005
|
"""Select all UV vertices linked under the mouse
|
|
940
1006
|
|
|
941
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1007
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
942
1008
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
943
1009
|
:type undo: typing.Optional[bool]
|
|
944
1010
|
:param extend: Extend, Extend selection rather than clearing the existing selection
|
|
@@ -952,7 +1018,9 @@ def select_linked_pick(
|
|
|
952
1018
|
...
|
|
953
1019
|
|
|
954
1020
|
def select_loop(
|
|
955
|
-
override_context: typing.Optional[
|
|
1021
|
+
override_context: typing.Optional[
|
|
1022
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1023
|
+
] = None,
|
|
956
1024
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
957
1025
|
undo: typing.Optional[bool] = None,
|
|
958
1026
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -960,7 +1028,7 @@ def select_loop(
|
|
|
960
1028
|
):
|
|
961
1029
|
"""Select a loop of connected UV vertices
|
|
962
1030
|
|
|
963
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1031
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
964
1032
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
965
1033
|
:type undo: typing.Optional[bool]
|
|
966
1034
|
:param extend: Extend, Extend selection rather than clearing the existing selection
|
|
@@ -972,14 +1040,16 @@ def select_loop(
|
|
|
972
1040
|
...
|
|
973
1041
|
|
|
974
1042
|
def select_mode(
|
|
975
|
-
override_context: typing.Optional[
|
|
1043
|
+
override_context: typing.Optional[
|
|
1044
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1045
|
+
] = None,
|
|
976
1046
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
977
1047
|
undo: typing.Optional[bool] = None,
|
|
978
1048
|
type: typing.Optional[typing.Union[str, int]] = "VERTEX",
|
|
979
1049
|
):
|
|
980
1050
|
"""Change UV selection mode
|
|
981
1051
|
|
|
982
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1052
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
983
1053
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
984
1054
|
:type undo: typing.Optional[bool]
|
|
985
1055
|
:param type: Type
|
|
@@ -989,13 +1059,15 @@ def select_mode(
|
|
|
989
1059
|
...
|
|
990
1060
|
|
|
991
1061
|
def select_more(
|
|
992
|
-
override_context: typing.Optional[
|
|
1062
|
+
override_context: typing.Optional[
|
|
1063
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1064
|
+
] = None,
|
|
993
1065
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
994
1066
|
undo: typing.Optional[bool] = None,
|
|
995
1067
|
):
|
|
996
1068
|
"""Select more UV vertices connected to initial selection
|
|
997
1069
|
|
|
998
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1070
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
999
1071
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1000
1072
|
:type undo: typing.Optional[bool]
|
|
1001
1073
|
"""
|
|
@@ -1003,14 +1075,16 @@ def select_more(
|
|
|
1003
1075
|
...
|
|
1004
1076
|
|
|
1005
1077
|
def select_overlap(
|
|
1006
|
-
override_context: typing.Optional[
|
|
1078
|
+
override_context: typing.Optional[
|
|
1079
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1080
|
+
] = None,
|
|
1007
1081
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1008
1082
|
undo: typing.Optional[bool] = None,
|
|
1009
1083
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1010
1084
|
):
|
|
1011
1085
|
"""Select all UV faces which overlap each other
|
|
1012
1086
|
|
|
1013
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1087
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1014
1088
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1015
1089
|
:type undo: typing.Optional[bool]
|
|
1016
1090
|
:param extend: Extend, Extend selection rather than clearing the existing selection
|
|
@@ -1020,13 +1094,15 @@ def select_overlap(
|
|
|
1020
1094
|
...
|
|
1021
1095
|
|
|
1022
1096
|
def select_pinned(
|
|
1023
|
-
override_context: typing.Optional[
|
|
1097
|
+
override_context: typing.Optional[
|
|
1098
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1099
|
+
] = None,
|
|
1024
1100
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1025
1101
|
undo: typing.Optional[bool] = None,
|
|
1026
1102
|
):
|
|
1027
1103
|
"""Select all pinned UV vertices
|
|
1028
1104
|
|
|
1029
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1105
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1030
1106
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1031
1107
|
:type undo: typing.Optional[bool]
|
|
1032
1108
|
"""
|
|
@@ -1034,7 +1110,9 @@ def select_pinned(
|
|
|
1034
1110
|
...
|
|
1035
1111
|
|
|
1036
1112
|
def select_similar(
|
|
1037
|
-
override_context: typing.Optional[
|
|
1113
|
+
override_context: typing.Optional[
|
|
1114
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1115
|
+
] = None,
|
|
1038
1116
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1039
1117
|
undo: typing.Optional[bool] = None,
|
|
1040
1118
|
type: typing.Optional[typing.Any] = "PIN",
|
|
@@ -1043,7 +1121,7 @@ def select_similar(
|
|
|
1043
1121
|
):
|
|
1044
1122
|
"""Select similar UVs by property types
|
|
1045
1123
|
|
|
1046
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1124
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1047
1125
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1048
1126
|
:type undo: typing.Optional[bool]
|
|
1049
1127
|
:param type: Type
|
|
@@ -1057,13 +1135,15 @@ def select_similar(
|
|
|
1057
1135
|
...
|
|
1058
1136
|
|
|
1059
1137
|
def select_split(
|
|
1060
|
-
override_context: typing.Optional[
|
|
1138
|
+
override_context: typing.Optional[
|
|
1139
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1140
|
+
] = None,
|
|
1061
1141
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1062
1142
|
undo: typing.Optional[bool] = None,
|
|
1063
1143
|
):
|
|
1064
1144
|
"""Select only entirely selected faces
|
|
1065
1145
|
|
|
1066
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1146
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1067
1147
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1068
1148
|
:type undo: typing.Optional[bool]
|
|
1069
1149
|
"""
|
|
@@ -1071,7 +1151,9 @@ def select_split(
|
|
|
1071
1151
|
...
|
|
1072
1152
|
|
|
1073
1153
|
def shortest_path_pick(
|
|
1074
|
-
override_context: typing.Optional[
|
|
1154
|
+
override_context: typing.Optional[
|
|
1155
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1156
|
+
] = None,
|
|
1075
1157
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1076
1158
|
undo: typing.Optional[bool] = None,
|
|
1077
1159
|
use_face_step: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -1085,7 +1167,7 @@ def shortest_path_pick(
|
|
|
1085
1167
|
):
|
|
1086
1168
|
"""Select shortest path between two selections
|
|
1087
1169
|
|
|
1088
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1170
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1089
1171
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1090
1172
|
:type undo: typing.Optional[bool]
|
|
1091
1173
|
:param use_face_step: Face Stepping, Traverse connected faces (includes diagonals and edge-rings)
|
|
@@ -1107,7 +1189,9 @@ def shortest_path_pick(
|
|
|
1107
1189
|
...
|
|
1108
1190
|
|
|
1109
1191
|
def shortest_path_select(
|
|
1110
|
-
override_context: typing.Optional[
|
|
1192
|
+
override_context: typing.Optional[
|
|
1193
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1194
|
+
] = None,
|
|
1111
1195
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1112
1196
|
undo: typing.Optional[bool] = None,
|
|
1113
1197
|
use_face_step: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -1119,7 +1203,7 @@ def shortest_path_select(
|
|
|
1119
1203
|
):
|
|
1120
1204
|
"""Selected shortest path between two vertices/edges/faces
|
|
1121
1205
|
|
|
1122
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1206
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1123
1207
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1124
1208
|
:type undo: typing.Optional[bool]
|
|
1125
1209
|
:param use_face_step: Face Stepping, Traverse connected faces (includes diagonals and edge-rings)
|
|
@@ -1139,7 +1223,9 @@ def shortest_path_select(
|
|
|
1139
1223
|
...
|
|
1140
1224
|
|
|
1141
1225
|
def smart_project(
|
|
1142
|
-
override_context: typing.Optional[
|
|
1226
|
+
override_context: typing.Optional[
|
|
1227
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1228
|
+
] = None,
|
|
1143
1229
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1144
1230
|
undo: typing.Optional[bool] = None,
|
|
1145
1231
|
angle_limit: typing.Optional[typing.Any] = 1.15192,
|
|
@@ -1152,7 +1238,7 @@ def smart_project(
|
|
|
1152
1238
|
):
|
|
1153
1239
|
"""Projection unwraps the selected faces of mesh objects
|
|
1154
1240
|
|
|
1155
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1241
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1156
1242
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1157
1243
|
:type undo: typing.Optional[bool]
|
|
1158
1244
|
:param angle_limit: Angle Limit, Lower for more projection groups, higher for less distortion
|
|
@@ -1192,14 +1278,16 @@ def smart_project(
|
|
|
1192
1278
|
...
|
|
1193
1279
|
|
|
1194
1280
|
def snap_cursor(
|
|
1195
|
-
override_context: typing.Optional[
|
|
1281
|
+
override_context: typing.Optional[
|
|
1282
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1283
|
+
] = None,
|
|
1196
1284
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1197
1285
|
undo: typing.Optional[bool] = None,
|
|
1198
1286
|
target: typing.Optional[typing.Any] = "PIXELS",
|
|
1199
1287
|
):
|
|
1200
1288
|
"""Snap cursor to target type
|
|
1201
1289
|
|
|
1202
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1290
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1203
1291
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1204
1292
|
:type undo: typing.Optional[bool]
|
|
1205
1293
|
:param target: Target, Target to snap the selected UVs to
|
|
@@ -1209,14 +1297,16 @@ def snap_cursor(
|
|
|
1209
1297
|
...
|
|
1210
1298
|
|
|
1211
1299
|
def snap_selected(
|
|
1212
|
-
override_context: typing.Optional[
|
|
1300
|
+
override_context: typing.Optional[
|
|
1301
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1302
|
+
] = None,
|
|
1213
1303
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1214
1304
|
undo: typing.Optional[bool] = None,
|
|
1215
1305
|
target: typing.Optional[typing.Any] = "PIXELS",
|
|
1216
1306
|
):
|
|
1217
1307
|
"""Snap selected UV vertices to target type
|
|
1218
1308
|
|
|
1219
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1309
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1220
1310
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1221
1311
|
:type undo: typing.Optional[bool]
|
|
1222
1312
|
:param target: Target, Target to snap the selected UVs to
|
|
@@ -1226,7 +1316,9 @@ def snap_selected(
|
|
|
1226
1316
|
...
|
|
1227
1317
|
|
|
1228
1318
|
def sphere_project(
|
|
1229
|
-
override_context: typing.Optional[
|
|
1319
|
+
override_context: typing.Optional[
|
|
1320
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1321
|
+
] = None,
|
|
1230
1322
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1231
1323
|
undo: typing.Optional[bool] = None,
|
|
1232
1324
|
direction: typing.Optional[typing.Any] = "VIEW_ON_EQUATOR",
|
|
@@ -1239,7 +1331,7 @@ def sphere_project(
|
|
|
1239
1331
|
):
|
|
1240
1332
|
"""Project the UV vertices of the mesh over the curved surface of a sphere
|
|
1241
1333
|
|
|
1242
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1334
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1243
1335
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1244
1336
|
:type undo: typing.Optional[bool]
|
|
1245
1337
|
:param direction: Direction, Direction of the sphere or cylinder
|
|
@@ -1282,7 +1374,9 @@ def sphere_project(
|
|
|
1282
1374
|
...
|
|
1283
1375
|
|
|
1284
1376
|
def stitch(
|
|
1285
|
-
override_context: typing.Optional[
|
|
1377
|
+
override_context: typing.Optional[
|
|
1378
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1379
|
+
] = None,
|
|
1286
1380
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1287
1381
|
undo: typing.Optional[bool] = None,
|
|
1288
1382
|
use_limit: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -1301,7 +1395,7 @@ def stitch(
|
|
|
1301
1395
|
):
|
|
1302
1396
|
"""Stitch selected UV vertices by proximity
|
|
1303
1397
|
|
|
1304
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1398
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1305
1399
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1306
1400
|
:type undo: typing.Optional[bool]
|
|
1307
1401
|
:param use_limit: Use Limit, Stitch UVs within a specified limit distance
|
|
@@ -1331,7 +1425,9 @@ def stitch(
|
|
|
1331
1425
|
...
|
|
1332
1426
|
|
|
1333
1427
|
def unwrap(
|
|
1334
|
-
override_context: typing.Optional[
|
|
1428
|
+
override_context: typing.Optional[
|
|
1429
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1430
|
+
] = None,
|
|
1335
1431
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1336
1432
|
undo: typing.Optional[bool] = None,
|
|
1337
1433
|
method: typing.Optional[typing.Any] = "ANGLE_BASED",
|
|
@@ -1343,7 +1439,7 @@ def unwrap(
|
|
|
1343
1439
|
):
|
|
1344
1440
|
"""Unwrap the mesh of the object being edited
|
|
1345
1441
|
|
|
1346
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1442
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1347
1443
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1348
1444
|
:type undo: typing.Optional[bool]
|
|
1349
1445
|
:param method: Method, Unwrapping method (Angle Based usually gives better results than Conformal, while being somewhat slower)
|
|
@@ -1372,13 +1468,15 @@ def unwrap(
|
|
|
1372
1468
|
...
|
|
1373
1469
|
|
|
1374
1470
|
def weld(
|
|
1375
|
-
override_context: typing.Optional[
|
|
1471
|
+
override_context: typing.Optional[
|
|
1472
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1473
|
+
] = None,
|
|
1376
1474
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1377
1475
|
undo: typing.Optional[bool] = None,
|
|
1378
1476
|
):
|
|
1379
1477
|
"""Weld selected UV vertices together
|
|
1380
1478
|
|
|
1381
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1479
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1382
1480
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1383
1481
|
:type undo: typing.Optional[bool]
|
|
1384
1482
|
"""
|