fake-bpy-module 20241002__py3-none-any.whl → 20241004__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- _bpy_internal/extensions/stale_file_manager/__init__.pyi +6 -0
- addon_utils/__init__.pyi +1 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +79 -0
- bl_ui/properties_object/__init__.pyi +149 -0
- bl_ui/properties_paint_common/__init__.pyi +45 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +0 -1
- bl_ui/space_view3d/__init__.pyi +34 -0
- bpy/app/handlers/__init__.pyi +8 -0
- bpy/ops/grease_pencil/__init__.pyi +89 -0
- bpy/ops/node/__init__.pyi +24 -24
- bpy/ops/sequencer/__init__.pyi +0 -3
- bpy/ops/ui/__init__.pyi +12 -0
- bpy/ops/wm/__init__.pyi +13 -0
- bpy/types/__init__.pyi +680 -5
- {fake_bpy_module-20241002.dist-info → fake_bpy_module-20241004.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241002.dist-info → fake_bpy_module-20241004.dist-info}/RECORD +19 -19
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20241002.dist-info → fake_bpy_module-20241004.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241002.dist-info → fake_bpy_module-20241004.dist-info}/top_level.txt +0 -0
addon_utils/__init__.pyi
CHANGED
|
@@ -67,6 +67,36 @@ class DATA_PT_grease_pencil_animation(
|
|
|
67
67
|
:rtype: typing.Any
|
|
68
68
|
"""
|
|
69
69
|
|
|
70
|
+
class DATA_PT_grease_pencil_attributes(DataButtonsPanel, bpy.types.Panel):
|
|
71
|
+
COMPAT_ENGINES: typing.Any
|
|
72
|
+
bl_context: typing.Any
|
|
73
|
+
bl_label: typing.Any
|
|
74
|
+
bl_options: typing.Any
|
|
75
|
+
bl_region_type: typing.Any
|
|
76
|
+
bl_rna: typing.Any
|
|
77
|
+
bl_space_type: typing.Any
|
|
78
|
+
id_data: typing.Any
|
|
79
|
+
|
|
80
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
81
|
+
"""
|
|
82
|
+
|
|
83
|
+
:return: The RNA type or default when not found.
|
|
84
|
+
:rtype: bpy.types.Struct
|
|
85
|
+
"""
|
|
86
|
+
|
|
87
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
88
|
+
"""
|
|
89
|
+
|
|
90
|
+
:return: The class or default when not found.
|
|
91
|
+
:rtype: typing.Any
|
|
92
|
+
"""
|
|
93
|
+
|
|
94
|
+
def draw(self, context):
|
|
95
|
+
"""
|
|
96
|
+
|
|
97
|
+
:param context:
|
|
98
|
+
"""
|
|
99
|
+
|
|
70
100
|
class DATA_PT_grease_pencil_custom_props(
|
|
71
101
|
rna_prop_ui.PropertyPanel, DataButtonsPanel, bpy.types.Panel
|
|
72
102
|
):
|
|
@@ -448,6 +478,55 @@ class GREASE_PENCIL_MT_layer_mask_add(bpy.types.Menu):
|
|
|
448
478
|
:param context:
|
|
449
479
|
"""
|
|
450
480
|
|
|
481
|
+
class GREASE_PENCIL_UL_attributes(bpy.types.UIList):
|
|
482
|
+
bl_rna: typing.Any
|
|
483
|
+
id_data: typing.Any
|
|
484
|
+
|
|
485
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
486
|
+
"""
|
|
487
|
+
|
|
488
|
+
:return: The RNA type or default when not found.
|
|
489
|
+
:rtype: bpy.types.Struct
|
|
490
|
+
"""
|
|
491
|
+
|
|
492
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
493
|
+
"""
|
|
494
|
+
|
|
495
|
+
:return: The class or default when not found.
|
|
496
|
+
:rtype: typing.Any
|
|
497
|
+
"""
|
|
498
|
+
|
|
499
|
+
def draw_item(
|
|
500
|
+
self,
|
|
501
|
+
_context,
|
|
502
|
+
layout,
|
|
503
|
+
_data,
|
|
504
|
+
attribute,
|
|
505
|
+
_icon,
|
|
506
|
+
_active_data,
|
|
507
|
+
_active_propname,
|
|
508
|
+
_index,
|
|
509
|
+
):
|
|
510
|
+
"""
|
|
511
|
+
|
|
512
|
+
:param _context:
|
|
513
|
+
:param layout:
|
|
514
|
+
:param _data:
|
|
515
|
+
:param attribute:
|
|
516
|
+
:param _icon:
|
|
517
|
+
:param _active_data:
|
|
518
|
+
:param _active_propname:
|
|
519
|
+
:param _index:
|
|
520
|
+
"""
|
|
521
|
+
|
|
522
|
+
def filter_items(self, _context, data, property):
|
|
523
|
+
"""
|
|
524
|
+
|
|
525
|
+
:param _context:
|
|
526
|
+
:param data:
|
|
527
|
+
:param property:
|
|
528
|
+
"""
|
|
529
|
+
|
|
451
530
|
class GREASE_PENCIL_UL_masks(bpy.types.UIList):
|
|
452
531
|
bl_rna: typing.Any
|
|
453
532
|
id_data: typing.Any
|
|
@@ -31,6 +31,56 @@ class COLLECTION_MT_context_menu(bpy.types.Menu):
|
|
|
31
31
|
:param _context:
|
|
32
32
|
"""
|
|
33
33
|
|
|
34
|
+
class OBJECT_MT_light_linking_context_menu(bpy.types.Menu):
|
|
35
|
+
bl_label: typing.Any
|
|
36
|
+
bl_rna: typing.Any
|
|
37
|
+
id_data: typing.Any
|
|
38
|
+
|
|
39
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
40
|
+
"""
|
|
41
|
+
|
|
42
|
+
:return: The RNA type or default when not found.
|
|
43
|
+
:rtype: bpy.types.Struct
|
|
44
|
+
"""
|
|
45
|
+
|
|
46
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
47
|
+
"""
|
|
48
|
+
|
|
49
|
+
:return: The class or default when not found.
|
|
50
|
+
:rtype: typing.Any
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
def draw(self, _context):
|
|
54
|
+
"""
|
|
55
|
+
|
|
56
|
+
:param _context:
|
|
57
|
+
"""
|
|
58
|
+
|
|
59
|
+
class OBJECT_MT_shadow_linking_context_menu(bpy.types.Menu):
|
|
60
|
+
bl_label: typing.Any
|
|
61
|
+
bl_rna: typing.Any
|
|
62
|
+
id_data: typing.Any
|
|
63
|
+
|
|
64
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
65
|
+
"""
|
|
66
|
+
|
|
67
|
+
:return: The RNA type or default when not found.
|
|
68
|
+
:rtype: bpy.types.Struct
|
|
69
|
+
"""
|
|
70
|
+
|
|
71
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
72
|
+
"""
|
|
73
|
+
|
|
74
|
+
:return: The class or default when not found.
|
|
75
|
+
:rtype: typing.Any
|
|
76
|
+
"""
|
|
77
|
+
|
|
78
|
+
def draw(self, _context):
|
|
79
|
+
"""
|
|
80
|
+
|
|
81
|
+
:param _context:
|
|
82
|
+
"""
|
|
83
|
+
|
|
34
84
|
class OBJECT_PT_animation(
|
|
35
85
|
rna_prop_ui.PropertyPanel,
|
|
36
86
|
ObjectButtonsPanel,
|
|
@@ -291,6 +341,36 @@ class OBJECT_PT_instancing_size(ObjectButtonsPanel, bpy.types.Panel):
|
|
|
291
341
|
:param context:
|
|
292
342
|
"""
|
|
293
343
|
|
|
344
|
+
class OBJECT_PT_light_linking(ObjectButtonsPanel, bpy.types.Panel):
|
|
345
|
+
bl_context: typing.Any
|
|
346
|
+
bl_label: typing.Any
|
|
347
|
+
bl_options: typing.Any
|
|
348
|
+
bl_parent_id: typing.Any
|
|
349
|
+
bl_region_type: typing.Any
|
|
350
|
+
bl_rna: typing.Any
|
|
351
|
+
bl_space_type: typing.Any
|
|
352
|
+
id_data: typing.Any
|
|
353
|
+
|
|
354
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
355
|
+
"""
|
|
356
|
+
|
|
357
|
+
:return: The RNA type or default when not found.
|
|
358
|
+
:rtype: bpy.types.Struct
|
|
359
|
+
"""
|
|
360
|
+
|
|
361
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
362
|
+
"""
|
|
363
|
+
|
|
364
|
+
:return: The class or default when not found.
|
|
365
|
+
:rtype: typing.Any
|
|
366
|
+
"""
|
|
367
|
+
|
|
368
|
+
def draw(self, context):
|
|
369
|
+
"""
|
|
370
|
+
|
|
371
|
+
:param context:
|
|
372
|
+
"""
|
|
373
|
+
|
|
294
374
|
class OBJECT_PT_lineart(ObjectButtonsPanel, bpy.types.Panel):
|
|
295
375
|
bl_context: typing.Any
|
|
296
376
|
bl_label: typing.Any
|
|
@@ -434,6 +514,73 @@ class OBJECT_PT_relations(ObjectButtonsPanel, bpy.types.Panel):
|
|
|
434
514
|
:param context:
|
|
435
515
|
"""
|
|
436
516
|
|
|
517
|
+
class OBJECT_PT_shading(ObjectButtonsPanel, bpy.types.Panel):
|
|
518
|
+
COMPAT_ENGINES: typing.Any
|
|
519
|
+
bl_context: typing.Any
|
|
520
|
+
bl_label: typing.Any
|
|
521
|
+
bl_options: typing.Any
|
|
522
|
+
bl_region_type: typing.Any
|
|
523
|
+
bl_rna: typing.Any
|
|
524
|
+
bl_space_type: typing.Any
|
|
525
|
+
id_data: typing.Any
|
|
526
|
+
|
|
527
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
528
|
+
"""
|
|
529
|
+
|
|
530
|
+
:return: The RNA type or default when not found.
|
|
531
|
+
:rtype: bpy.types.Struct
|
|
532
|
+
"""
|
|
533
|
+
|
|
534
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
535
|
+
"""
|
|
536
|
+
|
|
537
|
+
:return: The class or default when not found.
|
|
538
|
+
:rtype: typing.Any
|
|
539
|
+
"""
|
|
540
|
+
|
|
541
|
+
def draw(self, context):
|
|
542
|
+
"""
|
|
543
|
+
|
|
544
|
+
:param context:
|
|
545
|
+
"""
|
|
546
|
+
|
|
547
|
+
@classmethod
|
|
548
|
+
def poll(cls, context):
|
|
549
|
+
"""
|
|
550
|
+
|
|
551
|
+
:param context:
|
|
552
|
+
"""
|
|
553
|
+
|
|
554
|
+
class OBJECT_PT_shadow_linking(ObjectButtonsPanel, bpy.types.Panel):
|
|
555
|
+
bl_context: typing.Any
|
|
556
|
+
bl_label: typing.Any
|
|
557
|
+
bl_options: typing.Any
|
|
558
|
+
bl_parent_id: typing.Any
|
|
559
|
+
bl_region_type: typing.Any
|
|
560
|
+
bl_rna: typing.Any
|
|
561
|
+
bl_space_type: typing.Any
|
|
562
|
+
id_data: typing.Any
|
|
563
|
+
|
|
564
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
565
|
+
"""
|
|
566
|
+
|
|
567
|
+
:return: The RNA type or default when not found.
|
|
568
|
+
:rtype: bpy.types.Struct
|
|
569
|
+
"""
|
|
570
|
+
|
|
571
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
572
|
+
"""
|
|
573
|
+
|
|
574
|
+
:return: The class or default when not found.
|
|
575
|
+
:rtype: typing.Any
|
|
576
|
+
"""
|
|
577
|
+
|
|
578
|
+
def draw(self, context):
|
|
579
|
+
"""
|
|
580
|
+
|
|
581
|
+
:param context:
|
|
582
|
+
"""
|
|
583
|
+
|
|
437
584
|
class OBJECT_PT_transform(ObjectButtonsPanel, bpy.types.Panel):
|
|
438
585
|
bl_context: typing.Any
|
|
439
586
|
bl_label: typing.Any
|
|
@@ -503,3 +650,5 @@ class ObjectButtonsPanel:
|
|
|
503
650
|
bl_context: typing.Any
|
|
504
651
|
bl_region_type: typing.Any
|
|
505
652
|
bl_space_type: typing.Any
|
|
653
|
+
|
|
654
|
+
def has_geometry_visibility(ob): ...
|
|
@@ -54,6 +54,14 @@ class BrushAssetShelf:
|
|
|
54
54
|
:param context:
|
|
55
55
|
"""
|
|
56
56
|
|
|
57
|
+
@classmethod
|
|
58
|
+
def has_tool_with_brush_type(cls, context, brush_type):
|
|
59
|
+
"""
|
|
60
|
+
|
|
61
|
+
:param context:
|
|
62
|
+
:param brush_type:
|
|
63
|
+
"""
|
|
64
|
+
|
|
57
65
|
@classmethod
|
|
58
66
|
def poll(cls, context):
|
|
59
67
|
"""
|
|
@@ -152,6 +160,41 @@ class VIEW3D_MT_tools_projectpaint_clone(bpy.types.Menu):
|
|
|
152
160
|
:param context:
|
|
153
161
|
"""
|
|
154
162
|
|
|
163
|
+
class VIEW3D_PT_brush_asset_shelf_filter(bpy.types.Panel):
|
|
164
|
+
bl_label: typing.Any
|
|
165
|
+
bl_parent_id: typing.Any
|
|
166
|
+
bl_region_type: typing.Any
|
|
167
|
+
bl_rna: typing.Any
|
|
168
|
+
bl_space_type: typing.Any
|
|
169
|
+
id_data: typing.Any
|
|
170
|
+
|
|
171
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
172
|
+
"""
|
|
173
|
+
|
|
174
|
+
:return: The RNA type or default when not found.
|
|
175
|
+
:rtype: bpy.types.Struct
|
|
176
|
+
"""
|
|
177
|
+
|
|
178
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
179
|
+
"""
|
|
180
|
+
|
|
181
|
+
:return: The class or default when not found.
|
|
182
|
+
:rtype: typing.Any
|
|
183
|
+
"""
|
|
184
|
+
|
|
185
|
+
def draw(self, context):
|
|
186
|
+
"""
|
|
187
|
+
|
|
188
|
+
:param context:
|
|
189
|
+
"""
|
|
190
|
+
|
|
191
|
+
@classmethod
|
|
192
|
+
def poll(cls, context):
|
|
193
|
+
"""
|
|
194
|
+
|
|
195
|
+
:param context:
|
|
196
|
+
"""
|
|
197
|
+
|
|
155
198
|
class BrushPanel(UnifiedPaintPanel):
|
|
156
199
|
@classmethod
|
|
157
200
|
def poll(cls, context):
|
|
@@ -286,13 +329,13 @@ class TextureMaskPanel(BrushPanel):
|
|
|
286
329
|
:param context:
|
|
287
330
|
"""
|
|
288
331
|
|
|
289
|
-
def brush_basic__draw_color_selector(context, layout, brush, gp_settings
|
|
332
|
+
def brush_basic__draw_color_selector(context, layout, brush, gp_settings): ...
|
|
290
333
|
def brush_basic_gpencil_paint_settings(layout, context, brush, *, compact=False): ...
|
|
291
334
|
def brush_basic_gpencil_sculpt_settings(layout, _context, brush, *, compact=False): ...
|
|
292
335
|
def brush_basic_gpencil_vertex_settings(layout, _context, brush, *, compact=False): ...
|
|
293
336
|
def brush_basic_gpencil_weight_settings(layout, _context, brush, *, compact=False): ...
|
|
294
337
|
def brush_basic_grease_pencil_paint_settings(
|
|
295
|
-
layout, context, brush, *, compact=False
|
|
338
|
+
layout, context, brush, props, *, compact=False
|
|
296
339
|
): ...
|
|
297
340
|
def brush_basic_grease_pencil_vertex_settings(
|
|
298
341
|
layout, context, brush, *, compact=False
|
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -2884,6 +2884,12 @@ class VIEW3D_MT_make_links(bpy.types.Menu):
|
|
|
2884
2884
|
:rtype: typing.Any
|
|
2885
2885
|
"""
|
|
2886
2886
|
|
|
2887
|
+
def draw(self, _context):
|
|
2888
|
+
"""
|
|
2889
|
+
|
|
2890
|
+
:param _context:
|
|
2891
|
+
"""
|
|
2892
|
+
|
|
2887
2893
|
class VIEW3D_MT_make_single_user(bpy.types.Menu):
|
|
2888
2894
|
bl_label: typing.Any
|
|
2889
2895
|
bl_rna: typing.Any
|
|
@@ -6131,6 +6137,34 @@ class VIEW3D_PT_greasepencil_vertex_paint_context_menu(bpy.types.Panel):
|
|
|
6131
6137
|
:param context:
|
|
6132
6138
|
"""
|
|
6133
6139
|
|
|
6140
|
+
class VIEW3D_PT_greasepencil_weight_context_menu(bpy.types.Panel):
|
|
6141
|
+
bl_label: typing.Any
|
|
6142
|
+
bl_region_type: typing.Any
|
|
6143
|
+
bl_rna: typing.Any
|
|
6144
|
+
bl_space_type: typing.Any
|
|
6145
|
+
bl_ui_units_x: typing.Any
|
|
6146
|
+
id_data: typing.Any
|
|
6147
|
+
|
|
6148
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
6149
|
+
"""
|
|
6150
|
+
|
|
6151
|
+
:return: The RNA type or default when not found.
|
|
6152
|
+
:rtype: bpy.types.Struct
|
|
6153
|
+
"""
|
|
6154
|
+
|
|
6155
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
6156
|
+
"""
|
|
6157
|
+
|
|
6158
|
+
:return: The class or default when not found.
|
|
6159
|
+
:rtype: typing.Any
|
|
6160
|
+
"""
|
|
6161
|
+
|
|
6162
|
+
def draw(self, context):
|
|
6163
|
+
"""
|
|
6164
|
+
|
|
6165
|
+
:param context:
|
|
6166
|
+
"""
|
|
6167
|
+
|
|
6134
6168
|
class VIEW3D_PT_object_type_visibility(bpy.types.Panel):
|
|
6135
6169
|
bl_label: typing.Any
|
|
6136
6170
|
bl_region_type: typing.Any
|
bpy/app/handlers/__init__.pyi
CHANGED
|
@@ -60,6 +60,14 @@ annotation_pre: list[collections.abc.Callable[[bpy.types.Scene], None]]
|
|
|
60
60
|
""" on drawing an annotation (before)
|
|
61
61
|
"""
|
|
62
62
|
|
|
63
|
+
blend_import_post: list[collections.abc.Callable[[bpy.types.Scene], None]]
|
|
64
|
+
""" on linking or appending data (after), get a single BlendImportContext parameter
|
|
65
|
+
"""
|
|
66
|
+
|
|
67
|
+
blend_import_pre: list[collections.abc.Callable[[bpy.types.Scene], None]]
|
|
68
|
+
""" on linking or appending data (before), get a single BlendImportContext parameter
|
|
69
|
+
"""
|
|
70
|
+
|
|
63
71
|
composite_cancel: list[collections.abc.Callable[[bpy.types.Scene], None]]
|
|
64
72
|
""" on a compositing background job (cancel)
|
|
65
73
|
"""
|
|
@@ -736,6 +736,31 @@ def layer_mask_reorder(
|
|
|
736
736
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
737
737
|
"""
|
|
738
738
|
|
|
739
|
+
def layer_merge(
|
|
740
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
741
|
+
execution_context: int | str | None = None,
|
|
742
|
+
undo: bool | None = None,
|
|
743
|
+
*,
|
|
744
|
+
mode: typing.Literal["ACTIVE", "GROUP", "ALL"] | None = "ACTIVE",
|
|
745
|
+
):
|
|
746
|
+
"""Combine layers based on the mode into one layer
|
|
747
|
+
|
|
748
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
749
|
+
:type execution_context: int | str | None
|
|
750
|
+
:type undo: bool | None
|
|
751
|
+
:param mode: Mode
|
|
752
|
+
|
|
753
|
+
ACTIVE
|
|
754
|
+
Active -- Combine the active layer with the layer just below (if it exists).
|
|
755
|
+
|
|
756
|
+
GROUP
|
|
757
|
+
Group -- Combine layers in the active group into a single layer.
|
|
758
|
+
|
|
759
|
+
ALL
|
|
760
|
+
All -- Combine all layers into a single layer.
|
|
761
|
+
:type mode: typing.Literal['ACTIVE','GROUP','ALL'] | None
|
|
762
|
+
"""
|
|
763
|
+
|
|
739
764
|
def layer_move(
|
|
740
765
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
741
766
|
execution_context: int | str | None = None,
|
|
@@ -922,6 +947,22 @@ def move_to_layer(
|
|
|
922
947
|
:type add_new_layer: bool | None
|
|
923
948
|
"""
|
|
924
949
|
|
|
950
|
+
def paintmode_toggle(
|
|
951
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
952
|
+
execution_context: int | str | None = None,
|
|
953
|
+
undo: bool | None = None,
|
|
954
|
+
*,
|
|
955
|
+
back: bool | None = False,
|
|
956
|
+
):
|
|
957
|
+
"""Enter/Exit paint mode for Grease Pencil strokes
|
|
958
|
+
|
|
959
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
960
|
+
:type execution_context: int | str | None
|
|
961
|
+
:type undo: bool | None
|
|
962
|
+
:param back: Return to Previous Mode, Return to previous mode
|
|
963
|
+
:type back: bool | None
|
|
964
|
+
"""
|
|
965
|
+
|
|
925
966
|
def paste(
|
|
926
967
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
927
968
|
execution_context: int | str | None = None,
|
|
@@ -1162,6 +1203,22 @@ def sculpt_paint(
|
|
|
1162
1203
|
:type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
|
|
1163
1204
|
"""
|
|
1164
1205
|
|
|
1206
|
+
def sculptmode_toggle(
|
|
1207
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1208
|
+
execution_context: int | str | None = None,
|
|
1209
|
+
undo: bool | None = None,
|
|
1210
|
+
*,
|
|
1211
|
+
back: bool | None = False,
|
|
1212
|
+
):
|
|
1213
|
+
"""Enter/Exit sculpt mode for Grease Pencil strokes
|
|
1214
|
+
|
|
1215
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1216
|
+
:type execution_context: int | str | None
|
|
1217
|
+
:type undo: bool | None
|
|
1218
|
+
:param back: Return to Previous Mode, Return to previous mode
|
|
1219
|
+
:type back: bool | None
|
|
1220
|
+
"""
|
|
1221
|
+
|
|
1165
1222
|
def select_all(
|
|
1166
1223
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1167
1224
|
execution_context: int | str | None = None,
|
|
@@ -1955,6 +2012,22 @@ def vertex_group_smooth(
|
|
|
1955
2012
|
:type repeat: int | None
|
|
1956
2013
|
"""
|
|
1957
2014
|
|
|
2015
|
+
def vertexmode_toggle(
|
|
2016
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2017
|
+
execution_context: int | str | None = None,
|
|
2018
|
+
undo: bool | None = None,
|
|
2019
|
+
*,
|
|
2020
|
+
back: bool | None = False,
|
|
2021
|
+
):
|
|
2022
|
+
"""Enter/Exit vertex paint mode for Grease Pencil strokes
|
|
2023
|
+
|
|
2024
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2025
|
+
:type execution_context: int | str | None
|
|
2026
|
+
:type undo: bool | None
|
|
2027
|
+
:param back: Return to Previous Mode, Return to previous mode
|
|
2028
|
+
:type back: bool | None
|
|
2029
|
+
"""
|
|
2030
|
+
|
|
1958
2031
|
def weight_brush_stroke(
|
|
1959
2032
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1960
2033
|
execution_context: int | str | None = None,
|
|
@@ -2022,3 +2095,19 @@ def weight_toggle_direction(
|
|
|
2022
2095
|
:type execution_context: int | str | None
|
|
2023
2096
|
:type undo: bool | None
|
|
2024
2097
|
"""
|
|
2098
|
+
|
|
2099
|
+
def weightmode_toggle(
|
|
2100
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2101
|
+
execution_context: int | str | None = None,
|
|
2102
|
+
undo: bool | None = None,
|
|
2103
|
+
*,
|
|
2104
|
+
back: bool | None = False,
|
|
2105
|
+
):
|
|
2106
|
+
"""Enter/Exit weight paint mode for Grease Pencil strokes
|
|
2107
|
+
|
|
2108
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2109
|
+
:type execution_context: int | str | None
|
|
2110
|
+
:type undo: bool | None
|
|
2111
|
+
:param back: Return to Previous Mode, Return to previous mode
|
|
2112
|
+
:type back: bool | None
|
|
2113
|
+
"""
|