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/texture/__init__.pyi
CHANGED
|
@@ -4,31 +4,31 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def new(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
7
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
):
|
|
11
11
|
"""Add a new texture
|
|
12
12
|
|
|
13
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
13
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
14
14
|
:type execution_context: int | str | None
|
|
15
15
|
:type undo: bool | None
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
18
|
def slot_copy(
|
|
19
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
19
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
20
20
|
execution_context: int | str | None = None,
|
|
21
21
|
undo: bool | None = None,
|
|
22
22
|
):
|
|
23
23
|
"""Copy the material texture settings and nodes
|
|
24
24
|
|
|
25
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
25
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
26
26
|
:type execution_context: int | str | None
|
|
27
27
|
:type undo: bool | None
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
30
|
def slot_move(
|
|
31
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
31
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
32
32
|
execution_context: int | str | None = None,
|
|
33
33
|
undo: bool | None = None,
|
|
34
34
|
*,
|
|
@@ -36,7 +36,7 @@ def slot_move(
|
|
|
36
36
|
):
|
|
37
37
|
"""Move texture slots up and down
|
|
38
38
|
|
|
39
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
39
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
40
40
|
:type execution_context: int | str | None
|
|
41
41
|
:type undo: bool | None
|
|
42
42
|
:param type: Type
|
|
@@ -44,13 +44,13 @@ def slot_move(
|
|
|
44
44
|
"""
|
|
45
45
|
|
|
46
46
|
def slot_paste(
|
|
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
|
):
|
|
51
51
|
"""Copy the texture settings and nodes
|
|
52
52
|
|
|
53
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
53
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
54
54
|
:type execution_context: int | str | None
|
|
55
55
|
:type undo: bool | None
|
|
56
56
|
"""
|
bpy/ops/transform/__init__.pyi
CHANGED
|
@@ -6,7 +6,7 @@ import bpy.typing
|
|
|
6
6
|
import mathutils
|
|
7
7
|
|
|
8
8
|
def bbone_resize(
|
|
9
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
9
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
*,
|
|
@@ -23,7 +23,7 @@ def bbone_resize(
|
|
|
23
23
|
):
|
|
24
24
|
"""Scale selected bendy bones display size
|
|
25
25
|
|
|
26
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
26
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
27
27
|
:type execution_context: int | str | None
|
|
28
28
|
:type undo: bool | None
|
|
29
29
|
:param value: Display Size
|
|
@@ -45,7 +45,7 @@ def bbone_resize(
|
|
|
45
45
|
"""
|
|
46
46
|
|
|
47
47
|
def bend(
|
|
48
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
48
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
49
49
|
execution_context: int | str | None = None,
|
|
50
50
|
undo: bool | None = None,
|
|
51
51
|
*,
|
|
@@ -68,7 +68,7 @@ def bend(
|
|
|
68
68
|
):
|
|
69
69
|
"""Bend selected items between the 3D cursor and the mouse
|
|
70
70
|
|
|
71
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
71
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
72
72
|
:type execution_context: int | str | None
|
|
73
73
|
:type undo: bool | None
|
|
74
74
|
:param value: Angle
|
|
@@ -98,7 +98,7 @@ def bend(
|
|
|
98
98
|
"""
|
|
99
99
|
|
|
100
100
|
def create_orientation(
|
|
101
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
101
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
102
102
|
execution_context: int | str | None = None,
|
|
103
103
|
undo: bool | None = None,
|
|
104
104
|
*,
|
|
@@ -109,7 +109,7 @@ def create_orientation(
|
|
|
109
109
|
):
|
|
110
110
|
"""Create transformation orientation from selection
|
|
111
111
|
|
|
112
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
112
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
113
113
|
:type execution_context: int | str | None
|
|
114
114
|
:type undo: bool | None
|
|
115
115
|
:param name: Name, Name of the new custom orientation
|
|
@@ -123,19 +123,19 @@ def create_orientation(
|
|
|
123
123
|
"""
|
|
124
124
|
|
|
125
125
|
def delete_orientation(
|
|
126
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
126
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
127
127
|
execution_context: int | str | None = None,
|
|
128
128
|
undo: bool | None = None,
|
|
129
129
|
):
|
|
130
130
|
"""Delete transformation orientation
|
|
131
131
|
|
|
132
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
132
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
133
133
|
:type execution_context: int | str | None
|
|
134
134
|
:type undo: bool | None
|
|
135
135
|
"""
|
|
136
136
|
|
|
137
137
|
def edge_bevelweight(
|
|
138
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
138
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
139
139
|
execution_context: int | str | None = None,
|
|
140
140
|
undo: bool | None = None,
|
|
141
141
|
*,
|
|
@@ -146,7 +146,7 @@ def edge_bevelweight(
|
|
|
146
146
|
):
|
|
147
147
|
"""Change the bevel weight of edges
|
|
148
148
|
|
|
149
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
149
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
150
150
|
:type execution_context: int | str | None
|
|
151
151
|
:type undo: bool | None
|
|
152
152
|
:param value: Factor
|
|
@@ -160,7 +160,7 @@ def edge_bevelweight(
|
|
|
160
160
|
"""
|
|
161
161
|
|
|
162
162
|
def edge_crease(
|
|
163
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
163
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
164
164
|
execution_context: int | str | None = None,
|
|
165
165
|
undo: bool | None = None,
|
|
166
166
|
*,
|
|
@@ -171,7 +171,7 @@ def edge_crease(
|
|
|
171
171
|
):
|
|
172
172
|
"""Change the crease of edges
|
|
173
173
|
|
|
174
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
174
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
175
175
|
:type execution_context: int | str | None
|
|
176
176
|
:type undo: bool | None
|
|
177
177
|
:param value: Factor
|
|
@@ -185,7 +185,7 @@ def edge_crease(
|
|
|
185
185
|
"""
|
|
186
186
|
|
|
187
187
|
def edge_slide(
|
|
188
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
188
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
189
189
|
execution_context: int | str | None = None,
|
|
190
190
|
undo: bool | None = None,
|
|
191
191
|
*,
|
|
@@ -214,7 +214,7 @@ def edge_slide(
|
|
|
214
214
|
):
|
|
215
215
|
"""Slide an edge loop along a mesh
|
|
216
216
|
|
|
217
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
217
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
218
218
|
:type execution_context: int | str | None
|
|
219
219
|
:type undo: bool | None
|
|
220
220
|
:param value: Factor
|
|
@@ -256,19 +256,19 @@ def edge_slide(
|
|
|
256
256
|
"""
|
|
257
257
|
|
|
258
258
|
def from_gizmo(
|
|
259
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
259
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
260
260
|
execution_context: int | str | None = None,
|
|
261
261
|
undo: bool | None = None,
|
|
262
262
|
):
|
|
263
263
|
"""Transform selected items by mode type
|
|
264
264
|
|
|
265
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
265
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
266
266
|
:type execution_context: int | str | None
|
|
267
267
|
:type undo: bool | None
|
|
268
268
|
"""
|
|
269
269
|
|
|
270
270
|
def mirror(
|
|
271
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
271
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
272
272
|
execution_context: int | str | None = None,
|
|
273
273
|
undo: bool | None = None,
|
|
274
274
|
*,
|
|
@@ -289,7 +289,7 @@ def mirror(
|
|
|
289
289
|
):
|
|
290
290
|
"""Mirror selected items around one or more axes
|
|
291
291
|
|
|
292
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
292
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
293
293
|
:type execution_context: int | str | None
|
|
294
294
|
:type undo: bool | None
|
|
295
295
|
:param orient_type: Orientation, Transformation orientation
|
|
@@ -311,7 +311,7 @@ def mirror(
|
|
|
311
311
|
"""
|
|
312
312
|
|
|
313
313
|
def push_pull(
|
|
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
|
*,
|
|
@@ -333,7 +333,7 @@ def push_pull(
|
|
|
333
333
|
):
|
|
334
334
|
"""Push/Pull selected items
|
|
335
335
|
|
|
336
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
336
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
337
337
|
:type execution_context: int | str | None
|
|
338
338
|
:type undo: bool | None
|
|
339
339
|
:param value: Distance
|
|
@@ -361,7 +361,7 @@ def push_pull(
|
|
|
361
361
|
"""
|
|
362
362
|
|
|
363
363
|
def resize(
|
|
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
|
*,
|
|
@@ -410,7 +410,7 @@ def resize(
|
|
|
410
410
|
):
|
|
411
411
|
"""Scale (resize) selected items
|
|
412
412
|
|
|
413
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
413
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
414
414
|
:type execution_context: int | str | None
|
|
415
415
|
:type undo: bool | None
|
|
416
416
|
:param value: Scale
|
|
@@ -472,7 +472,7 @@ def resize(
|
|
|
472
472
|
"""
|
|
473
473
|
|
|
474
474
|
def rotate(
|
|
475
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
475
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
476
476
|
execution_context: int | str | None = None,
|
|
477
477
|
undo: bool | None = None,
|
|
478
478
|
*,
|
|
@@ -514,7 +514,7 @@ def rotate(
|
|
|
514
514
|
):
|
|
515
515
|
"""Rotate selected items
|
|
516
516
|
|
|
517
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
517
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
518
518
|
:type execution_context: int | str | None
|
|
519
519
|
:type undo: bool | None
|
|
520
520
|
:param value: Angle
|
|
@@ -570,7 +570,7 @@ def rotate(
|
|
|
570
570
|
"""
|
|
571
571
|
|
|
572
572
|
def rotate_normal(
|
|
573
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
573
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
574
574
|
execution_context: int | str | None = None,
|
|
575
575
|
undo: bool | None = None,
|
|
576
576
|
*,
|
|
@@ -588,7 +588,7 @@ def rotate_normal(
|
|
|
588
588
|
):
|
|
589
589
|
"""Rotate split normal of selected items
|
|
590
590
|
|
|
591
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
591
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
592
592
|
:type execution_context: int | str | None
|
|
593
593
|
:type undo: bool | None
|
|
594
594
|
:param value: Angle
|
|
@@ -612,7 +612,7 @@ def rotate_normal(
|
|
|
612
612
|
"""
|
|
613
613
|
|
|
614
614
|
def select_orientation(
|
|
615
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
615
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
616
616
|
execution_context: int | str | None = None,
|
|
617
617
|
undo: bool | None = None,
|
|
618
618
|
*,
|
|
@@ -620,7 +620,7 @@ def select_orientation(
|
|
|
620
620
|
):
|
|
621
621
|
"""Select transformation orientation
|
|
622
622
|
|
|
623
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
623
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
624
624
|
:type execution_context: int | str | None
|
|
625
625
|
:type undo: bool | None
|
|
626
626
|
:param orientation: Orientation, Transformation orientation
|
|
@@ -628,7 +628,7 @@ def select_orientation(
|
|
|
628
628
|
"""
|
|
629
629
|
|
|
630
630
|
def seq_slide(
|
|
631
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
631
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
632
632
|
execution_context: int | str | None = None,
|
|
633
633
|
undo: bool | None = None,
|
|
634
634
|
*,
|
|
@@ -641,7 +641,7 @@ def seq_slide(
|
|
|
641
641
|
):
|
|
642
642
|
"""Slide a sequence strip in time
|
|
643
643
|
|
|
644
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
644
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
645
645
|
:type execution_context: int | str | None
|
|
646
646
|
:type undo: bool | None
|
|
647
647
|
:param value: Offset
|
|
@@ -659,7 +659,7 @@ def seq_slide(
|
|
|
659
659
|
"""
|
|
660
660
|
|
|
661
661
|
def shear(
|
|
662
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
662
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
663
663
|
execution_context: int | str | None = None,
|
|
664
664
|
undo: bool | None = None,
|
|
665
665
|
*,
|
|
@@ -684,7 +684,7 @@ def shear(
|
|
|
684
684
|
):
|
|
685
685
|
"""Shear selected items along the given axis
|
|
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 value: Offset
|
|
@@ -722,7 +722,7 @@ def shear(
|
|
|
722
722
|
"""
|
|
723
723
|
|
|
724
724
|
def shrink_fatten(
|
|
725
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
725
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
726
726
|
execution_context: int | str | None = None,
|
|
727
727
|
undo: bool | None = None,
|
|
728
728
|
*,
|
|
@@ -740,7 +740,7 @@ def shrink_fatten(
|
|
|
740
740
|
):
|
|
741
741
|
"""Shrink/fatten selected vertices along normals
|
|
742
742
|
|
|
743
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
743
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
744
744
|
:type execution_context: int | str | None
|
|
745
745
|
:type undo: bool | None
|
|
746
746
|
:param value: Offset
|
|
@@ -768,7 +768,7 @@ def shrink_fatten(
|
|
|
768
768
|
"""
|
|
769
769
|
|
|
770
770
|
def skin_resize(
|
|
771
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
771
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
772
772
|
execution_context: int | str | None = None,
|
|
773
773
|
undo: bool | None = None,
|
|
774
774
|
*,
|
|
@@ -803,7 +803,7 @@ def skin_resize(
|
|
|
803
803
|
):
|
|
804
804
|
"""Scale selected vertices' skin radii
|
|
805
805
|
|
|
806
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
806
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
807
807
|
:type execution_context: int | str | None
|
|
808
808
|
:type undo: bool | None
|
|
809
809
|
:param value: Scale
|
|
@@ -853,7 +853,7 @@ def skin_resize(
|
|
|
853
853
|
"""
|
|
854
854
|
|
|
855
855
|
def tilt(
|
|
856
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
856
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
857
857
|
execution_context: int | str | None = None,
|
|
858
858
|
undo: bool | None = None,
|
|
859
859
|
*,
|
|
@@ -870,7 +870,7 @@ def tilt(
|
|
|
870
870
|
):
|
|
871
871
|
"""Tilt selected control vertices of 3D curve
|
|
872
872
|
|
|
873
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
873
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
874
874
|
:type execution_context: int | str | None
|
|
875
875
|
:type undo: bool | None
|
|
876
876
|
:param value: Angle
|
|
@@ -896,7 +896,7 @@ def tilt(
|
|
|
896
896
|
"""
|
|
897
897
|
|
|
898
898
|
def tosphere(
|
|
899
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
899
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
900
900
|
execution_context: int | str | None = None,
|
|
901
901
|
undo: bool | None = None,
|
|
902
902
|
*,
|
|
@@ -919,7 +919,7 @@ def tosphere(
|
|
|
919
919
|
):
|
|
920
920
|
"""Move selected items outward in a spherical shape around geometric center
|
|
921
921
|
|
|
922
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
922
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
923
923
|
:type execution_context: int | str | None
|
|
924
924
|
:type undo: bool | None
|
|
925
925
|
:param value: Factor
|
|
@@ -949,7 +949,7 @@ def tosphere(
|
|
|
949
949
|
"""
|
|
950
950
|
|
|
951
951
|
def trackball(
|
|
952
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
952
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
953
953
|
execution_context: int | str | None = None,
|
|
954
954
|
undo: bool | None = None,
|
|
955
955
|
*,
|
|
@@ -972,7 +972,7 @@ def trackball(
|
|
|
972
972
|
):
|
|
973
973
|
"""Trackball style rotation of selected items
|
|
974
974
|
|
|
975
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
975
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
976
976
|
:type execution_context: int | str | None
|
|
977
977
|
:type undo: bool | None
|
|
978
978
|
:param value: Angle
|
|
@@ -1002,7 +1002,7 @@ def trackball(
|
|
|
1002
1002
|
"""
|
|
1003
1003
|
|
|
1004
1004
|
def transform(
|
|
1005
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1005
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1006
1006
|
execution_context: int | str | None = None,
|
|
1007
1007
|
undo: bool | None = None,
|
|
1008
1008
|
*,
|
|
@@ -1060,7 +1060,7 @@ def transform(
|
|
|
1060
1060
|
):
|
|
1061
1061
|
"""Transform selected items by mode type
|
|
1062
1062
|
|
|
1063
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1063
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1064
1064
|
:type execution_context: int | str | None
|
|
1065
1065
|
:type undo: bool | None
|
|
1066
1066
|
:param mode: Mode
|
|
@@ -1130,7 +1130,7 @@ def transform(
|
|
|
1130
1130
|
"""
|
|
1131
1131
|
|
|
1132
1132
|
def translate(
|
|
1133
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1133
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1134
1134
|
execution_context: int | str | None = None,
|
|
1135
1135
|
undo: bool | None = None,
|
|
1136
1136
|
*,
|
|
@@ -1178,7 +1178,7 @@ def translate(
|
|
|
1178
1178
|
):
|
|
1179
1179
|
"""Move selected items
|
|
1180
1180
|
|
|
1181
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1181
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1182
1182
|
:type execution_context: int | str | None
|
|
1183
1183
|
:type undo: bool | None
|
|
1184
1184
|
:param value: Move
|
|
@@ -1246,7 +1246,7 @@ def translate(
|
|
|
1246
1246
|
"""
|
|
1247
1247
|
|
|
1248
1248
|
def vert_crease(
|
|
1249
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1249
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1250
1250
|
execution_context: int | str | None = None,
|
|
1251
1251
|
undo: bool | None = None,
|
|
1252
1252
|
*,
|
|
@@ -1257,7 +1257,7 @@ def vert_crease(
|
|
|
1257
1257
|
):
|
|
1258
1258
|
"""Change the crease of vertices
|
|
1259
1259
|
|
|
1260
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1260
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1261
1261
|
:type execution_context: int | str | None
|
|
1262
1262
|
:type undo: bool | None
|
|
1263
1263
|
:param value: Factor
|
|
@@ -1271,7 +1271,7 @@ def vert_crease(
|
|
|
1271
1271
|
"""
|
|
1272
1272
|
|
|
1273
1273
|
def vert_slide(
|
|
1274
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1274
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1275
1275
|
execution_context: int | str | None = None,
|
|
1276
1276
|
undo: bool | None = None,
|
|
1277
1277
|
*,
|
|
@@ -1299,7 +1299,7 @@ def vert_slide(
|
|
|
1299
1299
|
):
|
|
1300
1300
|
"""Slide a vertex along a mesh
|
|
1301
1301
|
|
|
1302
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1302
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1303
1303
|
:type execution_context: int | str | None
|
|
1304
1304
|
:type undo: bool | None
|
|
1305
1305
|
:param value: Factor
|
|
@@ -1339,7 +1339,7 @@ def vert_slide(
|
|
|
1339
1339
|
"""
|
|
1340
1340
|
|
|
1341
1341
|
def vertex_random(
|
|
1342
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1342
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1343
1343
|
execution_context: int | str | None = None,
|
|
1344
1344
|
undo: bool | None = None,
|
|
1345
1345
|
*,
|
|
@@ -1351,7 +1351,7 @@ def vertex_random(
|
|
|
1351
1351
|
):
|
|
1352
1352
|
"""Randomize vertices
|
|
1353
1353
|
|
|
1354
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1354
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1355
1355
|
:type execution_context: int | str | None
|
|
1356
1356
|
:type undo: bool | None
|
|
1357
1357
|
:param offset: Amount, Distance to offset
|
|
@@ -1367,7 +1367,7 @@ def vertex_random(
|
|
|
1367
1367
|
"""
|
|
1368
1368
|
|
|
1369
1369
|
def vertex_warp(
|
|
1370
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1370
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1371
1371
|
execution_context: int | str | None = None,
|
|
1372
1372
|
undo: bool | None = None,
|
|
1373
1373
|
*,
|
|
@@ -1387,7 +1387,7 @@ def vertex_warp(
|
|
|
1387
1387
|
):
|
|
1388
1388
|
"""Warp vertices around the cursor
|
|
1389
1389
|
|
|
1390
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1390
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1391
1391
|
:type execution_context: int | str | None
|
|
1392
1392
|
:type undo: bool | None
|
|
1393
1393
|
:param warp_angle: Warp Angle, Amount to warp about the cursor
|