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/transform/__init__.pyi
CHANGED
|
@@ -23,24 +23,14 @@ def bbone_resize(
|
|
|
23
23
|
) -> None:
|
|
24
24
|
"""Scale selected bendy bones display size
|
|
25
25
|
|
|
26
|
-
:type execution_context: int | str | None
|
|
27
|
-
:type undo: bool | None
|
|
28
26
|
:param value: Display Size
|
|
29
|
-
:type value: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
30
27
|
:param orient_type: Orientation, Transformation orientation
|
|
31
|
-
:type orient_type: str | None
|
|
32
28
|
:param orient_matrix: Matrix
|
|
33
|
-
:type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
|
|
34
29
|
:param orient_matrix_type: Matrix Orientation
|
|
35
|
-
:type orient_matrix_type: str | None
|
|
36
30
|
:param constraint_axis: Constraint Axis
|
|
37
|
-
:type constraint_axis: collections.abc.Iterable[bool] | None
|
|
38
31
|
:param mirror: Mirror Editing
|
|
39
|
-
:type mirror: bool | None
|
|
40
32
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
41
|
-
:type release_confirm: bool | None
|
|
42
33
|
:param use_accurate: Accurate, Use accurate transformation
|
|
43
|
-
:type use_accurate: bool | None
|
|
44
34
|
"""
|
|
45
35
|
|
|
46
36
|
def bend(
|
|
@@ -68,32 +58,18 @@ def bend(
|
|
|
68
58
|
) -> None:
|
|
69
59
|
"""Bend selected items between the 3D cursor and the mouse
|
|
70
60
|
|
|
71
|
-
:type execution_context: int | str | None
|
|
72
|
-
:type undo: bool | None
|
|
73
61
|
:param value: Angle
|
|
74
|
-
:type value: collections.abc.Iterable[float] | None
|
|
75
62
|
:param mirror: Mirror Editing
|
|
76
|
-
:type mirror: bool | None
|
|
77
63
|
:param use_proportional_edit: Proportional Editing
|
|
78
|
-
:type use_proportional_edit: bool | None
|
|
79
64
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
80
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
81
65
|
:param proportional_size: Proportional Size
|
|
82
|
-
:type proportional_size: float | None
|
|
83
66
|
:param use_proportional_connected: Connected
|
|
84
|
-
:type use_proportional_connected: bool | None
|
|
85
67
|
:param use_proportional_projected: Projected (2D)
|
|
86
|
-
:type use_proportional_projected: bool | None
|
|
87
68
|
:param snap: Use Snapping Options
|
|
88
|
-
:type snap: bool | None
|
|
89
69
|
:param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
|
|
90
|
-
:type gpencil_strokes: bool | None
|
|
91
70
|
:param center_override: Center Override, Force using this center value (when set)
|
|
92
|
-
:type center_override: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
93
71
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
94
|
-
:type release_confirm: bool | None
|
|
95
72
|
:param use_accurate: Accurate, Use accurate transformation
|
|
96
|
-
:type use_accurate: bool | None
|
|
97
73
|
"""
|
|
98
74
|
|
|
99
75
|
def create_orientation(
|
|
@@ -108,26 +84,18 @@ def create_orientation(
|
|
|
108
84
|
) -> None:
|
|
109
85
|
"""Create transformation orientation from selection
|
|
110
86
|
|
|
111
|
-
:type execution_context: int | str | None
|
|
112
|
-
:type undo: bool | None
|
|
113
87
|
:param name: Name, Name of the new custom orientation
|
|
114
|
-
:type name: str
|
|
115
88
|
:param use_view: Use View, Use the current view instead of the active object to create the new orientation
|
|
116
|
-
:type use_view: bool | None
|
|
117
89
|
:param use: Use After Creation, Select orientation after its creation
|
|
118
|
-
:type use: bool | None
|
|
119
90
|
:param overwrite: Overwrite Previous, Overwrite previously created orientation with same name
|
|
120
|
-
:type overwrite: bool | None
|
|
121
91
|
"""
|
|
122
92
|
|
|
123
93
|
def delete_orientation(
|
|
124
|
-
execution_context: int | str | None = None,
|
|
94
|
+
execution_context: int | str | None = None,
|
|
95
|
+
undo: bool | None = None,
|
|
96
|
+
/,
|
|
125
97
|
) -> None:
|
|
126
|
-
"""Delete transformation orientation
|
|
127
|
-
|
|
128
|
-
:type execution_context: int | str | None
|
|
129
|
-
:type undo: bool | None
|
|
130
|
-
"""
|
|
98
|
+
"""Delete transformation orientation"""
|
|
131
99
|
|
|
132
100
|
def edge_bevelweight(
|
|
133
101
|
execution_context: int | str | None = None,
|
|
@@ -141,16 +109,10 @@ def edge_bevelweight(
|
|
|
141
109
|
) -> None:
|
|
142
110
|
"""Change the bevel weight of edges
|
|
143
111
|
|
|
144
|
-
:type execution_context: int | str | None
|
|
145
|
-
:type undo: bool | None
|
|
146
112
|
:param value: Factor
|
|
147
|
-
:type value: float | None
|
|
148
113
|
:param snap: Use Snapping Options
|
|
149
|
-
:type snap: bool | None
|
|
150
114
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
151
|
-
:type release_confirm: bool | None
|
|
152
115
|
:param use_accurate: Accurate, Use accurate transformation
|
|
153
|
-
:type use_accurate: bool | None
|
|
154
116
|
"""
|
|
155
117
|
|
|
156
118
|
def edge_crease(
|
|
@@ -165,16 +127,10 @@ def edge_crease(
|
|
|
165
127
|
) -> None:
|
|
166
128
|
"""Change the crease of edges
|
|
167
129
|
|
|
168
|
-
:type execution_context: int | str | None
|
|
169
|
-
:type undo: bool | None
|
|
170
130
|
:param value: Factor
|
|
171
|
-
:type value: float | None
|
|
172
131
|
:param snap: Use Snapping Options
|
|
173
|
-
:type snap: bool | None
|
|
174
132
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
175
|
-
:type release_confirm: bool | None
|
|
176
133
|
:param use_accurate: Accurate, Use accurate transformation
|
|
177
|
-
:type use_accurate: bool | None
|
|
178
134
|
"""
|
|
179
135
|
|
|
180
136
|
def edge_slide(
|
|
@@ -209,54 +165,32 @@ def edge_slide(
|
|
|
209
165
|
) -> None:
|
|
210
166
|
"""Slide an edge loop along a mesh
|
|
211
167
|
|
|
212
|
-
:type execution_context: int | str | None
|
|
213
|
-
:type undo: bool | None
|
|
214
168
|
:param value: Factor
|
|
215
|
-
:type value: float | None
|
|
216
169
|
:param single_side: Single Side
|
|
217
|
-
:type single_side: bool | None
|
|
218
170
|
:param use_even: Even, Make the edge loop match the shape of the adjacent edge loop
|
|
219
|
-
:type use_even: bool | None
|
|
220
171
|
:param flipped: Flipped, When Even mode is active, flips between the two adjacent edge loops
|
|
221
|
-
:type flipped: bool | None
|
|
222
172
|
:param use_clamp: Clamp, Clamp within the edge extents
|
|
223
|
-
:type use_clamp: bool | None
|
|
224
173
|
:param mirror: Mirror Editing
|
|
225
|
-
:type mirror: bool | None
|
|
226
174
|
:param snap: Use Snapping Options
|
|
227
|
-
:type snap: bool | None
|
|
228
175
|
:param snap_elements: Snap to Elements
|
|
229
|
-
:type snap_elements: set[bpy.stub_internal.rna_enums.SnapElementItems] | None
|
|
230
176
|
:param use_snap_project: Project Individual Elements
|
|
231
|
-
:type use_snap_project: bool | None
|
|
232
177
|
:param snap_target: Snap Base, Point on source that will snap to target
|
|
233
|
-
:type snap_target: bpy.stub_internal.rna_enums.SnapSourceItems | None
|
|
234
178
|
:param use_snap_self: Target: Include Active
|
|
235
|
-
:type use_snap_self: bool | None
|
|
236
179
|
:param use_snap_edit: Target: Include Edit
|
|
237
|
-
:type use_snap_edit: bool | None
|
|
238
180
|
:param use_snap_nonedit: Target: Include Non-Edited
|
|
239
|
-
:type use_snap_nonedit: bool | None
|
|
240
181
|
:param use_snap_selectable: Target: Exclude Non-Selectable
|
|
241
|
-
:type use_snap_selectable: bool | None
|
|
242
182
|
:param snap_point: Point
|
|
243
|
-
:type snap_point: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
244
183
|
:param correct_uv: Correct UVs, Correct UV coordinates when transforming
|
|
245
|
-
:type correct_uv: bool | None
|
|
246
184
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
247
|
-
:type release_confirm: bool | None
|
|
248
185
|
:param use_accurate: Accurate, Use accurate transformation
|
|
249
|
-
:type use_accurate: bool | None
|
|
250
186
|
"""
|
|
251
187
|
|
|
252
188
|
def from_gizmo(
|
|
253
|
-
execution_context: int | str | None = None,
|
|
189
|
+
execution_context: int | str | None = None,
|
|
190
|
+
undo: bool | None = None,
|
|
191
|
+
/,
|
|
254
192
|
) -> None:
|
|
255
|
-
"""Transform selected items by mode type
|
|
256
|
-
|
|
257
|
-
:type execution_context: int | str | None
|
|
258
|
-
:type undo: bool | None
|
|
259
|
-
"""
|
|
193
|
+
"""Transform selected items by mode type"""
|
|
260
194
|
|
|
261
195
|
def mirror(
|
|
262
196
|
execution_context: int | str | None = None,
|
|
@@ -280,24 +214,14 @@ def mirror(
|
|
|
280
214
|
) -> None:
|
|
281
215
|
"""Mirror selected items around one or more axes
|
|
282
216
|
|
|
283
|
-
:type execution_context: int | str | None
|
|
284
|
-
:type undo: bool | None
|
|
285
217
|
:param orient_type: Orientation, Transformation orientation
|
|
286
|
-
:type orient_type: str | None
|
|
287
218
|
:param orient_matrix: Matrix
|
|
288
|
-
:type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
|
|
289
219
|
:param orient_matrix_type: Matrix Orientation
|
|
290
|
-
:type orient_matrix_type: str | None
|
|
291
220
|
:param constraint_axis: Constraint Axis
|
|
292
|
-
:type constraint_axis: collections.abc.Iterable[bool] | None
|
|
293
221
|
:param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
|
|
294
|
-
:type gpencil_strokes: bool | None
|
|
295
222
|
:param center_override: Center Override, Force using this center value (when set)
|
|
296
|
-
:type center_override: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
297
223
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
298
|
-
:type release_confirm: bool | None
|
|
299
224
|
:param use_accurate: Accurate, Use accurate transformation
|
|
300
|
-
:type use_accurate: bool | None
|
|
301
225
|
"""
|
|
302
226
|
|
|
303
227
|
def push_pull(
|
|
@@ -324,30 +248,17 @@ def push_pull(
|
|
|
324
248
|
) -> None:
|
|
325
249
|
"""Push/Pull selected items
|
|
326
250
|
|
|
327
|
-
:type execution_context: int | str | None
|
|
328
|
-
:type undo: bool | None
|
|
329
251
|
:param value: Distance
|
|
330
|
-
:type value: float | None
|
|
331
252
|
:param mirror: Mirror Editing
|
|
332
|
-
:type mirror: bool | None
|
|
333
253
|
:param use_proportional_edit: Proportional Editing
|
|
334
|
-
:type use_proportional_edit: bool | None
|
|
335
254
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
336
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
337
255
|
:param proportional_size: Proportional Size
|
|
338
|
-
:type proportional_size: float | None
|
|
339
256
|
:param use_proportional_connected: Connected
|
|
340
|
-
:type use_proportional_connected: bool | None
|
|
341
257
|
:param use_proportional_projected: Projected (2D)
|
|
342
|
-
:type use_proportional_projected: bool | None
|
|
343
258
|
:param snap: Use Snapping Options
|
|
344
|
-
:type snap: bool | None
|
|
345
259
|
:param center_override: Center Override, Force using this center value (when set)
|
|
346
|
-
:type center_override: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
347
260
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
348
|
-
:type release_confirm: bool | None
|
|
349
261
|
:param use_accurate: Accurate, Use accurate transformation
|
|
350
|
-
:type use_accurate: bool | None
|
|
351
262
|
"""
|
|
352
263
|
|
|
353
264
|
def resize(
|
|
@@ -403,64 +314,34 @@ def resize(
|
|
|
403
314
|
) -> None:
|
|
404
315
|
"""Scale (resize) selected items
|
|
405
316
|
|
|
406
|
-
:type execution_context: int | str | None
|
|
407
|
-
:type undo: bool | None
|
|
408
317
|
:param value: Scale
|
|
409
|
-
:type value: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
410
318
|
:param mouse_dir_constraint: Mouse Directional Constraint
|
|
411
|
-
:type mouse_dir_constraint: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
412
319
|
:param orient_type: Orientation, Transformation orientation
|
|
413
|
-
:type orient_type: str | None
|
|
414
320
|
:param orient_matrix: Matrix
|
|
415
|
-
:type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
|
|
416
321
|
:param orient_matrix_type: Matrix Orientation
|
|
417
|
-
:type orient_matrix_type: str | None
|
|
418
322
|
:param constraint_axis: Constraint Axis
|
|
419
|
-
:type constraint_axis: collections.abc.Iterable[bool] | None
|
|
420
323
|
:param mirror: Mirror Editing
|
|
421
|
-
:type mirror: bool | None
|
|
422
324
|
:param use_proportional_edit: Proportional Editing
|
|
423
|
-
:type use_proportional_edit: bool | None
|
|
424
325
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
425
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
426
326
|
:param proportional_size: Proportional Size
|
|
427
|
-
:type proportional_size: float | None
|
|
428
327
|
:param use_proportional_connected: Connected
|
|
429
|
-
:type use_proportional_connected: bool | None
|
|
430
328
|
:param use_proportional_projected: Projected (2D)
|
|
431
|
-
:type use_proportional_projected: bool | None
|
|
432
329
|
:param snap: Use Snapping Options
|
|
433
|
-
:type snap: bool | None
|
|
434
330
|
:param snap_elements: Snap to Elements
|
|
435
|
-
:type snap_elements: set[bpy.stub_internal.rna_enums.SnapElementItems] | None
|
|
436
331
|
:param use_snap_project: Project Individual Elements
|
|
437
|
-
:type use_snap_project: bool | None
|
|
438
332
|
:param snap_target: Snap Base, Point on source that will snap to target
|
|
439
|
-
:type snap_target: bpy.stub_internal.rna_enums.SnapSourceItems | None
|
|
440
333
|
:param use_snap_self: Target: Include Active
|
|
441
|
-
:type use_snap_self: bool | None
|
|
442
334
|
:param use_snap_edit: Target: Include Edit
|
|
443
|
-
:type use_snap_edit: bool | None
|
|
444
335
|
:param use_snap_nonedit: Target: Include Non-Edited
|
|
445
|
-
:type use_snap_nonedit: bool | None
|
|
446
336
|
:param use_snap_selectable: Target: Exclude Non-Selectable
|
|
447
|
-
:type use_snap_selectable: bool | None
|
|
448
337
|
:param snap_point: Point
|
|
449
|
-
:type snap_point: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
450
338
|
:param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
|
|
451
|
-
:type gpencil_strokes: bool | None
|
|
452
339
|
:param texture_space: Edit Texture Space, Edit object data texture space
|
|
453
|
-
:type texture_space: bool | None
|
|
454
340
|
:param remove_on_cancel: Remove on Cancel, Remove elements on cancel
|
|
455
|
-
:type remove_on_cancel: bool | None
|
|
456
341
|
:param use_duplicated_keyframes: Duplicated Keyframes, Transform duplicated keyframes
|
|
457
|
-
:type use_duplicated_keyframes: bool | None
|
|
458
342
|
:param center_override: Center Override, Force using this center value (when set)
|
|
459
|
-
:type center_override: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
460
343
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
461
|
-
:type release_confirm: bool | None
|
|
462
344
|
:param use_accurate: Accurate, Use accurate transformation
|
|
463
|
-
:type use_accurate: bool | None
|
|
464
345
|
"""
|
|
465
346
|
|
|
466
347
|
def rotate(
|
|
@@ -509,58 +390,31 @@ def rotate(
|
|
|
509
390
|
) -> None:
|
|
510
391
|
"""Rotate selected items
|
|
511
392
|
|
|
512
|
-
:type execution_context: int | str | None
|
|
513
|
-
:type undo: bool | None
|
|
514
393
|
:param value: Angle
|
|
515
|
-
:type value: float | None
|
|
516
394
|
:param orient_axis: Axis
|
|
517
|
-
:type orient_axis: bpy.stub_internal.rna_enums.AxisXyzItems | None
|
|
518
395
|
:param orient_type: Orientation, Transformation orientation
|
|
519
|
-
:type orient_type: str | None
|
|
520
396
|
:param orient_matrix: Matrix
|
|
521
|
-
:type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
|
|
522
397
|
:param orient_matrix_type: Matrix Orientation
|
|
523
|
-
:type orient_matrix_type: str | None
|
|
524
398
|
:param constraint_axis: Constraint Axis
|
|
525
|
-
:type constraint_axis: collections.abc.Iterable[bool] | None
|
|
526
399
|
:param mirror: Mirror Editing
|
|
527
|
-
:type mirror: bool | None
|
|
528
400
|
:param use_proportional_edit: Proportional Editing
|
|
529
|
-
:type use_proportional_edit: bool | None
|
|
530
401
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
531
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
532
402
|
:param proportional_size: Proportional Size
|
|
533
|
-
:type proportional_size: float | None
|
|
534
403
|
:param use_proportional_connected: Connected
|
|
535
|
-
:type use_proportional_connected: bool | None
|
|
536
404
|
:param use_proportional_projected: Projected (2D)
|
|
537
|
-
:type use_proportional_projected: bool | None
|
|
538
405
|
:param snap: Use Snapping Options
|
|
539
|
-
:type snap: bool | None
|
|
540
406
|
:param snap_elements: Snap to Elements
|
|
541
|
-
:type snap_elements: set[bpy.stub_internal.rna_enums.SnapElementItems] | None
|
|
542
407
|
:param use_snap_project: Project Individual Elements
|
|
543
|
-
:type use_snap_project: bool | None
|
|
544
408
|
:param snap_target: Snap Base, Point on source that will snap to target
|
|
545
|
-
:type snap_target: bpy.stub_internal.rna_enums.SnapSourceItems | None
|
|
546
409
|
:param use_snap_self: Target: Include Active
|
|
547
|
-
:type use_snap_self: bool | None
|
|
548
410
|
:param use_snap_edit: Target: Include Edit
|
|
549
|
-
:type use_snap_edit: bool | None
|
|
550
411
|
:param use_snap_nonedit: Target: Include Non-Edited
|
|
551
|
-
:type use_snap_nonedit: bool | None
|
|
552
412
|
:param use_snap_selectable: Target: Exclude Non-Selectable
|
|
553
|
-
:type use_snap_selectable: bool | None
|
|
554
413
|
:param snap_point: Point
|
|
555
|
-
:type snap_point: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
556
414
|
:param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
|
|
557
|
-
:type gpencil_strokes: bool | None
|
|
558
415
|
:param center_override: Center Override, Force using this center value (when set)
|
|
559
|
-
:type center_override: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
560
416
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
561
|
-
:type release_confirm: bool | None
|
|
562
417
|
:param use_accurate: Accurate, Use accurate transformation
|
|
563
|
-
:type use_accurate: bool | None
|
|
564
418
|
"""
|
|
565
419
|
|
|
566
420
|
def rotate_normal(
|
|
@@ -580,28 +434,17 @@ def rotate_normal(
|
|
|
580
434
|
release_confirm: bool | None = False,
|
|
581
435
|
use_accurate: bool | None = False,
|
|
582
436
|
) -> None:
|
|
583
|
-
"""Rotate
|
|
437
|
+
"""Rotate custom normal of selected items
|
|
584
438
|
|
|
585
|
-
:type execution_context: int | str | None
|
|
586
|
-
:type undo: bool | None
|
|
587
439
|
:param value: Angle
|
|
588
|
-
:type value: float | None
|
|
589
440
|
:param orient_axis: Axis
|
|
590
|
-
:type orient_axis: bpy.stub_internal.rna_enums.AxisXyzItems | None
|
|
591
441
|
:param orient_type: Orientation, Transformation orientation
|
|
592
|
-
:type orient_type: str | None
|
|
593
442
|
:param orient_matrix: Matrix
|
|
594
|
-
:type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
|
|
595
443
|
:param orient_matrix_type: Matrix Orientation
|
|
596
|
-
:type orient_matrix_type: str | None
|
|
597
444
|
:param constraint_axis: Constraint Axis
|
|
598
|
-
:type constraint_axis: collections.abc.Iterable[bool] | None
|
|
599
445
|
:param mirror: Mirror Editing
|
|
600
|
-
:type mirror: bool | None
|
|
601
446
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
602
|
-
:type release_confirm: bool | None
|
|
603
447
|
:param use_accurate: Accurate, Use accurate transformation
|
|
604
|
-
:type use_accurate: bool | None
|
|
605
448
|
"""
|
|
606
449
|
|
|
607
450
|
def select_orientation(
|
|
@@ -613,10 +456,7 @@ def select_orientation(
|
|
|
613
456
|
) -> None:
|
|
614
457
|
"""Select transformation orientation
|
|
615
458
|
|
|
616
|
-
:type execution_context: int | str | None
|
|
617
|
-
:type undo: bool | None
|
|
618
459
|
:param orientation: Orientation, Transformation orientation
|
|
619
|
-
:type orientation: str | None
|
|
620
460
|
"""
|
|
621
461
|
|
|
622
462
|
def seq_slide(
|
|
@@ -636,26 +476,15 @@ def seq_slide(
|
|
|
636
476
|
) -> None:
|
|
637
477
|
"""Slide a sequence strip in time
|
|
638
478
|
|
|
639
|
-
:type execution_context: int | str | None
|
|
640
|
-
:type undo: bool | None
|
|
641
479
|
:param value: Offset
|
|
642
|
-
:type value: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
643
480
|
:param use_restore_handle_selection: Restore Handle Selection, Restore handle selection after tweaking
|
|
644
|
-
:type use_restore_handle_selection: bool | None
|
|
645
481
|
:param snap: Use Snapping Options
|
|
646
|
-
:type snap: bool | None
|
|
647
482
|
:param texture_space: Edit Texture Space, Edit object data texture space
|
|
648
|
-
:type texture_space: bool | None
|
|
649
483
|
:param remove_on_cancel: Remove on Cancel, Remove elements on cancel
|
|
650
|
-
:type remove_on_cancel: bool | None
|
|
651
484
|
:param use_duplicated_keyframes: Duplicated Keyframes, Transform duplicated keyframes
|
|
652
|
-
:type use_duplicated_keyframes: bool | None
|
|
653
485
|
:param view2d_edge_pan: Edge Pan, Enable edge panning in 2D view
|
|
654
|
-
:type view2d_edge_pan: bool | None
|
|
655
486
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
656
|
-
:type release_confirm: bool | None
|
|
657
487
|
:param use_accurate: Accurate, Use accurate transformation
|
|
658
|
-
:type use_accurate: bool | None
|
|
659
488
|
"""
|
|
660
489
|
|
|
661
490
|
def shear(
|
|
@@ -663,7 +492,7 @@ def shear(
|
|
|
663
492
|
undo: bool | None = None,
|
|
664
493
|
/,
|
|
665
494
|
*,
|
|
666
|
-
|
|
495
|
+
angle: float | None = 0.0,
|
|
667
496
|
orient_axis: bpy.stub_internal.rna_enums.AxisXyzItems | None = "Z",
|
|
668
497
|
orient_axis_ortho: bpy.stub_internal.rna_enums.AxisXyzItems | None = "X",
|
|
669
498
|
orient_type: str | None = "GLOBAL",
|
|
@@ -685,40 +514,22 @@ def shear(
|
|
|
685
514
|
) -> None:
|
|
686
515
|
"""Shear selected items along the given axis
|
|
687
516
|
|
|
688
|
-
:
|
|
689
|
-
:type undo: bool | None
|
|
690
|
-
:param value: Offset
|
|
691
|
-
:type value: float | None
|
|
517
|
+
:param angle: Angle
|
|
692
518
|
:param orient_axis: Axis
|
|
693
|
-
:type orient_axis: bpy.stub_internal.rna_enums.AxisXyzItems | None
|
|
694
519
|
:param orient_axis_ortho: Axis Ortho
|
|
695
|
-
:type orient_axis_ortho: bpy.stub_internal.rna_enums.AxisXyzItems | None
|
|
696
520
|
:param orient_type: Orientation, Transformation orientation
|
|
697
|
-
:type orient_type: str | None
|
|
698
521
|
:param orient_matrix: Matrix
|
|
699
|
-
:type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
|
|
700
522
|
:param orient_matrix_type: Matrix Orientation
|
|
701
|
-
:type orient_matrix_type: str | None
|
|
702
523
|
:param mirror: Mirror Editing
|
|
703
|
-
:type mirror: bool | None
|
|
704
524
|
:param use_proportional_edit: Proportional Editing
|
|
705
|
-
:type use_proportional_edit: bool | None
|
|
706
525
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
707
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
708
526
|
:param proportional_size: Proportional Size
|
|
709
|
-
:type proportional_size: float | None
|
|
710
527
|
:param use_proportional_connected: Connected
|
|
711
|
-
:type use_proportional_connected: bool | None
|
|
712
528
|
:param use_proportional_projected: Projected (2D)
|
|
713
|
-
:type use_proportional_projected: bool | None
|
|
714
529
|
:param snap: Use Snapping Options
|
|
715
|
-
:type snap: bool | None
|
|
716
530
|
:param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
|
|
717
|
-
:type gpencil_strokes: bool | None
|
|
718
531
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
719
|
-
:type release_confirm: bool | None
|
|
720
532
|
:param use_accurate: Accurate, Use accurate transformation
|
|
721
|
-
:type use_accurate: bool | None
|
|
722
533
|
"""
|
|
723
534
|
|
|
724
535
|
def shrink_fatten(
|
|
@@ -741,30 +552,17 @@ def shrink_fatten(
|
|
|
741
552
|
) -> None:
|
|
742
553
|
"""Shrink/fatten selected vertices along normals
|
|
743
554
|
|
|
744
|
-
:type execution_context: int | str | None
|
|
745
|
-
:type undo: bool | None
|
|
746
555
|
:param value: Offset
|
|
747
|
-
:type value: float | None
|
|
748
556
|
:param use_even_offset: Offset Even, Scale the offset to give more even thickness
|
|
749
|
-
:type use_even_offset: bool | None
|
|
750
557
|
:param mirror: Mirror Editing
|
|
751
|
-
:type mirror: bool | None
|
|
752
558
|
:param use_proportional_edit: Proportional Editing
|
|
753
|
-
:type use_proportional_edit: bool | None
|
|
754
559
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
755
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
756
560
|
:param proportional_size: Proportional Size
|
|
757
|
-
:type proportional_size: float | None
|
|
758
561
|
:param use_proportional_connected: Connected
|
|
759
|
-
:type use_proportional_connected: bool | None
|
|
760
562
|
:param use_proportional_projected: Projected (2D)
|
|
761
|
-
:type use_proportional_projected: bool | None
|
|
762
563
|
:param snap: Use Snapping Options
|
|
763
|
-
:type snap: bool | None
|
|
764
564
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
765
|
-
:type release_confirm: bool | None
|
|
766
565
|
:param use_accurate: Accurate, Use accurate transformation
|
|
767
|
-
:type use_accurate: bool | None
|
|
768
566
|
"""
|
|
769
567
|
|
|
770
568
|
def skin_resize(
|
|
@@ -804,54 +602,30 @@ def skin_resize(
|
|
|
804
602
|
release_confirm: bool | None = False,
|
|
805
603
|
use_accurate: bool | None = False,
|
|
806
604
|
) -> None:
|
|
807
|
-
"""Scale selected vertices
|
|
605
|
+
"""Scale selected vertices skin radii
|
|
808
606
|
|
|
809
|
-
:type execution_context: int | str | None
|
|
810
|
-
:type undo: bool | None
|
|
811
607
|
:param value: Scale
|
|
812
|
-
:type value: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
813
608
|
:param orient_type: Orientation, Transformation orientation
|
|
814
|
-
:type orient_type: str | None
|
|
815
609
|
:param orient_matrix: Matrix
|
|
816
|
-
:type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
|
|
817
610
|
:param orient_matrix_type: Matrix Orientation
|
|
818
|
-
:type orient_matrix_type: str | None
|
|
819
611
|
:param constraint_axis: Constraint Axis
|
|
820
|
-
:type constraint_axis: collections.abc.Iterable[bool] | None
|
|
821
612
|
:param mirror: Mirror Editing
|
|
822
|
-
:type mirror: bool | None
|
|
823
613
|
:param use_proportional_edit: Proportional Editing
|
|
824
|
-
:type use_proportional_edit: bool | None
|
|
825
614
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
826
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
827
615
|
:param proportional_size: Proportional Size
|
|
828
|
-
:type proportional_size: float | None
|
|
829
616
|
:param use_proportional_connected: Connected
|
|
830
|
-
:type use_proportional_connected: bool | None
|
|
831
617
|
:param use_proportional_projected: Projected (2D)
|
|
832
|
-
:type use_proportional_projected: bool | None
|
|
833
618
|
:param snap: Use Snapping Options
|
|
834
|
-
:type snap: bool | None
|
|
835
619
|
:param snap_elements: Snap to Elements
|
|
836
|
-
:type snap_elements: set[bpy.stub_internal.rna_enums.SnapElementItems] | None
|
|
837
620
|
:param use_snap_project: Project Individual Elements
|
|
838
|
-
:type use_snap_project: bool | None
|
|
839
621
|
:param snap_target: Snap Base, Point on source that will snap to target
|
|
840
|
-
:type snap_target: bpy.stub_internal.rna_enums.SnapSourceItems | None
|
|
841
622
|
:param use_snap_self: Target: Include Active
|
|
842
|
-
:type use_snap_self: bool | None
|
|
843
623
|
:param use_snap_edit: Target: Include Edit
|
|
844
|
-
:type use_snap_edit: bool | None
|
|
845
624
|
:param use_snap_nonedit: Target: Include Non-Edited
|
|
846
|
-
:type use_snap_nonedit: bool | None
|
|
847
625
|
:param use_snap_selectable: Target: Exclude Non-Selectable
|
|
848
|
-
:type use_snap_selectable: bool | None
|
|
849
626
|
:param snap_point: Point
|
|
850
|
-
:type snap_point: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
851
627
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
852
|
-
:type release_confirm: bool | None
|
|
853
628
|
:param use_accurate: Accurate, Use accurate transformation
|
|
854
|
-
:type use_accurate: bool | None
|
|
855
629
|
"""
|
|
856
630
|
|
|
857
631
|
def tilt(
|
|
@@ -873,28 +647,16 @@ def tilt(
|
|
|
873
647
|
) -> None:
|
|
874
648
|
"""Tilt selected control vertices of 3D curve
|
|
875
649
|
|
|
876
|
-
:type execution_context: int | str | None
|
|
877
|
-
:type undo: bool | None
|
|
878
650
|
:param value: Angle
|
|
879
|
-
:type value: float | None
|
|
880
651
|
:param mirror: Mirror Editing
|
|
881
|
-
:type mirror: bool | None
|
|
882
652
|
:param use_proportional_edit: Proportional Editing
|
|
883
|
-
:type use_proportional_edit: bool | None
|
|
884
653
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
885
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
886
654
|
:param proportional_size: Proportional Size
|
|
887
|
-
:type proportional_size: float | None
|
|
888
655
|
:param use_proportional_connected: Connected
|
|
889
|
-
:type use_proportional_connected: bool | None
|
|
890
656
|
:param use_proportional_projected: Projected (2D)
|
|
891
|
-
:type use_proportional_projected: bool | None
|
|
892
657
|
:param snap: Use Snapping Options
|
|
893
|
-
:type snap: bool | None
|
|
894
658
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
895
|
-
:type release_confirm: bool | None
|
|
896
659
|
:param use_accurate: Accurate, Use accurate transformation
|
|
897
|
-
:type use_accurate: bool | None
|
|
898
660
|
"""
|
|
899
661
|
|
|
900
662
|
def tosphere(
|
|
@@ -922,32 +684,18 @@ def tosphere(
|
|
|
922
684
|
) -> None:
|
|
923
685
|
"""Move selected items outward in a spherical shape around geometric center
|
|
924
686
|
|
|
925
|
-
:type execution_context: int | str | None
|
|
926
|
-
:type undo: bool | None
|
|
927
687
|
:param value: Factor
|
|
928
|
-
:type value: float | None
|
|
929
688
|
:param mirror: Mirror Editing
|
|
930
|
-
:type mirror: bool | None
|
|
931
689
|
:param use_proportional_edit: Proportional Editing
|
|
932
|
-
:type use_proportional_edit: bool | None
|
|
933
690
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
934
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
935
691
|
:param proportional_size: Proportional Size
|
|
936
|
-
:type proportional_size: float | None
|
|
937
692
|
:param use_proportional_connected: Connected
|
|
938
|
-
:type use_proportional_connected: bool | None
|
|
939
693
|
:param use_proportional_projected: Projected (2D)
|
|
940
|
-
:type use_proportional_projected: bool | None
|
|
941
694
|
:param snap: Use Snapping Options
|
|
942
|
-
:type snap: bool | None
|
|
943
695
|
:param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
|
|
944
|
-
:type gpencil_strokes: bool | None
|
|
945
696
|
:param center_override: Center Override, Force using this center value (when set)
|
|
946
|
-
:type center_override: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
947
697
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
948
|
-
:type release_confirm: bool | None
|
|
949
698
|
:param use_accurate: Accurate, Use accurate transformation
|
|
950
|
-
:type use_accurate: bool | None
|
|
951
699
|
"""
|
|
952
700
|
|
|
953
701
|
def trackball(
|
|
@@ -975,32 +723,18 @@ def trackball(
|
|
|
975
723
|
) -> None:
|
|
976
724
|
"""Trackball style rotation of selected items
|
|
977
725
|
|
|
978
|
-
:type execution_context: int | str | None
|
|
979
|
-
:type undo: bool | None
|
|
980
726
|
:param value: Angle
|
|
981
|
-
:type value: collections.abc.Iterable[float] | None
|
|
982
727
|
:param mirror: Mirror Editing
|
|
983
|
-
:type mirror: bool | None
|
|
984
728
|
:param use_proportional_edit: Proportional Editing
|
|
985
|
-
:type use_proportional_edit: bool | None
|
|
986
729
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
987
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
988
730
|
:param proportional_size: Proportional Size
|
|
989
|
-
:type proportional_size: float | None
|
|
990
731
|
:param use_proportional_connected: Connected
|
|
991
|
-
:type use_proportional_connected: bool | None
|
|
992
732
|
:param use_proportional_projected: Projected (2D)
|
|
993
|
-
:type use_proportional_projected: bool | None
|
|
994
733
|
:param snap: Use Snapping Options
|
|
995
|
-
:type snap: bool | None
|
|
996
734
|
:param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
|
|
997
|
-
:type gpencil_strokes: bool | None
|
|
998
735
|
:param center_override: Center Override, Force using this center value (when set)
|
|
999
|
-
:type center_override: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1000
736
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
1001
|
-
:type release_confirm: bool | None
|
|
1002
737
|
:param use_accurate: Accurate, Use accurate transformation
|
|
1003
|
-
:type use_accurate: bool | None
|
|
1004
738
|
"""
|
|
1005
739
|
|
|
1006
740
|
def transform(
|
|
@@ -1067,72 +801,38 @@ def transform(
|
|
|
1067
801
|
) -> None:
|
|
1068
802
|
"""Transform selected items by mode type
|
|
1069
803
|
|
|
1070
|
-
:type execution_context: int | str | None
|
|
1071
|
-
:type undo: bool | None
|
|
1072
804
|
:param mode: Mode
|
|
1073
|
-
:type mode: bpy.stub_internal.rna_enums.TransformModeTypeItems | None
|
|
1074
805
|
:param value: Values
|
|
1075
|
-
:type value: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1076
806
|
:param orient_axis: Axis
|
|
1077
|
-
:type orient_axis: bpy.stub_internal.rna_enums.AxisXyzItems | None
|
|
1078
807
|
:param orient_type: Orientation, Transformation orientation
|
|
1079
|
-
:type orient_type: bpy.stub_internal.rna_enums.TransformOrientationItems | None
|
|
1080
808
|
:param orient_matrix: Matrix
|
|
1081
|
-
:type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
|
|
1082
809
|
:param orient_matrix_type: Matrix Orientation
|
|
1083
|
-
:type orient_matrix_type: bpy.stub_internal.rna_enums.TransformOrientationItems | None
|
|
1084
810
|
:param constraint_axis: Constraint Axis
|
|
1085
|
-
:type constraint_axis: collections.abc.Iterable[bool] | None
|
|
1086
811
|
:param mirror: Mirror Editing
|
|
1087
|
-
:type mirror: bool | None
|
|
1088
812
|
:param use_proportional_edit: Proportional Editing
|
|
1089
|
-
:type use_proportional_edit: bool | None
|
|
1090
813
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
1091
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
1092
814
|
:param proportional_size: Proportional Size
|
|
1093
|
-
:type proportional_size: float | None
|
|
1094
815
|
:param use_proportional_connected: Connected
|
|
1095
|
-
:type use_proportional_connected: bool | None
|
|
1096
816
|
:param use_proportional_projected: Projected (2D)
|
|
1097
|
-
:type use_proportional_projected: bool | None
|
|
1098
817
|
:param snap: Use Snapping Options
|
|
1099
|
-
:type snap: bool | None
|
|
1100
818
|
:param snap_elements: Snap to Elements
|
|
1101
|
-
:type snap_elements: set[bpy.stub_internal.rna_enums.SnapElementItems] | None
|
|
1102
819
|
:param use_snap_project: Project Individual Elements
|
|
1103
|
-
:type use_snap_project: bool | None
|
|
1104
820
|
:param snap_target: Snap Base, Point on source that will snap to target
|
|
1105
|
-
:type snap_target: bpy.stub_internal.rna_enums.SnapSourceItems | None
|
|
1106
821
|
:param use_snap_self: Target: Include Active
|
|
1107
|
-
:type use_snap_self: bool | None
|
|
1108
822
|
:param use_snap_edit: Target: Include Edit
|
|
1109
|
-
:type use_snap_edit: bool | None
|
|
1110
823
|
:param use_snap_nonedit: Target: Include Non-Edited
|
|
1111
|
-
:type use_snap_nonedit: bool | None
|
|
1112
824
|
:param use_snap_selectable: Target: Exclude Non-Selectable
|
|
1113
|
-
:type use_snap_selectable: bool | None
|
|
1114
825
|
:param snap_point: Point
|
|
1115
|
-
:type snap_point: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1116
826
|
:param snap_align: Align with Point Normal
|
|
1117
|
-
:type snap_align: bool | None
|
|
1118
827
|
:param snap_normal: Normal
|
|
1119
|
-
:type snap_normal: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1120
828
|
:param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
|
|
1121
|
-
:type gpencil_strokes: bool | None
|
|
1122
829
|
:param texture_space: Edit Texture Space, Edit object data texture space
|
|
1123
|
-
:type texture_space: bool | None
|
|
1124
830
|
:param remove_on_cancel: Remove on Cancel, Remove elements on cancel
|
|
1125
|
-
:type remove_on_cancel: bool | None
|
|
1126
831
|
:param use_duplicated_keyframes: Duplicated Keyframes, Transform duplicated keyframes
|
|
1127
|
-
:type use_duplicated_keyframes: bool | None
|
|
1128
832
|
:param center_override: Center Override, Force using this center value (when set)
|
|
1129
|
-
:type center_override: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1130
833
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
1131
|
-
:type release_confirm: bool | None
|
|
1132
834
|
:param use_accurate: Accurate, Use accurate transformation
|
|
1133
|
-
:type use_accurate: bool | None
|
|
1134
835
|
:param use_automerge_and_split: Auto Merge & Split, Forces the use of Auto Merge and Split
|
|
1135
|
-
:type use_automerge_and_split: bool | None
|
|
1136
836
|
"""
|
|
1137
837
|
|
|
1138
838
|
def translate(
|
|
@@ -1190,72 +890,38 @@ def translate(
|
|
|
1190
890
|
) -> None:
|
|
1191
891
|
"""Move selected items
|
|
1192
892
|
|
|
1193
|
-
:type execution_context: int | str | None
|
|
1194
|
-
:type undo: bool | None
|
|
1195
893
|
:param value: Move
|
|
1196
|
-
:type value: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1197
894
|
:param orient_type: Orientation, Transformation orientation
|
|
1198
|
-
:type orient_type: bpy.stub_internal.rna_enums.TransformOrientationItems | None
|
|
1199
895
|
:param orient_matrix: Matrix
|
|
1200
|
-
:type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
|
|
1201
896
|
:param orient_matrix_type: Matrix Orientation
|
|
1202
|
-
:type orient_matrix_type: bpy.stub_internal.rna_enums.TransformOrientationItems | None
|
|
1203
897
|
:param constraint_axis: Constraint Axis
|
|
1204
|
-
:type constraint_axis: collections.abc.Iterable[bool] | None
|
|
1205
898
|
:param mirror: Mirror Editing
|
|
1206
|
-
:type mirror: bool | None
|
|
1207
899
|
:param use_proportional_edit: Proportional Editing
|
|
1208
|
-
:type use_proportional_edit: bool | None
|
|
1209
900
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
1210
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
1211
901
|
:param proportional_size: Proportional Size
|
|
1212
|
-
:type proportional_size: float | None
|
|
1213
902
|
:param use_proportional_connected: Connected
|
|
1214
|
-
:type use_proportional_connected: bool | None
|
|
1215
903
|
:param use_proportional_projected: Projected (2D)
|
|
1216
|
-
:type use_proportional_projected: bool | None
|
|
1217
904
|
:param snap: Use Snapping Options
|
|
1218
|
-
:type snap: bool | None
|
|
1219
905
|
:param snap_elements: Snap to Elements
|
|
1220
|
-
:type snap_elements: set[bpy.stub_internal.rna_enums.SnapElementItems] | None
|
|
1221
906
|
:param use_snap_project: Project Individual Elements
|
|
1222
|
-
:type use_snap_project: bool | None
|
|
1223
907
|
:param snap_target: Snap Base, Point on source that will snap to target
|
|
1224
|
-
:type snap_target: bpy.stub_internal.rna_enums.SnapSourceItems | None
|
|
1225
908
|
:param use_snap_self: Target: Include Active
|
|
1226
|
-
:type use_snap_self: bool | None
|
|
1227
909
|
:param use_snap_edit: Target: Include Edit
|
|
1228
|
-
:type use_snap_edit: bool | None
|
|
1229
910
|
:param use_snap_nonedit: Target: Include Non-Edited
|
|
1230
|
-
:type use_snap_nonedit: bool | None
|
|
1231
911
|
:param use_snap_selectable: Target: Exclude Non-Selectable
|
|
1232
|
-
:type use_snap_selectable: bool | None
|
|
1233
912
|
:param snap_point: Point
|
|
1234
|
-
:type snap_point: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1235
913
|
:param snap_align: Align with Point Normal
|
|
1236
|
-
:type snap_align: bool | None
|
|
1237
914
|
:param snap_normal: Normal
|
|
1238
|
-
:type snap_normal: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1239
915
|
:param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
|
|
1240
|
-
:type gpencil_strokes: bool | None
|
|
1241
916
|
:param cursor_transform: Transform Cursor
|
|
1242
|
-
:type cursor_transform: bool | None
|
|
1243
917
|
:param texture_space: Edit Texture Space, Edit object data texture space
|
|
1244
|
-
:type texture_space: bool | None
|
|
1245
918
|
:param remove_on_cancel: Remove on Cancel, Remove elements on cancel
|
|
1246
|
-
:type remove_on_cancel: bool | None
|
|
1247
919
|
:param use_duplicated_keyframes: Duplicated Keyframes, Transform duplicated keyframes
|
|
1248
|
-
:type use_duplicated_keyframes: bool | None
|
|
1249
920
|
:param view2d_edge_pan: Edge Pan, Enable edge panning in 2D view
|
|
1250
|
-
:type view2d_edge_pan: bool | None
|
|
1251
921
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
1252
|
-
:type release_confirm: bool | None
|
|
1253
922
|
:param use_accurate: Accurate, Use accurate transformation
|
|
1254
|
-
:type use_accurate: bool | None
|
|
1255
923
|
:param use_automerge_and_split: Auto Merge & Split, Forces the use of Auto Merge and Split
|
|
1256
|
-
:type use_automerge_and_split: bool | None
|
|
1257
924
|
:param translate_origin: Translate Origin, Translate origin instead of selection
|
|
1258
|
-
:type translate_origin: bool | None
|
|
1259
925
|
"""
|
|
1260
926
|
|
|
1261
927
|
def vert_crease(
|
|
@@ -1270,16 +936,10 @@ def vert_crease(
|
|
|
1270
936
|
) -> None:
|
|
1271
937
|
"""Change the crease of vertices
|
|
1272
938
|
|
|
1273
|
-
:type execution_context: int | str | None
|
|
1274
|
-
:type undo: bool | None
|
|
1275
939
|
:param value: Factor
|
|
1276
|
-
:type value: float | None
|
|
1277
940
|
:param snap: Use Snapping Options
|
|
1278
|
-
:type snap: bool | None
|
|
1279
941
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
1280
|
-
:type release_confirm: bool | None
|
|
1281
942
|
:param use_accurate: Accurate, Use accurate transformation
|
|
1282
|
-
:type use_accurate: bool | None
|
|
1283
943
|
"""
|
|
1284
944
|
|
|
1285
945
|
def vert_slide(
|
|
@@ -1291,6 +951,11 @@ def vert_slide(
|
|
|
1291
951
|
use_even: bool | None = False,
|
|
1292
952
|
flipped: bool | None = False,
|
|
1293
953
|
use_clamp: bool | None = True,
|
|
954
|
+
direction: collections.abc.Sequence[float] | mathutils.Vector | None = (
|
|
955
|
+
0.0,
|
|
956
|
+
0.0,
|
|
957
|
+
0.0,
|
|
958
|
+
),
|
|
1294
959
|
mirror: bool | None = False,
|
|
1295
960
|
snap: bool | None = False,
|
|
1296
961
|
snap_elements: set[bpy.stub_internal.rna_enums.SnapElementItems] | None = {
|
|
@@ -1313,42 +978,24 @@ def vert_slide(
|
|
|
1313
978
|
) -> None:
|
|
1314
979
|
"""Slide a vertex along a mesh
|
|
1315
980
|
|
|
1316
|
-
:type execution_context: int | str | None
|
|
1317
|
-
:type undo: bool | None
|
|
1318
981
|
:param value: Factor
|
|
1319
|
-
:type value: float | None
|
|
1320
982
|
:param use_even: Even, Make the edge loop match the shape of the adjacent edge loop
|
|
1321
|
-
:type use_even: bool | None
|
|
1322
983
|
:param flipped: Flipped, When Even mode is active, flips between the two adjacent edge loops
|
|
1323
|
-
:type flipped: bool | None
|
|
1324
984
|
:param use_clamp: Clamp, Clamp within the edge extents
|
|
1325
|
-
:
|
|
985
|
+
:param direction: Slide Direction, World-space direction
|
|
1326
986
|
:param mirror: Mirror Editing
|
|
1327
|
-
:type mirror: bool | None
|
|
1328
987
|
:param snap: Use Snapping Options
|
|
1329
|
-
:type snap: bool | None
|
|
1330
988
|
:param snap_elements: Snap to Elements
|
|
1331
|
-
:type snap_elements: set[bpy.stub_internal.rna_enums.SnapElementItems] | None
|
|
1332
989
|
:param use_snap_project: Project Individual Elements
|
|
1333
|
-
:type use_snap_project: bool | None
|
|
1334
990
|
:param snap_target: Snap Base, Point on source that will snap to target
|
|
1335
|
-
:type snap_target: bpy.stub_internal.rna_enums.SnapSourceItems | None
|
|
1336
991
|
:param use_snap_self: Target: Include Active
|
|
1337
|
-
:type use_snap_self: bool | None
|
|
1338
992
|
:param use_snap_edit: Target: Include Edit
|
|
1339
|
-
:type use_snap_edit: bool | None
|
|
1340
993
|
:param use_snap_nonedit: Target: Include Non-Edited
|
|
1341
|
-
:type use_snap_nonedit: bool | None
|
|
1342
994
|
:param use_snap_selectable: Target: Exclude Non-Selectable
|
|
1343
|
-
:type use_snap_selectable: bool | None
|
|
1344
995
|
:param snap_point: Point
|
|
1345
|
-
:type snap_point: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1346
996
|
:param correct_uv: Correct UVs, Correct UV coordinates when transforming
|
|
1347
|
-
:type correct_uv: bool | None
|
|
1348
997
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
1349
|
-
:type release_confirm: bool | None
|
|
1350
998
|
:param use_accurate: Accurate, Use accurate transformation
|
|
1351
|
-
:type use_accurate: bool | None
|
|
1352
999
|
"""
|
|
1353
1000
|
|
|
1354
1001
|
def vertex_random(
|
|
@@ -1364,18 +1011,11 @@ def vertex_random(
|
|
|
1364
1011
|
) -> None:
|
|
1365
1012
|
"""Randomize vertices
|
|
1366
1013
|
|
|
1367
|
-
:type execution_context: int | str | None
|
|
1368
|
-
:type undo: bool | None
|
|
1369
1014
|
:param offset: Amount, Distance to offset
|
|
1370
|
-
:type offset: float | None
|
|
1371
1015
|
:param uniform: Uniform, Increase for uniform offset distance
|
|
1372
|
-
:type uniform: float | None
|
|
1373
1016
|
:param normal: Normal, Align offset direction to normals
|
|
1374
|
-
:type normal: float | None
|
|
1375
1017
|
:param seed: Random Seed, Seed for the random number generator
|
|
1376
|
-
:type seed: int | None
|
|
1377
1018
|
:param wait_for_input: Wait for Input
|
|
1378
|
-
:type wait_for_input: bool | None
|
|
1379
1019
|
"""
|
|
1380
1020
|
|
|
1381
1021
|
def vertex_warp(
|
|
@@ -1399,18 +1039,10 @@ def vertex_warp(
|
|
|
1399
1039
|
) -> None:
|
|
1400
1040
|
"""Warp vertices around the cursor
|
|
1401
1041
|
|
|
1402
|
-
:type execution_context: int | str | None
|
|
1403
|
-
:type undo: bool | None
|
|
1404
1042
|
:param warp_angle: Warp Angle, Amount to warp about the cursor
|
|
1405
|
-
:type warp_angle: float | None
|
|
1406
1043
|
:param offset_angle: Offset Angle, Angle to use as the basis for warping
|
|
1407
|
-
:type offset_angle: float | None
|
|
1408
1044
|
:param min: Min
|
|
1409
|
-
:type min: float | None
|
|
1410
1045
|
:param max: Max
|
|
1411
|
-
:type max: float | None
|
|
1412
1046
|
:param viewmat: Matrix
|
|
1413
|
-
:type viewmat: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
|
|
1414
1047
|
:param center: Center
|
|
1415
|
-
:type center: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1416
1048
|
"""
|