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
|
@@ -10,6 +10,7 @@ def brush_stroke(
|
|
|
10
10
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
11
11
|
execution_context: str | int | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
|
+
*,
|
|
13
14
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
14
15
|
| None = None,
|
|
15
16
|
mode: str | None = "NORMAL",
|
|
@@ -40,6 +41,7 @@ def caps_set(
|
|
|
40
41
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
41
42
|
execution_context: str | int | None = None,
|
|
42
43
|
undo: bool | None = None,
|
|
44
|
+
*,
|
|
43
45
|
type: str | None = "ROUND",
|
|
44
46
|
):
|
|
45
47
|
"""Change curve caps mode (rounded or flat)
|
|
@@ -69,6 +71,7 @@ def clean_loose(
|
|
|
69
71
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
70
72
|
execution_context: str | int | None = None,
|
|
71
73
|
undo: bool | None = None,
|
|
74
|
+
*,
|
|
72
75
|
limit: typing.Any | None = 1,
|
|
73
76
|
):
|
|
74
77
|
"""Remove loose points
|
|
@@ -100,6 +103,7 @@ def cyclical_set(
|
|
|
100
103
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
101
104
|
execution_context: str | int | None = None,
|
|
102
105
|
undo: bool | None = None,
|
|
106
|
+
*,
|
|
103
107
|
type: str | None = "TOGGLE",
|
|
104
108
|
):
|
|
105
109
|
"""Close or open the selected stroke adding a segment from last to first point
|
|
@@ -131,6 +135,7 @@ def delete_frame(
|
|
|
131
135
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
132
136
|
execution_context: str | int | None = None,
|
|
133
137
|
undo: bool | None = None,
|
|
138
|
+
*,
|
|
134
139
|
type: str | None = "ACTIVE_FRAME",
|
|
135
140
|
):
|
|
136
141
|
"""Delete Grease Pencil Frame(s)
|
|
@@ -154,6 +159,7 @@ def dissolve(
|
|
|
154
159
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
155
160
|
execution_context: str | int | None = None,
|
|
156
161
|
undo: bool | None = None,
|
|
162
|
+
*,
|
|
157
163
|
type: str | None = "POINTS",
|
|
158
164
|
):
|
|
159
165
|
"""Delete selected points without splitting strokes
|
|
@@ -194,6 +200,7 @@ def duplicate_move(
|
|
|
194
200
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
195
201
|
execution_context: str | int | None = None,
|
|
196
202
|
undo: bool | None = None,
|
|
203
|
+
*,
|
|
197
204
|
GREASE_PENCIL_OT_duplicate: typing.Any | None = None,
|
|
198
205
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
199
206
|
):
|
|
@@ -228,6 +235,7 @@ def extrude_move(
|
|
|
228
235
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
229
236
|
execution_context: str | int | None = None,
|
|
230
237
|
undo: bool | None = None,
|
|
238
|
+
*,
|
|
231
239
|
GREASE_PENCIL_OT_extrude: typing.Any | None = None,
|
|
232
240
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
233
241
|
):
|
|
@@ -248,6 +256,7 @@ def fill(
|
|
|
248
256
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
249
257
|
execution_context: str | int | None = None,
|
|
250
258
|
undo: bool | None = None,
|
|
259
|
+
*,
|
|
251
260
|
on_back: bool | typing.Any | None = False,
|
|
252
261
|
invert: bool | typing.Any | None = False,
|
|
253
262
|
precision: bool | typing.Any | None = False,
|
|
@@ -271,6 +280,7 @@ def insert_blank_frame(
|
|
|
271
280
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
272
281
|
execution_context: str | int | None = None,
|
|
273
282
|
undo: bool | None = None,
|
|
283
|
+
*,
|
|
274
284
|
all_layers: bool | typing.Any | None = False,
|
|
275
285
|
duration: typing.Any | None = 0,
|
|
276
286
|
):
|
|
@@ -291,6 +301,7 @@ def layer_active(
|
|
|
291
301
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
292
302
|
execution_context: str | int | None = None,
|
|
293
303
|
undo: bool | None = None,
|
|
304
|
+
*,
|
|
294
305
|
layer: typing.Any | None = 0,
|
|
295
306
|
):
|
|
296
307
|
"""Set the active Grease Pencil layer
|
|
@@ -308,6 +319,7 @@ def layer_add(
|
|
|
308
319
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
309
320
|
execution_context: str | int | None = None,
|
|
310
321
|
undo: bool | None = None,
|
|
322
|
+
*,
|
|
311
323
|
new_layer_name: str | typing.Any = "Layer",
|
|
312
324
|
):
|
|
313
325
|
"""Add a new Grease Pencil layer in the active object
|
|
@@ -325,6 +337,7 @@ def layer_duplicate(
|
|
|
325
337
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
326
338
|
execution_context: str | int | None = None,
|
|
327
339
|
undo: bool | None = None,
|
|
340
|
+
*,
|
|
328
341
|
empty_keyframes: bool | typing.Any | None = False,
|
|
329
342
|
):
|
|
330
343
|
"""Make a copy of the active Grease Pencil layer
|
|
@@ -342,6 +355,7 @@ def layer_group_add(
|
|
|
342
355
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
343
356
|
execution_context: str | int | None = None,
|
|
344
357
|
undo: bool | None = None,
|
|
358
|
+
*,
|
|
345
359
|
new_layer_group_name: str | typing.Any = "",
|
|
346
360
|
):
|
|
347
361
|
"""Add a new Grease Pencil layer group in the active object
|
|
@@ -359,6 +373,7 @@ def layer_group_remove(
|
|
|
359
373
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
360
374
|
execution_context: str | int | None = None,
|
|
361
375
|
undo: bool | None = None,
|
|
376
|
+
*,
|
|
362
377
|
keep_children: bool | typing.Any | None = False,
|
|
363
378
|
):
|
|
364
379
|
"""Remove Grease Pencil layer group in the active object
|
|
@@ -376,6 +391,7 @@ def layer_hide(
|
|
|
376
391
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
377
392
|
execution_context: str | int | None = None,
|
|
378
393
|
undo: bool | None = None,
|
|
394
|
+
*,
|
|
379
395
|
unselected: bool | typing.Any | None = False,
|
|
380
396
|
):
|
|
381
397
|
"""Hide selected/unselected Grease Pencil layers
|
|
@@ -393,6 +409,7 @@ def layer_isolate(
|
|
|
393
409
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
394
410
|
execution_context: str | int | None = None,
|
|
395
411
|
undo: bool | None = None,
|
|
412
|
+
*,
|
|
396
413
|
affect_visibility: bool | typing.Any | None = False,
|
|
397
414
|
):
|
|
398
415
|
"""Make only active layer visible/editable
|
|
@@ -410,6 +427,7 @@ def layer_lock_all(
|
|
|
410
427
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
411
428
|
execution_context: str | int | None = None,
|
|
412
429
|
undo: bool | None = None,
|
|
430
|
+
*,
|
|
413
431
|
lock: bool | typing.Any | None = True,
|
|
414
432
|
):
|
|
415
433
|
"""Lock all Grease Pencil layers to prevent them from being accidentally modified
|
|
@@ -427,6 +445,7 @@ def layer_mask_add(
|
|
|
427
445
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
428
446
|
execution_context: str | int | None = None,
|
|
429
447
|
undo: bool | None = None,
|
|
448
|
+
*,
|
|
430
449
|
name: str | typing.Any = "",
|
|
431
450
|
):
|
|
432
451
|
"""Add new layer as masking
|
|
@@ -458,6 +477,7 @@ def layer_mask_reorder(
|
|
|
458
477
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
459
478
|
execution_context: str | int | None = None,
|
|
460
479
|
undo: bool | None = None,
|
|
480
|
+
*,
|
|
461
481
|
direction: str | None = "UP",
|
|
462
482
|
):
|
|
463
483
|
"""Reorder the active Grease Pencil mask layer up/down in the list
|
|
@@ -489,6 +509,7 @@ def layer_reorder(
|
|
|
489
509
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
490
510
|
execution_context: str | int | None = None,
|
|
491
511
|
undo: bool | None = None,
|
|
512
|
+
*,
|
|
492
513
|
target_layer_name: str | typing.Any = "Layer",
|
|
493
514
|
location: str | None = "ABOVE",
|
|
494
515
|
):
|
|
@@ -523,6 +544,7 @@ def material_copy_to_object(
|
|
|
523
544
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
524
545
|
execution_context: str | int | None = None,
|
|
525
546
|
undo: bool | None = None,
|
|
547
|
+
*,
|
|
526
548
|
only_active: bool | typing.Any | None = True,
|
|
527
549
|
):
|
|
528
550
|
"""Append Materials of the active Grease Pencil to other object
|
|
@@ -540,6 +562,7 @@ def material_hide(
|
|
|
540
562
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
541
563
|
execution_context: str | int | None = None,
|
|
542
564
|
undo: bool | None = None,
|
|
565
|
+
*,
|
|
543
566
|
invert: bool | typing.Any | None = False,
|
|
544
567
|
):
|
|
545
568
|
"""Hide active/inactive Grease Pencil material(s)
|
|
@@ -613,6 +636,7 @@ def material_select(
|
|
|
613
636
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
614
637
|
execution_context: str | int | None = None,
|
|
615
638
|
undo: bool | None = None,
|
|
639
|
+
*,
|
|
616
640
|
deselect: bool | typing.Any | None = False,
|
|
617
641
|
):
|
|
618
642
|
"""Select/Deselect all Grease Pencil strokes using current material
|
|
@@ -644,6 +668,7 @@ def move_to_layer(
|
|
|
644
668
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
645
669
|
execution_context: str | int | None = None,
|
|
646
670
|
undo: bool | None = None,
|
|
671
|
+
*,
|
|
647
672
|
target_layer_name: str | typing.Any = "Layer",
|
|
648
673
|
add_new_layer: bool | typing.Any | None = False,
|
|
649
674
|
):
|
|
@@ -664,6 +689,7 @@ def paste(
|
|
|
664
689
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
665
690
|
execution_context: str | int | None = None,
|
|
666
691
|
undo: bool | None = None,
|
|
692
|
+
*,
|
|
667
693
|
paste_back: bool | typing.Any | None = False,
|
|
668
694
|
):
|
|
669
695
|
"""Paste Grease Pencil points or strokes from the internal clipboard to the active layer
|
|
@@ -681,6 +707,7 @@ def primitive_arc(
|
|
|
681
707
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
682
708
|
execution_context: str | int | None = None,
|
|
683
709
|
undo: bool | None = None,
|
|
710
|
+
*,
|
|
684
711
|
subdivision: typing.Any | None = 62,
|
|
685
712
|
type: str | None = "ARC",
|
|
686
713
|
):
|
|
@@ -701,6 +728,7 @@ def primitive_box(
|
|
|
701
728
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
702
729
|
execution_context: str | int | None = None,
|
|
703
730
|
undo: bool | None = None,
|
|
731
|
+
*,
|
|
704
732
|
subdivision: typing.Any | None = 3,
|
|
705
733
|
type: str | None = "BOX",
|
|
706
734
|
):
|
|
@@ -721,6 +749,7 @@ def primitive_circle(
|
|
|
721
749
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
722
750
|
execution_context: str | int | None = None,
|
|
723
751
|
undo: bool | None = None,
|
|
752
|
+
*,
|
|
724
753
|
subdivision: typing.Any | None = 94,
|
|
725
754
|
type: str | None = "CIRCLE",
|
|
726
755
|
):
|
|
@@ -741,6 +770,7 @@ def primitive_curve(
|
|
|
741
770
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
742
771
|
execution_context: str | int | None = None,
|
|
743
772
|
undo: bool | None = None,
|
|
773
|
+
*,
|
|
744
774
|
subdivision: typing.Any | None = 62,
|
|
745
775
|
type: str | None = "CURVE",
|
|
746
776
|
):
|
|
@@ -761,6 +791,7 @@ def primitive_line(
|
|
|
761
791
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
762
792
|
execution_context: str | int | None = None,
|
|
763
793
|
undo: bool | None = None,
|
|
794
|
+
*,
|
|
764
795
|
subdivision: typing.Any | None = 6,
|
|
765
796
|
type: str | None = "LINE",
|
|
766
797
|
):
|
|
@@ -781,6 +812,7 @@ def primitive_polyline(
|
|
|
781
812
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
782
813
|
execution_context: str | int | None = None,
|
|
783
814
|
undo: bool | None = None,
|
|
815
|
+
*,
|
|
784
816
|
subdivision: typing.Any | None = 6,
|
|
785
817
|
type: str | None = "POLYLINE",
|
|
786
818
|
):
|
|
@@ -801,6 +833,7 @@ def reorder(
|
|
|
801
833
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
802
834
|
execution_context: str | int | None = None,
|
|
803
835
|
undo: bool | None = None,
|
|
836
|
+
*,
|
|
804
837
|
direction: str | None = "TOP",
|
|
805
838
|
):
|
|
806
839
|
"""Change the display order of the selected strokes
|
|
@@ -818,6 +851,7 @@ def sculpt_paint(
|
|
|
818
851
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
819
852
|
execution_context: str | int | None = None,
|
|
820
853
|
undo: bool | None = None,
|
|
854
|
+
*,
|
|
821
855
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
822
856
|
| None = None,
|
|
823
857
|
mode: str | None = "NORMAL",
|
|
@@ -848,6 +882,7 @@ def select_all(
|
|
|
848
882
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
849
883
|
execution_context: str | int | None = None,
|
|
850
884
|
undo: bool | None = None,
|
|
885
|
+
*,
|
|
851
886
|
action: str | None = "TOGGLE",
|
|
852
887
|
):
|
|
853
888
|
"""(De)select all visible strokes
|
|
@@ -877,6 +912,7 @@ def select_alternate(
|
|
|
877
912
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
878
913
|
execution_context: str | int | None = None,
|
|
879
914
|
undo: bool | None = None,
|
|
915
|
+
*,
|
|
880
916
|
deselect_ends: bool | typing.Any | None = False,
|
|
881
917
|
):
|
|
882
918
|
"""Select alternated points in strokes with already selected points
|
|
@@ -894,6 +930,7 @@ def select_ends(
|
|
|
894
930
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
895
931
|
execution_context: str | int | None = None,
|
|
896
932
|
undo: bool | None = None,
|
|
933
|
+
*,
|
|
897
934
|
amount_start: typing.Any | None = 0,
|
|
898
935
|
amount_end: typing.Any | None = 1,
|
|
899
936
|
):
|
|
@@ -956,6 +993,7 @@ def select_random(
|
|
|
956
993
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
957
994
|
execution_context: str | int | None = None,
|
|
958
995
|
undo: bool | None = None,
|
|
996
|
+
*,
|
|
959
997
|
ratio: typing.Any | None = 0.5,
|
|
960
998
|
seed: typing.Any | None = 0,
|
|
961
999
|
action: str | None = "SELECT",
|
|
@@ -985,6 +1023,7 @@ def separate(
|
|
|
985
1023
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
986
1024
|
execution_context: str | int | None = None,
|
|
987
1025
|
undo: bool | None = None,
|
|
1026
|
+
*,
|
|
988
1027
|
mode: str | None = "SELECTED",
|
|
989
1028
|
):
|
|
990
1029
|
"""Separate the selected geometry into a new grease pencil object
|
|
@@ -1025,6 +1064,7 @@ def set_material(
|
|
|
1025
1064
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1026
1065
|
execution_context: str | int | None = None,
|
|
1027
1066
|
undo: bool | None = None,
|
|
1067
|
+
*,
|
|
1028
1068
|
slot: str | None = "DEFAULT",
|
|
1029
1069
|
):
|
|
1030
1070
|
"""Set active material
|
|
@@ -1042,6 +1082,7 @@ def set_selection_mode(
|
|
|
1042
1082
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1043
1083
|
execution_context: str | int | None = None,
|
|
1044
1084
|
undo: bool | None = None,
|
|
1085
|
+
*,
|
|
1045
1086
|
mode: str | None = "POINT",
|
|
1046
1087
|
):
|
|
1047
1088
|
"""Change the selection mode for Grease Pencil strokes
|
|
@@ -1059,6 +1100,7 @@ def set_uniform_opacity(
|
|
|
1059
1100
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1060
1101
|
execution_context: str | int | None = None,
|
|
1061
1102
|
undo: bool | None = None,
|
|
1103
|
+
*,
|
|
1062
1104
|
opacity: typing.Any | None = 1.0,
|
|
1063
1105
|
):
|
|
1064
1106
|
"""Set all stroke points to same opacity
|
|
@@ -1076,6 +1118,7 @@ def set_uniform_thickness(
|
|
|
1076
1118
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1077
1119
|
execution_context: str | int | None = None,
|
|
1078
1120
|
undo: bool | None = None,
|
|
1121
|
+
*,
|
|
1079
1122
|
thickness: typing.Any | None = 0.1,
|
|
1080
1123
|
):
|
|
1081
1124
|
"""Set all stroke points to same thickness
|
|
@@ -1107,6 +1150,7 @@ def snap_to_cursor(
|
|
|
1107
1150
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1108
1151
|
execution_context: str | int | None = None,
|
|
1109
1152
|
undo: bool | None = None,
|
|
1153
|
+
*,
|
|
1110
1154
|
use_offset: bool | typing.Any | None = True,
|
|
1111
1155
|
):
|
|
1112
1156
|
"""Snap selected points/strokes to the cursor
|
|
@@ -1138,6 +1182,7 @@ def stroke_cutter(
|
|
|
1138
1182
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1139
1183
|
execution_context: str | int | None = None,
|
|
1140
1184
|
undo: bool | None = None,
|
|
1185
|
+
*,
|
|
1141
1186
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
1142
1187
|
):
|
|
1143
1188
|
"""Delete stroke points in between intersecting strokes
|
|
@@ -1155,6 +1200,7 @@ def stroke_material_set(
|
|
|
1155
1200
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1156
1201
|
execution_context: str | int | None = None,
|
|
1157
1202
|
undo: bool | None = None,
|
|
1203
|
+
*,
|
|
1158
1204
|
material: str | typing.Any = "",
|
|
1159
1205
|
):
|
|
1160
1206
|
"""Assign the active material slot to the selected strokes
|
|
@@ -1172,6 +1218,7 @@ def stroke_merge_by_distance(
|
|
|
1172
1218
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1173
1219
|
execution_context: str | int | None = None,
|
|
1174
1220
|
undo: bool | None = None,
|
|
1221
|
+
*,
|
|
1175
1222
|
threshold: typing.Any | None = 0.001,
|
|
1176
1223
|
use_unselected: bool | typing.Any | None = False,
|
|
1177
1224
|
):
|
|
@@ -1192,6 +1239,7 @@ def stroke_simplify(
|
|
|
1192
1239
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1193
1240
|
execution_context: str | int | None = None,
|
|
1194
1241
|
undo: bool | None = None,
|
|
1242
|
+
*,
|
|
1195
1243
|
factor: typing.Any | None = 0.01,
|
|
1196
1244
|
):
|
|
1197
1245
|
"""Simplify selected strokes
|
|
@@ -1209,6 +1257,7 @@ def stroke_smooth(
|
|
|
1209
1257
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1210
1258
|
execution_context: str | int | None = None,
|
|
1211
1259
|
undo: bool | None = None,
|
|
1260
|
+
*,
|
|
1212
1261
|
iterations: typing.Any | None = 10,
|
|
1213
1262
|
factor: typing.Any | None = 1.0,
|
|
1214
1263
|
smooth_ends: bool | typing.Any | None = False,
|
|
@@ -1244,6 +1293,7 @@ def stroke_subdivide(
|
|
|
1244
1293
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1245
1294
|
execution_context: str | int | None = None,
|
|
1246
1295
|
undo: bool | None = None,
|
|
1296
|
+
*,
|
|
1247
1297
|
number_cuts: typing.Any | None = 1,
|
|
1248
1298
|
only_selected: bool | typing.Any | None = True,
|
|
1249
1299
|
):
|
|
@@ -1264,6 +1314,7 @@ def stroke_subdivide_smooth(
|
|
|
1264
1314
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1265
1315
|
execution_context: str | int | None = None,
|
|
1266
1316
|
undo: bool | None = None,
|
|
1317
|
+
*,
|
|
1267
1318
|
GREASE_PENCIL_OT_stroke_subdivide: typing.Any | None = None,
|
|
1268
1319
|
GREASE_PENCIL_OT_stroke_smooth: typing.Any | None = None,
|
|
1269
1320
|
):
|
|
@@ -1298,6 +1349,7 @@ def weight_brush_stroke(
|
|
|
1298
1349
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1299
1350
|
execution_context: str | int | None = None,
|
|
1300
1351
|
undo: bool | None = None,
|
|
1352
|
+
*,
|
|
1301
1353
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
1302
1354
|
| None = None,
|
|
1303
1355
|
mode: str | None = "NORMAL",
|