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/outliner/__init__.pyi
CHANGED
|
@@ -13,10 +13,7 @@ def action_set(
|
|
|
13
13
|
) -> None:
|
|
14
14
|
"""Change the active action used
|
|
15
15
|
|
|
16
|
-
:type execution_context: int | str | None
|
|
17
|
-
:type undo: bool | None
|
|
18
16
|
:param action: Action
|
|
19
|
-
:type action: str | None
|
|
20
17
|
"""
|
|
21
18
|
|
|
22
19
|
def animdata_operation(
|
|
@@ -31,8 +28,6 @@ def animdata_operation(
|
|
|
31
28
|
) -> None:
|
|
32
29
|
"""Undocumented, consider contributing.
|
|
33
30
|
|
|
34
|
-
:type execution_context: int | str | None
|
|
35
|
-
:type undo: bool | None
|
|
36
31
|
:param type: Animation Operation
|
|
37
32
|
|
|
38
33
|
CLEAR_ANIMDATA
|
|
@@ -49,17 +44,14 @@ def animdata_operation(
|
|
|
49
44
|
|
|
50
45
|
CLEAR_DRIVERS
|
|
51
46
|
Clear Drivers.
|
|
52
|
-
:type type: typing.Literal['CLEAR_ANIMDATA','SET_ACT','CLEAR_ACT','REFRESH_DRIVERS','CLEAR_DRIVERS'] | None
|
|
53
47
|
"""
|
|
54
48
|
|
|
55
49
|
def clear_filter(
|
|
56
|
-
execution_context: int | str | None = None,
|
|
50
|
+
execution_context: int | str | None = None,
|
|
51
|
+
undo: bool | None = None,
|
|
52
|
+
/,
|
|
57
53
|
) -> None:
|
|
58
|
-
"""Clear the search filter
|
|
59
|
-
|
|
60
|
-
:type execution_context: int | str | None
|
|
61
|
-
:type undo: bool | None
|
|
62
|
-
"""
|
|
54
|
+
"""Clear the search filter"""
|
|
63
55
|
|
|
64
56
|
def collection_color_tag_set(
|
|
65
57
|
execution_context: int | str | None = None,
|
|
@@ -70,164 +62,127 @@ def collection_color_tag_set(
|
|
|
70
62
|
) -> None:
|
|
71
63
|
"""Set a color tag for the selected collections
|
|
72
64
|
|
|
73
|
-
:type execution_context: int | str | None
|
|
74
|
-
:type undo: bool | None
|
|
75
65
|
:param color: Color Tag
|
|
76
|
-
:type color: bpy.stub_internal.rna_enums.CollectionColorItems | None
|
|
77
66
|
"""
|
|
78
67
|
|
|
79
68
|
def collection_disable(
|
|
80
|
-
execution_context: int | str | None = None,
|
|
69
|
+
execution_context: int | str | None = None,
|
|
70
|
+
undo: bool | None = None,
|
|
71
|
+
/,
|
|
81
72
|
) -> None:
|
|
82
|
-
"""Disable viewport display in the view layers
|
|
83
|
-
|
|
84
|
-
:type execution_context: int | str | None
|
|
85
|
-
:type undo: bool | None
|
|
86
|
-
"""
|
|
73
|
+
"""Disable viewport display in the view layers"""
|
|
87
74
|
|
|
88
75
|
def collection_disable_render(
|
|
89
|
-
execution_context: int | str | None = None,
|
|
76
|
+
execution_context: int | str | None = None,
|
|
77
|
+
undo: bool | None = None,
|
|
78
|
+
/,
|
|
90
79
|
) -> None:
|
|
91
|
-
"""Do not render this collection
|
|
92
|
-
|
|
93
|
-
:type execution_context: int | str | None
|
|
94
|
-
:type undo: bool | None
|
|
95
|
-
"""
|
|
80
|
+
"""Do not render this collection"""
|
|
96
81
|
|
|
97
82
|
def collection_drop(
|
|
98
|
-
execution_context: int | str | None = None,
|
|
83
|
+
execution_context: int | str | None = None,
|
|
84
|
+
undo: bool | None = None,
|
|
85
|
+
/,
|
|
99
86
|
) -> None:
|
|
100
|
-
"""Drag to move to collection in Outliner
|
|
101
|
-
|
|
102
|
-
:type execution_context: int | str | None
|
|
103
|
-
:type undo: bool | None
|
|
104
|
-
"""
|
|
87
|
+
"""Drag to move to collection in Outliner"""
|
|
105
88
|
|
|
106
89
|
def collection_duplicate(
|
|
107
|
-
execution_context: int | str | None = None,
|
|
90
|
+
execution_context: int | str | None = None,
|
|
91
|
+
undo: bool | None = None,
|
|
92
|
+
/,
|
|
108
93
|
) -> None:
|
|
109
|
-
"""Recursively duplicate the collection, all its children, objects and object data
|
|
110
|
-
|
|
111
|
-
:type execution_context: int | str | None
|
|
112
|
-
:type undo: bool | None
|
|
113
|
-
"""
|
|
94
|
+
"""Recursively duplicate the collection, all its children, objects and object data"""
|
|
114
95
|
|
|
115
96
|
def collection_duplicate_linked(
|
|
116
|
-
execution_context: int | str | None = None,
|
|
97
|
+
execution_context: int | str | None = None,
|
|
98
|
+
undo: bool | None = None,
|
|
99
|
+
/,
|
|
117
100
|
) -> None:
|
|
118
|
-
"""Recursively duplicate the collection, all its children and objects, with linked object data
|
|
119
|
-
|
|
120
|
-
:type execution_context: int | str | None
|
|
121
|
-
:type undo: bool | None
|
|
122
|
-
"""
|
|
101
|
+
"""Recursively duplicate the collection, all its children and objects, with linked object data"""
|
|
123
102
|
|
|
124
103
|
def collection_enable(
|
|
125
|
-
execution_context: int | str | None = None,
|
|
104
|
+
execution_context: int | str | None = None,
|
|
105
|
+
undo: bool | None = None,
|
|
106
|
+
/,
|
|
126
107
|
) -> None:
|
|
127
|
-
"""Enable viewport display in the view layers
|
|
128
|
-
|
|
129
|
-
:type execution_context: int | str | None
|
|
130
|
-
:type undo: bool | None
|
|
131
|
-
"""
|
|
108
|
+
"""Enable viewport display in the view layers"""
|
|
132
109
|
|
|
133
110
|
def collection_enable_render(
|
|
134
|
-
execution_context: int | str | None = None,
|
|
111
|
+
execution_context: int | str | None = None,
|
|
112
|
+
undo: bool | None = None,
|
|
113
|
+
/,
|
|
135
114
|
) -> None:
|
|
136
|
-
"""Render the collection
|
|
137
|
-
|
|
138
|
-
:type execution_context: int | str | None
|
|
139
|
-
:type undo: bool | None
|
|
140
|
-
"""
|
|
115
|
+
"""Render the collection"""
|
|
141
116
|
|
|
142
117
|
def collection_exclude_clear(
|
|
143
|
-
execution_context: int | str | None = None,
|
|
118
|
+
execution_context: int | str | None = None,
|
|
119
|
+
undo: bool | None = None,
|
|
120
|
+
/,
|
|
144
121
|
) -> None:
|
|
145
|
-
"""Include collection in the active view layer
|
|
146
|
-
|
|
147
|
-
:type execution_context: int | str | None
|
|
148
|
-
:type undo: bool | None
|
|
149
|
-
"""
|
|
122
|
+
"""Include collection in the active view layer"""
|
|
150
123
|
|
|
151
124
|
def collection_exclude_set(
|
|
152
|
-
execution_context: int | str | None = None,
|
|
125
|
+
execution_context: int | str | None = None,
|
|
126
|
+
undo: bool | None = None,
|
|
127
|
+
/,
|
|
153
128
|
) -> None:
|
|
154
|
-
"""Exclude collection from the active view layer
|
|
155
|
-
|
|
156
|
-
:type execution_context: int | str | None
|
|
157
|
-
:type undo: bool | None
|
|
158
|
-
"""
|
|
129
|
+
"""Exclude collection from the active view layer"""
|
|
159
130
|
|
|
160
131
|
def collection_hide(
|
|
161
|
-
execution_context: int | str | None = None,
|
|
132
|
+
execution_context: int | str | None = None,
|
|
133
|
+
undo: bool | None = None,
|
|
134
|
+
/,
|
|
162
135
|
) -> None:
|
|
163
|
-
"""Hide the collection in this view layer
|
|
164
|
-
|
|
165
|
-
:type execution_context: int | str | None
|
|
166
|
-
:type undo: bool | None
|
|
167
|
-
"""
|
|
136
|
+
"""Hide the collection in this view layer"""
|
|
168
137
|
|
|
169
138
|
def collection_hide_inside(
|
|
170
|
-
execution_context: int | str | None = None,
|
|
139
|
+
execution_context: int | str | None = None,
|
|
140
|
+
undo: bool | None = None,
|
|
141
|
+
/,
|
|
171
142
|
) -> None:
|
|
172
|
-
"""Hide all the objects and collections inside the collection
|
|
173
|
-
|
|
174
|
-
:type execution_context: int | str | None
|
|
175
|
-
:type undo: bool | None
|
|
176
|
-
"""
|
|
143
|
+
"""Hide all the objects and collections inside the collection"""
|
|
177
144
|
|
|
178
145
|
def collection_hierarchy_delete(
|
|
179
|
-
execution_context: int | str | None = None,
|
|
146
|
+
execution_context: int | str | None = None,
|
|
147
|
+
undo: bool | None = None,
|
|
148
|
+
/,
|
|
180
149
|
) -> None:
|
|
181
|
-
"""Delete selected collection hierarchies
|
|
182
|
-
|
|
183
|
-
:type execution_context: int | str | None
|
|
184
|
-
:type undo: bool | None
|
|
185
|
-
"""
|
|
150
|
+
"""Delete selected collection hierarchies"""
|
|
186
151
|
|
|
187
152
|
def collection_holdout_clear(
|
|
188
|
-
execution_context: int | str | None = None,
|
|
153
|
+
execution_context: int | str | None = None,
|
|
154
|
+
undo: bool | None = None,
|
|
155
|
+
/,
|
|
189
156
|
) -> None:
|
|
190
|
-
"""Clear masking of collection in the active view layer
|
|
191
|
-
|
|
192
|
-
:type execution_context: int | str | None
|
|
193
|
-
:type undo: bool | None
|
|
194
|
-
"""
|
|
157
|
+
"""Clear masking of collection in the active view layer"""
|
|
195
158
|
|
|
196
159
|
def collection_holdout_set(
|
|
197
|
-
execution_context: int | str | None = None,
|
|
160
|
+
execution_context: int | str | None = None,
|
|
161
|
+
undo: bool | None = None,
|
|
162
|
+
/,
|
|
198
163
|
) -> None:
|
|
199
|
-
"""Mask collection in the active view layer
|
|
200
|
-
|
|
201
|
-
:type execution_context: int | str | None
|
|
202
|
-
:type undo: bool | None
|
|
203
|
-
"""
|
|
164
|
+
"""Mask collection in the active view layer"""
|
|
204
165
|
|
|
205
166
|
def collection_indirect_only_clear(
|
|
206
|
-
execution_context: int | str | None = None,
|
|
167
|
+
execution_context: int | str | None = None,
|
|
168
|
+
undo: bool | None = None,
|
|
169
|
+
/,
|
|
207
170
|
) -> None:
|
|
208
|
-
"""Clear collection contributing only indirectly in the view layer
|
|
209
|
-
|
|
210
|
-
:type execution_context: int | str | None
|
|
211
|
-
:type undo: bool | None
|
|
212
|
-
"""
|
|
171
|
+
"""Clear collection contributing only indirectly in the view layer"""
|
|
213
172
|
|
|
214
173
|
def collection_indirect_only_set(
|
|
215
|
-
execution_context: int | str | None = None,
|
|
174
|
+
execution_context: int | str | None = None,
|
|
175
|
+
undo: bool | None = None,
|
|
176
|
+
/,
|
|
216
177
|
) -> None:
|
|
217
|
-
"""Set collection to only contribute indirectly (through shadows and reflections) in the view layer
|
|
218
|
-
|
|
219
|
-
:type execution_context: int | str | None
|
|
220
|
-
:type undo: bool | None
|
|
221
|
-
"""
|
|
178
|
+
"""Set collection to only contribute indirectly (through shadows and reflections) in the view layer"""
|
|
222
179
|
|
|
223
180
|
def collection_instance(
|
|
224
|
-
execution_context: int | str | None = None,
|
|
181
|
+
execution_context: int | str | None = None,
|
|
182
|
+
undo: bool | None = None,
|
|
183
|
+
/,
|
|
225
184
|
) -> None:
|
|
226
|
-
"""Instance selected collections to active scene
|
|
227
|
-
|
|
228
|
-
:type execution_context: int | str | None
|
|
229
|
-
:type undo: bool | None
|
|
230
|
-
"""
|
|
185
|
+
"""Instance selected collections to active scene"""
|
|
231
186
|
|
|
232
187
|
def collection_isolate(
|
|
233
188
|
execution_context: int | str | None = None,
|
|
@@ -238,20 +193,15 @@ def collection_isolate(
|
|
|
238
193
|
) -> None:
|
|
239
194
|
"""Hide all but this collection and its parents
|
|
240
195
|
|
|
241
|
-
:type execution_context: int | str | None
|
|
242
|
-
:type undo: bool | None
|
|
243
196
|
:param extend: Extend, Extend current visible collections
|
|
244
|
-
:type extend: bool | None
|
|
245
197
|
"""
|
|
246
198
|
|
|
247
199
|
def collection_link(
|
|
248
|
-
execution_context: int | str | None = None,
|
|
200
|
+
execution_context: int | str | None = None,
|
|
201
|
+
undo: bool | None = None,
|
|
202
|
+
/,
|
|
249
203
|
) -> None:
|
|
250
|
-
"""Link selected collections to active scene
|
|
251
|
-
|
|
252
|
-
:type execution_context: int | str | None
|
|
253
|
-
:type undo: bool | None
|
|
254
|
-
"""
|
|
204
|
+
"""Link selected collections to active scene"""
|
|
255
205
|
|
|
256
206
|
def collection_new(
|
|
257
207
|
execution_context: int | str | None = None,
|
|
@@ -262,47 +212,36 @@ def collection_new(
|
|
|
262
212
|
) -> None:
|
|
263
213
|
"""Add a new collection inside selected collection
|
|
264
214
|
|
|
265
|
-
:type execution_context: int | str | None
|
|
266
|
-
:type undo: bool | None
|
|
267
215
|
:param nested: Nested, Add as child of selected collection
|
|
268
|
-
:type nested: bool | None
|
|
269
216
|
"""
|
|
270
217
|
|
|
271
218
|
def collection_objects_deselect(
|
|
272
|
-
execution_context: int | str | None = None,
|
|
219
|
+
execution_context: int | str | None = None,
|
|
220
|
+
undo: bool | None = None,
|
|
221
|
+
/,
|
|
273
222
|
) -> None:
|
|
274
|
-
"""Deselect objects in collection
|
|
275
|
-
|
|
276
|
-
:type execution_context: int | str | None
|
|
277
|
-
:type undo: bool | None
|
|
278
|
-
"""
|
|
223
|
+
"""Deselect objects in collection"""
|
|
279
224
|
|
|
280
225
|
def collection_objects_select(
|
|
281
|
-
execution_context: int | str | None = None,
|
|
226
|
+
execution_context: int | str | None = None,
|
|
227
|
+
undo: bool | None = None,
|
|
228
|
+
/,
|
|
282
229
|
) -> None:
|
|
283
|
-
"""Select objects in collection
|
|
284
|
-
|
|
285
|
-
:type execution_context: int | str | None
|
|
286
|
-
:type undo: bool | None
|
|
287
|
-
"""
|
|
230
|
+
"""Select objects in collection"""
|
|
288
231
|
|
|
289
232
|
def collection_show(
|
|
290
|
-
execution_context: int | str | None = None,
|
|
233
|
+
execution_context: int | str | None = None,
|
|
234
|
+
undo: bool | None = None,
|
|
235
|
+
/,
|
|
291
236
|
) -> None:
|
|
292
|
-
"""Show the collection in this view layer
|
|
293
|
-
|
|
294
|
-
:type execution_context: int | str | None
|
|
295
|
-
:type undo: bool | None
|
|
296
|
-
"""
|
|
237
|
+
"""Show the collection in this view layer"""
|
|
297
238
|
|
|
298
239
|
def collection_show_inside(
|
|
299
|
-
execution_context: int | str | None = None,
|
|
240
|
+
execution_context: int | str | None = None,
|
|
241
|
+
undo: bool | None = None,
|
|
242
|
+
/,
|
|
300
243
|
) -> None:
|
|
301
|
-
"""Show all the objects and collections inside the collection
|
|
302
|
-
|
|
303
|
-
:type execution_context: int | str | None
|
|
304
|
-
:type undo: bool | None
|
|
305
|
-
"""
|
|
244
|
+
"""Show all the objects and collections inside the collection"""
|
|
306
245
|
|
|
307
246
|
def constraint_operation(
|
|
308
247
|
execution_context: int | str | None = None,
|
|
@@ -313,10 +252,7 @@ def constraint_operation(
|
|
|
313
252
|
) -> None:
|
|
314
253
|
"""Undocumented, consider contributing.
|
|
315
254
|
|
|
316
|
-
:type execution_context: int | str | None
|
|
317
|
-
:type undo: bool | None
|
|
318
255
|
:param type: Constraint Operation
|
|
319
|
-
:type type: typing.Literal['ENABLE','DISABLE','DELETE'] | None
|
|
320
256
|
"""
|
|
321
257
|
|
|
322
258
|
def data_operation(
|
|
@@ -328,20 +264,15 @@ def data_operation(
|
|
|
328
264
|
) -> None:
|
|
329
265
|
"""Undocumented, consider contributing.
|
|
330
266
|
|
|
331
|
-
:type execution_context: int | str | None
|
|
332
|
-
:type undo: bool | None
|
|
333
267
|
:param type: Data Operation
|
|
334
|
-
:type type: str | None
|
|
335
268
|
"""
|
|
336
269
|
|
|
337
270
|
def datastack_drop(
|
|
338
|
-
execution_context: int | str | None = None,
|
|
271
|
+
execution_context: int | str | None = None,
|
|
272
|
+
undo: bool | None = None,
|
|
273
|
+
/,
|
|
339
274
|
) -> None:
|
|
340
|
-
"""Copy or reorder modifiers, constraints, and effects
|
|
341
|
-
|
|
342
|
-
:type execution_context: int | str | None
|
|
343
|
-
:type undo: bool | None
|
|
344
|
-
"""
|
|
275
|
+
"""Copy or reorder modifiers, constraints, and effects"""
|
|
345
276
|
|
|
346
277
|
def delete(
|
|
347
278
|
execution_context: int | str | None = None,
|
|
@@ -352,81 +283,64 @@ def delete(
|
|
|
352
283
|
) -> None:
|
|
353
284
|
"""Delete selected objects and collections
|
|
354
285
|
|
|
355
|
-
:type execution_context: int | str | None
|
|
356
|
-
:type undo: bool | None
|
|
357
286
|
:param hierarchy: Hierarchy, Delete child objects and collections
|
|
358
|
-
:type hierarchy: bool | None
|
|
359
287
|
"""
|
|
360
288
|
|
|
361
289
|
def drivers_add_selected(
|
|
362
|
-
execution_context: int | str | None = None,
|
|
290
|
+
execution_context: int | str | None = None,
|
|
291
|
+
undo: bool | None = None,
|
|
292
|
+
/,
|
|
363
293
|
) -> None:
|
|
364
|
-
"""Add drivers to selected items
|
|
365
|
-
|
|
366
|
-
:type execution_context: int | str | None
|
|
367
|
-
:type undo: bool | None
|
|
368
|
-
"""
|
|
294
|
+
"""Add drivers to selected items"""
|
|
369
295
|
|
|
370
296
|
def drivers_delete_selected(
|
|
371
|
-
execution_context: int | str | None = None,
|
|
297
|
+
execution_context: int | str | None = None,
|
|
298
|
+
undo: bool | None = None,
|
|
299
|
+
/,
|
|
372
300
|
) -> None:
|
|
373
|
-
"""Delete drivers assigned to selected items
|
|
374
|
-
|
|
375
|
-
:type execution_context: int | str | None
|
|
376
|
-
:type undo: bool | None
|
|
377
|
-
"""
|
|
301
|
+
"""Delete drivers assigned to selected items"""
|
|
378
302
|
|
|
379
303
|
def expanded_toggle(
|
|
380
|
-
execution_context: int | str | None = None,
|
|
304
|
+
execution_context: int | str | None = None,
|
|
305
|
+
undo: bool | None = None,
|
|
306
|
+
/,
|
|
381
307
|
) -> None:
|
|
382
|
-
"""Expand/Collapse all items
|
|
308
|
+
"""Expand/Collapse all items"""
|
|
383
309
|
|
|
384
|
-
|
|
385
|
-
:
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
"""Hide selected objects and collections
|
|
390
|
-
|
|
391
|
-
:type execution_context: int | str | None
|
|
392
|
-
:type undo: bool | None
|
|
393
|
-
"""
|
|
310
|
+
def hide(
|
|
311
|
+
execution_context: int | str | None = None,
|
|
312
|
+
undo: bool | None = None,
|
|
313
|
+
/,
|
|
314
|
+
) -> None:
|
|
315
|
+
"""Hide selected objects and collections"""
|
|
394
316
|
|
|
395
317
|
def highlight_update(
|
|
396
|
-
execution_context: int | str | None = None,
|
|
318
|
+
execution_context: int | str | None = None,
|
|
319
|
+
undo: bool | None = None,
|
|
320
|
+
/,
|
|
397
321
|
) -> None:
|
|
398
|
-
"""Update the item highlight based on the current mouse position
|
|
399
|
-
|
|
400
|
-
:type execution_context: int | str | None
|
|
401
|
-
:type undo: bool | None
|
|
402
|
-
"""
|
|
322
|
+
"""Update the item highlight based on the current mouse position"""
|
|
403
323
|
|
|
404
324
|
def id_copy(
|
|
405
|
-
execution_context: int | str | None = None,
|
|
325
|
+
execution_context: int | str | None = None,
|
|
326
|
+
undo: bool | None = None,
|
|
327
|
+
/,
|
|
406
328
|
) -> None:
|
|
407
|
-
"""Copy the selected data-blocks to the internal clipboard
|
|
408
|
-
|
|
409
|
-
:type execution_context: int | str | None
|
|
410
|
-
:type undo: bool | None
|
|
411
|
-
"""
|
|
329
|
+
"""Copy the selected data-blocks to the internal clipboard"""
|
|
412
330
|
|
|
413
331
|
def id_delete(
|
|
414
|
-
execution_context: int | str | None = None,
|
|
332
|
+
execution_context: int | str | None = None,
|
|
333
|
+
undo: bool | None = None,
|
|
334
|
+
/,
|
|
415
335
|
) -> None:
|
|
416
|
-
"""Delete the ID under cursor
|
|
417
|
-
|
|
418
|
-
:type execution_context: int | str | None
|
|
419
|
-
:type undo: bool | None
|
|
420
|
-
"""
|
|
336
|
+
"""Delete the ID under cursor"""
|
|
421
337
|
|
|
422
338
|
def id_linked_relocate(
|
|
423
|
-
execution_context: int | str | None = None,
|
|
339
|
+
execution_context: int | str | None = None,
|
|
340
|
+
undo: bool | None = None,
|
|
341
|
+
/,
|
|
424
342
|
) -> None:
|
|
425
|
-
"""Replace the active linked ID (and its dependencies if any) by another one, from the same or a different library
|
|
426
|
-
|
|
427
|
-
:type execution_context: int | str | None
|
|
428
|
-
:type undo: bool | None
|
|
429
|
-
"""
|
|
343
|
+
"""Replace the active linked ID (and its dependencies if any) by another one, from the same or a different library"""
|
|
430
344
|
|
|
431
345
|
def id_operation(
|
|
432
346
|
execution_context: int | str | None = None,
|
|
@@ -450,8 +364,6 @@ def id_operation(
|
|
|
450
364
|
) -> None:
|
|
451
365
|
"""General data-block management operations
|
|
452
366
|
|
|
453
|
-
:type execution_context: int | str | None
|
|
454
|
-
:type undo: bool | None
|
|
455
367
|
:param type: ID Data Operation
|
|
456
368
|
|
|
457
369
|
UNLINK
|
|
@@ -476,7 +388,7 @@ def id_operation(
|
|
|
476
388
|
Paste.
|
|
477
389
|
|
|
478
390
|
ADD_FAKE
|
|
479
|
-
Add Fake User -- Ensure data-block gets saved even if it
|
|
391
|
+
Add Fake User -- Ensure data-block gets saved even if it isnt in use (e.g. for motion and material libraries).
|
|
480
392
|
|
|
481
393
|
CLEAR_FAKE
|
|
482
394
|
Clear Fake User.
|
|
@@ -486,17 +398,14 @@ def id_operation(
|
|
|
486
398
|
|
|
487
399
|
SELECT_LINKED
|
|
488
400
|
Select Linked.
|
|
489
|
-
:type type: typing.Literal['UNLINK','LOCAL','SINGLE','DELETE','REMAP','COPY','PASTE','ADD_FAKE','CLEAR_FAKE','RENAME','SELECT_LINKED'] | None
|
|
490
401
|
"""
|
|
491
402
|
|
|
492
403
|
def id_paste(
|
|
493
|
-
execution_context: int | str | None = None,
|
|
404
|
+
execution_context: int | str | None = None,
|
|
405
|
+
undo: bool | None = None,
|
|
406
|
+
/,
|
|
494
407
|
) -> None:
|
|
495
|
-
"""Paste data-blocks from the internal clipboard
|
|
496
|
-
|
|
497
|
-
:type execution_context: int | str | None
|
|
498
|
-
:type undo: bool | None
|
|
499
|
-
"""
|
|
408
|
+
"""Paste data-blocks from the internal clipboard"""
|
|
500
409
|
|
|
501
410
|
def id_remap(
|
|
502
411
|
execution_context: int | str | None = None,
|
|
@@ -509,14 +418,9 @@ def id_remap(
|
|
|
509
418
|
) -> None:
|
|
510
419
|
"""Undocumented, consider contributing.
|
|
511
420
|
|
|
512
|
-
:type execution_context: int | str | None
|
|
513
|
-
:type undo: bool | None
|
|
514
421
|
:param id_type: ID Type
|
|
515
|
-
:type id_type: bpy.stub_internal.rna_enums.IdTypeItems | None
|
|
516
422
|
:param old_id: Old ID, Old ID to replace
|
|
517
|
-
:
|
|
518
|
-
:param new_id: New ID, New ID to remap all selected IDs' users to
|
|
519
|
-
:type new_id: str | None
|
|
423
|
+
:param new_id: New ID, New ID to remap all selected IDs users to
|
|
520
424
|
"""
|
|
521
425
|
|
|
522
426
|
def item_activate(
|
|
@@ -531,26 +435,18 @@ def item_activate(
|
|
|
531
435
|
) -> None:
|
|
532
436
|
"""Handle mouse clicks to select and activate items
|
|
533
437
|
|
|
534
|
-
:type execution_context: int | str | None
|
|
535
|
-
:type undo: bool | None
|
|
536
438
|
:param extend: Extend, Extend selection for activation
|
|
537
|
-
:type extend: bool | None
|
|
538
439
|
:param extend_range: Extend Range, Select a range from active element
|
|
539
|
-
:type extend_range: bool | None
|
|
540
440
|
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
541
|
-
:type deselect_all: bool | None
|
|
542
441
|
:param recurse: Recurse, Select objects recursively from active element
|
|
543
|
-
:type recurse: bool | None
|
|
544
442
|
"""
|
|
545
443
|
|
|
546
444
|
def item_drag_drop(
|
|
547
|
-
execution_context: int | str | None = None,
|
|
445
|
+
execution_context: int | str | None = None,
|
|
446
|
+
undo: bool | None = None,
|
|
447
|
+
/,
|
|
548
448
|
) -> None:
|
|
549
|
-
"""Drag and drop element to another place
|
|
550
|
-
|
|
551
|
-
:type execution_context: int | str | None
|
|
552
|
-
:type undo: bool | None
|
|
553
|
-
"""
|
|
449
|
+
"""Drag and drop element to another place"""
|
|
554
450
|
|
|
555
451
|
def item_openclose(
|
|
556
452
|
execution_context: int | str | None = None,
|
|
@@ -561,10 +457,7 @@ def item_openclose(
|
|
|
561
457
|
) -> None:
|
|
562
458
|
"""Toggle whether item under cursor is enabled or closed
|
|
563
459
|
|
|
564
|
-
:type execution_context: int | str | None
|
|
565
|
-
:type undo: bool | None
|
|
566
460
|
:param all: All, Close or open all items
|
|
567
|
-
:type all: bool | None
|
|
568
461
|
"""
|
|
569
462
|
|
|
570
463
|
def item_rename(
|
|
@@ -576,29 +469,22 @@ def item_rename(
|
|
|
576
469
|
) -> None:
|
|
577
470
|
"""Rename the active element
|
|
578
471
|
|
|
579
|
-
:type execution_context: int | str | None
|
|
580
|
-
:type undo: bool | None
|
|
581
472
|
:param use_active: Use Active, Rename the active item, rather than the one the mouse is over
|
|
582
|
-
:type use_active: bool | None
|
|
583
473
|
"""
|
|
584
474
|
|
|
585
475
|
def keyingset_add_selected(
|
|
586
|
-
execution_context: int | str | None = None,
|
|
476
|
+
execution_context: int | str | None = None,
|
|
477
|
+
undo: bool | None = None,
|
|
478
|
+
/,
|
|
587
479
|
) -> None:
|
|
588
|
-
"""Add selected items (blue-gray rows) to active Keying Set
|
|
589
|
-
|
|
590
|
-
:type execution_context: int | str | None
|
|
591
|
-
:type undo: bool | None
|
|
592
|
-
"""
|
|
480
|
+
"""Add selected items (blue-gray rows) to active Keying Set"""
|
|
593
481
|
|
|
594
482
|
def keyingset_remove_selected(
|
|
595
|
-
execution_context: int | str | None = None,
|
|
483
|
+
execution_context: int | str | None = None,
|
|
484
|
+
undo: bool | None = None,
|
|
485
|
+
/,
|
|
596
486
|
) -> None:
|
|
597
|
-
"""Remove selected items (blue-gray rows) from active Keying Set
|
|
598
|
-
|
|
599
|
-
:type execution_context: int | str | None
|
|
600
|
-
:type undo: bool | None
|
|
601
|
-
"""
|
|
487
|
+
"""Remove selected items (blue-gray rows) from active Keying Set"""
|
|
602
488
|
|
|
603
489
|
def lib_operation(
|
|
604
490
|
execution_context: int | str | None = None,
|
|
@@ -609,8 +495,6 @@ def lib_operation(
|
|
|
609
495
|
) -> None:
|
|
610
496
|
"""Undocumented, consider contributing.
|
|
611
497
|
|
|
612
|
-
:type execution_context: int | str | None
|
|
613
|
-
:type undo: bool | None
|
|
614
498
|
:param type: Library Operation
|
|
615
499
|
|
|
616
500
|
DELETE
|
|
@@ -621,17 +505,14 @@ def lib_operation(
|
|
|
621
505
|
|
|
622
506
|
RELOAD
|
|
623
507
|
Reload -- Reload all data from this library.
|
|
624
|
-
:type type: typing.Literal['DELETE','RELOCATE','RELOAD'] | None
|
|
625
508
|
"""
|
|
626
509
|
|
|
627
510
|
def lib_relocate(
|
|
628
|
-
execution_context: int | str | None = None,
|
|
511
|
+
execution_context: int | str | None = None,
|
|
512
|
+
undo: bool | None = None,
|
|
513
|
+
/,
|
|
629
514
|
) -> None:
|
|
630
|
-
"""Relocate the library under cursor
|
|
631
|
-
|
|
632
|
-
:type execution_context: int | str | None
|
|
633
|
-
:type undo: bool | None
|
|
634
|
-
"""
|
|
515
|
+
"""Relocate the library under cursor"""
|
|
635
516
|
|
|
636
517
|
def liboverride_operation(
|
|
637
518
|
execution_context: int | str | None = None,
|
|
@@ -649,8 +530,6 @@ def liboverride_operation(
|
|
|
649
530
|
) -> None:
|
|
650
531
|
"""Create, reset or clear library override hierarchies
|
|
651
532
|
|
|
652
|
-
:type execution_context: int | str | None
|
|
653
|
-
:type undo: bool | None
|
|
654
533
|
:param type: Library Override Operation
|
|
655
534
|
|
|
656
535
|
OVERRIDE_LIBRARY_CREATE_HIERARCHY
|
|
@@ -661,7 +540,6 @@ def liboverride_operation(
|
|
|
661
540
|
|
|
662
541
|
OVERRIDE_LIBRARY_CLEAR_SINGLE
|
|
663
542
|
Clear -- Delete the selected local overrides and relink their usages to the linked data-blocks if possible, else reset them and mark them as non editable.
|
|
664
|
-
:type type: typing.Literal['OVERRIDE_LIBRARY_CREATE_HIERARCHY','OVERRIDE_LIBRARY_RESET','OVERRIDE_LIBRARY_CLEAR_SINGLE'] | None
|
|
665
543
|
:param selection_set: Selection Set, Over which part of the tree items to apply the operation
|
|
666
544
|
|
|
667
545
|
SELECTED
|
|
@@ -672,7 +550,6 @@ def liboverride_operation(
|
|
|
672
550
|
|
|
673
551
|
SELECTED_AND_CONTENT
|
|
674
552
|
Selected & Content -- Apply the operation over selected data-blocks and all their dependencies.
|
|
675
|
-
:type selection_set: typing.Literal['SELECTED','CONTENT','SELECTED_AND_CONTENT'] | None
|
|
676
553
|
"""
|
|
677
554
|
|
|
678
555
|
def liboverride_troubleshoot_operation(
|
|
@@ -691,8 +568,6 @@ def liboverride_troubleshoot_operation(
|
|
|
691
568
|
) -> None:
|
|
692
569
|
"""Advanced operations over library override to help fix broken hierarchies
|
|
693
570
|
|
|
694
|
-
:type execution_context: int | str | None
|
|
695
|
-
:type undo: bool | None
|
|
696
571
|
:param type: Library Override Troubleshoot Operation
|
|
697
572
|
|
|
698
573
|
OVERRIDE_LIBRARY_RESYNC_HIERARCHY
|
|
@@ -703,7 +578,6 @@ def liboverride_troubleshoot_operation(
|
|
|
703
578
|
|
|
704
579
|
OVERRIDE_LIBRARY_DELETE_HIERARCHY
|
|
705
580
|
Delete -- Delete the selected local overrides (including their hierarchies of override dependencies) and relink their usages to the linked data-blocks.
|
|
706
|
-
:type type: typing.Literal['OVERRIDE_LIBRARY_RESYNC_HIERARCHY','OVERRIDE_LIBRARY_RESYNC_HIERARCHY_ENFORCE','OVERRIDE_LIBRARY_DELETE_HIERARCHY'] | None
|
|
707
581
|
:param selection_set: Selection Set, Over which part of the tree items to apply the operation
|
|
708
582
|
|
|
709
583
|
SELECTED
|
|
@@ -714,17 +588,14 @@ def liboverride_troubleshoot_operation(
|
|
|
714
588
|
|
|
715
589
|
SELECTED_AND_CONTENT
|
|
716
590
|
Selected & Content -- Apply the operation over selected data-blocks and all their dependencies.
|
|
717
|
-
:type selection_set: typing.Literal['SELECTED','CONTENT','SELECTED_AND_CONTENT'] | None
|
|
718
591
|
"""
|
|
719
592
|
|
|
720
593
|
def material_drop(
|
|
721
|
-
execution_context: int | str | None = None,
|
|
594
|
+
execution_context: int | str | None = None,
|
|
595
|
+
undo: bool | None = None,
|
|
596
|
+
/,
|
|
722
597
|
) -> None:
|
|
723
|
-
"""Drag material to object in Outliner
|
|
724
|
-
|
|
725
|
-
:type execution_context: int | str | None
|
|
726
|
-
:type undo: bool | None
|
|
727
|
-
"""
|
|
598
|
+
"""Drag material to object in Outliner"""
|
|
728
599
|
|
|
729
600
|
def modifier_operation(
|
|
730
601
|
execution_context: int | str | None = None,
|
|
@@ -735,10 +606,7 @@ def modifier_operation(
|
|
|
735
606
|
) -> None:
|
|
736
607
|
"""Undocumented, consider contributing.
|
|
737
608
|
|
|
738
|
-
:type execution_context: int | str | None
|
|
739
|
-
:type undo: bool | None
|
|
740
609
|
:param type: Modifier Operation
|
|
741
|
-
:type type: typing.Literal['APPLY','DELETE','TOGVIS','TOGREN'] | None
|
|
742
610
|
"""
|
|
743
611
|
|
|
744
612
|
def object_operation(
|
|
@@ -751,8 +619,6 @@ def object_operation(
|
|
|
751
619
|
) -> None:
|
|
752
620
|
"""Undocumented, consider contributing.
|
|
753
621
|
|
|
754
|
-
:type execution_context: int | str | None
|
|
755
|
-
:type undo: bool | None
|
|
756
622
|
:param type: Object Operation
|
|
757
623
|
|
|
758
624
|
SELECT
|
|
@@ -769,26 +635,21 @@ def object_operation(
|
|
|
769
635
|
|
|
770
636
|
RENAME
|
|
771
637
|
Rename.
|
|
772
|
-
:type type: typing.Literal['SELECT','DESELECT','SELECT_HIERARCHY','REMAP','RENAME'] | None
|
|
773
638
|
"""
|
|
774
639
|
|
|
775
640
|
def operation(
|
|
776
|
-
execution_context: int | str | None = None,
|
|
641
|
+
execution_context: int | str | None = None,
|
|
642
|
+
undo: bool | None = None,
|
|
643
|
+
/,
|
|
777
644
|
) -> None:
|
|
778
|
-
"""Context menu for item operations
|
|
779
|
-
|
|
780
|
-
:type execution_context: int | str | None
|
|
781
|
-
:type undo: bool | None
|
|
782
|
-
"""
|
|
645
|
+
"""Context menu for item operations"""
|
|
783
646
|
|
|
784
647
|
def orphans_manage(
|
|
785
|
-
execution_context: int | str | None = None,
|
|
648
|
+
execution_context: int | str | None = None,
|
|
649
|
+
undo: bool | None = None,
|
|
650
|
+
/,
|
|
786
651
|
) -> None:
|
|
787
|
-
"""Open a window to manage unused data
|
|
788
|
-
|
|
789
|
-
:type execution_context: int | str | None
|
|
790
|
-
:type undo: bool | None
|
|
791
|
-
"""
|
|
652
|
+
"""Open a window to manage unused data"""
|
|
792
653
|
|
|
793
654
|
def orphans_purge(
|
|
794
655
|
execution_context: int | str | None = None,
|
|
@@ -801,42 +662,31 @@ def orphans_purge(
|
|
|
801
662
|
) -> None:
|
|
802
663
|
"""Clear all orphaned data-blocks without any users from the file
|
|
803
664
|
|
|
804
|
-
:type execution_context: int | str | None
|
|
805
|
-
:type undo: bool | None
|
|
806
665
|
:param do_local_ids: Local Data-blocks, Include unused local data-blocks into deletion
|
|
807
|
-
:type do_local_ids: bool | None
|
|
808
666
|
:param do_linked_ids: Linked Data-blocks, Include unused linked data-blocks into deletion
|
|
809
|
-
:type do_linked_ids: bool | None
|
|
810
667
|
:param do_recursive: Recursive Delete, Recursively check for indirectly unused data-blocks, ensuring that no orphaned data-blocks remain after execution
|
|
811
|
-
:type do_recursive: bool | None
|
|
812
668
|
"""
|
|
813
669
|
|
|
814
670
|
def parent_clear(
|
|
815
|
-
execution_context: int | str | None = None,
|
|
671
|
+
execution_context: int | str | None = None,
|
|
672
|
+
undo: bool | None = None,
|
|
673
|
+
/,
|
|
816
674
|
) -> None:
|
|
817
|
-
"""Drag to clear parent in Outliner
|
|
818
|
-
|
|
819
|
-
:type execution_context: int | str | None
|
|
820
|
-
:type undo: bool | None
|
|
821
|
-
"""
|
|
675
|
+
"""Drag to clear parent in Outliner"""
|
|
822
676
|
|
|
823
677
|
def parent_drop(
|
|
824
|
-
execution_context: int | str | None = None,
|
|
678
|
+
execution_context: int | str | None = None,
|
|
679
|
+
undo: bool | None = None,
|
|
680
|
+
/,
|
|
825
681
|
) -> None:
|
|
826
|
-
"""Drag to parent in Outliner
|
|
827
|
-
|
|
828
|
-
:type execution_context: int | str | None
|
|
829
|
-
:type undo: bool | None
|
|
830
|
-
"""
|
|
682
|
+
"""Drag to parent in Outliner"""
|
|
831
683
|
|
|
832
684
|
def scene_drop(
|
|
833
|
-
execution_context: int | str | None = None,
|
|
685
|
+
execution_context: int | str | None = None,
|
|
686
|
+
undo: bool | None = None,
|
|
687
|
+
/,
|
|
834
688
|
) -> None:
|
|
835
|
-
"""Drag object to scene in Outliner
|
|
836
|
-
|
|
837
|
-
:type execution_context: int | str | None
|
|
838
|
-
:type undo: bool | None
|
|
839
|
-
"""
|
|
689
|
+
"""Drag object to scene in Outliner"""
|
|
840
690
|
|
|
841
691
|
def scene_operation(
|
|
842
692
|
execution_context: int | str | None = None,
|
|
@@ -847,10 +697,7 @@ def scene_operation(
|
|
|
847
697
|
) -> None:
|
|
848
698
|
"""Context menu for scene operations
|
|
849
699
|
|
|
850
|
-
:type execution_context: int | str | None
|
|
851
|
-
:type undo: bool | None
|
|
852
700
|
:param type: Scene Operation
|
|
853
|
-
:type type: typing.Literal['DELETE'] | None
|
|
854
701
|
"""
|
|
855
702
|
|
|
856
703
|
def scroll_page(
|
|
@@ -862,10 +709,7 @@ def scroll_page(
|
|
|
862
709
|
) -> None:
|
|
863
710
|
"""Scroll page up or down
|
|
864
711
|
|
|
865
|
-
:type execution_context: int | str | None
|
|
866
|
-
:type undo: bool | None
|
|
867
712
|
:param up: Up, Scroll up one page
|
|
868
|
-
:type up: bool | None
|
|
869
713
|
"""
|
|
870
714
|
|
|
871
715
|
def select_all(
|
|
@@ -877,8 +721,6 @@ def select_all(
|
|
|
877
721
|
) -> None:
|
|
878
722
|
"""Toggle the Outliner selection of items
|
|
879
723
|
|
|
880
|
-
:type execution_context: int | str | None
|
|
881
|
-
:type undo: bool | None
|
|
882
724
|
:param action: Action, Selection action to execute
|
|
883
725
|
|
|
884
726
|
TOGGLE
|
|
@@ -892,7 +734,6 @@ def select_all(
|
|
|
892
734
|
|
|
893
735
|
INVERT
|
|
894
736
|
Invert -- Invert selection of all elements.
|
|
895
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
896
737
|
"""
|
|
897
738
|
|
|
898
739
|
def select_box(
|
|
@@ -910,20 +751,12 @@ def select_box(
|
|
|
910
751
|
) -> None:
|
|
911
752
|
"""Use box selection to select tree elements
|
|
912
753
|
|
|
913
|
-
:type execution_context: int | str | None
|
|
914
|
-
:type undo: bool | None
|
|
915
754
|
:param tweak: Tweak, Tweak gesture from empty space for box selection
|
|
916
|
-
:type tweak: bool | None
|
|
917
755
|
:param xmin: X Min
|
|
918
|
-
:type xmin: int | None
|
|
919
756
|
:param xmax: X Max
|
|
920
|
-
:type xmax: int | None
|
|
921
757
|
:param ymin: Y Min
|
|
922
|
-
:type ymin: int | None
|
|
923
758
|
:param ymax: Y Max
|
|
924
|
-
:type ymax: int | None
|
|
925
759
|
:param wait_for_input: Wait for Input
|
|
926
|
-
:type wait_for_input: bool | None
|
|
927
760
|
:param mode: Mode
|
|
928
761
|
|
|
929
762
|
SET
|
|
@@ -934,7 +767,6 @@ def select_box(
|
|
|
934
767
|
|
|
935
768
|
SUB
|
|
936
769
|
Subtract -- Subtract existing selection.
|
|
937
|
-
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
938
770
|
"""
|
|
939
771
|
|
|
940
772
|
def select_walk(
|
|
@@ -948,33 +780,24 @@ def select_walk(
|
|
|
948
780
|
) -> None:
|
|
949
781
|
"""Use walk navigation to select tree elements
|
|
950
782
|
|
|
951
|
-
:type execution_context: int | str | None
|
|
952
|
-
:type undo: bool | None
|
|
953
783
|
:param direction: Walk Direction, Select/Deselect element in this direction
|
|
954
|
-
:type direction: typing.Literal['UP','DOWN','LEFT','RIGHT'] | None
|
|
955
784
|
:param extend: Extend, Extend selection on walk
|
|
956
|
-
:type extend: bool | None
|
|
957
785
|
:param toggle_all: Toggle All, Toggle open/close hierarchy
|
|
958
|
-
:type toggle_all: bool | None
|
|
959
786
|
"""
|
|
960
787
|
|
|
961
788
|
def show_active(
|
|
962
|
-
execution_context: int | str | None = None,
|
|
789
|
+
execution_context: int | str | None = None,
|
|
790
|
+
undo: bool | None = None,
|
|
791
|
+
/,
|
|
963
792
|
) -> None:
|
|
964
|
-
"""Open up the tree and adjust the view so that the active object is shown centered
|
|
965
|
-
|
|
966
|
-
:type execution_context: int | str | None
|
|
967
|
-
:type undo: bool | None
|
|
968
|
-
"""
|
|
793
|
+
"""Open up the tree and adjust the view so that the active object is shown centered"""
|
|
969
794
|
|
|
970
795
|
def show_hierarchy(
|
|
971
|
-
execution_context: int | str | None = None,
|
|
796
|
+
execution_context: int | str | None = None,
|
|
797
|
+
undo: bool | None = None,
|
|
798
|
+
/,
|
|
972
799
|
) -> None:
|
|
973
|
-
"""Open all object entries and close all others
|
|
974
|
-
|
|
975
|
-
:type execution_context: int | str | None
|
|
976
|
-
:type undo: bool | None
|
|
977
|
-
"""
|
|
800
|
+
"""Open all object entries and close all others"""
|
|
978
801
|
|
|
979
802
|
def show_one_level(
|
|
980
803
|
execution_context: int | str | None = None,
|
|
@@ -985,26 +808,19 @@ def show_one_level(
|
|
|
985
808
|
) -> None:
|
|
986
809
|
"""Expand/collapse all entries by one level
|
|
987
810
|
|
|
988
|
-
:type execution_context: int | str | None
|
|
989
|
-
:type undo: bool | None
|
|
990
811
|
:param open: Open, Expand all entries one level deep
|
|
991
|
-
:type open: bool | None
|
|
992
812
|
"""
|
|
993
813
|
|
|
994
814
|
def start_filter(
|
|
995
|
-
execution_context: int | str | None = None,
|
|
815
|
+
execution_context: int | str | None = None,
|
|
816
|
+
undo: bool | None = None,
|
|
817
|
+
/,
|
|
996
818
|
) -> None:
|
|
997
|
-
"""Start entering filter text
|
|
998
|
-
|
|
999
|
-
:type execution_context: int | str | None
|
|
1000
|
-
:type undo: bool | None
|
|
1001
|
-
"""
|
|
819
|
+
"""Start entering filter text"""
|
|
1002
820
|
|
|
1003
821
|
def unhide_all(
|
|
1004
|
-
execution_context: int | str | None = None,
|
|
822
|
+
execution_context: int | str | None = None,
|
|
823
|
+
undo: bool | None = None,
|
|
824
|
+
/,
|
|
1005
825
|
) -> None:
|
|
1006
|
-
"""Unhide all objects and collections
|
|
1007
|
-
|
|
1008
|
-
:type execution_context: int | str | None
|
|
1009
|
-
:type undo: bool | None
|
|
1010
|
-
"""
|
|
826
|
+
"""Unhide all objects and collections"""
|