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/view3d/__init__.pyi
CHANGED
|
@@ -16,16 +16,10 @@ def bone_select_menu(
|
|
|
16
16
|
) -> None:
|
|
17
17
|
"""Menu bone selection
|
|
18
18
|
|
|
19
|
-
:type execution_context: int | str | None
|
|
20
|
-
:type undo: bool | None
|
|
21
19
|
:param name: Bone Name
|
|
22
|
-
:type name: str | None
|
|
23
20
|
:param extend: Extend
|
|
24
|
-
:type extend: bool | None
|
|
25
21
|
:param deselect: Deselect
|
|
26
|
-
:type deselect: bool | None
|
|
27
22
|
:param toggle: Toggle
|
|
28
|
-
:type toggle: bool | None
|
|
29
23
|
"""
|
|
30
24
|
|
|
31
25
|
def camera_background_image_add(
|
|
@@ -40,16 +34,10 @@ def camera_background_image_add(
|
|
|
40
34
|
) -> None:
|
|
41
35
|
"""Add a new background image to the active camera
|
|
42
36
|
|
|
43
|
-
:type execution_context: int | str | None
|
|
44
|
-
:type undo: bool | None
|
|
45
37
|
:param filepath: Filepath, Path to image file
|
|
46
|
-
:type filepath: str | None
|
|
47
38
|
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
48
|
-
:type relative_path: bool | None
|
|
49
39
|
:param name: Name, Name of the data-block to use by the operator
|
|
50
|
-
:type name: str
|
|
51
40
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
52
|
-
:type session_uid: int | None
|
|
53
41
|
"""
|
|
54
42
|
|
|
55
43
|
def camera_background_image_remove(
|
|
@@ -61,38 +49,29 @@ def camera_background_image_remove(
|
|
|
61
49
|
) -> None:
|
|
62
50
|
"""Remove a background image from the camera
|
|
63
51
|
|
|
64
|
-
:type execution_context: int | str | None
|
|
65
|
-
:type undo: bool | None
|
|
66
52
|
:param index: Index, Background image index to remove
|
|
67
|
-
:type index: int | None
|
|
68
53
|
"""
|
|
69
54
|
|
|
70
55
|
def camera_to_view(
|
|
71
|
-
execution_context: int | str | None = None,
|
|
56
|
+
execution_context: int | str | None = None,
|
|
57
|
+
undo: bool | None = None,
|
|
58
|
+
/,
|
|
72
59
|
) -> None:
|
|
73
|
-
"""Set camera view to active view
|
|
74
|
-
|
|
75
|
-
:type execution_context: int | str | None
|
|
76
|
-
:type undo: bool | None
|
|
77
|
-
"""
|
|
60
|
+
"""Set camera view to active view"""
|
|
78
61
|
|
|
79
62
|
def camera_to_view_selected(
|
|
80
|
-
execution_context: int | str | None = None,
|
|
63
|
+
execution_context: int | str | None = None,
|
|
64
|
+
undo: bool | None = None,
|
|
65
|
+
/,
|
|
81
66
|
) -> None:
|
|
82
|
-
"""Move the camera so selected objects are framed
|
|
83
|
-
|
|
84
|
-
:type execution_context: int | str | None
|
|
85
|
-
:type undo: bool | None
|
|
86
|
-
"""
|
|
67
|
+
"""Move the camera so selected objects are framed"""
|
|
87
68
|
|
|
88
69
|
def clear_render_border(
|
|
89
|
-
execution_context: int | str | None = None,
|
|
70
|
+
execution_context: int | str | None = None,
|
|
71
|
+
undo: bool | None = None,
|
|
72
|
+
/,
|
|
90
73
|
) -> None:
|
|
91
|
-
"""Clear the boundaries of the border render and disable border render
|
|
92
|
-
|
|
93
|
-
:type execution_context: int | str | None
|
|
94
|
-
:type undo: bool | None
|
|
95
|
-
"""
|
|
74
|
+
"""Clear the boundaries of the border render and disable border render"""
|
|
96
75
|
|
|
97
76
|
def clip_border(
|
|
98
77
|
execution_context: int | str | None = None,
|
|
@@ -107,28 +86,19 @@ def clip_border(
|
|
|
107
86
|
) -> None:
|
|
108
87
|
"""Set the view clipping region
|
|
109
88
|
|
|
110
|
-
:type execution_context: int | str | None
|
|
111
|
-
:type undo: bool | None
|
|
112
89
|
:param xmin: X Min
|
|
113
|
-
:type xmin: int | None
|
|
114
90
|
:param xmax: X Max
|
|
115
|
-
:type xmax: int | None
|
|
116
91
|
:param ymin: Y Min
|
|
117
|
-
:type ymin: int | None
|
|
118
92
|
:param ymax: Y Max
|
|
119
|
-
:type ymax: int | None
|
|
120
93
|
:param wait_for_input: Wait for Input
|
|
121
|
-
:type wait_for_input: bool | None
|
|
122
94
|
"""
|
|
123
95
|
|
|
124
96
|
def copybuffer(
|
|
125
|
-
execution_context: int | str | None = None,
|
|
97
|
+
execution_context: int | str | None = None,
|
|
98
|
+
undo: bool | None = None,
|
|
99
|
+
/,
|
|
126
100
|
) -> None:
|
|
127
|
-
"""Copy the selected objects to the internal clipboard
|
|
128
|
-
|
|
129
|
-
:type execution_context: int | str | None
|
|
130
|
-
:type undo: bool | None
|
|
131
|
-
"""
|
|
101
|
+
"""Copy the selected objects to the internal clipboard"""
|
|
132
102
|
|
|
133
103
|
def cursor3d(
|
|
134
104
|
execution_context: int | str | None = None,
|
|
@@ -140,10 +110,7 @@ def cursor3d(
|
|
|
140
110
|
) -> None:
|
|
141
111
|
"""Set the location of the 3D cursor
|
|
142
112
|
|
|
143
|
-
:type execution_context: int | str | None
|
|
144
|
-
:type undo: bool | None
|
|
145
113
|
:param use_depth: Surface Project, Project onto the surface
|
|
146
|
-
:type use_depth: bool | None
|
|
147
114
|
:param orientation: Orientation, Preset viewpoint to use
|
|
148
115
|
|
|
149
116
|
NONE
|
|
@@ -157,7 +124,6 @@ def cursor3d(
|
|
|
157
124
|
|
|
158
125
|
GEOM
|
|
159
126
|
Geometry -- Match the surface normal.
|
|
160
|
-
:type orientation: typing.Literal['NONE','VIEW','XFORM','GEOM'] | None
|
|
161
127
|
"""
|
|
162
128
|
|
|
163
129
|
def dolly(
|
|
@@ -172,16 +138,10 @@ def dolly(
|
|
|
172
138
|
) -> None:
|
|
173
139
|
"""Dolly in/out in the view
|
|
174
140
|
|
|
175
|
-
:type execution_context: int | str | None
|
|
176
|
-
:type undo: bool | None
|
|
177
141
|
:param mx: Region Position X
|
|
178
|
-
:type mx: int | None
|
|
179
142
|
:param my: Region Position Y
|
|
180
|
-
:type my: int | None
|
|
181
143
|
:param delta: Delta
|
|
182
|
-
:type delta: int | None
|
|
183
144
|
:param use_cursor_init: Use Mouse Position, Allow the initial mouse position to be used
|
|
184
|
-
:type use_cursor_init: bool | None
|
|
185
145
|
"""
|
|
186
146
|
|
|
187
147
|
def drop_world(
|
|
@@ -194,31 +154,23 @@ def drop_world(
|
|
|
194
154
|
) -> None:
|
|
195
155
|
"""Drop a world into the scene
|
|
196
156
|
|
|
197
|
-
:type execution_context: int | str | None
|
|
198
|
-
:type undo: bool | None
|
|
199
157
|
:param name: Name, Name of the data-block to use by the operator
|
|
200
|
-
:type name: str
|
|
201
158
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
202
|
-
:type session_uid: int | None
|
|
203
159
|
"""
|
|
204
160
|
|
|
205
161
|
def edit_mesh_extrude_individual_move(
|
|
206
|
-
execution_context: int | str | None = None,
|
|
162
|
+
execution_context: int | str | None = None,
|
|
163
|
+
undo: bool | None = None,
|
|
164
|
+
/,
|
|
207
165
|
) -> None:
|
|
208
|
-
"""Extrude each individual face separately along local normals
|
|
209
|
-
|
|
210
|
-
:type execution_context: int | str | None
|
|
211
|
-
:type undo: bool | None
|
|
212
|
-
"""
|
|
166
|
+
"""Extrude each individual face separately along local normals"""
|
|
213
167
|
|
|
214
168
|
def edit_mesh_extrude_manifold_normal(
|
|
215
|
-
execution_context: int | str | None = None,
|
|
169
|
+
execution_context: int | str | None = None,
|
|
170
|
+
undo: bool | None = None,
|
|
171
|
+
/,
|
|
216
172
|
) -> None:
|
|
217
|
-
"""Extrude manifold region along normals
|
|
218
|
-
|
|
219
|
-
:type execution_context: int | str | None
|
|
220
|
-
:type undo: bool | None
|
|
221
|
-
"""
|
|
173
|
+
"""Extrude manifold region along normals"""
|
|
222
174
|
|
|
223
175
|
def edit_mesh_extrude_move_normal(
|
|
224
176
|
execution_context: int | str | None = None,
|
|
@@ -229,27 +181,22 @@ def edit_mesh_extrude_move_normal(
|
|
|
229
181
|
) -> None:
|
|
230
182
|
"""Extrude region together along the average normal
|
|
231
183
|
|
|
232
|
-
:type execution_context: int | str | None
|
|
233
|
-
:type undo: bool | None
|
|
234
184
|
:param dissolve_and_intersect: dissolve_and_intersect, Dissolves adjacent faces and intersects new geometry
|
|
235
|
-
:type dissolve_and_intersect: bool | None
|
|
236
185
|
"""
|
|
237
186
|
|
|
238
187
|
def edit_mesh_extrude_move_shrink_fatten(
|
|
239
|
-
execution_context: int | str | None = None,
|
|
188
|
+
execution_context: int | str | None = None,
|
|
189
|
+
undo: bool | None = None,
|
|
190
|
+
/,
|
|
240
191
|
) -> None:
|
|
241
|
-
"""Extrude region together along local normals
|
|
242
|
-
|
|
243
|
-
:type execution_context: int | str | None
|
|
244
|
-
:type undo: bool | None
|
|
245
|
-
"""
|
|
246
|
-
|
|
247
|
-
def fly(execution_context: int | str | None = None, undo: bool | None = None) -> None:
|
|
248
|
-
"""Interactively fly around the scene
|
|
192
|
+
"""Extrude region together along local normals"""
|
|
249
193
|
|
|
250
|
-
|
|
251
|
-
:
|
|
252
|
-
|
|
194
|
+
def fly(
|
|
195
|
+
execution_context: int | str | None = None,
|
|
196
|
+
undo: bool | None = None,
|
|
197
|
+
/,
|
|
198
|
+
) -> None:
|
|
199
|
+
"""Interactively fly around the scene"""
|
|
253
200
|
|
|
254
201
|
def interactive_add(
|
|
255
202
|
execution_context: int | str | None = None,
|
|
@@ -268,10 +215,7 @@ def interactive_add(
|
|
|
268
215
|
) -> None:
|
|
269
216
|
"""Interactively add an object
|
|
270
217
|
|
|
271
|
-
:type execution_context: int | str | None
|
|
272
|
-
:type undo: bool | None
|
|
273
218
|
:param primitive_type: Primitive
|
|
274
|
-
:type primitive_type: typing.Literal['CUBE','CYLINDER','CONE','SPHERE_UV','SPHERE_ICO'] | None
|
|
275
219
|
:param plane_origin_base: Origin, The initial position for placement
|
|
276
220
|
|
|
277
221
|
EDGE
|
|
@@ -279,7 +223,6 @@ def interactive_add(
|
|
|
279
223
|
|
|
280
224
|
CENTER
|
|
281
225
|
Center -- Start placing the center position.
|
|
282
|
-
:type plane_origin_base: typing.Literal['EDGE','CENTER'] | None
|
|
283
226
|
:param plane_origin_depth: Origin, The initial position for placement
|
|
284
227
|
|
|
285
228
|
EDGE
|
|
@@ -287,7 +230,6 @@ def interactive_add(
|
|
|
287
230
|
|
|
288
231
|
CENTER
|
|
289
232
|
Center -- Start placing the center position.
|
|
290
|
-
:type plane_origin_depth: typing.Literal['EDGE','CENTER'] | None
|
|
291
233
|
:param plane_aspect_base: Aspect, The initial aspect setting
|
|
292
234
|
|
|
293
235
|
FREE
|
|
@@ -295,7 +237,6 @@ def interactive_add(
|
|
|
295
237
|
|
|
296
238
|
FIXED
|
|
297
239
|
Fixed -- Use a fixed 1:1 aspect.
|
|
298
|
-
:type plane_aspect_base: typing.Literal['FREE','FIXED'] | None
|
|
299
240
|
:param plane_aspect_depth: Aspect, The initial aspect setting
|
|
300
241
|
|
|
301
242
|
FREE
|
|
@@ -303,9 +244,7 @@ def interactive_add(
|
|
|
303
244
|
|
|
304
245
|
FIXED
|
|
305
246
|
Fixed -- Use a fixed 1:1 aspect.
|
|
306
|
-
:type plane_aspect_depth: typing.Literal['FREE','FIXED'] | None
|
|
307
247
|
:param wait_for_input: Wait for Input
|
|
308
|
-
:type wait_for_input: bool | None
|
|
309
248
|
"""
|
|
310
249
|
|
|
311
250
|
def localview(
|
|
@@ -317,20 +256,15 @@ def localview(
|
|
|
317
256
|
) -> None:
|
|
318
257
|
"""Toggle display of selected object(s) separately and centered in view
|
|
319
258
|
|
|
320
|
-
:type execution_context: int | str | None
|
|
321
|
-
:type undo: bool | None
|
|
322
259
|
:param frame_selected: Frame Selected, Move the view to frame the selected objects
|
|
323
|
-
:type frame_selected: bool | None
|
|
324
260
|
"""
|
|
325
261
|
|
|
326
262
|
def localview_remove_from(
|
|
327
|
-
execution_context: int | str | None = None,
|
|
263
|
+
execution_context: int | str | None = None,
|
|
264
|
+
undo: bool | None = None,
|
|
265
|
+
/,
|
|
328
266
|
) -> None:
|
|
329
|
-
"""Move selected objects out of local view
|
|
330
|
-
|
|
331
|
-
:type execution_context: int | str | None
|
|
332
|
-
:type undo: bool | None
|
|
333
|
-
"""
|
|
267
|
+
"""Move selected objects out of local view"""
|
|
334
268
|
|
|
335
269
|
def move(
|
|
336
270
|
execution_context: int | str | None = None,
|
|
@@ -341,74 +275,57 @@ def move(
|
|
|
341
275
|
) -> None:
|
|
342
276
|
"""Move the view
|
|
343
277
|
|
|
344
|
-
:type execution_context: int | str | None
|
|
345
|
-
:type undo: bool | None
|
|
346
278
|
:param use_cursor_init: Use Mouse Position, Allow the initial mouse position to be used
|
|
347
|
-
:type use_cursor_init: bool | None
|
|
348
279
|
"""
|
|
349
280
|
|
|
350
281
|
def navigate(
|
|
351
|
-
execution_context: int | str | None = None,
|
|
282
|
+
execution_context: int | str | None = None,
|
|
283
|
+
undo: bool | None = None,
|
|
284
|
+
/,
|
|
352
285
|
) -> None:
|
|
353
|
-
"""Interactively navigate around the scene (uses the mode (walk/fly) preference)
|
|
354
|
-
|
|
355
|
-
:type execution_context: int | str | None
|
|
356
|
-
:type undo: bool | None
|
|
357
|
-
"""
|
|
286
|
+
"""Interactively navigate around the scene (uses the mode (walk/fly) preference)"""
|
|
358
287
|
|
|
359
288
|
def ndof_all(
|
|
360
|
-
execution_context: int | str | None = None,
|
|
289
|
+
execution_context: int | str | None = None,
|
|
290
|
+
undo: bool | None = None,
|
|
291
|
+
/,
|
|
361
292
|
) -> None:
|
|
362
|
-
"""Pan and rotate the view with the 3D mouse
|
|
363
|
-
|
|
364
|
-
:type execution_context: int | str | None
|
|
365
|
-
:type undo: bool | None
|
|
366
|
-
"""
|
|
293
|
+
"""Pan and rotate the view with the 3D mouse"""
|
|
367
294
|
|
|
368
295
|
def ndof_orbit(
|
|
369
|
-
execution_context: int | str | None = None,
|
|
296
|
+
execution_context: int | str | None = None,
|
|
297
|
+
undo: bool | None = None,
|
|
298
|
+
/,
|
|
370
299
|
) -> None:
|
|
371
|
-
"""Orbit the view using the 3D mouse
|
|
372
|
-
|
|
373
|
-
:type execution_context: int | str | None
|
|
374
|
-
:type undo: bool | None
|
|
375
|
-
"""
|
|
300
|
+
"""Orbit the view using the 3D mouse"""
|
|
376
301
|
|
|
377
302
|
def ndof_orbit_zoom(
|
|
378
|
-
execution_context: int | str | None = None,
|
|
303
|
+
execution_context: int | str | None = None,
|
|
304
|
+
undo: bool | None = None,
|
|
305
|
+
/,
|
|
379
306
|
) -> None:
|
|
380
|
-
"""Orbit and zoom the view using the 3D mouse
|
|
381
|
-
|
|
382
|
-
:type execution_context: int | str | None
|
|
383
|
-
:type undo: bool | None
|
|
384
|
-
"""
|
|
307
|
+
"""Orbit and zoom the view using the 3D mouse"""
|
|
385
308
|
|
|
386
309
|
def ndof_pan(
|
|
387
|
-
execution_context: int | str | None = None,
|
|
310
|
+
execution_context: int | str | None = None,
|
|
311
|
+
undo: bool | None = None,
|
|
312
|
+
/,
|
|
388
313
|
) -> None:
|
|
389
|
-
"""Pan the view with the 3D mouse
|
|
390
|
-
|
|
391
|
-
:type execution_context: int | str | None
|
|
392
|
-
:type undo: bool | None
|
|
393
|
-
"""
|
|
314
|
+
"""Pan the view with the 3D mouse"""
|
|
394
315
|
|
|
395
316
|
def object_as_camera(
|
|
396
|
-
execution_context: int | str | None = None,
|
|
317
|
+
execution_context: int | str | None = None,
|
|
318
|
+
undo: bool | None = None,
|
|
319
|
+
/,
|
|
397
320
|
) -> None:
|
|
398
|
-
"""Set the active object as the active camera for this view or scene
|
|
399
|
-
|
|
400
|
-
:type execution_context: int | str | None
|
|
401
|
-
:type undo: bool | None
|
|
402
|
-
"""
|
|
321
|
+
"""Set the active object as the active camera for this view or scene"""
|
|
403
322
|
|
|
404
323
|
def object_mode_pie_or_toggle(
|
|
405
|
-
execution_context: int | str | None = None,
|
|
324
|
+
execution_context: int | str | None = None,
|
|
325
|
+
undo: bool | None = None,
|
|
326
|
+
/,
|
|
406
327
|
) -> None:
|
|
407
|
-
"""Undocumented, consider contributing.
|
|
408
|
-
|
|
409
|
-
:type execution_context: int | str | None
|
|
410
|
-
:type undo: bool | None
|
|
411
|
-
"""
|
|
328
|
+
"""Undocumented, consider contributing."""
|
|
412
329
|
|
|
413
330
|
def pastebuffer(
|
|
414
331
|
execution_context: int | str | None = None,
|
|
@@ -420,12 +337,8 @@ def pastebuffer(
|
|
|
420
337
|
) -> None:
|
|
421
338
|
"""Paste objects from the internal clipboard
|
|
422
339
|
|
|
423
|
-
:type execution_context: int | str | None
|
|
424
|
-
:type undo: bool | None
|
|
425
340
|
:param autoselect: Select, Select pasted objects
|
|
426
|
-
:type autoselect: bool | None
|
|
427
341
|
:param active_collection: Active Collection, Put pasted objects in the active collection
|
|
428
|
-
:type active_collection: bool | None
|
|
429
342
|
"""
|
|
430
343
|
|
|
431
344
|
def render_border(
|
|
@@ -441,18 +354,11 @@ def render_border(
|
|
|
441
354
|
) -> None:
|
|
442
355
|
"""Set the boundaries of the border render and enable border render
|
|
443
356
|
|
|
444
|
-
:type execution_context: int | str | None
|
|
445
|
-
:type undo: bool | None
|
|
446
357
|
:param xmin: X Min
|
|
447
|
-
:type xmin: int | None
|
|
448
358
|
:param xmax: X Max
|
|
449
|
-
:type xmax: int | None
|
|
450
359
|
:param ymin: Y Min
|
|
451
|
-
:type ymin: int | None
|
|
452
360
|
:param ymax: Y Max
|
|
453
|
-
:type ymax: int | None
|
|
454
361
|
:param wait_for_input: Wait for Input
|
|
455
|
-
:type wait_for_input: bool | None
|
|
456
362
|
"""
|
|
457
363
|
|
|
458
364
|
def rotate(
|
|
@@ -464,29 +370,22 @@ def rotate(
|
|
|
464
370
|
) -> None:
|
|
465
371
|
"""Rotate the view
|
|
466
372
|
|
|
467
|
-
:type execution_context: int | str | None
|
|
468
|
-
:type undo: bool | None
|
|
469
373
|
:param use_cursor_init: Use Mouse Position, Allow the initial mouse position to be used
|
|
470
|
-
:type use_cursor_init: bool | None
|
|
471
374
|
"""
|
|
472
375
|
|
|
473
376
|
def ruler_add(
|
|
474
|
-
execution_context: int | str | None = None,
|
|
377
|
+
execution_context: int | str | None = None,
|
|
378
|
+
undo: bool | None = None,
|
|
379
|
+
/,
|
|
475
380
|
) -> None:
|
|
476
|
-
"""Add ruler
|
|
477
|
-
|
|
478
|
-
:type execution_context: int | str | None
|
|
479
|
-
:type undo: bool | None
|
|
480
|
-
"""
|
|
381
|
+
"""Add ruler"""
|
|
481
382
|
|
|
482
383
|
def ruler_remove(
|
|
483
|
-
execution_context: int | str | None = None,
|
|
384
|
+
execution_context: int | str | None = None,
|
|
385
|
+
undo: bool | None = None,
|
|
386
|
+
/,
|
|
484
387
|
) -> None:
|
|
485
|
-
"""Undocumented, consider contributing.
|
|
486
|
-
|
|
487
|
-
:type execution_context: int | str | None
|
|
488
|
-
:type undo: bool | None
|
|
489
|
-
"""
|
|
388
|
+
"""Undocumented, consider contributing."""
|
|
490
389
|
|
|
491
390
|
def select(
|
|
492
391
|
execution_context: int | str | None = None,
|
|
@@ -505,26 +404,15 @@ def select(
|
|
|
505
404
|
) -> None:
|
|
506
405
|
"""Select and activate item(s)
|
|
507
406
|
|
|
508
|
-
:type execution_context: int | str | None
|
|
509
|
-
:type undo: bool | None
|
|
510
407
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
511
|
-
:type extend: bool | None
|
|
512
408
|
:param deselect: Deselect, Remove from selection
|
|
513
|
-
:type deselect: bool | None
|
|
514
409
|
:param toggle: Toggle Selection, Toggle the selection
|
|
515
|
-
:type toggle: bool | None
|
|
516
410
|
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
517
|
-
:type deselect_all: bool | None
|
|
518
411
|
:param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
|
|
519
|
-
:type select_passthrough: bool | None
|
|
520
412
|
:param center: Center, Use the object center when selecting, in edit mode used to extend object selection
|
|
521
|
-
:type center: bool | None
|
|
522
413
|
:param enumerate: Enumerate, List objects under the mouse (object mode only)
|
|
523
|
-
:type enumerate: bool | None
|
|
524
414
|
:param object: Object, Use object selection (edit mode only)
|
|
525
|
-
:type object: bool | None
|
|
526
415
|
:param location: Location, Mouse location
|
|
527
|
-
:type location: collections.abc.Iterable[int] | None
|
|
528
416
|
"""
|
|
529
417
|
|
|
530
418
|
def select_box(
|
|
@@ -541,18 +429,11 @@ def select_box(
|
|
|
541
429
|
) -> None:
|
|
542
430
|
"""Select items using box selection
|
|
543
431
|
|
|
544
|
-
:type execution_context: int | str | None
|
|
545
|
-
:type undo: bool | None
|
|
546
432
|
:param xmin: X Min
|
|
547
|
-
:type xmin: int | None
|
|
548
433
|
:param xmax: X Max
|
|
549
|
-
:type xmax: int | None
|
|
550
434
|
:param ymin: Y Min
|
|
551
|
-
:type ymin: int | None
|
|
552
435
|
:param ymax: Y Max
|
|
553
|
-
:type ymax: int | None
|
|
554
436
|
:param wait_for_input: Wait for Input
|
|
555
|
-
:type wait_for_input: bool | None
|
|
556
437
|
:param mode: Mode
|
|
557
438
|
|
|
558
439
|
SET
|
|
@@ -569,7 +450,6 @@ def select_box(
|
|
|
569
450
|
|
|
570
451
|
AND
|
|
571
452
|
Intersect -- Intersect existing selection.
|
|
572
|
-
:type mode: typing.Literal['SET','ADD','SUB','XOR','AND'] | None
|
|
573
453
|
"""
|
|
574
454
|
|
|
575
455
|
def select_circle(
|
|
@@ -585,16 +465,10 @@ def select_circle(
|
|
|
585
465
|
) -> None:
|
|
586
466
|
"""Select items using circle selection
|
|
587
467
|
|
|
588
|
-
:type execution_context: int | str | None
|
|
589
|
-
:type undo: bool | None
|
|
590
468
|
:param x: X
|
|
591
|
-
:type x: int | None
|
|
592
469
|
:param y: Y
|
|
593
|
-
:type y: int | None
|
|
594
470
|
:param radius: Radius
|
|
595
|
-
:type radius: int | None
|
|
596
471
|
:param wait_for_input: Wait for Input
|
|
597
|
-
:type wait_for_input: bool | None
|
|
598
472
|
:param mode: Mode
|
|
599
473
|
|
|
600
474
|
SET
|
|
@@ -605,7 +479,6 @@ def select_circle(
|
|
|
605
479
|
|
|
606
480
|
SUB
|
|
607
481
|
Subtract -- Subtract existing selection.
|
|
608
|
-
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
609
482
|
"""
|
|
610
483
|
|
|
611
484
|
def select_lasso(
|
|
@@ -621,16 +494,10 @@ def select_lasso(
|
|
|
621
494
|
) -> None:
|
|
622
495
|
"""Select items using lasso selection
|
|
623
496
|
|
|
624
|
-
:type execution_context: int | str | None
|
|
625
|
-
:type undo: bool | None
|
|
626
497
|
:param path: Path
|
|
627
|
-
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
628
498
|
:param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
|
|
629
|
-
:type use_smooth_stroke: bool | None
|
|
630
499
|
:param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
|
|
631
|
-
:type smooth_stroke_factor: float | None
|
|
632
500
|
:param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
|
|
633
|
-
:type smooth_stroke_radius: int | None
|
|
634
501
|
:param mode: Mode
|
|
635
502
|
|
|
636
503
|
SET
|
|
@@ -647,7 +514,6 @@ def select_lasso(
|
|
|
647
514
|
|
|
648
515
|
AND
|
|
649
516
|
Intersect -- Intersect existing selection.
|
|
650
|
-
:type mode: typing.Literal['SET','ADD','SUB','XOR','AND'] | None
|
|
651
517
|
"""
|
|
652
518
|
|
|
653
519
|
def select_menu(
|
|
@@ -662,71 +528,53 @@ def select_menu(
|
|
|
662
528
|
) -> None:
|
|
663
529
|
"""Menu object selection
|
|
664
530
|
|
|
665
|
-
:type execution_context: int | str | None
|
|
666
|
-
:type undo: bool | None
|
|
667
531
|
:param name: Object Name
|
|
668
|
-
:type name: str | None
|
|
669
532
|
:param extend: Extend
|
|
670
|
-
:type extend: bool | None
|
|
671
533
|
:param deselect: Deselect
|
|
672
|
-
:type deselect: bool | None
|
|
673
534
|
:param toggle: Toggle
|
|
674
|
-
:type toggle: bool | None
|
|
675
535
|
"""
|
|
676
536
|
|
|
677
537
|
def smoothview(
|
|
678
|
-
execution_context: int | str | None = None,
|
|
538
|
+
execution_context: int | str | None = None,
|
|
539
|
+
undo: bool | None = None,
|
|
540
|
+
/,
|
|
679
541
|
) -> None:
|
|
680
|
-
"""Undocumented, consider contributing.
|
|
681
|
-
|
|
682
|
-
:type execution_context: int | str | None
|
|
683
|
-
:type undo: bool | None
|
|
684
|
-
"""
|
|
542
|
+
"""Undocumented, consider contributing."""
|
|
685
543
|
|
|
686
544
|
def snap_cursor_to_active(
|
|
687
|
-
execution_context: int | str | None = None,
|
|
545
|
+
execution_context: int | str | None = None,
|
|
546
|
+
undo: bool | None = None,
|
|
547
|
+
/,
|
|
688
548
|
) -> None:
|
|
689
|
-
"""Snap 3D cursor to the active item
|
|
690
|
-
|
|
691
|
-
:type execution_context: int | str | None
|
|
692
|
-
:type undo: bool | None
|
|
693
|
-
"""
|
|
549
|
+
"""Snap 3D cursor to the active item"""
|
|
694
550
|
|
|
695
551
|
def snap_cursor_to_center(
|
|
696
|
-
execution_context: int | str | None = None,
|
|
552
|
+
execution_context: int | str | None = None,
|
|
553
|
+
undo: bool | None = None,
|
|
554
|
+
/,
|
|
697
555
|
) -> None:
|
|
698
|
-
"""Snap 3D cursor to the world origin
|
|
699
|
-
|
|
700
|
-
:type execution_context: int | str | None
|
|
701
|
-
:type undo: bool | None
|
|
702
|
-
"""
|
|
556
|
+
"""Snap 3D cursor to the world origin"""
|
|
703
557
|
|
|
704
558
|
def snap_cursor_to_grid(
|
|
705
|
-
execution_context: int | str | None = None,
|
|
559
|
+
execution_context: int | str | None = None,
|
|
560
|
+
undo: bool | None = None,
|
|
561
|
+
/,
|
|
706
562
|
) -> None:
|
|
707
|
-
"""Snap 3D cursor to the nearest grid division
|
|
708
|
-
|
|
709
|
-
:type execution_context: int | str | None
|
|
710
|
-
:type undo: bool | None
|
|
711
|
-
"""
|
|
563
|
+
"""Snap 3D cursor to the nearest grid division"""
|
|
712
564
|
|
|
713
565
|
def snap_cursor_to_selected(
|
|
714
|
-
execution_context: int | str | None = None,
|
|
566
|
+
execution_context: int | str | None = None,
|
|
567
|
+
undo: bool | None = None,
|
|
568
|
+
/,
|
|
715
569
|
) -> None:
|
|
716
|
-
"""Snap 3D cursor to the middle of the selected item(s)
|
|
717
|
-
|
|
718
|
-
:type execution_context: int | str | None
|
|
719
|
-
:type undo: bool | None
|
|
720
|
-
"""
|
|
570
|
+
"""Snap 3D cursor to the middle of the selected item(s)"""
|
|
721
571
|
|
|
722
572
|
def snap_selected_to_active(
|
|
723
|
-
execution_context: int | str | None = None,
|
|
573
|
+
execution_context: int | str | None = None,
|
|
574
|
+
undo: bool | None = None,
|
|
575
|
+
/,
|
|
724
576
|
) -> None:
|
|
725
|
-
"""Snap selected item(s) to the active item
|
|
726
|
-
|
|
727
|
-
:type execution_context: int | str | None
|
|
728
|
-
:type undo: bool | None
|
|
729
|
-
"""
|
|
577
|
+
"""Snap selected item(s) to the active item"""
|
|
730
578
|
|
|
731
579
|
def snap_selected_to_cursor(
|
|
732
580
|
execution_context: int | str | None = None,
|
|
@@ -738,31 +586,23 @@ def snap_selected_to_cursor(
|
|
|
738
586
|
) -> None:
|
|
739
587
|
"""Snap selected item(s) to the 3D cursor
|
|
740
588
|
|
|
741
|
-
:type execution_context: int | str | None
|
|
742
|
-
:type undo: bool | None
|
|
743
589
|
:param use_offset: Offset, If the selection should be snapped as a whole or by each object center
|
|
744
|
-
:type use_offset: bool | None
|
|
745
590
|
:param use_rotation: Rotation, If the selection should be rotated to match the cursor
|
|
746
|
-
:type use_rotation: bool | None
|
|
747
591
|
"""
|
|
748
592
|
|
|
749
593
|
def snap_selected_to_grid(
|
|
750
|
-
execution_context: int | str | None = None,
|
|
594
|
+
execution_context: int | str | None = None,
|
|
595
|
+
undo: bool | None = None,
|
|
596
|
+
/,
|
|
751
597
|
) -> None:
|
|
752
|
-
"""Snap selected item(s) to their nearest grid division
|
|
753
|
-
|
|
754
|
-
:type execution_context: int | str | None
|
|
755
|
-
:type undo: bool | None
|
|
756
|
-
"""
|
|
598
|
+
"""Snap selected item(s) to their nearest grid division"""
|
|
757
599
|
|
|
758
600
|
def toggle_matcap_flip(
|
|
759
|
-
execution_context: int | str | None = None,
|
|
601
|
+
execution_context: int | str | None = None,
|
|
602
|
+
undo: bool | None = None,
|
|
603
|
+
/,
|
|
760
604
|
) -> None:
|
|
761
|
-
"""Flip MatCap
|
|
762
|
-
|
|
763
|
-
:type execution_context: int | str | None
|
|
764
|
-
:type undo: bool | None
|
|
765
|
-
"""
|
|
605
|
+
"""Flip MatCap"""
|
|
766
606
|
|
|
767
607
|
def toggle_shading(
|
|
768
608
|
execution_context: int | str | None = None,
|
|
@@ -774,8 +614,6 @@ def toggle_shading(
|
|
|
774
614
|
) -> None:
|
|
775
615
|
"""Toggle shading type in 3D viewport
|
|
776
616
|
|
|
777
|
-
:type execution_context: int | str | None
|
|
778
|
-
:type undo: bool | None
|
|
779
617
|
:param type: Type, Shading type to toggle
|
|
780
618
|
|
|
781
619
|
WIREFRAME
|
|
@@ -789,17 +627,14 @@ def toggle_shading(
|
|
|
789
627
|
|
|
790
628
|
RENDERED
|
|
791
629
|
Rendered -- Toggle rendered shading.
|
|
792
|
-
:type type: typing.Literal['WIREFRAME','SOLID','MATERIAL','RENDERED'] | None
|
|
793
630
|
"""
|
|
794
631
|
|
|
795
632
|
def toggle_xray(
|
|
796
|
-
execution_context: int | str | None = None,
|
|
633
|
+
execution_context: int | str | None = None,
|
|
634
|
+
undo: bool | None = None,
|
|
635
|
+
/,
|
|
797
636
|
) -> None:
|
|
798
|
-
"""Transparent scene display. Allow selecting through items
|
|
799
|
-
|
|
800
|
-
:type execution_context: int | str | None
|
|
801
|
-
:type undo: bool | None
|
|
802
|
-
"""
|
|
637
|
+
"""Transparent scene display. Allow selecting through items"""
|
|
803
638
|
|
|
804
639
|
def transform_gizmo_set(
|
|
805
640
|
execution_context: int | str | None = None,
|
|
@@ -811,12 +646,8 @@ def transform_gizmo_set(
|
|
|
811
646
|
) -> None:
|
|
812
647
|
"""Set the current transform gizmo
|
|
813
648
|
|
|
814
|
-
:type execution_context: int | str | None
|
|
815
|
-
:type undo: bool | None
|
|
816
649
|
:param extend: Extend
|
|
817
|
-
:type extend: bool | None
|
|
818
650
|
:param type: Type
|
|
819
|
-
:type type: set[typing.Literal['TRANSLATE','ROTATE','SCALE']] | None
|
|
820
651
|
"""
|
|
821
652
|
|
|
822
653
|
def view_all(
|
|
@@ -829,12 +660,8 @@ def view_all(
|
|
|
829
660
|
) -> None:
|
|
830
661
|
"""View all objects in scene
|
|
831
662
|
|
|
832
|
-
:type execution_context: int | str | None
|
|
833
|
-
:type undo: bool | None
|
|
834
663
|
:param use_all_regions: All Regions, View selected for all regions
|
|
835
|
-
:type use_all_regions: bool | None
|
|
836
664
|
:param center: Center
|
|
837
|
-
:type center: bool | None
|
|
838
665
|
"""
|
|
839
666
|
|
|
840
667
|
def view_axis(
|
|
@@ -849,8 +676,6 @@ def view_axis(
|
|
|
849
676
|
) -> None:
|
|
850
677
|
"""Use a preset viewpoint
|
|
851
678
|
|
|
852
|
-
:type execution_context: int | str | None
|
|
853
|
-
:type undo: bool | None
|
|
854
679
|
:param type: View, Preset viewpoint to use
|
|
855
680
|
|
|
856
681
|
LEFT
|
|
@@ -870,75 +695,58 @@ def view_axis(
|
|
|
870
695
|
|
|
871
696
|
BACK
|
|
872
697
|
Back -- View from the back.
|
|
873
|
-
:
|
|
874
|
-
:param align_active: Align Active, Align to the active object's axis
|
|
875
|
-
:type align_active: bool | None
|
|
698
|
+
:param align_active: Align Active, Align to the active objects axis
|
|
876
699
|
:param relative: Relative, Rotate relative to the current orientation
|
|
877
|
-
:type relative: bool | None
|
|
878
700
|
"""
|
|
879
701
|
|
|
880
702
|
def view_camera(
|
|
881
|
-
execution_context: int | str | None = None,
|
|
703
|
+
execution_context: int | str | None = None,
|
|
704
|
+
undo: bool | None = None,
|
|
705
|
+
/,
|
|
882
706
|
) -> None:
|
|
883
|
-
"""Toggle the camera view
|
|
884
|
-
|
|
885
|
-
:type execution_context: int | str | None
|
|
886
|
-
:type undo: bool | None
|
|
887
|
-
"""
|
|
707
|
+
"""Toggle the camera view"""
|
|
888
708
|
|
|
889
709
|
def view_center_camera(
|
|
890
|
-
execution_context: int | str | None = None,
|
|
710
|
+
execution_context: int | str | None = None,
|
|
711
|
+
undo: bool | None = None,
|
|
712
|
+
/,
|
|
891
713
|
) -> None:
|
|
892
|
-
"""Center the camera view, resizing the view to fit its bounds
|
|
893
|
-
|
|
894
|
-
:type execution_context: int | str | None
|
|
895
|
-
:type undo: bool | None
|
|
896
|
-
"""
|
|
714
|
+
"""Center the camera view, resizing the view to fit its bounds"""
|
|
897
715
|
|
|
898
716
|
def view_center_cursor(
|
|
899
|
-
execution_context: int | str | None = None,
|
|
717
|
+
execution_context: int | str | None = None,
|
|
718
|
+
undo: bool | None = None,
|
|
719
|
+
/,
|
|
900
720
|
) -> None:
|
|
901
|
-
"""Center the view so that the cursor is in the middle of the view
|
|
902
|
-
|
|
903
|
-
:type execution_context: int | str | None
|
|
904
|
-
:type undo: bool | None
|
|
905
|
-
"""
|
|
721
|
+
"""Center the view so that the cursor is in the middle of the view"""
|
|
906
722
|
|
|
907
723
|
def view_center_lock(
|
|
908
|
-
execution_context: int | str | None = None,
|
|
724
|
+
execution_context: int | str | None = None,
|
|
725
|
+
undo: bool | None = None,
|
|
726
|
+
/,
|
|
909
727
|
) -> None:
|
|
910
|
-
"""Center the view lock offset
|
|
911
|
-
|
|
912
|
-
:type execution_context: int | str | None
|
|
913
|
-
:type undo: bool | None
|
|
914
|
-
"""
|
|
728
|
+
"""Center the view lock offset"""
|
|
915
729
|
|
|
916
730
|
def view_center_pick(
|
|
917
|
-
execution_context: int | str | None = None,
|
|
731
|
+
execution_context: int | str | None = None,
|
|
732
|
+
undo: bool | None = None,
|
|
733
|
+
/,
|
|
918
734
|
) -> None:
|
|
919
|
-
"""Center the view to the Z-depth position under the mouse cursor
|
|
920
|
-
|
|
921
|
-
:type execution_context: int | str | None
|
|
922
|
-
:type undo: bool | None
|
|
923
|
-
"""
|
|
735
|
+
"""Center the view to the Z-depth position under the mouse cursor"""
|
|
924
736
|
|
|
925
737
|
def view_lock_clear(
|
|
926
|
-
execution_context: int | str | None = None,
|
|
738
|
+
execution_context: int | str | None = None,
|
|
739
|
+
undo: bool | None = None,
|
|
740
|
+
/,
|
|
927
741
|
) -> None:
|
|
928
|
-
"""Clear all view locking
|
|
929
|
-
|
|
930
|
-
:type execution_context: int | str | None
|
|
931
|
-
:type undo: bool | None
|
|
932
|
-
"""
|
|
742
|
+
"""Clear all view locking"""
|
|
933
743
|
|
|
934
744
|
def view_lock_to_active(
|
|
935
|
-
execution_context: int | str | None = None,
|
|
745
|
+
execution_context: int | str | None = None,
|
|
746
|
+
undo: bool | None = None,
|
|
747
|
+
/,
|
|
936
748
|
) -> None:
|
|
937
|
-
"""Lock the view to the active object/bone
|
|
938
|
-
|
|
939
|
-
:type execution_context: int | str | None
|
|
940
|
-
:type undo: bool | None
|
|
941
|
-
"""
|
|
749
|
+
"""Lock the view to the active object/bone"""
|
|
942
750
|
|
|
943
751
|
def view_orbit(
|
|
944
752
|
execution_context: int | str | None = None,
|
|
@@ -951,10 +759,7 @@ def view_orbit(
|
|
|
951
759
|
) -> None:
|
|
952
760
|
"""Orbit the view
|
|
953
761
|
|
|
954
|
-
:type execution_context: int | str | None
|
|
955
|
-
:type undo: bool | None
|
|
956
762
|
:param angle: Roll
|
|
957
|
-
:type angle: float | None
|
|
958
763
|
:param type: Orbit, Direction of View Orbit
|
|
959
764
|
|
|
960
765
|
ORBITLEFT
|
|
@@ -968,7 +773,6 @@ def view_orbit(
|
|
|
968
773
|
|
|
969
774
|
ORBITDOWN
|
|
970
775
|
Orbit Down -- Orbit the view down.
|
|
971
|
-
:type type: typing.Literal['ORBITLEFT','ORBITRIGHT','ORBITUP','ORBITDOWN'] | None
|
|
972
776
|
"""
|
|
973
777
|
|
|
974
778
|
def view_pan(
|
|
@@ -980,8 +784,6 @@ def view_pan(
|
|
|
980
784
|
) -> None:
|
|
981
785
|
"""Pan the view in a given direction
|
|
982
786
|
|
|
983
|
-
:type execution_context: int | str | None
|
|
984
|
-
:type undo: bool | None
|
|
985
787
|
:param type: Pan, Direction of View Pan
|
|
986
788
|
|
|
987
789
|
PANLEFT
|
|
@@ -995,17 +797,14 @@ def view_pan(
|
|
|
995
797
|
|
|
996
798
|
PANDOWN
|
|
997
799
|
Pan Down -- Pan the view down.
|
|
998
|
-
:type type: typing.Literal['PANLEFT','PANRIGHT','PANUP','PANDOWN'] | None
|
|
999
800
|
"""
|
|
1000
801
|
|
|
1001
802
|
def view_persportho(
|
|
1002
|
-
execution_context: int | str | None = None,
|
|
803
|
+
execution_context: int | str | None = None,
|
|
804
|
+
undo: bool | None = None,
|
|
805
|
+
/,
|
|
1003
806
|
) -> None:
|
|
1004
|
-
"""Switch the current view from perspective/orthographic projection
|
|
1005
|
-
|
|
1006
|
-
:type execution_context: int | str | None
|
|
1007
|
-
:type undo: bool | None
|
|
1008
|
-
"""
|
|
807
|
+
"""Switch the current view from perspective/orthographic projection"""
|
|
1009
808
|
|
|
1010
809
|
def view_roll(
|
|
1011
810
|
execution_context: int | str | None = None,
|
|
@@ -1017,10 +816,7 @@ def view_roll(
|
|
|
1017
816
|
) -> None:
|
|
1018
817
|
"""Roll the view
|
|
1019
818
|
|
|
1020
|
-
:type execution_context: int | str | None
|
|
1021
|
-
:type undo: bool | None
|
|
1022
819
|
:param angle: Roll
|
|
1023
|
-
:type angle: float | None
|
|
1024
820
|
:param type: Roll Angle Source, How roll angle is calculated
|
|
1025
821
|
|
|
1026
822
|
ANGLE
|
|
@@ -1031,7 +827,6 @@ def view_roll(
|
|
|
1031
827
|
|
|
1032
828
|
RIGHT
|
|
1033
829
|
Roll Right -- Roll the view around to the right.
|
|
1034
|
-
:type type: typing.Literal['ANGLE','LEFT','RIGHT'] | None
|
|
1035
830
|
"""
|
|
1036
831
|
|
|
1037
832
|
def view_selected(
|
|
@@ -1043,18 +838,15 @@ def view_selected(
|
|
|
1043
838
|
) -> None:
|
|
1044
839
|
"""Move the view to the selection center
|
|
1045
840
|
|
|
1046
|
-
:type execution_context: int | str | None
|
|
1047
|
-
:type undo: bool | None
|
|
1048
841
|
:param use_all_regions: All Regions, View selected for all regions
|
|
1049
|
-
:type use_all_regions: bool | None
|
|
1050
842
|
"""
|
|
1051
843
|
|
|
1052
|
-
def walk(
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
"""
|
|
844
|
+
def walk(
|
|
845
|
+
execution_context: int | str | None = None,
|
|
846
|
+
undo: bool | None = None,
|
|
847
|
+
/,
|
|
848
|
+
) -> None:
|
|
849
|
+
"""Interactively walk around the scene"""
|
|
1058
850
|
|
|
1059
851
|
def zoom(
|
|
1060
852
|
execution_context: int | str | None = None,
|
|
@@ -1068,16 +860,10 @@ def zoom(
|
|
|
1068
860
|
) -> None:
|
|
1069
861
|
"""Zoom in/out in the view
|
|
1070
862
|
|
|
1071
|
-
:type execution_context: int | str | None
|
|
1072
|
-
:type undo: bool | None
|
|
1073
863
|
:param mx: Region Position X
|
|
1074
|
-
:type mx: int | None
|
|
1075
864
|
:param my: Region Position Y
|
|
1076
|
-
:type my: int | None
|
|
1077
865
|
:param delta: Delta
|
|
1078
|
-
:type delta: int | None
|
|
1079
866
|
:param use_cursor_init: Use Mouse Position, Allow the initial mouse position to be used
|
|
1080
|
-
:type use_cursor_init: bool | None
|
|
1081
867
|
"""
|
|
1082
868
|
|
|
1083
869
|
def zoom_border(
|
|
@@ -1094,27 +880,17 @@ def zoom_border(
|
|
|
1094
880
|
) -> None:
|
|
1095
881
|
"""Zoom in the view to the nearest object contained in the border
|
|
1096
882
|
|
|
1097
|
-
:type execution_context: int | str | None
|
|
1098
|
-
:type undo: bool | None
|
|
1099
883
|
:param xmin: X Min
|
|
1100
|
-
:type xmin: int | None
|
|
1101
884
|
:param xmax: X Max
|
|
1102
|
-
:type xmax: int | None
|
|
1103
885
|
:param ymin: Y Min
|
|
1104
|
-
:type ymin: int | None
|
|
1105
886
|
:param ymax: Y Max
|
|
1106
|
-
:type ymax: int | None
|
|
1107
887
|
:param wait_for_input: Wait for Input
|
|
1108
|
-
:type wait_for_input: bool | None
|
|
1109
888
|
:param zoom_out: Zoom Out
|
|
1110
|
-
:type zoom_out: bool | None
|
|
1111
889
|
"""
|
|
1112
890
|
|
|
1113
891
|
def zoom_camera_1_to_1(
|
|
1114
|
-
execution_context: int | str | None = None,
|
|
892
|
+
execution_context: int | str | None = None,
|
|
893
|
+
undo: bool | None = None,
|
|
894
|
+
/,
|
|
1115
895
|
) -> None:
|
|
1116
|
-
"""Match the camera to 1:1 to the render output
|
|
1117
|
-
|
|
1118
|
-
:type execution_context: int | str | None
|
|
1119
|
-
:type undo: bool | None
|
|
1120
|
-
"""
|
|
896
|
+
"""Match the camera to 1:1 to the render output"""
|