fake-bpy-module 20240928__py3-none-any.whl → 20240930__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
- bmesh/types/__init__.pyi +2 -2
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +124 -124
- 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 +202 -202
- 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 +333 -298
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/RECORD +85 -85
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/top_level.txt +0 -0
bpy/ops/uv/__init__.pyi
CHANGED
|
@@ -7,7 +7,7 @@ import bpy.typing
|
|
|
7
7
|
import mathutils
|
|
8
8
|
|
|
9
9
|
def align(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
*,
|
|
@@ -18,7 +18,7 @@ def align(
|
|
|
18
18
|
):
|
|
19
19
|
"""Aligns selected UV vertices on a line
|
|
20
20
|
|
|
21
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
21
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
22
22
|
:type execution_context: int | str | None
|
|
23
23
|
:type undo: bool | None
|
|
24
24
|
:param axis: Axis, Axis to align UV locations on
|
|
@@ -44,7 +44,7 @@ def align(
|
|
|
44
44
|
"""
|
|
45
45
|
|
|
46
46
|
def align_rotation(
|
|
47
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
47
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
48
48
|
execution_context: int | str | None = None,
|
|
49
49
|
undo: bool | None = None,
|
|
50
50
|
*,
|
|
@@ -54,7 +54,7 @@ def align_rotation(
|
|
|
54
54
|
):
|
|
55
55
|
"""Align the UV island's rotation
|
|
56
56
|
|
|
57
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
57
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
58
58
|
:type execution_context: int | str | None
|
|
59
59
|
:type undo: bool | None
|
|
60
60
|
:param method: Method, Method to calculate rotation angle
|
|
@@ -84,7 +84,7 @@ def align_rotation(
|
|
|
84
84
|
"""
|
|
85
85
|
|
|
86
86
|
def average_islands_scale(
|
|
87
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
87
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
88
88
|
execution_context: int | str | None = None,
|
|
89
89
|
undo: bool | None = None,
|
|
90
90
|
*,
|
|
@@ -93,7 +93,7 @@ def average_islands_scale(
|
|
|
93
93
|
):
|
|
94
94
|
"""Average the size of separate UV islands, based on their area in 3D space
|
|
95
95
|
|
|
96
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
96
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
97
97
|
:type execution_context: int | str | None
|
|
98
98
|
:type undo: bool | None
|
|
99
99
|
:param scale_uv: Non-Uniform, Scale U and V independently
|
|
@@ -103,19 +103,19 @@ def average_islands_scale(
|
|
|
103
103
|
"""
|
|
104
104
|
|
|
105
105
|
def copy(
|
|
106
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
106
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
107
107
|
execution_context: int | str | None = None,
|
|
108
108
|
undo: bool | None = None,
|
|
109
109
|
):
|
|
110
110
|
"""Copy selected UV vertices
|
|
111
111
|
|
|
112
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
112
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
113
113
|
:type execution_context: int | str | None
|
|
114
114
|
:type undo: bool | None
|
|
115
115
|
"""
|
|
116
116
|
|
|
117
117
|
def cube_project(
|
|
118
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
118
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
119
119
|
execution_context: int | str | None = None,
|
|
120
120
|
undo: bool | None = None,
|
|
121
121
|
*,
|
|
@@ -126,7 +126,7 @@ def cube_project(
|
|
|
126
126
|
):
|
|
127
127
|
"""Project the UV vertices of the mesh over the six faces of a cube
|
|
128
128
|
|
|
129
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
129
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
130
130
|
:type execution_context: int | str | None
|
|
131
131
|
:type undo: bool | None
|
|
132
132
|
:param cube_size: Cube Size, Size of the cube to project on
|
|
@@ -140,7 +140,7 @@ def cube_project(
|
|
|
140
140
|
"""
|
|
141
141
|
|
|
142
142
|
def cursor_set(
|
|
143
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
143
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
144
144
|
execution_context: int | str | None = None,
|
|
145
145
|
undo: bool | None = None,
|
|
146
146
|
*,
|
|
@@ -148,7 +148,7 @@ def cursor_set(
|
|
|
148
148
|
):
|
|
149
149
|
"""Set 2D cursor location
|
|
150
150
|
|
|
151
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
151
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
152
152
|
:type execution_context: int | str | None
|
|
153
153
|
:type undo: bool | None
|
|
154
154
|
:param location: Location, Cursor location in normalized (0.0 to 1.0) coordinates
|
|
@@ -156,7 +156,7 @@ def cursor_set(
|
|
|
156
156
|
"""
|
|
157
157
|
|
|
158
158
|
def cylinder_project(
|
|
159
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
159
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
160
160
|
execution_context: int | str | None = None,
|
|
161
161
|
undo: bool | None = None,
|
|
162
162
|
*,
|
|
@@ -172,7 +172,7 @@ def cylinder_project(
|
|
|
172
172
|
):
|
|
173
173
|
"""Project the UV vertices of the mesh over the curved wall of a cylinder
|
|
174
174
|
|
|
175
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
175
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
176
176
|
:type execution_context: int | str | None
|
|
177
177
|
:type undo: bool | None
|
|
178
178
|
:param direction: Direction, Direction of the sphere or cylinder
|
|
@@ -215,7 +215,7 @@ def cylinder_project(
|
|
|
215
215
|
"""
|
|
216
216
|
|
|
217
217
|
def export_layout(
|
|
218
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
218
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
219
219
|
execution_context: int | str | None = None,
|
|
220
220
|
undo: bool | None = None,
|
|
221
221
|
*,
|
|
@@ -230,7 +230,7 @@ def export_layout(
|
|
|
230
230
|
):
|
|
231
231
|
"""Export UV layout to file
|
|
232
232
|
|
|
233
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
233
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
234
234
|
:type execution_context: int | str | None
|
|
235
235
|
:type undo: bool | None
|
|
236
236
|
:param filepath: filepath
|
|
@@ -270,7 +270,7 @@ def export_layout(
|
|
|
270
270
|
"""
|
|
271
271
|
|
|
272
272
|
def follow_active_quads(
|
|
273
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
273
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
274
274
|
execution_context: int | str | None = None,
|
|
275
275
|
undo: bool | None = None,
|
|
276
276
|
*,
|
|
@@ -278,7 +278,7 @@ def follow_active_quads(
|
|
|
278
278
|
):
|
|
279
279
|
"""Follow UVs from active quads along continuous face loops
|
|
280
280
|
|
|
281
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
281
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
282
282
|
:type execution_context: int | str | None
|
|
283
283
|
:type undo: bool | None
|
|
284
284
|
:param mode: Edge Length Mode, Method to space UV edge loops
|
|
@@ -295,7 +295,7 @@ def follow_active_quads(
|
|
|
295
295
|
"""
|
|
296
296
|
|
|
297
297
|
def hide(
|
|
298
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
298
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
299
299
|
execution_context: int | str | None = None,
|
|
300
300
|
undo: bool | None = None,
|
|
301
301
|
*,
|
|
@@ -303,7 +303,7 @@ def hide(
|
|
|
303
303
|
):
|
|
304
304
|
"""Hide (un)selected UV vertices
|
|
305
305
|
|
|
306
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
306
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
307
307
|
:type execution_context: int | str | None
|
|
308
308
|
:type undo: bool | None
|
|
309
309
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
@@ -311,7 +311,7 @@ def hide(
|
|
|
311
311
|
"""
|
|
312
312
|
|
|
313
313
|
def lightmap_pack(
|
|
314
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
314
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
315
315
|
execution_context: int | str | None = None,
|
|
316
316
|
undo: bool | None = None,
|
|
317
317
|
*,
|
|
@@ -323,7 +323,7 @@ def lightmap_pack(
|
|
|
323
323
|
):
|
|
324
324
|
"""Pack each face's UVs into the UV bounds
|
|
325
325
|
|
|
326
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
326
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
327
327
|
:type execution_context: int | str | None
|
|
328
328
|
:type undo: bool | None
|
|
329
329
|
:param PREF_CONTEXT: Selection
|
|
@@ -345,7 +345,7 @@ def lightmap_pack(
|
|
|
345
345
|
"""
|
|
346
346
|
|
|
347
347
|
def mark_seam(
|
|
348
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
348
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
349
349
|
execution_context: int | str | None = None,
|
|
350
350
|
undo: bool | None = None,
|
|
351
351
|
*,
|
|
@@ -353,7 +353,7 @@ def mark_seam(
|
|
|
353
353
|
):
|
|
354
354
|
"""Mark selected UV edges as seams
|
|
355
355
|
|
|
356
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
356
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
357
357
|
:type execution_context: int | str | None
|
|
358
358
|
:type undo: bool | None
|
|
359
359
|
:param clear: Clear Seams, Clear instead of marking seams
|
|
@@ -361,7 +361,7 @@ def mark_seam(
|
|
|
361
361
|
"""
|
|
362
362
|
|
|
363
363
|
def minimize_stretch(
|
|
364
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
364
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
365
365
|
execution_context: int | str | None = None,
|
|
366
366
|
undo: bool | None = None,
|
|
367
367
|
*,
|
|
@@ -371,7 +371,7 @@ def minimize_stretch(
|
|
|
371
371
|
):
|
|
372
372
|
"""Reduce UV stretching by relaxing angles
|
|
373
373
|
|
|
374
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
374
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
375
375
|
:type execution_context: int | str | None
|
|
376
376
|
:type undo: bool | None
|
|
377
377
|
:param fill_holes: Fill Holes, Virtually fill holes in mesh before unwrapping, to better avoid overlaps and preserve symmetry
|
|
@@ -383,7 +383,7 @@ def minimize_stretch(
|
|
|
383
383
|
"""
|
|
384
384
|
|
|
385
385
|
def pack_islands(
|
|
386
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
386
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
387
387
|
execution_context: int | str | None = None,
|
|
388
388
|
undo: bool | None = None,
|
|
389
389
|
*,
|
|
@@ -405,7 +405,7 @@ def pack_islands(
|
|
|
405
405
|
):
|
|
406
406
|
"""Transform all islands so that they fill up the UV/UDIM space as much as possible
|
|
407
407
|
|
|
408
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
408
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
409
409
|
:type execution_context: int | str | None
|
|
410
410
|
:type undo: bool | None
|
|
411
411
|
:param udim_source: Pack to
|
|
@@ -485,19 +485,19 @@ def pack_islands(
|
|
|
485
485
|
"""
|
|
486
486
|
|
|
487
487
|
def paste(
|
|
488
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
488
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
489
489
|
execution_context: int | str | None = None,
|
|
490
490
|
undo: bool | None = None,
|
|
491
491
|
):
|
|
492
492
|
"""Paste selected UV vertices
|
|
493
493
|
|
|
494
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
494
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
495
495
|
:type execution_context: int | str | None
|
|
496
496
|
:type undo: bool | None
|
|
497
497
|
"""
|
|
498
498
|
|
|
499
499
|
def pin(
|
|
500
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
500
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
501
501
|
execution_context: int | str | None = None,
|
|
502
502
|
undo: bool | None = None,
|
|
503
503
|
*,
|
|
@@ -506,7 +506,7 @@ def pin(
|
|
|
506
506
|
):
|
|
507
507
|
"""Set/clear selected UV vertices as anchored between multiple unwrap operations
|
|
508
508
|
|
|
509
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
509
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
510
510
|
:type execution_context: int | str | None
|
|
511
511
|
:type undo: bool | None
|
|
512
512
|
:param clear: Clear, Clear pinning for the selection instead of setting it
|
|
@@ -516,7 +516,7 @@ def pin(
|
|
|
516
516
|
"""
|
|
517
517
|
|
|
518
518
|
def project_from_view(
|
|
519
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
519
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
520
520
|
execution_context: int | str | None = None,
|
|
521
521
|
undo: bool | None = None,
|
|
522
522
|
*,
|
|
@@ -528,7 +528,7 @@ def project_from_view(
|
|
|
528
528
|
):
|
|
529
529
|
"""Project the UV vertices of the mesh as seen in current 3D view
|
|
530
530
|
|
|
531
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
531
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
532
532
|
:type execution_context: int | str | None
|
|
533
533
|
:type undo: bool | None
|
|
534
534
|
:param orthographic: Orthographic, Use orthographic projection
|
|
@@ -544,7 +544,7 @@ def project_from_view(
|
|
|
544
544
|
"""
|
|
545
545
|
|
|
546
546
|
def randomize_uv_transform(
|
|
547
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
547
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
548
548
|
execution_context: int | str | None = None,
|
|
549
549
|
undo: bool | None = None,
|
|
550
550
|
*,
|
|
@@ -559,7 +559,7 @@ def randomize_uv_transform(
|
|
|
559
559
|
):
|
|
560
560
|
"""Randomize the UV island's location, rotation, and scale
|
|
561
561
|
|
|
562
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
562
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
563
563
|
:type execution_context: int | str | None
|
|
564
564
|
:type undo: bool | None
|
|
565
565
|
:param random_seed: Random Seed, Seed value for the random generator
|
|
@@ -581,7 +581,7 @@ def randomize_uv_transform(
|
|
|
581
581
|
"""
|
|
582
582
|
|
|
583
583
|
def remove_doubles(
|
|
584
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
584
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
585
585
|
execution_context: int | str | None = None,
|
|
586
586
|
undo: bool | None = None,
|
|
587
587
|
*,
|
|
@@ -591,7 +591,7 @@ def remove_doubles(
|
|
|
591
591
|
):
|
|
592
592
|
"""Selected UV vertices that are within a radius of each other are welded together
|
|
593
593
|
|
|
594
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
594
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
595
595
|
:type execution_context: int | str | None
|
|
596
596
|
:type undo: bool | None
|
|
597
597
|
:param threshold: Merge Distance, Maximum distance between welded vertices
|
|
@@ -603,19 +603,19 @@ def remove_doubles(
|
|
|
603
603
|
"""
|
|
604
604
|
|
|
605
605
|
def reset(
|
|
606
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
606
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
607
607
|
execution_context: int | str | None = None,
|
|
608
608
|
undo: bool | None = None,
|
|
609
609
|
):
|
|
610
610
|
"""Reset UV projection
|
|
611
611
|
|
|
612
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
612
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
613
613
|
:type execution_context: int | str | None
|
|
614
614
|
:type undo: bool | None
|
|
615
615
|
"""
|
|
616
616
|
|
|
617
617
|
def reveal(
|
|
618
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
618
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
619
619
|
execution_context: int | str | None = None,
|
|
620
620
|
undo: bool | None = None,
|
|
621
621
|
*,
|
|
@@ -623,7 +623,7 @@ def reveal(
|
|
|
623
623
|
):
|
|
624
624
|
"""Reveal all hidden UV vertices
|
|
625
625
|
|
|
626
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
626
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
627
627
|
:type execution_context: int | str | None
|
|
628
628
|
:type undo: bool | None
|
|
629
629
|
:param select: Select
|
|
@@ -631,7 +631,7 @@ def reveal(
|
|
|
631
631
|
"""
|
|
632
632
|
|
|
633
633
|
def rip(
|
|
634
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
634
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
635
635
|
execution_context: int | str | None = None,
|
|
636
636
|
undo: bool | None = None,
|
|
637
637
|
*,
|
|
@@ -642,7 +642,7 @@ def rip(
|
|
|
642
642
|
):
|
|
643
643
|
"""Rip selected vertices or a selected region
|
|
644
644
|
|
|
645
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
645
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
646
646
|
:type execution_context: int | str | None
|
|
647
647
|
:type undo: bool | None
|
|
648
648
|
:param mirror: Mirror Editing
|
|
@@ -656,7 +656,7 @@ def rip(
|
|
|
656
656
|
"""
|
|
657
657
|
|
|
658
658
|
def rip_move(
|
|
659
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
659
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
660
660
|
execution_context: int | str | None = None,
|
|
661
661
|
undo: bool | None = None,
|
|
662
662
|
*,
|
|
@@ -665,7 +665,7 @@ def rip_move(
|
|
|
665
665
|
):
|
|
666
666
|
"""Unstitch UVs and move the result
|
|
667
667
|
|
|
668
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
668
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
669
669
|
:type execution_context: int | str | None
|
|
670
670
|
:type undo: bool | None
|
|
671
671
|
:param UV_OT_rip: UV Rip, Rip selected vertices or a selected region
|
|
@@ -675,7 +675,7 @@ def rip_move(
|
|
|
675
675
|
"""
|
|
676
676
|
|
|
677
677
|
def seams_from_islands(
|
|
678
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
678
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
679
679
|
execution_context: int | str | None = None,
|
|
680
680
|
undo: bool | None = None,
|
|
681
681
|
*,
|
|
@@ -684,7 +684,7 @@ def seams_from_islands(
|
|
|
684
684
|
):
|
|
685
685
|
"""Set mesh seams according to island setup in the UV editor
|
|
686
686
|
|
|
687
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
687
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
688
688
|
:type execution_context: int | str | None
|
|
689
689
|
:type undo: bool | None
|
|
690
690
|
:param mark_seams: Mark Seams, Mark boundary edges as seams
|
|
@@ -694,7 +694,7 @@ def seams_from_islands(
|
|
|
694
694
|
"""
|
|
695
695
|
|
|
696
696
|
def select(
|
|
697
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
697
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
698
698
|
execution_context: int | str | None = None,
|
|
699
699
|
undo: bool | None = None,
|
|
700
700
|
*,
|
|
@@ -707,7 +707,7 @@ def select(
|
|
|
707
707
|
):
|
|
708
708
|
"""Select UV vertices
|
|
709
709
|
|
|
710
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
710
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
711
711
|
:type execution_context: int | str | None
|
|
712
712
|
:type undo: bool | None
|
|
713
713
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -725,7 +725,7 @@ def select(
|
|
|
725
725
|
"""
|
|
726
726
|
|
|
727
727
|
def select_all(
|
|
728
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
728
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
729
729
|
execution_context: int | str | None = None,
|
|
730
730
|
undo: bool | None = None,
|
|
731
731
|
*,
|
|
@@ -733,7 +733,7 @@ def select_all(
|
|
|
733
733
|
):
|
|
734
734
|
"""Change selection of all UV vertices
|
|
735
735
|
|
|
736
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
736
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
737
737
|
:type execution_context: int | str | None
|
|
738
738
|
:type undo: bool | None
|
|
739
739
|
:param action: Action, Selection action to execute
|
|
@@ -753,7 +753,7 @@ def select_all(
|
|
|
753
753
|
"""
|
|
754
754
|
|
|
755
755
|
def select_box(
|
|
756
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
756
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
757
757
|
execution_context: int | str | None = None,
|
|
758
758
|
undo: bool | None = None,
|
|
759
759
|
*,
|
|
@@ -767,7 +767,7 @@ def select_box(
|
|
|
767
767
|
):
|
|
768
768
|
"""Select UV vertices using box selection
|
|
769
769
|
|
|
770
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
770
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
771
771
|
:type execution_context: int | str | None
|
|
772
772
|
:type undo: bool | None
|
|
773
773
|
:param pinned: Pinned, Border select pinned UVs only
|
|
@@ -796,7 +796,7 @@ def select_box(
|
|
|
796
796
|
"""
|
|
797
797
|
|
|
798
798
|
def select_circle(
|
|
799
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
799
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
800
800
|
execution_context: int | str | None = None,
|
|
801
801
|
undo: bool | None = None,
|
|
802
802
|
*,
|
|
@@ -808,7 +808,7 @@ def select_circle(
|
|
|
808
808
|
):
|
|
809
809
|
"""Select UV vertices using circle selection
|
|
810
810
|
|
|
811
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
811
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
812
812
|
:type execution_context: int | str | None
|
|
813
813
|
:type undo: bool | None
|
|
814
814
|
:param x: X
|
|
@@ -833,7 +833,7 @@ def select_circle(
|
|
|
833
833
|
"""
|
|
834
834
|
|
|
835
835
|
def select_edge_ring(
|
|
836
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
836
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
837
837
|
execution_context: int | str | None = None,
|
|
838
838
|
undo: bool | None = None,
|
|
839
839
|
*,
|
|
@@ -842,7 +842,7 @@ def select_edge_ring(
|
|
|
842
842
|
):
|
|
843
843
|
"""Select an edge ring of connected UV vertices
|
|
844
844
|
|
|
845
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
845
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
846
846
|
:type execution_context: int | str | None
|
|
847
847
|
:type undo: bool | None
|
|
848
848
|
:param extend: Extend, Extend selection rather than clearing the existing selection
|
|
@@ -852,7 +852,7 @@ def select_edge_ring(
|
|
|
852
852
|
"""
|
|
853
853
|
|
|
854
854
|
def select_lasso(
|
|
855
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
855
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
856
856
|
execution_context: int | str | None = None,
|
|
857
857
|
undo: bool | None = None,
|
|
858
858
|
*,
|
|
@@ -864,7 +864,7 @@ def select_lasso(
|
|
|
864
864
|
):
|
|
865
865
|
"""Select UVs using lasso selection
|
|
866
866
|
|
|
867
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
867
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
868
868
|
:type execution_context: int | str | None
|
|
869
869
|
:type undo: bool | None
|
|
870
870
|
:param path: Path
|
|
@@ -889,31 +889,31 @@ def select_lasso(
|
|
|
889
889
|
"""
|
|
890
890
|
|
|
891
891
|
def select_less(
|
|
892
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
892
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
893
893
|
execution_context: int | str | None = None,
|
|
894
894
|
undo: bool | None = None,
|
|
895
895
|
):
|
|
896
896
|
"""Deselect UV vertices at the boundary of each selection region
|
|
897
897
|
|
|
898
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
898
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
899
899
|
:type execution_context: int | str | None
|
|
900
900
|
:type undo: bool | None
|
|
901
901
|
"""
|
|
902
902
|
|
|
903
903
|
def select_linked(
|
|
904
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
904
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
905
905
|
execution_context: int | str | None = None,
|
|
906
906
|
undo: bool | None = None,
|
|
907
907
|
):
|
|
908
908
|
"""Select all UV vertices linked to the active UV map
|
|
909
909
|
|
|
910
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
910
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
911
911
|
:type execution_context: int | str | None
|
|
912
912
|
:type undo: bool | None
|
|
913
913
|
"""
|
|
914
914
|
|
|
915
915
|
def select_linked_pick(
|
|
916
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
916
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
917
917
|
execution_context: int | str | None = None,
|
|
918
918
|
undo: bool | None = None,
|
|
919
919
|
*,
|
|
@@ -923,7 +923,7 @@ def select_linked_pick(
|
|
|
923
923
|
):
|
|
924
924
|
"""Select all UV vertices linked under the mouse
|
|
925
925
|
|
|
926
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
926
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
927
927
|
:type execution_context: int | str | None
|
|
928
928
|
:type undo: bool | None
|
|
929
929
|
:param extend: Extend, Extend selection rather than clearing the existing selection
|
|
@@ -935,7 +935,7 @@ def select_linked_pick(
|
|
|
935
935
|
"""
|
|
936
936
|
|
|
937
937
|
def select_loop(
|
|
938
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
938
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
939
939
|
execution_context: int | str | None = None,
|
|
940
940
|
undo: bool | None = None,
|
|
941
941
|
*,
|
|
@@ -944,7 +944,7 @@ def select_loop(
|
|
|
944
944
|
):
|
|
945
945
|
"""Select a loop of connected UV vertices
|
|
946
946
|
|
|
947
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
947
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
948
948
|
:type execution_context: int | str | None
|
|
949
949
|
:type undo: bool | None
|
|
950
950
|
:param extend: Extend, Extend selection rather than clearing the existing selection
|
|
@@ -954,7 +954,7 @@ def select_loop(
|
|
|
954
954
|
"""
|
|
955
955
|
|
|
956
956
|
def select_mode(
|
|
957
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
957
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
958
958
|
execution_context: int | str | None = None,
|
|
959
959
|
undo: bool | None = None,
|
|
960
960
|
*,
|
|
@@ -962,7 +962,7 @@ def select_mode(
|
|
|
962
962
|
):
|
|
963
963
|
"""Change UV selection mode
|
|
964
964
|
|
|
965
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
965
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
966
966
|
:type execution_context: int | str | None
|
|
967
967
|
:type undo: bool | None
|
|
968
968
|
:param type: Type
|
|
@@ -970,19 +970,19 @@ def select_mode(
|
|
|
970
970
|
"""
|
|
971
971
|
|
|
972
972
|
def select_more(
|
|
973
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
973
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
974
974
|
execution_context: int | str | None = None,
|
|
975
975
|
undo: bool | None = None,
|
|
976
976
|
):
|
|
977
977
|
"""Select more UV vertices connected to initial selection
|
|
978
978
|
|
|
979
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
979
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
980
980
|
:type execution_context: int | str | None
|
|
981
981
|
:type undo: bool | None
|
|
982
982
|
"""
|
|
983
983
|
|
|
984
984
|
def select_overlap(
|
|
985
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
985
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
986
986
|
execution_context: int | str | None = None,
|
|
987
987
|
undo: bool | None = None,
|
|
988
988
|
*,
|
|
@@ -990,7 +990,7 @@ def select_overlap(
|
|
|
990
990
|
):
|
|
991
991
|
"""Select all UV faces which overlap each other
|
|
992
992
|
|
|
993
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
993
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
994
994
|
:type execution_context: int | str | None
|
|
995
995
|
:type undo: bool | None
|
|
996
996
|
:param extend: Extend, Extend selection rather than clearing the existing selection
|
|
@@ -998,19 +998,19 @@ def select_overlap(
|
|
|
998
998
|
"""
|
|
999
999
|
|
|
1000
1000
|
def select_pinned(
|
|
1001
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1001
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1002
1002
|
execution_context: int | str | None = None,
|
|
1003
1003
|
undo: bool | None = None,
|
|
1004
1004
|
):
|
|
1005
1005
|
"""Select all pinned UV vertices
|
|
1006
1006
|
|
|
1007
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1007
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1008
1008
|
:type execution_context: int | str | None
|
|
1009
1009
|
:type undo: bool | None
|
|
1010
1010
|
"""
|
|
1011
1011
|
|
|
1012
1012
|
def select_similar(
|
|
1013
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1013
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1014
1014
|
execution_context: int | str | None = None,
|
|
1015
1015
|
undo: bool | None = None,
|
|
1016
1016
|
*,
|
|
@@ -1032,7 +1032,7 @@ def select_similar(
|
|
|
1032
1032
|
):
|
|
1033
1033
|
"""Select similar UVs by property types
|
|
1034
1034
|
|
|
1035
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1035
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1036
1036
|
:type execution_context: int | str | None
|
|
1037
1037
|
:type undo: bool | None
|
|
1038
1038
|
:param type: Type
|
|
@@ -1044,19 +1044,19 @@ def select_similar(
|
|
|
1044
1044
|
"""
|
|
1045
1045
|
|
|
1046
1046
|
def select_split(
|
|
1047
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1047
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1048
1048
|
execution_context: int | str | None = None,
|
|
1049
1049
|
undo: bool | None = None,
|
|
1050
1050
|
):
|
|
1051
1051
|
"""Select only entirely selected faces
|
|
1052
1052
|
|
|
1053
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1053
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1054
1054
|
:type execution_context: int | str | None
|
|
1055
1055
|
:type undo: bool | None
|
|
1056
1056
|
"""
|
|
1057
1057
|
|
|
1058
1058
|
def shortest_path_pick(
|
|
1059
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1059
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1060
1060
|
execution_context: int | str | None = None,
|
|
1061
1061
|
undo: bool | None = None,
|
|
1062
1062
|
*,
|
|
@@ -1071,7 +1071,7 @@ def shortest_path_pick(
|
|
|
1071
1071
|
):
|
|
1072
1072
|
"""Select shortest path between two selections
|
|
1073
1073
|
|
|
1074
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1074
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1075
1075
|
:type execution_context: int | str | None
|
|
1076
1076
|
:type undo: bool | None
|
|
1077
1077
|
:param use_face_step: Face Stepping, Traverse connected faces (includes diagonals and edge-rings)
|
|
@@ -1091,7 +1091,7 @@ def shortest_path_pick(
|
|
|
1091
1091
|
"""
|
|
1092
1092
|
|
|
1093
1093
|
def shortest_path_select(
|
|
1094
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1094
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1095
1095
|
execution_context: int | str | None = None,
|
|
1096
1096
|
undo: bool | None = None,
|
|
1097
1097
|
*,
|
|
@@ -1104,7 +1104,7 @@ def shortest_path_select(
|
|
|
1104
1104
|
):
|
|
1105
1105
|
"""Selected shortest path between two vertices/edges/faces
|
|
1106
1106
|
|
|
1107
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1107
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1108
1108
|
:type execution_context: int | str | None
|
|
1109
1109
|
:type undo: bool | None
|
|
1110
1110
|
:param use_face_step: Face Stepping, Traverse connected faces (includes diagonals and edge-rings)
|
|
@@ -1122,7 +1122,7 @@ def shortest_path_select(
|
|
|
1122
1122
|
"""
|
|
1123
1123
|
|
|
1124
1124
|
def smart_project(
|
|
1125
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1125
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1126
1126
|
execution_context: int | str | None = None,
|
|
1127
1127
|
undo: bool | None = None,
|
|
1128
1128
|
*,
|
|
@@ -1137,7 +1137,7 @@ def smart_project(
|
|
|
1137
1137
|
):
|
|
1138
1138
|
"""Projection unwraps the selected faces of mesh objects
|
|
1139
1139
|
|
|
1140
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1140
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1141
1141
|
:type execution_context: int | str | None
|
|
1142
1142
|
:type undo: bool | None
|
|
1143
1143
|
:param angle_limit: Angle Limit, Lower for more projection groups, higher for less distortion
|
|
@@ -1175,7 +1175,7 @@ def smart_project(
|
|
|
1175
1175
|
"""
|
|
1176
1176
|
|
|
1177
1177
|
def snap_cursor(
|
|
1178
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1178
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1179
1179
|
execution_context: int | str | None = None,
|
|
1180
1180
|
undo: bool | None = None,
|
|
1181
1181
|
*,
|
|
@@ -1183,7 +1183,7 @@ def snap_cursor(
|
|
|
1183
1183
|
):
|
|
1184
1184
|
"""Snap cursor to target type
|
|
1185
1185
|
|
|
1186
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1186
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1187
1187
|
:type execution_context: int | str | None
|
|
1188
1188
|
:type undo: bool | None
|
|
1189
1189
|
:param target: Target, Target to snap the selected UVs to
|
|
@@ -1191,7 +1191,7 @@ def snap_cursor(
|
|
|
1191
1191
|
"""
|
|
1192
1192
|
|
|
1193
1193
|
def snap_selected(
|
|
1194
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1194
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1195
1195
|
execution_context: int | str | None = None,
|
|
1196
1196
|
undo: bool | None = None,
|
|
1197
1197
|
*,
|
|
@@ -1200,7 +1200,7 @@ def snap_selected(
|
|
|
1200
1200
|
):
|
|
1201
1201
|
"""Snap selected UV vertices to target type
|
|
1202
1202
|
|
|
1203
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1203
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1204
1204
|
:type execution_context: int | str | None
|
|
1205
1205
|
:type undo: bool | None
|
|
1206
1206
|
:param target: Target, Target to snap the selected UVs to
|
|
@@ -1208,7 +1208,7 @@ def snap_selected(
|
|
|
1208
1208
|
"""
|
|
1209
1209
|
|
|
1210
1210
|
def sphere_project(
|
|
1211
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1211
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1212
1212
|
execution_context: int | str | None = None,
|
|
1213
1213
|
undo: bool | None = None,
|
|
1214
1214
|
*,
|
|
@@ -1223,7 +1223,7 @@ def sphere_project(
|
|
|
1223
1223
|
):
|
|
1224
1224
|
"""Project the UV vertices of the mesh over the curved surface of a sphere
|
|
1225
1225
|
|
|
1226
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1226
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1227
1227
|
:type execution_context: int | str | None
|
|
1228
1228
|
:type undo: bool | None
|
|
1229
1229
|
:param direction: Direction, Direction of the sphere or cylinder
|
|
@@ -1264,7 +1264,7 @@ def sphere_project(
|
|
|
1264
1264
|
"""
|
|
1265
1265
|
|
|
1266
1266
|
def stitch(
|
|
1267
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1267
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1268
1268
|
execution_context: int | str | None = None,
|
|
1269
1269
|
undo: bool | None = None,
|
|
1270
1270
|
*,
|
|
@@ -1282,7 +1282,7 @@ def stitch(
|
|
|
1282
1282
|
):
|
|
1283
1283
|
"""Stitch selected UV vertices by proximity
|
|
1284
1284
|
|
|
1285
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1285
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1286
1286
|
:type execution_context: int | str | None
|
|
1287
1287
|
:type undo: bool | None
|
|
1288
1288
|
:param use_limit: Use Limit, Stitch UVs within a specified limit distance
|
|
@@ -1310,7 +1310,7 @@ def stitch(
|
|
|
1310
1310
|
"""
|
|
1311
1311
|
|
|
1312
1312
|
def unwrap(
|
|
1313
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1313
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1314
1314
|
execution_context: int | str | None = None,
|
|
1315
1315
|
undo: bool | None = None,
|
|
1316
1316
|
*,
|
|
@@ -1329,7 +1329,7 @@ def unwrap(
|
|
|
1329
1329
|
):
|
|
1330
1330
|
"""Unwrap the mesh of the object being edited
|
|
1331
1331
|
|
|
1332
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1332
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1333
1333
|
:type execution_context: int | str | None
|
|
1334
1334
|
:type undo: bool | None
|
|
1335
1335
|
:param method: Method, Unwrapping method (Angle Based usually gives better results than Conformal, while being somewhat slower)
|
|
@@ -1366,13 +1366,13 @@ def unwrap(
|
|
|
1366
1366
|
"""
|
|
1367
1367
|
|
|
1368
1368
|
def weld(
|
|
1369
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1369
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1370
1370
|
execution_context: int | str | None = None,
|
|
1371
1371
|
undo: bool | None = None,
|
|
1372
1372
|
):
|
|
1373
1373
|
"""Weld selected UV vertices together
|
|
1374
1374
|
|
|
1375
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1375
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1376
1376
|
:type execution_context: int | str | None
|
|
1377
1377
|
:type undo: bool | None
|
|
1378
1378
|
"""
|