fake-bpy-module 20250612__py3-none-any.whl → 20260118__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.
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_calltip/__init__.pyi +0 -13
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_import/__init__.pyi +0 -5
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_namespace/__init__.pyi +0 -11
- {bl_console_utils → _bl_console_utils}/autocomplete/intellisense/__init__.pyi +0 -10
- {bl_i18n_utils → _bl_i18n_utils}/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/bl_extract_messages/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/settings/__init__.pyi +3 -1
- {bl_i18n_utils → _bl_i18n_utils}/utils/__init__.pyi +4 -4
- _bl_i18n_utils/utils_spell_check/__init__.pyi +22 -0
- {bl_ui_utils → _bl_ui_utils}/__init__.pyi +1 -0
- _blendfile_header/__init__.pyi +48 -0
- _bpy_internal/__init__.pyi +4 -1
- _bpy_internal/assets/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/blender_asset_library_openapi/__init__.pyi +13 -0
- _bpy_internal/disk_file_hash_service/__init__.pyi +19 -0
- _bpy_internal/disk_file_hash_service/backend_sqlite/__init__.pyi +48 -0
- _bpy_internal/disk_file_hash_service/hash_service/__init__.pyi +64 -0
- _bpy_internal/disk_file_hash_service/types/__init__.pyi +53 -0
- _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
- _bpy_internal/filesystem/__init__.pyi +5 -0
- _bpy_internal/filesystem/locking/__init__.pyi +28 -0
- _bpy_internal/grease_pencil/stroke/__init__.pyi +2 -2
- _bpy_internal/platform/__init__.pyi +5 -0
- _bpy_types/__init__.pyi +1592 -0
- {keyingsets_utils → _keyingsets_utils}/__init__.pyi +2 -0
- {rna_info → _rna_info}/__init__.pyi +4 -2
- addon_utils/__init__.pyi +0 -13
- aud/__init__.pyi +122 -145
- bl_app_templates_system/Storyboarding/__init__.pyi +11 -0
- bl_app_templates_system/__init__.pyi +5 -0
- bl_app_templates_system/py.typed +0 -0
- bl_math/__init__.pyi +3 -13
- bl_operators/__init__.pyi +1 -0
- bl_operators/add_mesh_torus/__init__.pyi +2 -3
- bl_operators/anim/__init__.pyi +62 -38
- bl_operators/assets/__init__.pyi +4 -9
- bl_operators/bone_selection_sets/__init__.pyi +15 -42
- bl_operators/clip/__init__.pyi +12 -31
- bl_operators/connect_to_output/__init__.pyi +2 -3
- bl_operators/console/__init__.pyi +6 -15
- bl_operators/constraint/__init__.pyi +6 -13
- bl_operators/copy_global_transform/__init__.pyi +261 -0
- bl_operators/file/__init__.pyi +6 -11
- bl_operators/freestyle/__init__.pyi +5 -12
- bl_operators/geometry_nodes/__init__.pyi +5 -12
- bl_operators/grease_pencil/__init__.pyi +2 -3
- bl_operators/image/__init__.pyi +6 -15
- bl_operators/image_as_planes/__init__.pyi +3 -10
- bl_operators/mesh/__init__.pyi +3 -49
- bl_operators/node/__init__.pyi +294 -73
- bl_operators/object/__init__.pyi +17 -53
- bl_operators/object_align/__init__.pyi +2 -3
- bl_operators/object_quick_effects/__init__.pyi +5 -12
- bl_operators/object_randomize_transform/__init__.pyi +2 -3
- bl_operators/presets/__init__.pyi +27 -76
- bl_operators/rigidbody/__init__.pyi +4 -9
- bl_operators/screen_play_rendered_anim/__init__.pyi +2 -3
- bl_operators/sequencer/__init__.pyi +12 -27
- bl_operators/spreadsheet/__init__.pyi +2 -3
- bl_operators/userpref/__init__.pyi +26 -75
- bl_operators/uvcalc_follow_active/__init__.pyi +3 -4
- bl_operators/uvcalc_lightmap/__init__.pyi +3 -4
- bl_operators/uvcalc_transform/__init__.pyi +26 -16
- bl_operators/vertexpaint_dirt/__init__.pyi +2 -3
- bl_operators/view3d/__init__.pyi +9 -24
- bl_operators/wm/__init__.pyi +48 -139
- bl_operators/world/__init__.pyi +3 -4
- bl_ui/__init__.pyi +7 -7
- bl_ui/anim/__init__.pyi +2 -3
- bl_ui/asset_shelf/__init__.pyi +2 -3
- bl_ui/generic_ui_list/__init__.pyi +4 -19
- bl_ui/node_add_menu/__init__.pyi +263 -7
- bl_ui/node_add_menu_compositor/__init__.pyi +96 -79
- bl_ui/node_add_menu_geometry/__init__.pyi +309 -270
- bl_ui/node_add_menu_shader/__init__.pyi +49 -49
- bl_ui/node_add_menu_texture/__init__.pyi +17 -62
- bl_ui/properties_collection/__init__.pyi +9 -22
- bl_ui/properties_constraint/__init__.pyi +129 -282
- bl_ui/properties_data_armature/__init__.pyi +22 -57
- bl_ui/properties_data_bone/__init__.pyi +12 -31
- bl_ui/properties_data_camera/__init__.pyi +18 -47
- bl_ui/properties_data_curve/__init__.pyi +18 -47
- bl_ui/properties_data_curves/__init__.pyi +11 -26
- bl_ui/properties_data_empty/__init__.pyi +3 -6
- bl_ui/properties_data_grease_pencil/__init__.pyi +23 -62
- bl_ui/properties_data_lattice/__init__.pyi +7 -14
- bl_ui/properties_data_light/__init__.pyi +13 -32
- bl_ui/properties_data_lightprobe/__init__.pyi +16 -43
- bl_ui/properties_data_mesh/__init__.pyi +47 -62
- bl_ui/properties_data_metaball/__init__.pyi +9 -20
- bl_ui/properties_data_modifier/__init__.pyi +22 -28
- bl_ui/properties_data_pointcloud/__init__.pyi +8 -19
- bl_ui/properties_data_shaderfx/__init__.pyi +2 -3
- bl_ui/properties_data_speaker/__init__.pyi +9 -20
- bl_ui/properties_data_volume/__init__.pyi +12 -29
- bl_ui/properties_freestyle/__init__.pyi +27 -76
- bl_ui/properties_grease_pencil_common/__init__.pyi +10 -168
- bl_ui/properties_mask_common/__init__.pyi +8 -21
- bl_ui/properties_material/__init__.pyi +26 -86
- bl_ui/properties_material_gpencil/__init__.pyi +36 -57
- bl_ui/properties_object/__init__.pyi +59 -65
- bl_ui/properties_output/__init__.pyi +21 -60
- bl_ui/properties_paint_common/__init__.pyi +30 -22
- bl_ui/properties_particle/__init__.pyi +58 -161
- bl_ui/properties_physics_cloth/__init__.pyi +15 -42
- bl_ui/properties_physics_common/__init__.pyi +2 -3
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +23 -66
- bl_ui/properties_physics_field/__init__.pyi +11 -30
- bl_ui/properties_physics_fluid/__init__.pyi +29 -84
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +2 -3
- bl_ui/properties_physics_rigidbody/__init__.pyi +9 -24
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +14 -39
- bl_ui/properties_physics_softbody/__init__.pyi +16 -45
- bl_ui/properties_render/__init__.pyi +139 -197
- bl_ui/properties_scene/__init__.pyi +46 -50
- bl_ui/properties_strip/__init__.pyi +744 -0
- bl_ui/properties_strip_modifier/__init__.pyi +45 -0
- bl_ui/properties_texture/__init__.pyi +30 -83
- bl_ui/properties_view_layer/__init__.pyi +84 -39
- bl_ui/properties_workspace/__init__.pyi +6 -13
- bl_ui/properties_world/__init__.pyi +14 -35
- bl_ui/space_clip/__init__.pyi +150 -231
- bl_ui/space_console/__init__.pyi +7 -18
- bl_ui/space_dopesheet/__init__.pyi +143 -100
- bl_ui/space_filebrowser/__init__.pyi +33 -90
- bl_ui/space_graph/__init__.pyi +48 -85
- bl_ui/space_image/__init__.pyi +111 -229
- bl_ui/space_info/__init__.pyi +7 -18
- bl_ui/space_nla/__init__.pyi +44 -73
- bl_ui/space_node/__init__.pyi +161 -123
- bl_ui/space_outliner/__init__.pyi +16 -45
- bl_ui/space_properties/__init__.pyi +34 -10
- bl_ui/space_sequencer/__init__.pyi +164 -901
- bl_ui/space_spreadsheet/__init__.pyi +4 -9
- bl_ui/space_statusbar/__init__.pyi +2 -3
- bl_ui/space_text/__init__.pyi +17 -48
- bl_ui/space_time/__init__.pyi +25 -71
- bl_ui/space_toolsystem_common/__init__.pyi +2 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +30 -7
- bl_ui/space_topbar/__init__.pyi +35 -79
- bl_ui/space_userpref/__init__.pyi +185 -321
- bl_ui/space_view3d/__init__.pyi +337 -817
- bl_ui/space_view3d_sidebar/__init__.pyi +127 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +110 -880
- bl_ui/utils/__init__.pyi +0 -17
- blend_render_info/__init__.pyi +1 -0
- blf/__init__.pyi +8 -54
- bmesh/__init__.pyi +2 -9
- bmesh/geometry/__init__.pyi +1 -4
- bmesh/ops/__init__.pyi +125 -508
- bmesh/types/__init__.pyi +318 -664
- bmesh/utils/__init__.pyi +17 -43
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +93 -88
- bpy/app/handlers/__init__.pyi +19 -19
- bpy/app/icons/__init__.pyi +0 -6
- bpy/app/timers/__init__.pyi +2 -7
- bpy/app/translations/__init__.pyi +8 -23
- bpy/msgbus/__init__.pyi +4 -6
- bpy/ops/action/__init__.pyi +68 -199
- bpy/ops/anim/__init__.pyi +142 -299
- bpy/ops/armature/__init__.pyi +78 -209
- bpy/ops/asset/__init__.pyi +46 -108
- bpy/ops/boid/__init__.pyi +28 -45
- bpy/ops/brush/__init__.pyi +13 -108
- bpy/ops/buttons/__init__.pyi +16 -75
- bpy/ops/cachefile/__init__.pyi +8 -65
- bpy/ops/camera/__init__.pyi +0 -11
- bpy/ops/clip/__init__.pyi +173 -471
- bpy/ops/cloth/__init__.pyi +0 -5
- bpy/ops/collection/__init__.pyi +23 -36
- bpy/ops/console/__init__.pyi +40 -98
- bpy/ops/constraint/__init__.pyi +14 -85
- bpy/ops/curve/__init__.pyi +94 -277
- bpy/ops/curves/__init__.pyi +119 -166
- bpy/ops/cycles/__init__.pyi +4 -15
- bpy/ops/dpaint/__init__.pyi +14 -24
- bpy/ops/ed/__init__.pyi +44 -92
- bpy/ops/export_anim/__init__.pyi +2 -10
- bpy/ops/export_scene/__init__.pyi +16 -170
- bpy/ops/extensions/__init__.pyi +60 -165
- bpy/ops/file/__init__.pyi +110 -246
- bpy/ops/fluid/__init__.pyi +52 -83
- bpy/ops/font/__init__.pyi +40 -144
- bpy/ops/geometry/__init__.pyi +12 -127
- bpy/ops/gizmogroup/__init__.pyi +4 -13
- bpy/ops/gpencil/__init__.pyi +22 -54
- bpy/ops/graph/__init__.pyi +92 -343
- bpy/ops/grease_pencil/__init__.pyi +218 -550
- bpy/ops/image/__init__.pyi +85 -435
- bpy/ops/import_anim/__init__.pyi +3 -17
- bpy/ops/import_curve/__init__.pyi +2 -5
- bpy/ops/import_scene/__init__.pyi +15 -49
- bpy/ops/info/__init__.pyi +16 -39
- bpy/ops/lattice/__init__.pyi +12 -36
- bpy/ops/marker/__init__.pyi +12 -51
- bpy/ops/mask/__init__.pyi +68 -193
- bpy/ops/material/__init__.pyi +18 -18
- bpy/ops/mball/__init__.pyi +4 -31
- bpy/ops/mesh/__init__.pyi +140 -967
- bpy/ops/nla/__init__.pyi +87 -206
- bpy/ops/node/__init__.pyi +714 -744
- bpy/ops/object/__init__.pyi +461 -1341
- bpy/ops/outliner/__init__.pyi +192 -376
- bpy/ops/paint/__init__.pyi +94 -319
- bpy/ops/paintcurve/__init__.pyi +20 -40
- bpy/ops/palette/__init__.pyi +14 -30
- bpy/ops/particle/__init__.pyi +86 -184
- bpy/ops/pointcloud/__init__.pyi +12 -38
- bpy/ops/pose/__init__.pyi +108 -261
- bpy/ops/poselib/__init__.pyi +32 -67
- bpy/ops/preferences/__init__.pyi +37 -187
- bpy/ops/ptcache/__init__.pyi +22 -36
- bpy/ops/render/__init__.pyi +20 -72
- bpy/ops/rigidbody/__init__.pyi +25 -63
- bpy/ops/scene/__init__.pyi +122 -181
- bpy/ops/screen/__init__.pyi +93 -221
- bpy/ops/script/__init__.pyi +4 -13
- bpy/ops/sculpt/__init__.pyi +69 -324
- bpy/ops/sculpt_curves/__init__.pyi +10 -23
- bpy/ops/sequencer/__init__.pyi +410 -730
- bpy/ops/sound/__init__.pyi +16 -114
- bpy/ops/spreadsheet/__init__.pyi +20 -37
- bpy/ops/surface/__init__.pyi +0 -48
- bpy/ops/text/__init__.pyi +112 -250
- bpy/ops/text_editor/__init__.pyi +0 -5
- bpy/ops/texture/__init__.pyi +14 -21
- bpy/ops/transform/__init__.pyi +18 -386
- bpy/ops/ui/__init__.pyi +117 -188
- bpy/ops/uilist/__init__.pyi +0 -13
- bpy/ops/uv/__init__.pyi +238 -305
- bpy/ops/view2d/__init__.pyi +16 -76
- bpy/ops/view3d/__init__.pyi +153 -377
- bpy/ops/wm/__init__.pyi +277 -1397
- bpy/ops/workspace/__init__.pyi +32 -39
- bpy/ops/world/__init__.pyi +10 -12
- bpy/path/__init__.pyi +1 -35
- bpy/props/__init__.pyi +347 -218
- bpy/stub_internal/rna_enums/__init__.pyi +142 -108
- bpy/types/__init__.pyi +77367 -101305
- bpy/utils/__init__.pyi +11 -82
- bpy/utils/previews/__init__.pyi +2 -11
- bpy/utils/units/__init__.pyi +5 -15
- bpy_extras/anim_utils/__init__.pyi +24 -16
- bpy_extras/bmesh_utils/__init__.pyi +0 -1
- bpy_extras/id_map_utils/__init__.pyi +14 -6
- bpy_extras/image_utils/__init__.pyi +2 -11
- bpy_extras/io_utils/__init__.pyi +8 -27
- bpy_extras/keyconfig_utils/__init__.pyi +1 -1
- bpy_extras/mesh_utils/__init__.pyi +0 -12
- bpy_extras/node_shader_utils/__init__.pyi +1 -9
- bpy_extras/object_utils/__init__.pyi +1 -15
- bpy_extras/view3d_utils/__init__.pyi +0 -18
- bpy_extras/wm_utils/progress_report/__init__.pyi +1 -1
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/METADATA +4 -1
- fake_bpy_module-20260118.dist-info/RECORD +385 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/top_level.txt +17 -16
- freestyle/chainingiterators/__init__.pyi +5 -27
- freestyle/functions/__init__.pyi +0 -139
- freestyle/predicates/__init__.pyi +2 -53
- freestyle/shaders/__init__.pyi +15 -81
- freestyle/types/__init__.pyi +159 -799
- freestyle/utils/ContextFunctions/__init__.pyi +0 -23
- freestyle/utils/__init__.pyi +5 -11
- gpu/capabilities/__init__.pyi +0 -21
- gpu/matrix/__init__.pyi +1 -10
- gpu/platform/__init__.pyi +2 -7
- gpu/shader/__init__.pyi +26 -9
- gpu/state/__init__.pyi +60 -39
- gpu/texture/__init__.pyi +3 -5
- gpu/types/__init__.pyi +116 -184
- gpu_extras/batch/__init__.pyi +1 -5
- gpu_extras/presets/__init__.pyi +6 -8
- idprop/types/__init__.pyi +6 -6
- imbuf/__init__.pyi +3 -10
- imbuf/types/__init__.pyi +7 -21
- keyingsets_builtins/__init__.pyi +24 -67
- mathutils/__init__.pyi +241 -2207
- mathutils/bvhtree/__init__.pyi +18 -26
- mathutils/geometry/__init__.pyi +82 -132
- mathutils/interpolate/__init__.pyi +6 -5
- mathutils/kdtree/__init__.pyi +1 -11
- mathutils/noise/__init__.pyi +61 -106
- rna_prop_ui/__init__.pyi +1 -1
- bgl/__init__.pyi +0 -4256
- bpy_types/__init__.pyi +0 -30
- fake_bpy_module-20250612.dist-info/RECORD +0 -367
- {animsys_refactor → _animsys_refactor}/__init__.pyi +0 -0
- {animsys_refactor → _animsys_refactor}/py.typed +0 -0
- {bl_console_utils → _bl_console_utils}/__init__.pyi +0 -0
- {bl_console_utils → _bl_console_utils}/autocomplete/__init__.pyi +0 -0
- {bgl → _bl_console_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/merge_po/__init__.pyi +0 -0
- {bl_console_utils → _bl_i18n_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_cli/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_languages_menu/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_rtl/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/bl_previews_render/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_previews_utils}/py.typed +0 -0
- {bl_rna_utils → _bl_rna_utils}/__init__.pyi +0 -0
- {bl_rna_utils → _bl_rna_utils}/data_path/__init__.pyi +0 -0
- {bl_previews_utils → _bl_rna_utils}/py.typed +0 -0
- {bl_text_utils → _bl_text_utils}/__init__.pyi +0 -0
- {bl_text_utils → _bl_text_utils}/external_editor/__init__.pyi +0 -0
- {bl_rna_utils → _bl_text_utils}/py.typed +0 -0
- {bl_ui_utils → _bl_ui_utils}/layout/__init__.pyi +0 -0
- {bl_text_utils → _bl_ui_utils}/py.typed +0 -0
- {bl_ui_utils → _blendfile_header}/py.typed +0 -0
- /_bpy_internal/{freedesktop → platform/freedesktop}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/py.typed +0 -0
- {bpy_types → _bpy_types}/py.typed +0 -0
- {console_python → _console_python}/__init__.pyi +0 -0
- {console_python → _console_python}/py.typed +0 -0
- {console_shell → _console_shell}/__init__.pyi +0 -0
- {console_shell → _console_shell}/py.typed +0 -0
- {graphviz_export → _graphviz_export}/__init__.pyi +0 -0
- {graphviz_export → _graphviz_export}/py.typed +0 -0
- {keyingsets_utils → _keyingsets_utils}/py.typed +0 -0
- {rna_info → _rna_info}/py.typed +0 -0
- {rna_xml → _rna_xml}/__init__.pyi +0 -0
- {rna_xml → _rna_xml}/py.typed +0 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/WHEEL +0 -0
bpy/ops/paint/__init__.pyi
CHANGED
|
@@ -7,13 +7,11 @@ import bpy.types
|
|
|
7
7
|
import mathutils
|
|
8
8
|
|
|
9
9
|
def add_simple_uvs(
|
|
10
|
-
execution_context: int | str | None = None,
|
|
10
|
+
execution_context: int | str | None = None,
|
|
11
|
+
undo: bool | None = None,
|
|
12
|
+
/,
|
|
11
13
|
) -> None:
|
|
12
|
-
"""Add cube map UVs on mesh
|
|
13
|
-
|
|
14
|
-
:type execution_context: int | str | None
|
|
15
|
-
:type undo: bool | None
|
|
16
|
-
"""
|
|
14
|
+
"""Add cube map UVs on mesh"""
|
|
17
15
|
|
|
18
16
|
def add_texture_paint_slot(
|
|
19
17
|
execution_context: int | str | None = None,
|
|
@@ -45,40 +43,25 @@ def add_texture_paint_slot(
|
|
|
45
43
|
) -> None:
|
|
46
44
|
"""Add a paint slot
|
|
47
45
|
|
|
48
|
-
:type execution_context: int | str | None
|
|
49
|
-
:type undo: bool | None
|
|
50
46
|
:param type: Material Layer Type, Material layer type of new paint slot
|
|
51
|
-
:type type: typing.Literal['BASE_COLOR','SPECULAR','ROUGHNESS','METALLIC','NORMAL','BUMP','DISPLACEMENT'] | None
|
|
52
47
|
:param slot_type: Slot Type, Type of new paint slot
|
|
53
|
-
:type slot_type: typing.Literal['IMAGE','COLOR_ATTRIBUTE'] | None
|
|
54
48
|
:param name: Name, Name for new paint slot source
|
|
55
|
-
:type name: str
|
|
56
49
|
:param color: Color, Default fill color
|
|
57
|
-
:type color: collections.abc.Iterable[float] | None
|
|
58
50
|
:param width: Width, Image width
|
|
59
|
-
:type width: int | None
|
|
60
51
|
:param height: Height, Image height
|
|
61
|
-
:type height: int | None
|
|
62
52
|
:param alpha: Alpha, Create an image with an alpha channel
|
|
63
|
-
:type alpha: bool | None
|
|
64
53
|
:param generated_type: Generated Type, Fill the image with a grid for UV map testing
|
|
65
|
-
:type generated_type: bpy.stub_internal.rna_enums.ImageGeneratedTypeItems | None
|
|
66
54
|
:param float: 32-bit Float, Create image with 32-bit floating-point bit depth
|
|
67
|
-
:type float: bool | None
|
|
68
55
|
:param domain: Domain, Type of element that attribute is stored on
|
|
69
|
-
:type domain: bpy.stub_internal.rna_enums.ColorAttributeDomainItems | None
|
|
70
56
|
:param data_type: Data Type, Type of data stored in attribute
|
|
71
|
-
:type data_type: bpy.stub_internal.rna_enums.ColorAttributeTypeItems | None
|
|
72
57
|
"""
|
|
73
58
|
|
|
74
59
|
def brush_colors_flip(
|
|
75
|
-
execution_context: int | str | None = None,
|
|
60
|
+
execution_context: int | str | None = None,
|
|
61
|
+
undo: bool | None = None,
|
|
62
|
+
/,
|
|
76
63
|
) -> None:
|
|
77
|
-
"""Swap primary and secondary brush colors
|
|
78
|
-
|
|
79
|
-
:type execution_context: int | str | None
|
|
80
|
-
:type undo: bool | None
|
|
81
|
-
"""
|
|
64
|
+
"""Swap primary and secondary brush colors"""
|
|
82
65
|
|
|
83
66
|
def face_select_all(
|
|
84
67
|
execution_context: int | str | None = None,
|
|
@@ -89,8 +72,6 @@ def face_select_all(
|
|
|
89
72
|
) -> None:
|
|
90
73
|
"""Change selection for all faces
|
|
91
74
|
|
|
92
|
-
:type execution_context: int | str | None
|
|
93
|
-
:type undo: bool | None
|
|
94
75
|
:param action: Action, Selection action to execute
|
|
95
76
|
|
|
96
77
|
TOGGLE
|
|
@@ -104,7 +85,6 @@ def face_select_all(
|
|
|
104
85
|
|
|
105
86
|
INVERT
|
|
106
87
|
Invert -- Invert selection of all elements.
|
|
107
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
108
88
|
"""
|
|
109
89
|
|
|
110
90
|
def face_select_hide(
|
|
@@ -116,10 +96,7 @@ def face_select_hide(
|
|
|
116
96
|
) -> None:
|
|
117
97
|
"""Hide selected faces
|
|
118
98
|
|
|
119
|
-
:type execution_context: int | str | None
|
|
120
|
-
:type undo: bool | None
|
|
121
99
|
:param unselected: Unselected, Hide unselected rather than selected objects
|
|
122
|
-
:type unselected: bool | None
|
|
123
100
|
"""
|
|
124
101
|
|
|
125
102
|
def face_select_less(
|
|
@@ -131,20 +108,15 @@ def face_select_less(
|
|
|
131
108
|
) -> None:
|
|
132
109
|
"""Deselect Faces connected to existing selection
|
|
133
110
|
|
|
134
|
-
:type execution_context: int | str | None
|
|
135
|
-
:type undo: bool | None
|
|
136
111
|
:param face_step: Face Step, Also deselect faces that only touch on a corner
|
|
137
|
-
:type face_step: bool | None
|
|
138
112
|
"""
|
|
139
113
|
|
|
140
114
|
def face_select_linked(
|
|
141
|
-
execution_context: int | str | None = None,
|
|
115
|
+
execution_context: int | str | None = None,
|
|
116
|
+
undo: bool | None = None,
|
|
117
|
+
/,
|
|
142
118
|
) -> None:
|
|
143
|
-
"""Select linked faces
|
|
144
|
-
|
|
145
|
-
:type execution_context: int | str | None
|
|
146
|
-
:type undo: bool | None
|
|
147
|
-
"""
|
|
119
|
+
"""Select linked faces"""
|
|
148
120
|
|
|
149
121
|
def face_select_linked_pick(
|
|
150
122
|
execution_context: int | str | None = None,
|
|
@@ -155,10 +127,7 @@ def face_select_linked_pick(
|
|
|
155
127
|
) -> None:
|
|
156
128
|
"""Select linked faces under the cursor
|
|
157
129
|
|
|
158
|
-
:type execution_context: int | str | None
|
|
159
|
-
:type undo: bool | None
|
|
160
130
|
:param deselect: Deselect, Deselect rather than select items
|
|
161
|
-
:type deselect: bool | None
|
|
162
131
|
"""
|
|
163
132
|
|
|
164
133
|
def face_select_loop(
|
|
@@ -171,12 +140,8 @@ def face_select_loop(
|
|
|
171
140
|
) -> None:
|
|
172
141
|
"""Select face loop under the cursor
|
|
173
142
|
|
|
174
|
-
:type execution_context: int | str | None
|
|
175
|
-
:type undo: bool | None
|
|
176
143
|
:param select: Select, If false, faces will be deselected
|
|
177
|
-
:type select: bool | None
|
|
178
144
|
:param extend: Extend, Extend the selection
|
|
179
|
-
:type extend: bool | None
|
|
180
145
|
"""
|
|
181
146
|
|
|
182
147
|
def face_select_more(
|
|
@@ -188,10 +153,7 @@ def face_select_more(
|
|
|
188
153
|
) -> None:
|
|
189
154
|
"""Select Faces connected to existing selection
|
|
190
155
|
|
|
191
|
-
:type execution_context: int | str | None
|
|
192
|
-
:type undo: bool | None
|
|
193
156
|
:param face_step: Face Step, Also select faces that only touch on a corner
|
|
194
|
-
:type face_step: bool | None
|
|
195
157
|
"""
|
|
196
158
|
|
|
197
159
|
def face_vert_reveal(
|
|
@@ -203,10 +165,7 @@ def face_vert_reveal(
|
|
|
203
165
|
) -> None:
|
|
204
166
|
"""Reveal hidden faces and vertices
|
|
205
167
|
|
|
206
|
-
:type execution_context: int | str | None
|
|
207
|
-
:type undo: bool | None
|
|
208
168
|
:param select: Select, Specifies whether the newly revealed geometry should be selected
|
|
209
|
-
:type select: bool | None
|
|
210
169
|
"""
|
|
211
170
|
|
|
212
171
|
def grab_clone(
|
|
@@ -218,10 +177,7 @@ def grab_clone(
|
|
|
218
177
|
) -> None:
|
|
219
178
|
"""Move the clone source image
|
|
220
179
|
|
|
221
|
-
:type execution_context: int | str | None
|
|
222
|
-
:type undo: bool | None
|
|
223
180
|
:param delta: Delta, Delta offset of clone image in 0.0 to 1.0 coordinates
|
|
224
|
-
:type delta: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
225
181
|
"""
|
|
226
182
|
|
|
227
183
|
def hide_show(
|
|
@@ -240,18 +196,11 @@ def hide_show(
|
|
|
240
196
|
) -> None:
|
|
241
197
|
"""Hide/show some vertices
|
|
242
198
|
|
|
243
|
-
:type execution_context: int | str | None
|
|
244
|
-
:type undo: bool | None
|
|
245
199
|
:param xmin: X Min
|
|
246
|
-
:type xmin: int | None
|
|
247
200
|
:param xmax: X Max
|
|
248
|
-
:type xmax: int | None
|
|
249
201
|
:param ymin: Y Min
|
|
250
|
-
:type ymin: int | None
|
|
251
202
|
:param ymax: Y Max
|
|
252
|
-
:type ymax: int | None
|
|
253
203
|
:param wait_for_input: Wait for Input
|
|
254
|
-
:type wait_for_input: bool | None
|
|
255
204
|
:param action: Visibility Action, Whether to hide or show vertices
|
|
256
205
|
|
|
257
206
|
HIDE
|
|
@@ -259,7 +208,6 @@ def hide_show(
|
|
|
259
208
|
|
|
260
209
|
SHOW
|
|
261
210
|
Show -- Show vertices.
|
|
262
|
-
:type action: typing.Literal['HIDE','SHOW'] | None
|
|
263
211
|
:param area: Visibility Area, Which vertices to hide or show
|
|
264
212
|
|
|
265
213
|
OUTSIDE
|
|
@@ -267,9 +215,7 @@ def hide_show(
|
|
|
267
215
|
|
|
268
216
|
Inside
|
|
269
217
|
Inside -- Hide or show vertices inside the selection.
|
|
270
|
-
:type area: typing.Literal['OUTSIDE','Inside'] | None
|
|
271
218
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
272
|
-
:type use_front_faces_only: bool | None
|
|
273
219
|
"""
|
|
274
220
|
|
|
275
221
|
def hide_show_all(
|
|
@@ -281,8 +227,6 @@ def hide_show_all(
|
|
|
281
227
|
) -> None:
|
|
282
228
|
"""Hide/show all vertices
|
|
283
229
|
|
|
284
|
-
:type execution_context: int | str | None
|
|
285
|
-
:type undo: bool | None
|
|
286
230
|
:param action: Visibility Action, Whether to hide or show vertices
|
|
287
231
|
|
|
288
232
|
HIDE
|
|
@@ -290,7 +234,6 @@ def hide_show_all(
|
|
|
290
234
|
|
|
291
235
|
SHOW
|
|
292
236
|
Show -- Show vertices.
|
|
293
|
-
:type action: typing.Literal['HIDE','SHOW'] | None
|
|
294
237
|
"""
|
|
295
238
|
|
|
296
239
|
def hide_show_lasso_gesture(
|
|
@@ -308,16 +251,10 @@ def hide_show_lasso_gesture(
|
|
|
308
251
|
) -> None:
|
|
309
252
|
"""Hide/show some vertices
|
|
310
253
|
|
|
311
|
-
:type execution_context: int | str | None
|
|
312
|
-
:type undo: bool | None
|
|
313
254
|
:param path: Path
|
|
314
|
-
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
315
255
|
:param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
|
|
316
|
-
:type use_smooth_stroke: bool | None
|
|
317
256
|
:param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
|
|
318
|
-
:type smooth_stroke_factor: float | None
|
|
319
257
|
:param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
|
|
320
|
-
:type smooth_stroke_radius: int | None
|
|
321
258
|
:param action: Visibility Action, Whether to hide or show vertices
|
|
322
259
|
|
|
323
260
|
HIDE
|
|
@@ -325,7 +262,6 @@ def hide_show_lasso_gesture(
|
|
|
325
262
|
|
|
326
263
|
SHOW
|
|
327
264
|
Show -- Show vertices.
|
|
328
|
-
:type action: typing.Literal['HIDE','SHOW'] | None
|
|
329
265
|
:param area: Visibility Area, Which vertices to hide or show
|
|
330
266
|
|
|
331
267
|
OUTSIDE
|
|
@@ -333,9 +269,7 @@ def hide_show_lasso_gesture(
|
|
|
333
269
|
|
|
334
270
|
Inside
|
|
335
271
|
Inside -- Hide or show vertices inside the selection.
|
|
336
|
-
:type area: typing.Literal['OUTSIDE','Inside'] | None
|
|
337
272
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
338
|
-
:type use_front_faces_only: bool | None
|
|
339
273
|
"""
|
|
340
274
|
|
|
341
275
|
def hide_show_line_gesture(
|
|
@@ -356,20 +290,12 @@ def hide_show_line_gesture(
|
|
|
356
290
|
) -> None:
|
|
357
291
|
"""Hide/show some vertices
|
|
358
292
|
|
|
359
|
-
:type execution_context: int | str | None
|
|
360
|
-
:type undo: bool | None
|
|
361
293
|
:param xstart: X Start
|
|
362
|
-
:type xstart: int | None
|
|
363
294
|
:param xend: X End
|
|
364
|
-
:type xend: int | None
|
|
365
295
|
:param ystart: Y Start
|
|
366
|
-
:type ystart: int | None
|
|
367
296
|
:param yend: Y End
|
|
368
|
-
:type yend: int | None
|
|
369
297
|
:param flip: Flip
|
|
370
|
-
:type flip: bool | None
|
|
371
298
|
:param cursor: Cursor, Mouse cursor style to use during the modal operator
|
|
372
|
-
:type cursor: int | None
|
|
373
299
|
:param action: Visibility Action, Whether to hide or show vertices
|
|
374
300
|
|
|
375
301
|
HIDE
|
|
@@ -377,7 +303,6 @@ def hide_show_line_gesture(
|
|
|
377
303
|
|
|
378
304
|
SHOW
|
|
379
305
|
Show -- Show vertices.
|
|
380
|
-
:type action: typing.Literal['HIDE','SHOW'] | None
|
|
381
306
|
:param area: Visibility Area, Which vertices to hide or show
|
|
382
307
|
|
|
383
308
|
OUTSIDE
|
|
@@ -385,11 +310,8 @@ def hide_show_line_gesture(
|
|
|
385
310
|
|
|
386
311
|
Inside
|
|
387
312
|
Inside -- Hide or show vertices inside the selection.
|
|
388
|
-
:type area: typing.Literal['OUTSIDE','Inside'] | None
|
|
389
313
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
390
|
-
:type use_front_faces_only: bool | None
|
|
391
314
|
: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
|
|
392
|
-
:type use_limit_to_segment: bool | None
|
|
393
315
|
"""
|
|
394
316
|
|
|
395
317
|
def hide_show_masked(
|
|
@@ -401,8 +323,6 @@ def hide_show_masked(
|
|
|
401
323
|
) -> None:
|
|
402
324
|
"""Hide/show all masked vertices above a threshold
|
|
403
325
|
|
|
404
|
-
:type execution_context: int | str | None
|
|
405
|
-
:type undo: bool | None
|
|
406
326
|
:param action: Visibility Action, Whether to hide or show vertices
|
|
407
327
|
|
|
408
328
|
HIDE
|
|
@@ -410,7 +330,6 @@ def hide_show_masked(
|
|
|
410
330
|
|
|
411
331
|
SHOW
|
|
412
332
|
Show -- Show vertices.
|
|
413
|
-
:type action: typing.Literal['HIDE','SHOW'] | None
|
|
414
333
|
"""
|
|
415
334
|
|
|
416
335
|
def hide_show_polyline_gesture(
|
|
@@ -425,10 +344,7 @@ def hide_show_polyline_gesture(
|
|
|
425
344
|
) -> None:
|
|
426
345
|
"""Hide/show some vertices
|
|
427
346
|
|
|
428
|
-
:type execution_context: int | str | None
|
|
429
|
-
:type undo: bool | None
|
|
430
347
|
:param path: Path
|
|
431
|
-
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
432
348
|
:param action: Visibility Action, Whether to hide or show vertices
|
|
433
349
|
|
|
434
350
|
HIDE
|
|
@@ -436,7 +352,6 @@ def hide_show_polyline_gesture(
|
|
|
436
352
|
|
|
437
353
|
SHOW
|
|
438
354
|
Show -- Show vertices.
|
|
439
|
-
:type action: typing.Literal['HIDE','SHOW'] | None
|
|
440
355
|
:param area: Visibility Area, Which vertices to hide or show
|
|
441
356
|
|
|
442
357
|
OUTSIDE
|
|
@@ -444,9 +359,7 @@ def hide_show_polyline_gesture(
|
|
|
444
359
|
|
|
445
360
|
Inside
|
|
446
361
|
Inside -- Hide or show vertices inside the selection.
|
|
447
|
-
:type area: typing.Literal['OUTSIDE','Inside'] | None
|
|
448
362
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
449
|
-
:type use_front_faces_only: bool | None
|
|
450
363
|
"""
|
|
451
364
|
|
|
452
365
|
def image_from_view(
|
|
@@ -458,10 +371,7 @@ def image_from_view(
|
|
|
458
371
|
) -> None:
|
|
459
372
|
"""Make an image from biggest 3D view for reprojection
|
|
460
373
|
|
|
461
|
-
:type execution_context: int | str | None
|
|
462
|
-
:type undo: bool | None
|
|
463
374
|
:param filepath: File Path, Name of the file
|
|
464
|
-
:type filepath: str
|
|
465
375
|
"""
|
|
466
376
|
|
|
467
377
|
def image_paint(
|
|
@@ -471,15 +381,13 @@ def image_paint(
|
|
|
471
381
|
*,
|
|
472
382
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
473
383
|
| None = None,
|
|
474
|
-
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"
|
|
384
|
+
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE", "MASK"]
|
|
385
|
+
| None = "NORMAL",
|
|
475
386
|
pen_flip: bool | None = False,
|
|
476
387
|
) -> None:
|
|
477
388
|
"""Paint a stroke into the image
|
|
478
389
|
|
|
479
|
-
:type execution_context: int | str | None
|
|
480
|
-
:type undo: bool | None
|
|
481
390
|
:param stroke: Stroke
|
|
482
|
-
:type stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement] | None
|
|
483
391
|
:param mode: Stroke Mode, Action taken when a paint stroke is made
|
|
484
392
|
|
|
485
393
|
NORMAL
|
|
@@ -493,9 +401,10 @@ def image_paint(
|
|
|
493
401
|
|
|
494
402
|
ERASE
|
|
495
403
|
Erase -- Switch brush to erase mode for duration of stroke.
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
404
|
+
|
|
405
|
+
MASK
|
|
406
|
+
Mask -- Switch brush to mask mode for duration of stroke.
|
|
407
|
+
:param pen_flip: Pen Flip, Whether a tablets eraser mode is being used
|
|
499
408
|
"""
|
|
500
409
|
|
|
501
410
|
def mask_box_gesture(
|
|
@@ -514,33 +423,23 @@ def mask_box_gesture(
|
|
|
514
423
|
) -> None:
|
|
515
424
|
"""Mask within a rectangle defined by the cursor
|
|
516
425
|
|
|
517
|
-
:type execution_context: int | str | None
|
|
518
|
-
:type undo: bool | None
|
|
519
426
|
:param xmin: X Min
|
|
520
|
-
:type xmin: int | None
|
|
521
427
|
:param xmax: X Max
|
|
522
|
-
:type xmax: int | None
|
|
523
428
|
:param ymin: Y Min
|
|
524
|
-
:type ymin: int | None
|
|
525
429
|
:param ymax: Y Max
|
|
526
|
-
:type ymax: int | None
|
|
527
430
|
:param wait_for_input: Wait for Input
|
|
528
|
-
:type wait_for_input: bool | None
|
|
529
431
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
530
|
-
:type use_front_faces_only: bool | None
|
|
531
432
|
:param mode: Mode
|
|
532
433
|
|
|
533
434
|
VALUE
|
|
534
|
-
Value -- Set mask to the level specified by the
|
|
435
|
+
Value -- Set mask to the level specified by the value property.
|
|
535
436
|
|
|
536
437
|
VALUE_INVERSE
|
|
537
|
-
Value Inverted -- Set mask to the level specified by the inverted
|
|
438
|
+
Value Inverted -- Set mask to the level specified by the inverted value property.
|
|
538
439
|
|
|
539
440
|
INVERT
|
|
540
441
|
Invert -- Invert the mask.
|
|
541
|
-
:
|
|
542
|
-
:param value: Value, Mask level to use when mode is 'Value'; zero means no masking and one is fully masked
|
|
543
|
-
:type value: float | None
|
|
442
|
+
:param value: Value, Mask level to use when mode is Value; zero means no masking and one is fully masked
|
|
544
443
|
"""
|
|
545
444
|
|
|
546
445
|
def mask_flood_fill(
|
|
@@ -553,21 +452,17 @@ def mask_flood_fill(
|
|
|
553
452
|
) -> None:
|
|
554
453
|
"""Fill the whole mask with a given value, or invert its values
|
|
555
454
|
|
|
556
|
-
:type execution_context: int | str | None
|
|
557
|
-
:type undo: bool | None
|
|
558
455
|
:param mode: Mode
|
|
559
456
|
|
|
560
457
|
VALUE
|
|
561
|
-
Value -- Set mask to the level specified by the
|
|
458
|
+
Value -- Set mask to the level specified by the value property.
|
|
562
459
|
|
|
563
460
|
VALUE_INVERSE
|
|
564
|
-
Value Inverted -- Set mask to the level specified by the inverted
|
|
461
|
+
Value Inverted -- Set mask to the level specified by the inverted value property.
|
|
565
462
|
|
|
566
463
|
INVERT
|
|
567
464
|
Invert -- Invert the mask.
|
|
568
|
-
:
|
|
569
|
-
:param value: Value, Mask level to use when mode is 'Value'; zero means no masking and one is fully masked
|
|
570
|
-
:type value: float | None
|
|
465
|
+
:param value: Value, Mask level to use when mode is Value; zero means no masking and one is fully masked
|
|
571
466
|
"""
|
|
572
467
|
|
|
573
468
|
def mask_lasso_gesture(
|
|
@@ -585,31 +480,22 @@ def mask_lasso_gesture(
|
|
|
585
480
|
) -> None:
|
|
586
481
|
"""Mask within a shape defined by the cursor
|
|
587
482
|
|
|
588
|
-
:type execution_context: int | str | None
|
|
589
|
-
:type undo: bool | None
|
|
590
483
|
:param path: Path
|
|
591
|
-
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
592
484
|
:param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
|
|
593
|
-
:type use_smooth_stroke: bool | None
|
|
594
485
|
:param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
|
|
595
|
-
:type smooth_stroke_factor: float | None
|
|
596
486
|
:param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
|
|
597
|
-
:type smooth_stroke_radius: int | None
|
|
598
487
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
599
|
-
:type use_front_faces_only: bool | None
|
|
600
488
|
:param mode: Mode
|
|
601
489
|
|
|
602
490
|
VALUE
|
|
603
|
-
Value -- Set mask to the level specified by the
|
|
491
|
+
Value -- Set mask to the level specified by the value property.
|
|
604
492
|
|
|
605
493
|
VALUE_INVERSE
|
|
606
|
-
Value Inverted -- Set mask to the level specified by the inverted
|
|
494
|
+
Value Inverted -- Set mask to the level specified by the inverted value property.
|
|
607
495
|
|
|
608
496
|
INVERT
|
|
609
497
|
Invert -- Invert the mask.
|
|
610
|
-
:
|
|
611
|
-
:param value: Value, Mask level to use when mode is 'Value'; zero means no masking and one is fully masked
|
|
612
|
-
:type value: float | None
|
|
498
|
+
:param value: Value, Mask level to use when mode is Value; zero means no masking and one is fully masked
|
|
613
499
|
"""
|
|
614
500
|
|
|
615
501
|
def mask_line_gesture(
|
|
@@ -630,37 +516,25 @@ def mask_line_gesture(
|
|
|
630
516
|
) -> None:
|
|
631
517
|
"""Mask to one side of a line defined by the cursor
|
|
632
518
|
|
|
633
|
-
:type execution_context: int | str | None
|
|
634
|
-
:type undo: bool | None
|
|
635
519
|
:param xstart: X Start
|
|
636
|
-
:type xstart: int | None
|
|
637
520
|
:param xend: X End
|
|
638
|
-
:type xend: int | None
|
|
639
521
|
:param ystart: Y Start
|
|
640
|
-
:type ystart: int | None
|
|
641
522
|
:param yend: Y End
|
|
642
|
-
:type yend: int | None
|
|
643
523
|
:param flip: Flip
|
|
644
|
-
:type flip: bool | None
|
|
645
524
|
:param cursor: Cursor, Mouse cursor style to use during the modal operator
|
|
646
|
-
:type cursor: int | None
|
|
647
525
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
648
|
-
:type use_front_faces_only: bool | None
|
|
649
526
|
: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
|
|
650
|
-
:type use_limit_to_segment: bool | None
|
|
651
527
|
:param mode: Mode
|
|
652
528
|
|
|
653
529
|
VALUE
|
|
654
|
-
Value -- Set mask to the level specified by the
|
|
530
|
+
Value -- Set mask to the level specified by the value property.
|
|
655
531
|
|
|
656
532
|
VALUE_INVERSE
|
|
657
|
-
Value Inverted -- Set mask to the level specified by the inverted
|
|
533
|
+
Value Inverted -- Set mask to the level specified by the inverted value property.
|
|
658
534
|
|
|
659
535
|
INVERT
|
|
660
536
|
Invert -- Invert the mask.
|
|
661
|
-
:
|
|
662
|
-
:param value: Value, Mask level to use when mode is 'Value'; zero means no masking and one is fully masked
|
|
663
|
-
:type value: float | None
|
|
537
|
+
:param value: Value, Mask level to use when mode is Value; zero means no masking and one is fully masked
|
|
664
538
|
"""
|
|
665
539
|
|
|
666
540
|
def mask_polyline_gesture(
|
|
@@ -675,25 +549,19 @@ def mask_polyline_gesture(
|
|
|
675
549
|
) -> None:
|
|
676
550
|
"""Mask within a shape defined by the cursor
|
|
677
551
|
|
|
678
|
-
:type execution_context: int | str | None
|
|
679
|
-
:type undo: bool | None
|
|
680
552
|
:param path: Path
|
|
681
|
-
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
682
553
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
683
|
-
:type use_front_faces_only: bool | None
|
|
684
554
|
:param mode: Mode
|
|
685
555
|
|
|
686
556
|
VALUE
|
|
687
|
-
Value -- Set mask to the level specified by the
|
|
557
|
+
Value -- Set mask to the level specified by the value property.
|
|
688
558
|
|
|
689
559
|
VALUE_INVERSE
|
|
690
|
-
Value Inverted -- Set mask to the level specified by the inverted
|
|
560
|
+
Value Inverted -- Set mask to the level specified by the inverted value property.
|
|
691
561
|
|
|
692
562
|
INVERT
|
|
693
563
|
Invert -- Invert the mask.
|
|
694
|
-
:
|
|
695
|
-
:param value: Value, Mask level to use when mode is 'Value'; zero means no masking and one is fully masked
|
|
696
|
-
:type value: float | None
|
|
564
|
+
:param value: Value, Mask level to use when mode is Value; zero means no masking and one is fully masked
|
|
697
565
|
"""
|
|
698
566
|
|
|
699
567
|
def project_image(
|
|
@@ -705,10 +573,7 @@ def project_image(
|
|
|
705
573
|
) -> None:
|
|
706
574
|
"""Project an edited render from the active camera back onto the object
|
|
707
575
|
|
|
708
|
-
:type execution_context: int | str | None
|
|
709
|
-
:type undo: bool | None
|
|
710
576
|
:param image: Image
|
|
711
|
-
:type image: str | None
|
|
712
577
|
"""
|
|
713
578
|
|
|
714
579
|
def sample_color(
|
|
@@ -722,24 +587,17 @@ def sample_color(
|
|
|
722
587
|
) -> None:
|
|
723
588
|
"""Use the mouse to sample a color in the image
|
|
724
589
|
|
|
725
|
-
:type execution_context: int | str | None
|
|
726
|
-
:type undo: bool | None
|
|
727
590
|
:param location: Location
|
|
728
|
-
:type location: collections.abc.Iterable[int] | None
|
|
729
591
|
:param merged: Sample Merged, Sample the output display color
|
|
730
|
-
:type merged: bool | None
|
|
731
592
|
:param palette: Add to Palette
|
|
732
|
-
:type palette: bool | None
|
|
733
593
|
"""
|
|
734
594
|
|
|
735
595
|
def texture_paint_toggle(
|
|
736
|
-
execution_context: int | str | None = None,
|
|
596
|
+
execution_context: int | str | None = None,
|
|
597
|
+
undo: bool | None = None,
|
|
598
|
+
/,
|
|
737
599
|
) -> None:
|
|
738
|
-
"""Toggle texture paint mode in 3D view
|
|
739
|
-
|
|
740
|
-
:type execution_context: int | str | None
|
|
741
|
-
:type undo: bool | None
|
|
742
|
-
"""
|
|
600
|
+
"""Toggle texture paint mode in 3D view"""
|
|
743
601
|
|
|
744
602
|
def vert_select_all(
|
|
745
603
|
execution_context: int | str | None = None,
|
|
@@ -750,8 +608,6 @@ def vert_select_all(
|
|
|
750
608
|
) -> None:
|
|
751
609
|
"""Change selection for all vertices
|
|
752
610
|
|
|
753
|
-
:type execution_context: int | str | None
|
|
754
|
-
:type undo: bool | None
|
|
755
611
|
:param action: Action, Selection action to execute
|
|
756
612
|
|
|
757
613
|
TOGGLE
|
|
@@ -765,7 +621,6 @@ def vert_select_all(
|
|
|
765
621
|
|
|
766
622
|
INVERT
|
|
767
623
|
Invert -- Invert selection of all elements.
|
|
768
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
769
624
|
"""
|
|
770
625
|
|
|
771
626
|
def vert_select_hide(
|
|
@@ -777,10 +632,7 @@ def vert_select_hide(
|
|
|
777
632
|
) -> None:
|
|
778
633
|
"""Hide selected vertices
|
|
779
634
|
|
|
780
|
-
:type execution_context: int | str | None
|
|
781
|
-
:type undo: bool | None
|
|
782
635
|
:param unselected: Unselected, Hide unselected rather than selected vertices
|
|
783
|
-
:type unselected: bool | None
|
|
784
636
|
"""
|
|
785
637
|
|
|
786
638
|
def vert_select_less(
|
|
@@ -792,20 +644,15 @@ def vert_select_less(
|
|
|
792
644
|
) -> None:
|
|
793
645
|
"""Deselect Vertices connected to existing selection
|
|
794
646
|
|
|
795
|
-
:type execution_context: int | str | None
|
|
796
|
-
:type undo: bool | None
|
|
797
647
|
:param face_step: Face Step, Also deselect faces that only touch on a corner
|
|
798
|
-
:type face_step: bool | None
|
|
799
648
|
"""
|
|
800
649
|
|
|
801
650
|
def vert_select_linked(
|
|
802
|
-
execution_context: int | str | None = None,
|
|
651
|
+
execution_context: int | str | None = None,
|
|
652
|
+
undo: bool | None = None,
|
|
653
|
+
/,
|
|
803
654
|
) -> None:
|
|
804
|
-
"""Select linked vertices
|
|
805
|
-
|
|
806
|
-
:type execution_context: int | str | None
|
|
807
|
-
:type undo: bool | None
|
|
808
|
-
"""
|
|
655
|
+
"""Select linked vertices"""
|
|
809
656
|
|
|
810
657
|
def vert_select_linked_pick(
|
|
811
658
|
execution_context: int | str | None = None,
|
|
@@ -816,10 +663,7 @@ def vert_select_linked_pick(
|
|
|
816
663
|
) -> None:
|
|
817
664
|
"""Select linked vertices under the cursor
|
|
818
665
|
|
|
819
|
-
:type execution_context: int | str | None
|
|
820
|
-
:type undo: bool | None
|
|
821
666
|
:param select: Select, Whether to select or deselect linked vertices under the cursor
|
|
822
|
-
:type select: bool | None
|
|
823
667
|
"""
|
|
824
668
|
|
|
825
669
|
def vert_select_more(
|
|
@@ -831,10 +675,7 @@ def vert_select_more(
|
|
|
831
675
|
) -> None:
|
|
832
676
|
"""Select Vertices connected to existing selection
|
|
833
677
|
|
|
834
|
-
:type execution_context: int | str | None
|
|
835
|
-
:type undo: bool | None
|
|
836
678
|
:param face_step: Face Step, Also select faces that only touch on a corner
|
|
837
|
-
:type face_step: bool | None
|
|
838
679
|
"""
|
|
839
680
|
|
|
840
681
|
def vert_select_ungrouped(
|
|
@@ -846,10 +687,7 @@ def vert_select_ungrouped(
|
|
|
846
687
|
) -> None:
|
|
847
688
|
"""Select vertices without a group
|
|
848
689
|
|
|
849
|
-
:type execution_context: int | str | None
|
|
850
|
-
:type undo: bool | None
|
|
851
690
|
:param extend: Extend, Extend the selection
|
|
852
|
-
:type extend: bool | None
|
|
853
691
|
"""
|
|
854
692
|
|
|
855
693
|
def vertex_color_brightness_contrast(
|
|
@@ -862,12 +700,8 @@ def vertex_color_brightness_contrast(
|
|
|
862
700
|
) -> None:
|
|
863
701
|
"""Adjust vertex color brightness/contrast
|
|
864
702
|
|
|
865
|
-
:type execution_context: int | str | None
|
|
866
|
-
:type undo: bool | None
|
|
867
703
|
:param brightness: Brightness
|
|
868
|
-
:type brightness: float | None
|
|
869
704
|
:param contrast: Contrast
|
|
870
|
-
:type contrast: float | None
|
|
871
705
|
"""
|
|
872
706
|
|
|
873
707
|
def vertex_color_dirt(
|
|
@@ -884,30 +718,20 @@ def vertex_color_dirt(
|
|
|
884
718
|
) -> None:
|
|
885
719
|
"""Generate a dirt map gradient based on cavity
|
|
886
720
|
|
|
887
|
-
:type execution_context: int | str | None
|
|
888
|
-
:type undo: bool | None
|
|
889
721
|
:param blur_strength: Blur Strength, Blur strength per iteration
|
|
890
|
-
:type blur_strength: float | None
|
|
891
722
|
:param blur_iterations: Blur Iterations, Number of times to blur the colors (higher blurs more)
|
|
892
|
-
:type blur_iterations: int | None
|
|
893
723
|
:param clean_angle: Highlight Angle, Less than 90 limits the angle used in the tonal range
|
|
894
|
-
:type clean_angle: float | None
|
|
895
724
|
:param dirt_angle: Dirt Angle, Less than 90 limits the angle used in the tonal range
|
|
896
|
-
:
|
|
897
|
-
:param dirt_only: Dirt Only, Don't calculate cleans for convex areas
|
|
898
|
-
:type dirt_only: bool | None
|
|
725
|
+
:param dirt_only: Dirt Only, Dont calculate cleans for convex areas
|
|
899
726
|
:param normalize: Normalize, Normalize the colors, increasing the contrast
|
|
900
|
-
:type normalize: bool | None
|
|
901
727
|
"""
|
|
902
728
|
|
|
903
729
|
def vertex_color_from_weight(
|
|
904
|
-
execution_context: int | str | None = None,
|
|
730
|
+
execution_context: int | str | None = None,
|
|
731
|
+
undo: bool | None = None,
|
|
732
|
+
/,
|
|
905
733
|
) -> None:
|
|
906
|
-
"""Convert active weight into gray scale vertex colors
|
|
907
|
-
|
|
908
|
-
:type execution_context: int | str | None
|
|
909
|
-
:type undo: bool | None
|
|
910
|
-
"""
|
|
734
|
+
"""Convert active weight into gray scale vertex colors"""
|
|
911
735
|
|
|
912
736
|
def vertex_color_hsv(
|
|
913
737
|
execution_context: int | str | None = None,
|
|
@@ -920,24 +744,17 @@ def vertex_color_hsv(
|
|
|
920
744
|
) -> None:
|
|
921
745
|
"""Adjust vertex color Hue/Saturation/Value
|
|
922
746
|
|
|
923
|
-
:type execution_context: int | str | None
|
|
924
|
-
:type undo: bool | None
|
|
925
747
|
:param h: Hue
|
|
926
|
-
:type h: float | None
|
|
927
748
|
:param s: Saturation
|
|
928
|
-
:type s: float | None
|
|
929
749
|
:param v: Value
|
|
930
|
-
:type v: float | None
|
|
931
750
|
"""
|
|
932
751
|
|
|
933
752
|
def vertex_color_invert(
|
|
934
|
-
execution_context: int | str | None = None,
|
|
753
|
+
execution_context: int | str | None = None,
|
|
754
|
+
undo: bool | None = None,
|
|
755
|
+
/,
|
|
935
756
|
) -> None:
|
|
936
|
-
"""Invert RGB values
|
|
937
|
-
|
|
938
|
-
:type execution_context: int | str | None
|
|
939
|
-
:type undo: bool | None
|
|
940
|
-
"""
|
|
757
|
+
"""Invert RGB values"""
|
|
941
758
|
|
|
942
759
|
def vertex_color_levels(
|
|
943
760
|
execution_context: int | str | None = None,
|
|
@@ -949,12 +766,8 @@ def vertex_color_levels(
|
|
|
949
766
|
) -> None:
|
|
950
767
|
"""Adjust levels of vertex colors
|
|
951
768
|
|
|
952
|
-
:type execution_context: int | str | None
|
|
953
|
-
:type undo: bool | None
|
|
954
769
|
:param offset: Offset, Value to add to colors
|
|
955
|
-
:type offset: float | None
|
|
956
770
|
:param gain: Gain, Value to multiply colors by
|
|
957
|
-
:type gain: float | None
|
|
958
771
|
"""
|
|
959
772
|
|
|
960
773
|
def vertex_color_set(
|
|
@@ -966,20 +779,15 @@ def vertex_color_set(
|
|
|
966
779
|
) -> None:
|
|
967
780
|
"""Fill the active vertex color layer with the current paint color
|
|
968
781
|
|
|
969
|
-
:type execution_context: int | str | None
|
|
970
|
-
:type undo: bool | None
|
|
971
782
|
:param use_alpha: Affect Alpha, Set color completely opaque instead of reusing existing alpha
|
|
972
|
-
:type use_alpha: bool | None
|
|
973
783
|
"""
|
|
974
784
|
|
|
975
785
|
def vertex_color_smooth(
|
|
976
|
-
execution_context: int | str | None = None,
|
|
786
|
+
execution_context: int | str | None = None,
|
|
787
|
+
undo: bool | None = None,
|
|
788
|
+
/,
|
|
977
789
|
) -> None:
|
|
978
|
-
"""Smooth colors across vertices
|
|
979
|
-
|
|
980
|
-
:type execution_context: int | str | None
|
|
981
|
-
:type undo: bool | None
|
|
982
|
-
"""
|
|
790
|
+
"""Smooth colors across vertices"""
|
|
983
791
|
|
|
984
792
|
def vertex_paint(
|
|
985
793
|
execution_context: int | str | None = None,
|
|
@@ -988,16 +796,14 @@ def vertex_paint(
|
|
|
988
796
|
*,
|
|
989
797
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
990
798
|
| None = None,
|
|
991
|
-
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"
|
|
799
|
+
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE", "MASK"]
|
|
800
|
+
| None = "NORMAL",
|
|
992
801
|
pen_flip: bool | None = False,
|
|
993
802
|
override_location: bool | None = False,
|
|
994
803
|
) -> None:
|
|
995
804
|
"""Paint a stroke in the active color attribute layer
|
|
996
805
|
|
|
997
|
-
:type execution_context: int | str | None
|
|
998
|
-
:type undo: bool | None
|
|
999
806
|
:param stroke: Stroke
|
|
1000
|
-
:type stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement] | None
|
|
1001
807
|
:param mode: Stroke Mode, Action taken when a paint stroke is made
|
|
1002
808
|
|
|
1003
809
|
NORMAL
|
|
@@ -1011,21 +817,19 @@ def vertex_paint(
|
|
|
1011
817
|
|
|
1012
818
|
ERASE
|
|
1013
819
|
Erase -- Switch brush to erase mode for duration of stroke.
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
:param
|
|
1018
|
-
:
|
|
820
|
+
|
|
821
|
+
MASK
|
|
822
|
+
Mask -- Switch brush to mask mode for duration of stroke.
|
|
823
|
+
:param pen_flip: Pen Flip, Whether a tablets eraser mode is being used
|
|
824
|
+
:param override_location: Override Location, Override the given "location" array by recalculating object space positions from the provided "mouse_event" positions
|
|
1019
825
|
"""
|
|
1020
826
|
|
|
1021
827
|
def vertex_paint_toggle(
|
|
1022
|
-
execution_context: int | str | None = None,
|
|
828
|
+
execution_context: int | str | None = None,
|
|
829
|
+
undo: bool | None = None,
|
|
830
|
+
/,
|
|
1023
831
|
) -> None:
|
|
1024
|
-
"""Toggle the vertex paint mode in 3D view
|
|
1025
|
-
|
|
1026
|
-
:type execution_context: int | str | None
|
|
1027
|
-
:type undo: bool | None
|
|
1028
|
-
"""
|
|
832
|
+
"""Toggle the vertex paint mode in 3D view"""
|
|
1029
833
|
|
|
1030
834
|
def visibility_filter(
|
|
1031
835
|
execution_context: int | str | None = None,
|
|
@@ -1038,8 +842,6 @@ def visibility_filter(
|
|
|
1038
842
|
) -> None:
|
|
1039
843
|
"""Edit the visibility of the current mesh
|
|
1040
844
|
|
|
1041
|
-
:type execution_context: int | str | None
|
|
1042
|
-
:type undo: bool | None
|
|
1043
845
|
:param action: Action
|
|
1044
846
|
|
|
1045
847
|
GROW
|
|
@@ -1047,21 +849,16 @@ def visibility_filter(
|
|
|
1047
849
|
|
|
1048
850
|
SHRINK
|
|
1049
851
|
Shrink Visibility -- Shrink the visibility by one face based on mesh topology.
|
|
1050
|
-
:type action: typing.Literal['GROW','SHRINK'] | None
|
|
1051
852
|
:param iterations: Iterations, Number of times that the filter is going to be applied
|
|
1052
|
-
:type iterations: int | None
|
|
1053
853
|
:param auto_iteration_count: Auto Iteration Count, Use an automatic number of iterations based on the number of vertices of the sculpt
|
|
1054
|
-
:type auto_iteration_count: bool | None
|
|
1055
854
|
"""
|
|
1056
855
|
|
|
1057
856
|
def visibility_invert(
|
|
1058
|
-
execution_context: int | str | None = None,
|
|
857
|
+
execution_context: int | str | None = None,
|
|
858
|
+
undo: bool | None = None,
|
|
859
|
+
/,
|
|
1059
860
|
) -> None:
|
|
1060
|
-
"""Invert the visibility of all vertices
|
|
1061
|
-
|
|
1062
|
-
:type execution_context: int | str | None
|
|
1063
|
-
:type undo: bool | None
|
|
1064
|
-
"""
|
|
861
|
+
"""Invert the visibility of all vertices"""
|
|
1065
862
|
|
|
1066
863
|
def weight_from_bones(
|
|
1067
864
|
execution_context: int | str | None = None,
|
|
@@ -1070,10 +867,8 @@ def weight_from_bones(
|
|
|
1070
867
|
*,
|
|
1071
868
|
type: typing.Literal["AUTOMATIC", "ENVELOPES"] | None = "AUTOMATIC",
|
|
1072
869
|
) -> None:
|
|
1073
|
-
"""Set the weights of the groups matching the attached
|
|
870
|
+
"""Set the weights of the groups matching the attached armatures selected bones, using the distance between the vertices and the bones
|
|
1074
871
|
|
|
1075
|
-
:type execution_context: int | str | None
|
|
1076
|
-
:type undo: bool | None
|
|
1077
872
|
:param type: Type, Method to use for assigning weights
|
|
1078
873
|
|
|
1079
874
|
AUTOMATIC
|
|
@@ -1081,7 +876,6 @@ def weight_from_bones(
|
|
|
1081
876
|
|
|
1082
877
|
ENVELOPES
|
|
1083
878
|
From Envelopes -- Weights from envelopes with user defined radius.
|
|
1084
|
-
:type type: typing.Literal['AUTOMATIC','ENVELOPES'] | None
|
|
1085
879
|
"""
|
|
1086
880
|
|
|
1087
881
|
def weight_gradient(
|
|
@@ -1099,22 +893,13 @@ def weight_gradient(
|
|
|
1099
893
|
) -> None:
|
|
1100
894
|
"""Draw a line to apply a weight gradient to selected vertices
|
|
1101
895
|
|
|
1102
|
-
:type execution_context: int | str | None
|
|
1103
|
-
:type undo: bool | None
|
|
1104
896
|
:param type: Type
|
|
1105
|
-
:type type: typing.Literal['LINEAR','RADIAL'] | None
|
|
1106
897
|
:param xstart: X Start
|
|
1107
|
-
:type xstart: int | None
|
|
1108
898
|
:param xend: X End
|
|
1109
|
-
:type xend: int | None
|
|
1110
899
|
:param ystart: Y Start
|
|
1111
|
-
:type ystart: int | None
|
|
1112
900
|
:param yend: Y End
|
|
1113
|
-
:type yend: int | None
|
|
1114
901
|
:param flip: Flip
|
|
1115
|
-
:type flip: bool | None
|
|
1116
902
|
:param cursor: Cursor, Mouse cursor style to use during the modal operator
|
|
1117
|
-
:type cursor: int | None
|
|
1118
903
|
"""
|
|
1119
904
|
|
|
1120
905
|
def weight_paint(
|
|
@@ -1124,16 +909,14 @@ def weight_paint(
|
|
|
1124
909
|
*,
|
|
1125
910
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
1126
911
|
| None = None,
|
|
1127
|
-
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"
|
|
912
|
+
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE", "MASK"]
|
|
913
|
+
| None = "NORMAL",
|
|
1128
914
|
pen_flip: bool | None = False,
|
|
1129
915
|
override_location: bool | None = False,
|
|
1130
916
|
) -> None:
|
|
1131
|
-
"""Paint a stroke in the current vertex
|
|
917
|
+
"""Paint a stroke in the current vertex groups weights
|
|
1132
918
|
|
|
1133
|
-
:type execution_context: int | str | None
|
|
1134
|
-
:type undo: bool | None
|
|
1135
919
|
:param stroke: Stroke
|
|
1136
|
-
:type stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement] | None
|
|
1137
920
|
:param mode: Stroke Mode, Action taken when a paint stroke is made
|
|
1138
921
|
|
|
1139
922
|
NORMAL
|
|
@@ -1147,45 +930,37 @@ def weight_paint(
|
|
|
1147
930
|
|
|
1148
931
|
ERASE
|
|
1149
932
|
Erase -- Switch brush to erase mode for duration of stroke.
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
:param
|
|
1154
|
-
:
|
|
933
|
+
|
|
934
|
+
MASK
|
|
935
|
+
Mask -- Switch brush to mask mode for duration of stroke.
|
|
936
|
+
:param pen_flip: Pen Flip, Whether a tablets eraser mode is being used
|
|
937
|
+
:param override_location: Override Location, Override the given "location" array by recalculating object space positions from the provided "mouse_event" positions
|
|
1155
938
|
"""
|
|
1156
939
|
|
|
1157
940
|
def weight_paint_toggle(
|
|
1158
|
-
execution_context: int | str | None = None,
|
|
941
|
+
execution_context: int | str | None = None,
|
|
942
|
+
undo: bool | None = None,
|
|
943
|
+
/,
|
|
1159
944
|
) -> None:
|
|
1160
|
-
"""Toggle weight paint mode in 3D view
|
|
1161
|
-
|
|
1162
|
-
:type execution_context: int | str | None
|
|
1163
|
-
:type undo: bool | None
|
|
1164
|
-
"""
|
|
945
|
+
"""Toggle weight paint mode in 3D view"""
|
|
1165
946
|
|
|
1166
947
|
def weight_sample(
|
|
1167
|
-
execution_context: int | str | None = None,
|
|
948
|
+
execution_context: int | str | None = None,
|
|
949
|
+
undo: bool | None = None,
|
|
950
|
+
/,
|
|
1168
951
|
) -> None:
|
|
1169
|
-
"""Use the mouse to sample a weight in the 3D view
|
|
1170
|
-
|
|
1171
|
-
:type execution_context: int | str | None
|
|
1172
|
-
:type undo: bool | None
|
|
1173
|
-
"""
|
|
952
|
+
"""Use the mouse to sample a weight in the 3D view"""
|
|
1174
953
|
|
|
1175
954
|
def weight_sample_group(
|
|
1176
|
-
execution_context: int | str | None = None,
|
|
955
|
+
execution_context: int | str | None = None,
|
|
956
|
+
undo: bool | None = None,
|
|
957
|
+
/,
|
|
1177
958
|
) -> None:
|
|
1178
|
-
"""Select one of the vertex groups available under current mouse position
|
|
1179
|
-
|
|
1180
|
-
:type execution_context: int | str | None
|
|
1181
|
-
:type undo: bool | None
|
|
1182
|
-
"""
|
|
959
|
+
"""Select one of the vertex groups available under current mouse position"""
|
|
1183
960
|
|
|
1184
961
|
def weight_set(
|
|
1185
|
-
execution_context: int | str | None = None,
|
|
962
|
+
execution_context: int | str | None = None,
|
|
963
|
+
undo: bool | None = None,
|
|
964
|
+
/,
|
|
1186
965
|
) -> None:
|
|
1187
|
-
"""Fill the active vertex group with the current paint weight
|
|
1188
|
-
|
|
1189
|
-
:type execution_context: int | str | None
|
|
1190
|
-
:type undo: bool | None
|
|
1191
|
-
"""
|
|
966
|
+
"""Fill the active vertex group with the current paint weight"""
|