fake-bpy-module 20240524__py3-none-any.whl → 20240529__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_console_utils/autocomplete/complete_calltip/__init__.pyi +3 -3
- bl_operators/__init__.pyi +3 -0
- bl_operators/connect_to_output/__init__.pyi +325 -0
- bl_operators/image_as_planes/__init__.pyi +463 -0
- bl_operators/node_editor/__init__.pyi +6 -0
- bl_operators/node_editor/node_functions/__init__.pyi +23 -0
- bl_operators/presets/__init__.pyi +12 -12
- bl_operators/userpref/__init__.pyi +0 -214
- bl_operators/wm/__init__.pyi +24 -24
- bl_ui/__init__.pyi +12 -12
- bl_ui/anim/__init__.pyi +6 -6
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu/__init__.pyi +6 -6
- bl_ui/node_add_menu_compositor/__init__.pyi +108 -108
- bl_ui/node_add_menu_geometry/__init__.pyi +288 -288
- bl_ui/node_add_menu_shader/__init__.pyi +60 -60
- bl_ui/node_add_menu_texture/__init__.pyi +54 -54
- bl_ui/properties_collection/__init__.pyi +6 -6
- bl_ui/properties_data_armature/__init__.pyi +12 -12
- bl_ui/properties_data_camera/__init__.pyi +12 -12
- bl_ui/properties_data_curves/__init__.pyi +6 -6
- bl_ui/properties_data_gpencil/__init__.pyi +12 -12
- bl_ui/properties_data_grease_pencil/__init__.pyi +18 -18
- bl_ui/properties_data_mesh/__init__.pyi +24 -24
- bl_ui/properties_data_modifier/__init__.pyi +42 -42
- bl_ui/properties_data_pointcloud/__init__.pyi +6 -6
- bl_ui/properties_freestyle/__init__.pyi +6 -6
- bl_ui/properties_grease_pencil_common/__init__.pyi +72 -72
- bl_ui/properties_mask_common/__init__.pyi +36 -36
- bl_ui/properties_material/__init__.pyi +6 -6
- bl_ui/properties_material_gpencil/__init__.pyi +12 -12
- bl_ui/properties_object/__init__.pyi +6 -6
- bl_ui/properties_output/__init__.pyi +18 -18
- bl_ui/properties_paint_common/__init__.pyi +6 -6
- bl_ui/properties_particle/__init__.pyi +12 -12
- bl_ui/properties_physics_cloth/__init__.pyi +6 -6
- bl_ui/properties_physics_fluid/__init__.pyi +6 -6
- bl_ui/properties_render/__init__.pyi +7 -7
- bl_ui/properties_texture/__init__.pyi +6 -6
- bl_ui/properties_view_layer/__init__.pyi +6 -6
- bl_ui/space_clip/__init__.pyi +186 -186
- bl_ui/space_console/__init__.pyi +30 -30
- bl_ui/space_dopesheet/__init__.pyi +84 -84
- bl_ui/space_filebrowser/__init__.pyi +78 -78
- bl_ui/space_graph/__init__.pyi +96 -96
- bl_ui/space_image/__init__.pyi +138 -138
- bl_ui/space_info/__init__.pyi +30 -30
- bl_ui/space_nla/__init__.pyi +78 -78
- bl_ui/space_node/__init__.pyi +72 -72
- bl_ui/space_outliner/__init__.pyi +72 -72
- bl_ui/space_sequencer/__init__.pyi +204 -204
- bl_ui/space_text/__init__.pyi +72 -72
- bl_ui/space_time/__init__.pyi +24 -24
- bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -0
- bl_ui/space_topbar/__init__.pyi +114 -114
- bl_ui/space_userpref/__init__.pyi +36 -36
- bl_ui/space_view3d/__init__.pyi +1446 -1176
- bl_ui/space_view3d_toolbar/__init__.pyi +30 -30
- bl_ui/utils/__init__.pyi +6 -6
- bmesh/geometry/__init__.pyi +2 -2
- bmesh/ops/__init__.pyi +55 -54
- bmesh/types/__init__.pyi +43 -33
- bmesh/utils/__init__.pyi +2 -2
- bpy/app/__init__.pyi +5 -1
- bpy/app/handlers/__init__.pyi +37 -37
- bpy/app/icons/__init__.pyi +4 -4
- bpy/app/timers/__init__.pyi +6 -6
- bpy/ops/action/__init__.pyi +21 -0
- bpy/ops/anim/__init__.pyi +34 -0
- bpy/ops/armature/__init__.pyi +31 -0
- bpy/ops/asset/__init__.pyi +5 -0
- bpy/ops/bl_pkg/__init__.pyi +32 -21
- bpy/ops/boid/__init__.pyi +1 -0
- bpy/ops/brush/__init__.pyi +6 -0
- bpy/ops/buttons/__init__.pyi +2 -0
- bpy/ops/cachefile/__init__.pyi +3 -0
- bpy/ops/camera/__init__.pyi +2 -0
- bpy/ops/clip/__init__.pyi +49 -0
- bpy/ops/cloth/__init__.pyi +1 -0
- bpy/ops/collection/__init__.pyi +7 -0
- bpy/ops/console/__init__.pyi +11 -0
- bpy/ops/constraint/__init__.pyi +15 -0
- bpy/ops/curve/__init__.pyi +28 -0
- bpy/ops/curves/__init__.pyi +14 -0
- bpy/ops/cycles/__init__.pyi +2 -0
- bpy/ops/dpaint/__init__.pyi +2 -0
- bpy/ops/ed/__init__.pyi +3 -0
- bpy/ops/export_anim/__init__.pyi +1 -0
- bpy/ops/export_scene/__init__.pyi +20 -3
- bpy/ops/file/__init__.pyi +14 -0
- bpy/ops/fluid/__init__.pyi +1 -0
- bpy/ops/font/__init__.pyi +13 -0
- bpy/ops/geometry/__init__.pyi +7 -0
- bpy/ops/gizmogroup/__init__.pyi +1 -0
- bpy/ops/gpencil/__init__.pyi +106 -0
- bpy/ops/graph/__init__.pyi +47 -0
- bpy/ops/grease_pencil/__init__.pyi +52 -0
- bpy/ops/image/__init__.pyi +308 -0
- bpy/ops/import_anim/__init__.pyi +1 -0
- bpy/ops/import_curve/__init__.pyi +1 -0
- bpy/ops/import_scene/__init__.pyi +2 -0
- bpy/ops/info/__init__.pyi +3 -0
- bpy/ops/lattice/__init__.pyi +5 -0
- bpy/ops/marker/__init__.pyi +9 -0
- bpy/ops/mask/__init__.pyi +22 -0
- bpy/ops/mball/__init__.pyi +7 -0
- bpy/ops/mesh/__init__.pyi +134 -0
- bpy/ops/nla/__init__.pyi +20 -0
- bpy/ops/node/__init__.pyi +65 -0
- bpy/ops/object/__init__.pyi +174 -0
- bpy/ops/outliner/__init__.pyi +25 -0
- bpy/ops/paint/__init__.pyi +105 -0
- bpy/ops/paintcurve/__init__.pyi +4 -0
- bpy/ops/palette/__init__.pyi +4 -0
- bpy/ops/particle/__init__.pyi +17 -0
- bpy/ops/pose/__init__.pyi +24 -0
- bpy/ops/poselib/__init__.pyi +4 -0
- bpy/ops/preferences/__init__.pyi +28 -16
- bpy/ops/ptcache/__init__.pyi +2 -0
- bpy/ops/render/__init__.pyi +9 -0
- bpy/ops/rigidbody/__init__.pyi +7 -0
- bpy/ops/scene/__init__.pyi +16 -0
- bpy/ops/screen/__init__.pyi +21 -0
- bpy/ops/script/__init__.pyi +2 -0
- bpy/ops/sculpt/__init__.pyi +151 -0
- bpy/ops/sculpt_curves/__init__.pyi +3 -0
- bpy/ops/sequencer/__init__.pyi +57 -0
- bpy/ops/sound/__init__.pyi +4 -0
- bpy/ops/spreadsheet/__init__.pyi +2 -0
- bpy/ops/surface/__init__.pyi +6 -0
- bpy/ops/text/__init__.pyi +18 -0
- bpy/ops/text_editor/__init__.pyi +1 -0
- bpy/ops/texture/__init__.pyi +1 -0
- bpy/ops/transform/__init__.pyi +25 -0
- bpy/ops/ui/__init__.pyi +13 -0
- bpy/ops/uilist/__init__.pyi +3 -0
- bpy/ops/uv/__init__.pyi +40 -0
- bpy/ops/view2d/__init__.pyi +11 -0
- bpy/ops/view3d/__init__.pyi +30 -0
- bpy/ops/wm/__init__.pyi +114 -0
- bpy/ops/workspace/__init__.pyi +1 -0
- bpy/path/__init__.pyi +6 -6
- bpy/props/__init__.pyi +27 -15
- bpy/types/__init__.pyi +662 -388
- bpy/utils/__init__.pyi +12 -10
- bpy_extras/anim_utils/__init__.pyi +7 -7
- bpy_extras/io_utils/__init__.pyi +4 -4
- bpy_extras/mesh_utils/__init__.pyi +4 -4
- bpy_extras/object_utils/__init__.pyi +8 -8
- bpy_extras/view3d_utils/__init__.pyi +2 -0
- bpy_types/__init__.pyi +12 -12
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/RECORD +167 -163
- freestyle/shaders/__init__.pyi +2 -2
- freestyle/types/__init__.pyi +64 -56
- gpu/matrix/__init__.pyi +6 -6
- gpu/types/__init__.pyi +14 -10
- gpu_extras/batch/__init__.pyi +1 -1
- gpu_extras/presets/__init__.pyi +1 -1
- imbuf/__init__.pyi +2 -2
- mathutils/__init__.pyi +176 -137
- mathutils/bvhtree/__init__.pyi +4 -4
- mathutils/geometry/__init__.pyi +139 -139
- mathutils/kdtree/__init__.pyi +14 -10
- mathutils/noise/__init__.pyi +26 -26
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/top_level.txt +0 -0
bpy/ops/rigidbody/__init__.pyi
CHANGED
|
@@ -9,6 +9,7 @@ def bake_to_keyframes(
|
|
|
9
9
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
10
10
|
execution_context: str | int | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
|
+
*,
|
|
12
13
|
frame_start: typing.Any | None = 1,
|
|
13
14
|
frame_end: typing.Any | None = 250,
|
|
14
15
|
step: typing.Any | None = 1,
|
|
@@ -32,6 +33,7 @@ def connect(
|
|
|
32
33
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
33
34
|
execution_context: str | int | None = None,
|
|
34
35
|
undo: bool | None = None,
|
|
36
|
+
*,
|
|
35
37
|
con_type: str | None = "FIXED",
|
|
36
38
|
pivot_type: str | None = "CENTER",
|
|
37
39
|
connection_pattern: str | None = "SELECTED_TO_ACTIVE",
|
|
@@ -94,6 +96,7 @@ def constraint_add(
|
|
|
94
96
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
95
97
|
execution_context: str | int | None = None,
|
|
96
98
|
undo: bool | None = None,
|
|
99
|
+
*,
|
|
97
100
|
type: str | None = "FIXED",
|
|
98
101
|
):
|
|
99
102
|
"""Add Rigid Body Constraint to active object
|
|
@@ -125,6 +128,7 @@ def mass_calculate(
|
|
|
125
128
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
126
129
|
execution_context: str | int | None = None,
|
|
127
130
|
undo: bool | None = None,
|
|
131
|
+
*,
|
|
128
132
|
material: str | None = "DEFAULT",
|
|
129
133
|
density: typing.Any | None = 1.0,
|
|
130
134
|
):
|
|
@@ -145,6 +149,7 @@ def object_add(
|
|
|
145
149
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
146
150
|
execution_context: str | int | None = None,
|
|
147
151
|
undo: bool | None = None,
|
|
152
|
+
*,
|
|
148
153
|
type: str | None = "ACTIVE",
|
|
149
154
|
):
|
|
150
155
|
"""Add active object as Rigid Body
|
|
@@ -190,6 +195,7 @@ def objects_add(
|
|
|
190
195
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
191
196
|
execution_context: str | int | None = None,
|
|
192
197
|
undo: bool | None = None,
|
|
198
|
+
*,
|
|
193
199
|
type: str | None = "ACTIVE",
|
|
194
200
|
):
|
|
195
201
|
"""Add selected objects as Rigid Bodies
|
|
@@ -221,6 +227,7 @@ def shape_change(
|
|
|
221
227
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
222
228
|
execution_context: str | int | None = None,
|
|
223
229
|
undo: bool | None = None,
|
|
230
|
+
*,
|
|
224
231
|
type: str | None = "MESH",
|
|
225
232
|
):
|
|
226
233
|
"""Change collision shapes for selected Rigid Body Objects
|
bpy/ops/scene/__init__.pyi
CHANGED
|
@@ -51,6 +51,7 @@ def freestyle_alpha_modifier_add(
|
|
|
51
51
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
52
52
|
execution_context: str | int | None = None,
|
|
53
53
|
undo: bool | None = None,
|
|
54
|
+
*,
|
|
54
55
|
type: str | None = "ALONG_STROKE",
|
|
55
56
|
):
|
|
56
57
|
"""Add an alpha transparency modifier to the line style associated with the active lineset
|
|
@@ -68,6 +69,7 @@ def freestyle_color_modifier_add(
|
|
|
68
69
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
69
70
|
execution_context: str | int | None = None,
|
|
70
71
|
undo: bool | None = None,
|
|
72
|
+
*,
|
|
71
73
|
type: str | None = "ALONG_STROKE",
|
|
72
74
|
):
|
|
73
75
|
"""Add a line color modifier to the line style associated with the active lineset
|
|
@@ -85,6 +87,7 @@ def freestyle_fill_range_by_selection(
|
|
|
85
87
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
86
88
|
execution_context: str | int | None = None,
|
|
87
89
|
undo: bool | None = None,
|
|
90
|
+
*,
|
|
88
91
|
type: str | None = "COLOR",
|
|
89
92
|
name: str | typing.Any = "",
|
|
90
93
|
):
|
|
@@ -114,6 +117,7 @@ def freestyle_geometry_modifier_add(
|
|
|
114
117
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
115
118
|
execution_context: str | int | None = None,
|
|
116
119
|
undo: bool | None = None,
|
|
120
|
+
*,
|
|
117
121
|
type: str | None = "2D_OFFSET",
|
|
118
122
|
):
|
|
119
123
|
"""Add a stroke geometry modifier to the line style associated with the active lineset
|
|
@@ -159,6 +163,7 @@ def freestyle_lineset_move(
|
|
|
159
163
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
160
164
|
execution_context: str | int | None = None,
|
|
161
165
|
undo: bool | None = None,
|
|
166
|
+
*,
|
|
162
167
|
direction: str | None = "UP",
|
|
163
168
|
):
|
|
164
169
|
"""Change the position of the active line set within the list of line sets
|
|
@@ -232,6 +237,7 @@ def freestyle_modifier_move(
|
|
|
232
237
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
233
238
|
execution_context: str | int | None = None,
|
|
234
239
|
undo: bool | None = None,
|
|
240
|
+
*,
|
|
235
241
|
direction: str | None = "UP",
|
|
236
242
|
):
|
|
237
243
|
"""Move the modifier within the list of modifiers
|
|
@@ -277,6 +283,7 @@ def freestyle_module_move(
|
|
|
277
283
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
278
284
|
execution_context: str | int | None = None,
|
|
279
285
|
undo: bool | None = None,
|
|
286
|
+
*,
|
|
280
287
|
direction: str | None = "UP",
|
|
281
288
|
):
|
|
282
289
|
"""Change the position of the style module within in the list of style modules
|
|
@@ -294,6 +301,7 @@ def freestyle_module_open(
|
|
|
294
301
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
295
302
|
execution_context: str | int | None = None,
|
|
296
303
|
undo: bool | None = None,
|
|
304
|
+
*,
|
|
297
305
|
filepath: str | typing.Any = "",
|
|
298
306
|
make_internal: bool | typing.Any | None = True,
|
|
299
307
|
):
|
|
@@ -342,6 +350,7 @@ def freestyle_thickness_modifier_add(
|
|
|
342
350
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
343
351
|
execution_context: str | int | None = None,
|
|
344
352
|
undo: bool | None = None,
|
|
353
|
+
*,
|
|
345
354
|
type: str | None = "ALONG_STROKE",
|
|
346
355
|
):
|
|
347
356
|
"""Add a line thickness modifier to the line style associated with the active lineset
|
|
@@ -373,6 +382,7 @@ def gpencil_brush_preset_add(
|
|
|
373
382
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
374
383
|
execution_context: str | int | None = None,
|
|
375
384
|
undo: bool | None = None,
|
|
385
|
+
*,
|
|
376
386
|
name: str | typing.Any = "",
|
|
377
387
|
remove_name: bool | typing.Any | None = False,
|
|
378
388
|
remove_active: bool | typing.Any | None = False,
|
|
@@ -396,6 +406,7 @@ def gpencil_material_preset_add(
|
|
|
396
406
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
397
407
|
execution_context: str | int | None = None,
|
|
398
408
|
undo: bool | None = None,
|
|
409
|
+
*,
|
|
399
410
|
name: str | typing.Any = "",
|
|
400
411
|
remove_name: bool | typing.Any | None = False,
|
|
401
412
|
remove_active: bool | typing.Any | None = False,
|
|
@@ -419,6 +430,7 @@ def light_cache_bake(
|
|
|
419
430
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
420
431
|
execution_context: str | int | None = None,
|
|
421
432
|
undo: bool | None = None,
|
|
433
|
+
*,
|
|
422
434
|
delay: typing.Any | None = 0,
|
|
423
435
|
subset: str | None = "ALL",
|
|
424
436
|
):
|
|
@@ -462,6 +474,7 @@ def new(
|
|
|
462
474
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
463
475
|
execution_context: str | int | None = None,
|
|
464
476
|
undo: bool | None = None,
|
|
477
|
+
*,
|
|
465
478
|
type: str | None = "NEW",
|
|
466
479
|
):
|
|
467
480
|
"""Add new scene by type
|
|
@@ -491,6 +504,7 @@ def new_sequencer(
|
|
|
491
504
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
492
505
|
execution_context: str | int | None = None,
|
|
493
506
|
undo: bool | None = None,
|
|
507
|
+
*,
|
|
494
508
|
type: str | None = "NEW",
|
|
495
509
|
):
|
|
496
510
|
"""Add new scene by type in the sequence editor and assign to active strip
|
|
@@ -548,6 +562,7 @@ def view_layer_add(
|
|
|
548
562
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
549
563
|
execution_context: str | int | None = None,
|
|
550
564
|
undo: bool | None = None,
|
|
565
|
+
*,
|
|
551
566
|
type: str | None = "NEW",
|
|
552
567
|
):
|
|
553
568
|
"""Add a view layer
|
|
@@ -588,6 +603,7 @@ def view_layer_add_lightgroup(
|
|
|
588
603
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
589
604
|
execution_context: str | int | None = None,
|
|
590
605
|
undo: bool | None = None,
|
|
606
|
+
*,
|
|
591
607
|
name: str | typing.Any = "",
|
|
592
608
|
):
|
|
593
609
|
"""Add a Light Group
|
bpy/ops/screen/__init__.pyi
CHANGED
|
@@ -9,6 +9,7 @@ def actionzone(
|
|
|
9
9
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
10
10
|
execution_context: str | int | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
|
+
*,
|
|
12
13
|
modifier: typing.Any | None = 0,
|
|
13
14
|
):
|
|
14
15
|
"""Handle area action zones for mouse actions/gestures
|
|
@@ -26,6 +27,7 @@ def animation_cancel(
|
|
|
26
27
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
27
28
|
execution_context: str | int | None = None,
|
|
28
29
|
undo: bool | None = None,
|
|
30
|
+
*,
|
|
29
31
|
restore_frame: bool | typing.Any | None = True,
|
|
30
32
|
):
|
|
31
33
|
"""Cancel animation, returning to the original frame
|
|
@@ -43,6 +45,7 @@ def animation_play(
|
|
|
43
45
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
44
46
|
execution_context: str | int | None = None,
|
|
45
47
|
undo: bool | None = None,
|
|
48
|
+
*,
|
|
46
49
|
reverse: bool | typing.Any | None = False,
|
|
47
50
|
sync: bool | typing.Any | None = False,
|
|
48
51
|
):
|
|
@@ -105,6 +108,7 @@ def area_join(
|
|
|
105
108
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
106
109
|
execution_context: str | int | None = None,
|
|
107
110
|
undo: bool | None = None,
|
|
111
|
+
*,
|
|
108
112
|
cursor: typing.Any | None = (0, 0),
|
|
109
113
|
):
|
|
110
114
|
"""Join selected areas into new window
|
|
@@ -122,6 +126,7 @@ def area_move(
|
|
|
122
126
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
123
127
|
execution_context: str | int | None = None,
|
|
124
128
|
undo: bool | None = None,
|
|
129
|
+
*,
|
|
125
130
|
x: typing.Any | None = 0,
|
|
126
131
|
y: typing.Any | None = 0,
|
|
127
132
|
delta: typing.Any | None = 0,
|
|
@@ -159,6 +164,7 @@ def area_split(
|
|
|
159
164
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
160
165
|
execution_context: str | int | None = None,
|
|
161
166
|
undo: bool | None = None,
|
|
167
|
+
*,
|
|
162
168
|
direction: str | None = "HORIZONTAL",
|
|
163
169
|
factor: typing.Any | None = 0.5,
|
|
164
170
|
cursor: typing.Any | None = (0, 0),
|
|
@@ -182,6 +188,7 @@ def area_swap(
|
|
|
182
188
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
183
189
|
execution_context: str | int | None = None,
|
|
184
190
|
undo: bool | None = None,
|
|
191
|
+
*,
|
|
185
192
|
cursor: typing.Any | None = (0, 0),
|
|
186
193
|
):
|
|
187
194
|
"""Swap selected areas screen positions
|
|
@@ -241,6 +248,7 @@ def frame_jump(
|
|
|
241
248
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
242
249
|
execution_context: str | int | None = None,
|
|
243
250
|
undo: bool | None = None,
|
|
251
|
+
*,
|
|
244
252
|
end: bool | typing.Any | None = False,
|
|
245
253
|
):
|
|
246
254
|
"""Jump to first/last frame in frame range
|
|
@@ -258,6 +266,7 @@ def frame_offset(
|
|
|
258
266
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
259
267
|
execution_context: str | int | None = None,
|
|
260
268
|
undo: bool | None = None,
|
|
269
|
+
*,
|
|
261
270
|
delta: typing.Any | None = 0,
|
|
262
271
|
):
|
|
263
272
|
"""Move current frame forward/backward by a given number
|
|
@@ -303,6 +312,7 @@ def keyframe_jump(
|
|
|
303
312
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
304
313
|
execution_context: str | int | None = None,
|
|
305
314
|
undo: bool | None = None,
|
|
315
|
+
*,
|
|
306
316
|
next: bool | typing.Any | None = True,
|
|
307
317
|
):
|
|
308
318
|
"""Jump to previous/next keyframe
|
|
@@ -320,6 +330,7 @@ def marker_jump(
|
|
|
320
330
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
321
331
|
execution_context: str | int | None = None,
|
|
322
332
|
undo: bool | None = None,
|
|
333
|
+
*,
|
|
323
334
|
next: bool | typing.Any | None = True,
|
|
324
335
|
):
|
|
325
336
|
"""Jump to previous/next marker
|
|
@@ -435,6 +446,7 @@ def region_toggle(
|
|
|
435
446
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
436
447
|
execution_context: str | int | None = None,
|
|
437
448
|
undo: bool | None = None,
|
|
449
|
+
*,
|
|
438
450
|
region_type: str | None = "WINDOW",
|
|
439
451
|
):
|
|
440
452
|
"""Hide or unhide the region
|
|
@@ -452,6 +464,7 @@ def repeat_history(
|
|
|
452
464
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
453
465
|
execution_context: str | int | None = None,
|
|
454
466
|
undo: bool | None = None,
|
|
467
|
+
*,
|
|
455
468
|
index: typing.Any | None = 0,
|
|
456
469
|
):
|
|
457
470
|
"""Display menu for previous actions performed
|
|
@@ -483,6 +496,7 @@ def screen_full_area(
|
|
|
483
496
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
484
497
|
execution_context: str | int | None = None,
|
|
485
498
|
undo: bool | None = None,
|
|
499
|
+
*,
|
|
486
500
|
use_hide_panels: bool | typing.Any | None = False,
|
|
487
501
|
):
|
|
488
502
|
"""Toggle display selected area as fullscreen/maximized
|
|
@@ -500,6 +514,7 @@ def screen_set(
|
|
|
500
514
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
501
515
|
execution_context: str | int | None = None,
|
|
502
516
|
undo: bool | None = None,
|
|
517
|
+
*,
|
|
503
518
|
delta: typing.Any | None = 1,
|
|
504
519
|
):
|
|
505
520
|
"""Cycle through available screens
|
|
@@ -517,6 +532,7 @@ def screenshot(
|
|
|
517
532
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
518
533
|
execution_context: str | int | None = None,
|
|
519
534
|
undo: bool | None = None,
|
|
535
|
+
*,
|
|
520
536
|
filepath: str | typing.Any = "",
|
|
521
537
|
hide_props_region: bool | typing.Any | None = True,
|
|
522
538
|
check_existing: bool | typing.Any | None = True,
|
|
@@ -618,6 +634,7 @@ def screenshot_area(
|
|
|
618
634
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
619
635
|
execution_context: str | int | None = None,
|
|
620
636
|
undo: bool | None = None,
|
|
637
|
+
*,
|
|
621
638
|
filepath: str | typing.Any = "",
|
|
622
639
|
hide_props_region: bool | typing.Any | None = True,
|
|
623
640
|
check_existing: bool | typing.Any | None = True,
|
|
@@ -719,6 +736,7 @@ def space_context_cycle(
|
|
|
719
736
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
720
737
|
execution_context: str | int | None = None,
|
|
721
738
|
undo: bool | None = None,
|
|
739
|
+
*,
|
|
722
740
|
direction: str | None = "NEXT",
|
|
723
741
|
):
|
|
724
742
|
"""Cycle through the editor context by activating the next/previous one
|
|
@@ -736,6 +754,7 @@ def space_type_set_or_cycle(
|
|
|
736
754
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
737
755
|
execution_context: str | int | None = None,
|
|
738
756
|
undo: bool | None = None,
|
|
757
|
+
*,
|
|
739
758
|
space_type: str | None = "EMPTY",
|
|
740
759
|
):
|
|
741
760
|
"""Set the space type or cycle subtype
|
|
@@ -767,6 +786,7 @@ def userpref_show(
|
|
|
767
786
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
768
787
|
execution_context: str | int | None = None,
|
|
769
788
|
undo: bool | None = None,
|
|
789
|
+
*,
|
|
770
790
|
section: str | None = "INTERFACE",
|
|
771
791
|
):
|
|
772
792
|
"""Edit user preferences and system settings
|
|
@@ -784,6 +804,7 @@ def workspace_cycle(
|
|
|
784
804
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
785
805
|
execution_context: str | int | None = None,
|
|
786
806
|
undo: bool | None = None,
|
|
807
|
+
*,
|
|
787
808
|
direction: str | None = "NEXT",
|
|
788
809
|
):
|
|
789
810
|
"""Cycle through workspaces
|
bpy/ops/script/__init__.pyi
CHANGED
|
@@ -9,6 +9,7 @@ def execute_preset(
|
|
|
9
9
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
10
10
|
execution_context: str | int | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
|
+
*,
|
|
12
13
|
filepath: str | typing.Any = "",
|
|
13
14
|
menu_idname: str | typing.Any = "",
|
|
14
15
|
):
|
|
@@ -29,6 +30,7 @@ def python_file_run(
|
|
|
29
30
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
30
31
|
execution_context: str | int | None = None,
|
|
31
32
|
undo: bool | None = None,
|
|
33
|
+
*,
|
|
32
34
|
filepath: str | typing.Any = "",
|
|
33
35
|
):
|
|
34
36
|
"""Run Python file
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -9,6 +9,7 @@ def brush_stroke(
|
|
|
9
9
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
10
10
|
execution_context: str | int | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
|
+
*,
|
|
12
13
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
13
14
|
| None = None,
|
|
14
15
|
mode: str | None = "NORMAL",
|
|
@@ -42,6 +43,7 @@ def cloth_filter(
|
|
|
42
43
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
43
44
|
execution_context: str | int | None = None,
|
|
44
45
|
undo: bool | None = None,
|
|
46
|
+
*,
|
|
45
47
|
start_mouse: typing.Any | None = (0, 0),
|
|
46
48
|
area_normal_radius: typing.Any | None = 0.25,
|
|
47
49
|
strength: typing.Any | None = 1.0,
|
|
@@ -125,6 +127,7 @@ def color_filter(
|
|
|
125
127
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
126
128
|
execution_context: str | int | None = None,
|
|
127
129
|
undo: bool | None = None,
|
|
130
|
+
*,
|
|
128
131
|
start_mouse: typing.Any | None = (0, 0),
|
|
129
132
|
area_normal_radius: typing.Any | None = 0.25,
|
|
130
133
|
strength: typing.Any | None = 1.0,
|
|
@@ -232,6 +235,7 @@ def expand(
|
|
|
232
235
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
233
236
|
execution_context: str | int | None = None,
|
|
234
237
|
undo: bool | None = None,
|
|
238
|
+
*,
|
|
235
239
|
target: str | None = "MASK",
|
|
236
240
|
falloff_type: str | None = "GEODESIC",
|
|
237
241
|
invert: bool | typing.Any | None = False,
|
|
@@ -276,6 +280,7 @@ def face_set_box_gesture(
|
|
|
276
280
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
277
281
|
execution_context: str | int | None = None,
|
|
278
282
|
undo: bool | None = None,
|
|
283
|
+
*,
|
|
279
284
|
xmin: typing.Any | None = 0,
|
|
280
285
|
xmax: typing.Any | None = 0,
|
|
281
286
|
ymin: typing.Any | None = 0,
|
|
@@ -308,6 +313,7 @@ def face_set_change_visibility(
|
|
|
308
313
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
309
314
|
execution_context: str | int | None = None,
|
|
310
315
|
undo: bool | None = None,
|
|
316
|
+
*,
|
|
311
317
|
mode: str | None = "TOGGLE",
|
|
312
318
|
):
|
|
313
319
|
"""Change the visibility of the Face Sets of the sculpt
|
|
@@ -334,6 +340,7 @@ def face_set_edit(
|
|
|
334
340
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
335
341
|
execution_context: str | int | None = None,
|
|
336
342
|
undo: bool | None = None,
|
|
343
|
+
*,
|
|
337
344
|
active_face_set: typing.Any | None = 1,
|
|
338
345
|
mode: str | None = "GROW",
|
|
339
346
|
strength: typing.Any | None = 1.0,
|
|
@@ -375,6 +382,67 @@ def face_set_lasso_gesture(
|
|
|
375
382
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
376
383
|
execution_context: str | int | None = None,
|
|
377
384
|
undo: bool | None = None,
|
|
385
|
+
*,
|
|
386
|
+
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
387
|
+
use_front_faces_only: bool | typing.Any | None = False,
|
|
388
|
+
):
|
|
389
|
+
"""Add a face set in a shape defined by the cursor
|
|
390
|
+
|
|
391
|
+
:type override_context: dict[str, typing.Any] | bpy.types.Context | None
|
|
392
|
+
:type execution_context: str | int | None
|
|
393
|
+
:type undo: bool | None
|
|
394
|
+
:param path: Path
|
|
395
|
+
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
396
|
+
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
397
|
+
:type use_front_faces_only: bool | typing.Any | None
|
|
398
|
+
"""
|
|
399
|
+
|
|
400
|
+
...
|
|
401
|
+
|
|
402
|
+
def face_set_line_gesture(
|
|
403
|
+
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
404
|
+
execution_context: str | int | None = None,
|
|
405
|
+
undo: bool | None = None,
|
|
406
|
+
*,
|
|
407
|
+
xstart: typing.Any | None = 0,
|
|
408
|
+
xend: typing.Any | None = 0,
|
|
409
|
+
ystart: typing.Any | None = 0,
|
|
410
|
+
yend: typing.Any | None = 0,
|
|
411
|
+
flip: bool | typing.Any | None = False,
|
|
412
|
+
cursor: typing.Any | None = 5,
|
|
413
|
+
use_front_faces_only: bool | typing.Any | None = False,
|
|
414
|
+
use_limit_to_segment: bool | typing.Any | None = False,
|
|
415
|
+
):
|
|
416
|
+
"""Add a face set to one side of a line defined by the cursor
|
|
417
|
+
|
|
418
|
+
:type override_context: dict[str, typing.Any] | bpy.types.Context | None
|
|
419
|
+
:type execution_context: str | int | None
|
|
420
|
+
:type undo: bool | None
|
|
421
|
+
:param xstart: X Start
|
|
422
|
+
:type xstart: typing.Any | None
|
|
423
|
+
:param xend: X End
|
|
424
|
+
:type xend: typing.Any | None
|
|
425
|
+
:param ystart: Y Start
|
|
426
|
+
:type ystart: typing.Any | None
|
|
427
|
+
:param yend: Y End
|
|
428
|
+
:type yend: typing.Any | None
|
|
429
|
+
:param flip: Flip
|
|
430
|
+
:type flip: bool | typing.Any | None
|
|
431
|
+
:param cursor: Cursor, Mouse cursor style to use during the modal operator
|
|
432
|
+
:type cursor: typing.Any | None
|
|
433
|
+
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
434
|
+
:type use_front_faces_only: bool | typing.Any | None
|
|
435
|
+
:param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
|
|
436
|
+
:type use_limit_to_segment: bool | typing.Any | None
|
|
437
|
+
"""
|
|
438
|
+
|
|
439
|
+
...
|
|
440
|
+
|
|
441
|
+
def face_set_polyline_gesture(
|
|
442
|
+
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
443
|
+
execution_context: str | int | None = None,
|
|
444
|
+
undo: bool | None = None,
|
|
445
|
+
*,
|
|
378
446
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
379
447
|
use_front_faces_only: bool | typing.Any | None = False,
|
|
380
448
|
):
|
|
@@ -395,6 +463,7 @@ def face_sets_create(
|
|
|
395
463
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
396
464
|
execution_context: str | int | None = None,
|
|
397
465
|
undo: bool | None = None,
|
|
466
|
+
*,
|
|
398
467
|
mode: str | None = "MASKED",
|
|
399
468
|
):
|
|
400
469
|
"""Create a new Face Set
|
|
@@ -424,6 +493,7 @@ def face_sets_init(
|
|
|
424
493
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
425
494
|
execution_context: str | int | None = None,
|
|
426
495
|
undo: bool | None = None,
|
|
496
|
+
*,
|
|
427
497
|
mode: str | None = "LOOSE_PARTS",
|
|
428
498
|
threshold: typing.Any | None = 0.5,
|
|
429
499
|
):
|
|
@@ -482,6 +552,7 @@ def mask_by_color(
|
|
|
482
552
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
483
553
|
execution_context: str | int | None = None,
|
|
484
554
|
undo: bool | None = None,
|
|
555
|
+
*,
|
|
485
556
|
contiguous: bool | typing.Any | None = False,
|
|
486
557
|
invert: bool | typing.Any | None = False,
|
|
487
558
|
preserve_previous_mask: bool | typing.Any | None = False,
|
|
@@ -508,6 +579,7 @@ def mask_filter(
|
|
|
508
579
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
509
580
|
execution_context: str | int | None = None,
|
|
510
581
|
undo: bool | None = None,
|
|
582
|
+
*,
|
|
511
583
|
filter_type: str | None = "SMOOTH",
|
|
512
584
|
iterations: typing.Any | None = 1,
|
|
513
585
|
auto_iteration_count: bool | typing.Any | None = True,
|
|
@@ -531,6 +603,7 @@ def mask_from_cavity(
|
|
|
531
603
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
532
604
|
execution_context: str | int | None = None,
|
|
533
605
|
undo: bool | None = None,
|
|
606
|
+
*,
|
|
534
607
|
mix_mode: str | None = "MIX",
|
|
535
608
|
mix_factor: typing.Any | None = 1.0,
|
|
536
609
|
settings_source: str | None = "OPERATOR",
|
|
@@ -575,6 +648,7 @@ def mask_init(
|
|
|
575
648
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
576
649
|
execution_context: str | int | None = None,
|
|
577
650
|
undo: bool | None = None,
|
|
651
|
+
*,
|
|
578
652
|
mode: str | None = "RANDOM_PER_VERTEX",
|
|
579
653
|
):
|
|
580
654
|
"""Creates a new mask for the entire mesh
|
|
@@ -592,6 +666,7 @@ def mesh_filter(
|
|
|
592
666
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
593
667
|
execution_context: str | int | None = None,
|
|
594
668
|
undo: bool | None = None,
|
|
669
|
+
*,
|
|
595
670
|
start_mouse: typing.Any | None = (0, 0),
|
|
596
671
|
area_normal_radius: typing.Any | None = 0.25,
|
|
597
672
|
strength: typing.Any | None = 1.0,
|
|
@@ -710,6 +785,7 @@ def project_line_gesture(
|
|
|
710
785
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
711
786
|
execution_context: str | int | None = None,
|
|
712
787
|
undo: bool | None = None,
|
|
788
|
+
*,
|
|
713
789
|
xstart: typing.Any | None = 0,
|
|
714
790
|
xend: typing.Any | None = 0,
|
|
715
791
|
ystart: typing.Any | None = 0,
|
|
@@ -762,6 +838,7 @@ def sample_detail_size(
|
|
|
762
838
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
763
839
|
execution_context: str | int | None = None,
|
|
764
840
|
undo: bool | None = None,
|
|
841
|
+
*,
|
|
765
842
|
location: typing.Any | None = (0, 0),
|
|
766
843
|
mode: str | None = "DYNTOPO",
|
|
767
844
|
):
|
|
@@ -816,6 +893,7 @@ def set_pivot_position(
|
|
|
816
893
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
817
894
|
execution_context: str | int | None = None,
|
|
818
895
|
undo: bool | None = None,
|
|
896
|
+
*,
|
|
819
897
|
mode: str | None = "UNMASKED",
|
|
820
898
|
mouse_x: typing.Any | None = 0.0,
|
|
821
899
|
mouse_y: typing.Any | None = 0.0,
|
|
@@ -854,6 +932,7 @@ def symmetrize(
|
|
|
854
932
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
855
933
|
execution_context: str | int | None = None,
|
|
856
934
|
undo: bool | None = None,
|
|
935
|
+
*,
|
|
857
936
|
merge_tolerance: typing.Any | None = 0.0005,
|
|
858
937
|
):
|
|
859
938
|
"""Symmetrize the topology modifications
|
|
@@ -871,6 +950,7 @@ def trim_box_gesture(
|
|
|
871
950
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
872
951
|
execution_context: str | int | None = None,
|
|
873
952
|
undo: bool | None = None,
|
|
953
|
+
*,
|
|
874
954
|
xmin: typing.Any | None = 0,
|
|
875
955
|
xmax: typing.Any | None = 0,
|
|
876
956
|
ymin: typing.Any | None = 0,
|
|
@@ -948,6 +1028,7 @@ def trim_lasso_gesture(
|
|
|
948
1028
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
949
1029
|
execution_context: str | int | None = None,
|
|
950
1030
|
undo: bool | None = None,
|
|
1031
|
+
*,
|
|
951
1032
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
952
1033
|
use_front_faces_only: bool | typing.Any | None = False,
|
|
953
1034
|
location: typing.Any | None = (0, 0),
|
|
@@ -1013,6 +1094,7 @@ def trim_line_gesture(
|
|
|
1013
1094
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1014
1095
|
execution_context: str | int | None = None,
|
|
1015
1096
|
undo: bool | None = None,
|
|
1097
|
+
*,
|
|
1016
1098
|
xstart: typing.Any | None = 0,
|
|
1017
1099
|
xend: typing.Any | None = 0,
|
|
1018
1100
|
ystart: typing.Any | None = 0,
|
|
@@ -1092,10 +1174,77 @@ def trim_line_gesture(
|
|
|
1092
1174
|
|
|
1093
1175
|
...
|
|
1094
1176
|
|
|
1177
|
+
def trim_polyline_gesture(
|
|
1178
|
+
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1179
|
+
execution_context: str | int | None = None,
|
|
1180
|
+
undo: bool | None = None,
|
|
1181
|
+
*,
|
|
1182
|
+
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
1183
|
+
use_front_faces_only: bool | typing.Any | None = False,
|
|
1184
|
+
location: typing.Any | None = (0, 0),
|
|
1185
|
+
trim_mode: str | None = "DIFFERENCE",
|
|
1186
|
+
use_cursor_depth: bool | typing.Any | None = False,
|
|
1187
|
+
trim_orientation: str | None = "VIEW",
|
|
1188
|
+
trim_extrude_mode: str | None = "FIXED",
|
|
1189
|
+
trim_solver: str | None = "FAST",
|
|
1190
|
+
):
|
|
1191
|
+
"""Execute a boolean operation on the mesh and a polygonal shape defined by the cursor
|
|
1192
|
+
|
|
1193
|
+
:type override_context: dict[str, typing.Any] | bpy.types.Context | None
|
|
1194
|
+
:type execution_context: str | int | None
|
|
1195
|
+
:type undo: bool | None
|
|
1196
|
+
:param path: Path
|
|
1197
|
+
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
1198
|
+
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
1199
|
+
:type use_front_faces_only: bool | typing.Any | None
|
|
1200
|
+
:param location: Location, Mouse location
|
|
1201
|
+
:type location: typing.Any | None
|
|
1202
|
+
:param trim_mode: Trim Mode
|
|
1203
|
+
|
|
1204
|
+
DIFFERENCE
|
|
1205
|
+
Difference -- Use a difference boolean operation.
|
|
1206
|
+
|
|
1207
|
+
UNION
|
|
1208
|
+
Union -- Use a union boolean operation.
|
|
1209
|
+
|
|
1210
|
+
JOIN
|
|
1211
|
+
Join -- Join the new mesh as separate geometry, without performing any boolean operation.
|
|
1212
|
+
:type trim_mode: str | None
|
|
1213
|
+
:param use_cursor_depth: Use Cursor for Depth, Use cursor location and radius for the dimensions and position of the trimming shape
|
|
1214
|
+
:type use_cursor_depth: bool | typing.Any | None
|
|
1215
|
+
:param trim_orientation: Shape Orientation
|
|
1216
|
+
|
|
1217
|
+
VIEW
|
|
1218
|
+
View -- Use the view to orientate the trimming shape.
|
|
1219
|
+
|
|
1220
|
+
SURFACE
|
|
1221
|
+
Surface -- Use the surface normal to orientate the trimming shape.
|
|
1222
|
+
:type trim_orientation: str | None
|
|
1223
|
+
:param trim_extrude_mode: Extrude Mode
|
|
1224
|
+
|
|
1225
|
+
PROJECT
|
|
1226
|
+
Project -- Project back faces when extruding.
|
|
1227
|
+
|
|
1228
|
+
FIXED
|
|
1229
|
+
Fixed -- Extrude back faces by fixed amount.
|
|
1230
|
+
:type trim_extrude_mode: str | None
|
|
1231
|
+
:param trim_solver: Solver
|
|
1232
|
+
|
|
1233
|
+
EXACT
|
|
1234
|
+
Exact -- Use the exact boolean solver.
|
|
1235
|
+
|
|
1236
|
+
FAST
|
|
1237
|
+
Fast -- Use the fast float boolean solver.
|
|
1238
|
+
:type trim_solver: str | None
|
|
1239
|
+
"""
|
|
1240
|
+
|
|
1241
|
+
...
|
|
1242
|
+
|
|
1095
1243
|
def uv_sculpt_grab(
|
|
1096
1244
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1097
1245
|
execution_context: str | int | None = None,
|
|
1098
1246
|
undo: bool | None = None,
|
|
1247
|
+
*,
|
|
1099
1248
|
use_invert: bool | typing.Any | None = False,
|
|
1100
1249
|
):
|
|
1101
1250
|
"""Grab UVs
|
|
@@ -1113,6 +1262,7 @@ def uv_sculpt_pinch(
|
|
|
1113
1262
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1114
1263
|
execution_context: str | int | None = None,
|
|
1115
1264
|
undo: bool | None = None,
|
|
1265
|
+
*,
|
|
1116
1266
|
use_invert: bool | typing.Any | None = False,
|
|
1117
1267
|
):
|
|
1118
1268
|
"""Pinch UVs
|
|
@@ -1130,6 +1280,7 @@ def uv_sculpt_relax(
|
|
|
1130
1280
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1131
1281
|
execution_context: str | int | None = None,
|
|
1132
1282
|
undo: bool | None = None,
|
|
1283
|
+
*,
|
|
1133
1284
|
use_invert: bool | typing.Any | None = False,
|
|
1134
1285
|
relax_method: str | None = "COTAN",
|
|
1135
1286
|
):
|
|
@@ -9,6 +9,7 @@ def brush_stroke(
|
|
|
9
9
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
10
10
|
execution_context: str | int | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
|
+
*,
|
|
12
13
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
13
14
|
| None = None,
|
|
14
15
|
mode: str | None = "NORMAL",
|
|
@@ -53,6 +54,7 @@ def select_grow(
|
|
|
53
54
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
54
55
|
execution_context: str | int | None = None,
|
|
55
56
|
undo: bool | None = None,
|
|
57
|
+
*,
|
|
56
58
|
distance: typing.Any | None = 0.1,
|
|
57
59
|
):
|
|
58
60
|
"""Select curves which are close to curves that are selected already
|
|
@@ -70,6 +72,7 @@ def select_random(
|
|
|
70
72
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
71
73
|
execution_context: str | int | None = None,
|
|
72
74
|
undo: bool | None = None,
|
|
75
|
+
*,
|
|
73
76
|
seed: typing.Any | None = 0,
|
|
74
77
|
partial: bool | typing.Any | None = False,
|
|
75
78
|
probability: typing.Any | None = 0.5,
|