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/preferences/__init__.pyi
CHANGED
|
@@ -13,10 +13,7 @@ def addon_disable(
|
|
|
13
13
|
) -> None:
|
|
14
14
|
"""Turn off this add-on
|
|
15
15
|
|
|
16
|
-
:type execution_context: int | str | None
|
|
17
|
-
:type undo: bool | None
|
|
18
16
|
:param module: Module, Module name of the add-on to disable
|
|
19
|
-
:type module: str
|
|
20
17
|
"""
|
|
21
18
|
|
|
22
19
|
def addon_enable(
|
|
@@ -28,10 +25,7 @@ def addon_enable(
|
|
|
28
25
|
) -> None:
|
|
29
26
|
"""Turn on this add-on
|
|
30
27
|
|
|
31
|
-
:type execution_context: int | str | None
|
|
32
|
-
:type undo: bool | None
|
|
33
28
|
:param module: Module, Module name of the add-on to enable
|
|
34
|
-
:type module: str
|
|
35
29
|
"""
|
|
36
30
|
|
|
37
31
|
def addon_expand(
|
|
@@ -43,10 +37,7 @@ def addon_expand(
|
|
|
43
37
|
) -> None:
|
|
44
38
|
"""Display information and preferences for this add-on
|
|
45
39
|
|
|
46
|
-
:type execution_context: int | str | None
|
|
47
|
-
:type undo: bool | None
|
|
48
40
|
:param module: Module, Module name of the add-on to expand
|
|
49
|
-
:type module: str
|
|
50
41
|
"""
|
|
51
42
|
|
|
52
43
|
def addon_install(
|
|
@@ -64,32 +55,21 @@ def addon_install(
|
|
|
64
55
|
) -> None:
|
|
65
56
|
"""Install an add-on
|
|
66
57
|
|
|
67
|
-
:type execution_context: int | str | None
|
|
68
|
-
:type undo: bool | None
|
|
69
58
|
:param overwrite: Overwrite, Remove existing add-ons with the same ID
|
|
70
|
-
:type overwrite: bool | None
|
|
71
59
|
:param enable_on_install: Enable on Install, Enable after installing
|
|
72
|
-
:type enable_on_install: bool | None
|
|
73
60
|
:param target: Target Path
|
|
74
|
-
:type target: str | None
|
|
75
61
|
:param filepath: filepath
|
|
76
|
-
:type filepath: str
|
|
77
62
|
:param filter_folder: Filter folders
|
|
78
|
-
:type filter_folder: bool | None
|
|
79
63
|
:param filter_python: Filter Python
|
|
80
|
-
:type filter_python: bool | None
|
|
81
64
|
:param filter_glob: filter_glob
|
|
82
|
-
:type filter_glob: str
|
|
83
65
|
"""
|
|
84
66
|
|
|
85
67
|
def addon_refresh(
|
|
86
|
-
execution_context: int | str | None = None,
|
|
68
|
+
execution_context: int | str | None = None,
|
|
69
|
+
undo: bool | None = None,
|
|
70
|
+
/,
|
|
87
71
|
) -> None:
|
|
88
|
-
"""Scan add-on directories for new modules
|
|
89
|
-
|
|
90
|
-
:type execution_context: int | str | None
|
|
91
|
-
:type undo: bool | None
|
|
92
|
-
"""
|
|
72
|
+
"""Scan add-on directories for new modules"""
|
|
93
73
|
|
|
94
74
|
def addon_remove(
|
|
95
75
|
execution_context: int | str | None = None,
|
|
@@ -100,10 +80,7 @@ def addon_remove(
|
|
|
100
80
|
) -> None:
|
|
101
81
|
"""Delete the add-on from the file system
|
|
102
82
|
|
|
103
|
-
:type execution_context: int | str | None
|
|
104
|
-
:type undo: bool | None
|
|
105
83
|
:param module: Module, Module name of the add-on to remove
|
|
106
|
-
:type module: str
|
|
107
84
|
"""
|
|
108
85
|
|
|
109
86
|
def addon_show(
|
|
@@ -115,10 +92,7 @@ def addon_show(
|
|
|
115
92
|
) -> None:
|
|
116
93
|
"""Show add-on preferences
|
|
117
94
|
|
|
118
|
-
:type execution_context: int | str | None
|
|
119
|
-
:type undo: bool | None
|
|
120
95
|
:param module: Module, Module name of the add-on to expand
|
|
121
|
-
:type module: str
|
|
122
96
|
"""
|
|
123
97
|
|
|
124
98
|
def app_template_install(
|
|
@@ -133,16 +107,10 @@ def app_template_install(
|
|
|
133
107
|
) -> None:
|
|
134
108
|
"""Install an application template
|
|
135
109
|
|
|
136
|
-
:type execution_context: int | str | None
|
|
137
|
-
:type undo: bool | None
|
|
138
110
|
:param overwrite: Overwrite, Remove existing template with the same ID
|
|
139
|
-
:type overwrite: bool | None
|
|
140
111
|
:param filepath: filepath
|
|
141
|
-
:type filepath: str
|
|
142
112
|
:param filter_folder: Filter folders
|
|
143
|
-
:type filter_folder: bool | None
|
|
144
113
|
:param filter_glob: filter_glob
|
|
145
|
-
:type filter_glob: str
|
|
146
114
|
"""
|
|
147
115
|
|
|
148
116
|
def asset_library_add(
|
|
@@ -178,48 +146,26 @@ def asset_library_add(
|
|
|
178
146
|
) -> None:
|
|
179
147
|
"""Add a directory to be used by the Asset Browser as source of assets
|
|
180
148
|
|
|
181
|
-
:type execution_context: int | str | None
|
|
182
|
-
:type undo: bool | None
|
|
183
149
|
:param directory: Directory, Directory of the file
|
|
184
|
-
:type directory: str
|
|
185
150
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
186
|
-
:type hide_props_region: bool | None
|
|
187
151
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
188
|
-
:type check_existing: bool | None
|
|
189
152
|
:param filter_blender: Filter .blend files
|
|
190
|
-
:type filter_blender: bool | None
|
|
191
153
|
:param filter_backup: Filter .blend files
|
|
192
|
-
:type filter_backup: bool | None
|
|
193
154
|
:param filter_image: Filter image files
|
|
194
|
-
:type filter_image: bool | None
|
|
195
155
|
:param filter_movie: Filter movie files
|
|
196
|
-
:type filter_movie: bool | None
|
|
197
156
|
:param filter_python: Filter Python files
|
|
198
|
-
:type filter_python: bool | None
|
|
199
157
|
:param filter_font: Filter font files
|
|
200
|
-
:type filter_font: bool | None
|
|
201
158
|
:param filter_sound: Filter sound files
|
|
202
|
-
:type filter_sound: bool | None
|
|
203
159
|
:param filter_text: Filter text files
|
|
204
|
-
:type filter_text: bool | None
|
|
205
160
|
:param filter_archive: Filter archive files
|
|
206
|
-
:type filter_archive: bool | None
|
|
207
161
|
:param filter_btx: Filter btx files
|
|
208
|
-
:type filter_btx: bool | None
|
|
209
162
|
:param filter_alembic: Filter Alembic files
|
|
210
|
-
:type filter_alembic: bool | None
|
|
211
163
|
:param filter_usd: Filter USD files
|
|
212
|
-
:type filter_usd: bool | None
|
|
213
164
|
:param filter_obj: Filter OBJ files
|
|
214
|
-
:type filter_obj: bool | None
|
|
215
165
|
:param filter_volume: Filter OpenVDB volume files
|
|
216
|
-
:type filter_volume: bool | None
|
|
217
166
|
:param filter_folder: Filter folders
|
|
218
|
-
:type filter_folder: bool | None
|
|
219
167
|
:param filter_blenlib: Filter Blender IDs
|
|
220
|
-
:type filter_blenlib: bool | None
|
|
221
168
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
222
|
-
:type filemode: int | None
|
|
223
169
|
:param display_type: Display Type
|
|
224
170
|
|
|
225
171
|
DEFAULT
|
|
@@ -233,9 +179,7 @@ def asset_library_add(
|
|
|
233
179
|
|
|
234
180
|
THUMBNAIL
|
|
235
181
|
Thumbnails -- Display files as thumbnails.
|
|
236
|
-
:type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
|
|
237
182
|
:param sort_method: File sorting mode
|
|
238
|
-
:type sort_method: str | None
|
|
239
183
|
"""
|
|
240
184
|
|
|
241
185
|
def asset_library_remove(
|
|
@@ -247,29 +191,22 @@ def asset_library_remove(
|
|
|
247
191
|
) -> None:
|
|
248
192
|
"""Remove a path to a .blend file, so the Asset Browser will not attempt to show it anymore
|
|
249
193
|
|
|
250
|
-
:type execution_context: int | str | None
|
|
251
|
-
:type undo: bool | None
|
|
252
194
|
:param index: Index
|
|
253
|
-
:type index: int | None
|
|
254
195
|
"""
|
|
255
196
|
|
|
256
197
|
def associate_blend(
|
|
257
|
-
execution_context: int | str | None = None,
|
|
198
|
+
execution_context: int | str | None = None,
|
|
199
|
+
undo: bool | None = None,
|
|
200
|
+
/,
|
|
258
201
|
) -> None:
|
|
259
|
-
"""Use this installation for .blend files and to display thumbnails
|
|
260
|
-
|
|
261
|
-
:type execution_context: int | str | None
|
|
262
|
-
:type undo: bool | None
|
|
263
|
-
"""
|
|
202
|
+
"""Use this installation for .blend files and to display thumbnails"""
|
|
264
203
|
|
|
265
204
|
def autoexec_path_add(
|
|
266
|
-
execution_context: int | str | None = None,
|
|
205
|
+
execution_context: int | str | None = None,
|
|
206
|
+
undo: bool | None = None,
|
|
207
|
+
/,
|
|
267
208
|
) -> None:
|
|
268
|
-
"""Add path to exclude from auto-execution
|
|
269
|
-
|
|
270
|
-
:type execution_context: int | str | None
|
|
271
|
-
:type undo: bool | None
|
|
272
|
-
"""
|
|
209
|
+
"""Add path to exclude from auto-execution"""
|
|
273
210
|
|
|
274
211
|
def autoexec_path_remove(
|
|
275
212
|
execution_context: int | str | None = None,
|
|
@@ -280,20 +217,15 @@ def autoexec_path_remove(
|
|
|
280
217
|
) -> None:
|
|
281
218
|
"""Remove path to exclude from auto-execution
|
|
282
219
|
|
|
283
|
-
:type execution_context: int | str | None
|
|
284
|
-
:type undo: bool | None
|
|
285
220
|
:param index: Index
|
|
286
|
-
:type index: int | None
|
|
287
221
|
"""
|
|
288
222
|
|
|
289
223
|
def copy_prev(
|
|
290
|
-
execution_context: int | str | None = None,
|
|
224
|
+
execution_context: int | str | None = None,
|
|
225
|
+
undo: bool | None = None,
|
|
226
|
+
/,
|
|
291
227
|
) -> None:
|
|
292
|
-
"""Copy settings from previous version
|
|
293
|
-
|
|
294
|
-
:type execution_context: int | str | None
|
|
295
|
-
:type undo: bool | None
|
|
296
|
-
"""
|
|
228
|
+
"""Copy settings from previous version"""
|
|
297
229
|
|
|
298
230
|
def extension_repo_add(
|
|
299
231
|
execution_context: int | str | None = None,
|
|
@@ -311,22 +243,13 @@ def extension_repo_add(
|
|
|
311
243
|
) -> None:
|
|
312
244
|
"""Add a new repository used to store extensions
|
|
313
245
|
|
|
314
|
-
:type execution_context: int | str | None
|
|
315
|
-
:type undo: bool | None
|
|
316
246
|
:param name: Name, Unique repository name
|
|
317
|
-
:type name: str
|
|
318
247
|
:param remote_url: URL, Remote URL to the extension repository, the file-system may be referenced using the file URI scheme: "file://"
|
|
319
|
-
:type remote_url: str
|
|
320
248
|
:param use_access_token: Requires Access Token, Repository requires an access token
|
|
321
|
-
:type use_access_token: bool | None
|
|
322
249
|
:param access_token: Secret, Personal access token, may be required by some repositories
|
|
323
|
-
:type access_token: str
|
|
324
250
|
:param use_sync_on_startup: Check for Updates on Startup, Allow Blender to check for updates upon launch
|
|
325
|
-
:
|
|
326
|
-
:param use_custom_directory: Custom Directory, Manually set the path for extensions to be stored. When disabled a user's extensions directory is created.
|
|
327
|
-
:type use_custom_directory: bool | None
|
|
251
|
+
:param use_custom_directory: Custom Directory, Manually set the path for extensions to be stored. When disabled a users extensions directory is created.
|
|
328
252
|
:param custom_directory: Custom Directory, The local directory containing extensions
|
|
329
|
-
:type custom_directory: str
|
|
330
253
|
:param type: Type, The kind of repository to add
|
|
331
254
|
|
|
332
255
|
REMOTE
|
|
@@ -334,7 +257,6 @@ def extension_repo_add(
|
|
|
334
257
|
|
|
335
258
|
LOCAL
|
|
336
259
|
Add Local Repository -- Add a repository managed manually without referencing an external repository.
|
|
337
|
-
:type type: typing.Literal['REMOTE','LOCAL'] | None
|
|
338
260
|
"""
|
|
339
261
|
|
|
340
262
|
def extension_repo_remove(
|
|
@@ -347,12 +269,8 @@ def extension_repo_remove(
|
|
|
347
269
|
) -> None:
|
|
348
270
|
"""Remove an extension repository
|
|
349
271
|
|
|
350
|
-
:type execution_context: int | str | None
|
|
351
|
-
:type undo: bool | None
|
|
352
272
|
:param index: Index
|
|
353
|
-
:type index: int | None
|
|
354
273
|
:param remove_files: Remove Files, Remove extension files when removing the repository
|
|
355
|
-
:type remove_files: bool | None
|
|
356
274
|
"""
|
|
357
275
|
|
|
358
276
|
def extension_url_drop(
|
|
@@ -364,10 +282,7 @@ def extension_url_drop(
|
|
|
364
282
|
) -> None:
|
|
365
283
|
"""Handle dropping an extension URL
|
|
366
284
|
|
|
367
|
-
:type execution_context: int | str | None
|
|
368
|
-
:type undo: bool | None
|
|
369
285
|
:param url: URL, Location of the extension to install
|
|
370
|
-
:type url: str
|
|
371
286
|
"""
|
|
372
287
|
|
|
373
288
|
def keyconfig_activate(
|
|
@@ -379,10 +294,7 @@ def keyconfig_activate(
|
|
|
379
294
|
) -> None:
|
|
380
295
|
"""Undocumented, consider contributing.
|
|
381
296
|
|
|
382
|
-
:type execution_context: int | str | None
|
|
383
|
-
:type undo: bool | None
|
|
384
297
|
:param filepath: filepath
|
|
385
|
-
:type filepath: str
|
|
386
298
|
"""
|
|
387
299
|
|
|
388
300
|
def keyconfig_export(
|
|
@@ -398,18 +310,11 @@ def keyconfig_export(
|
|
|
398
310
|
) -> None:
|
|
399
311
|
"""Export key configuration to a Python script
|
|
400
312
|
|
|
401
|
-
:type execution_context: int | str | None
|
|
402
|
-
:type undo: bool | None
|
|
403
313
|
:param all: All Keymaps, Write all keymaps (not just user modified)
|
|
404
|
-
:type all: bool | None
|
|
405
314
|
:param filepath: filepath
|
|
406
|
-
:type filepath: str
|
|
407
315
|
:param filter_folder: Filter folders
|
|
408
|
-
:type filter_folder: bool | None
|
|
409
316
|
:param filter_text: Filter text
|
|
410
|
-
:type filter_text: bool | None
|
|
411
317
|
:param filter_python: Filter Python
|
|
412
|
-
:type filter_python: bool | None
|
|
413
318
|
"""
|
|
414
319
|
|
|
415
320
|
def keyconfig_import(
|
|
@@ -425,46 +330,33 @@ def keyconfig_import(
|
|
|
425
330
|
) -> None:
|
|
426
331
|
"""Import key configuration from a Python script
|
|
427
332
|
|
|
428
|
-
:type execution_context: int | str | None
|
|
429
|
-
:type undo: bool | None
|
|
430
333
|
:param filepath: filepath
|
|
431
|
-
:type filepath: str
|
|
432
334
|
:param filter_folder: Filter folders
|
|
433
|
-
:type filter_folder: bool | None
|
|
434
335
|
:param filter_text: Filter text
|
|
435
|
-
:type filter_text: bool | None
|
|
436
336
|
:param filter_python: Filter Python
|
|
437
|
-
:type filter_python: bool | None
|
|
438
337
|
:param keep_original: Keep Original, Keep original file after copying to configuration folder
|
|
439
|
-
:type keep_original: bool | None
|
|
440
338
|
"""
|
|
441
339
|
|
|
442
340
|
def keyconfig_remove(
|
|
443
|
-
execution_context: int | str | None = None,
|
|
341
|
+
execution_context: int | str | None = None,
|
|
342
|
+
undo: bool | None = None,
|
|
343
|
+
/,
|
|
444
344
|
) -> None:
|
|
445
|
-
"""Remove key config
|
|
446
|
-
|
|
447
|
-
:type execution_context: int | str | None
|
|
448
|
-
:type undo: bool | None
|
|
449
|
-
"""
|
|
345
|
+
"""Remove key config"""
|
|
450
346
|
|
|
451
347
|
def keyconfig_test(
|
|
452
|
-
execution_context: int | str | None = None,
|
|
348
|
+
execution_context: int | str | None = None,
|
|
349
|
+
undo: bool | None = None,
|
|
350
|
+
/,
|
|
453
351
|
) -> None:
|
|
454
|
-
"""Test key configuration for conflicts
|
|
455
|
-
|
|
456
|
-
:type execution_context: int | str | None
|
|
457
|
-
:type undo: bool | None
|
|
458
|
-
"""
|
|
352
|
+
"""Test key configuration for conflicts"""
|
|
459
353
|
|
|
460
354
|
def keyitem_add(
|
|
461
|
-
execution_context: int | str | None = None,
|
|
355
|
+
execution_context: int | str | None = None,
|
|
356
|
+
undo: bool | None = None,
|
|
357
|
+
/,
|
|
462
358
|
) -> None:
|
|
463
|
-
"""Add key map item
|
|
464
|
-
|
|
465
|
-
:type execution_context: int | str | None
|
|
466
|
-
:type undo: bool | None
|
|
467
|
-
"""
|
|
359
|
+
"""Add key map item"""
|
|
468
360
|
|
|
469
361
|
def keyitem_remove(
|
|
470
362
|
execution_context: int | str | None = None,
|
|
@@ -475,10 +367,7 @@ def keyitem_remove(
|
|
|
475
367
|
) -> None:
|
|
476
368
|
"""Remove key map item
|
|
477
369
|
|
|
478
|
-
:type execution_context: int | str | None
|
|
479
|
-
:type undo: bool | None
|
|
480
370
|
:param item_id: Item Identifier, Identifier of the item to remove
|
|
481
|
-
:type item_id: int | None
|
|
482
371
|
"""
|
|
483
372
|
|
|
484
373
|
def keyitem_restore(
|
|
@@ -490,10 +379,7 @@ def keyitem_restore(
|
|
|
490
379
|
) -> None:
|
|
491
380
|
"""Restore key map item
|
|
492
381
|
|
|
493
|
-
:type execution_context: int | str | None
|
|
494
|
-
:type undo: bool | None
|
|
495
382
|
:param item_id: Item Identifier, Identifier of the item to restore
|
|
496
|
-
:type item_id: int | None
|
|
497
383
|
"""
|
|
498
384
|
|
|
499
385
|
def keymap_restore(
|
|
@@ -505,20 +391,15 @@ def keymap_restore(
|
|
|
505
391
|
) -> None:
|
|
506
392
|
"""Restore key map(s)
|
|
507
393
|
|
|
508
|
-
:type execution_context: int | str | None
|
|
509
|
-
:type undo: bool | None
|
|
510
394
|
:param all: All Keymaps, Restore all keymaps to default
|
|
511
|
-
:type all: bool | None
|
|
512
395
|
"""
|
|
513
396
|
|
|
514
397
|
def reset_default_theme(
|
|
515
|
-
execution_context: int | str | None = None,
|
|
398
|
+
execution_context: int | str | None = None,
|
|
399
|
+
undo: bool | None = None,
|
|
400
|
+
/,
|
|
516
401
|
) -> None:
|
|
517
|
-
"""Reset to the default theme colors
|
|
518
|
-
|
|
519
|
-
:type execution_context: int | str | None
|
|
520
|
-
:type undo: bool | None
|
|
521
|
-
"""
|
|
402
|
+
"""Reset to the default theme colors"""
|
|
522
403
|
|
|
523
404
|
def script_directory_add(
|
|
524
405
|
execution_context: int | str | None = None,
|
|
@@ -530,12 +411,8 @@ def script_directory_add(
|
|
|
530
411
|
) -> None:
|
|
531
412
|
"""Undocumented, consider contributing.
|
|
532
413
|
|
|
533
|
-
:type execution_context: int | str | None
|
|
534
|
-
:type undo: bool | None
|
|
535
414
|
:param directory: directory
|
|
536
|
-
:type directory: str
|
|
537
415
|
:param filter_folder: Filter Folders
|
|
538
|
-
:type filter_folder: bool | None
|
|
539
416
|
"""
|
|
540
417
|
|
|
541
418
|
def script_directory_remove(
|
|
@@ -547,10 +424,7 @@ def script_directory_remove(
|
|
|
547
424
|
) -> None:
|
|
548
425
|
"""Undocumented, consider contributing.
|
|
549
426
|
|
|
550
|
-
:type execution_context: int | str | None
|
|
551
|
-
:type undo: bool | None
|
|
552
427
|
:param index: Index, Index of the script directory to remove
|
|
553
|
-
:type index: int | None
|
|
554
428
|
"""
|
|
555
429
|
|
|
556
430
|
def studiolight_copy_settings(
|
|
@@ -562,10 +436,7 @@ def studiolight_copy_settings(
|
|
|
562
436
|
) -> None:
|
|
563
437
|
"""Copy Studio Light settings to the Studio Light editor
|
|
564
438
|
|
|
565
|
-
:type execution_context: int | str | None
|
|
566
|
-
:type undo: bool | None
|
|
567
439
|
:param index: index
|
|
568
|
-
:type index: int | None
|
|
569
440
|
"""
|
|
570
441
|
|
|
571
442
|
def studiolight_install(
|
|
@@ -582,16 +453,10 @@ def studiolight_install(
|
|
|
582
453
|
) -> None:
|
|
583
454
|
"""Install a user defined light
|
|
584
455
|
|
|
585
|
-
:type execution_context: int | str | None
|
|
586
|
-
:type undo: bool | None
|
|
587
456
|
:param files: File Path
|
|
588
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
589
457
|
:param directory: directory
|
|
590
|
-
:type directory: str
|
|
591
458
|
:param filter_folder: Filter Folders
|
|
592
|
-
:type filter_folder: bool | None
|
|
593
459
|
:param filter_glob: filter_glob
|
|
594
|
-
:type filter_glob: str
|
|
595
460
|
:param type: Type
|
|
596
461
|
|
|
597
462
|
MATCAP
|
|
@@ -602,7 +467,6 @@ def studiolight_install(
|
|
|
602
467
|
|
|
603
468
|
STUDIO
|
|
604
469
|
Studio -- Install custom Studio Lights.
|
|
605
|
-
:type type: typing.Literal['MATCAP','WORLD','STUDIO'] | None
|
|
606
470
|
"""
|
|
607
471
|
|
|
608
472
|
def studiolight_new(
|
|
@@ -614,10 +478,7 @@ def studiolight_new(
|
|
|
614
478
|
) -> None:
|
|
615
479
|
"""Save custom studio light from the studio light editor settings
|
|
616
480
|
|
|
617
|
-
:type execution_context: int | str | None
|
|
618
|
-
:type undo: bool | None
|
|
619
481
|
:param filename: Name
|
|
620
|
-
:type filename: str
|
|
621
482
|
"""
|
|
622
483
|
|
|
623
484
|
def studiolight_uninstall(
|
|
@@ -629,10 +490,7 @@ def studiolight_uninstall(
|
|
|
629
490
|
) -> None:
|
|
630
491
|
"""Delete Studio Light
|
|
631
492
|
|
|
632
|
-
:type execution_context: int | str | None
|
|
633
|
-
:type undo: bool | None
|
|
634
493
|
:param index: index
|
|
635
|
-
:type index: int | None
|
|
636
494
|
"""
|
|
637
495
|
|
|
638
496
|
def theme_install(
|
|
@@ -647,23 +505,15 @@ def theme_install(
|
|
|
647
505
|
) -> None:
|
|
648
506
|
"""Load and apply a Blender XML theme file
|
|
649
507
|
|
|
650
|
-
:type execution_context: int | str | None
|
|
651
|
-
:type undo: bool | None
|
|
652
508
|
:param overwrite: Overwrite, Remove existing theme file if exists
|
|
653
|
-
:type overwrite: bool | None
|
|
654
509
|
:param filepath: filepath
|
|
655
|
-
:type filepath: str
|
|
656
510
|
:param filter_folder: Filter folders
|
|
657
|
-
:type filter_folder: bool | None
|
|
658
511
|
:param filter_glob: filter_glob
|
|
659
|
-
:type filter_glob: str
|
|
660
512
|
"""
|
|
661
513
|
|
|
662
514
|
def unassociate_blend(
|
|
663
|
-
execution_context: int | str | None = None,
|
|
515
|
+
execution_context: int | str | None = None,
|
|
516
|
+
undo: bool | None = None,
|
|
517
|
+
/,
|
|
664
518
|
) -> None:
|
|
665
|
-
"""Remove this
|
|
666
|
-
|
|
667
|
-
:type execution_context: int | str | None
|
|
668
|
-
:type undo: bool | None
|
|
669
|
-
"""
|
|
519
|
+
"""Remove this installations associations with .blend files"""
|
bpy/ops/ptcache/__init__.pyi
CHANGED
|
@@ -3,12 +3,12 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
|
|
6
|
-
def add(
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"""
|
|
6
|
+
def add(
|
|
7
|
+
execution_context: int | str | None = None,
|
|
8
|
+
undo: bool | None = None,
|
|
9
|
+
/,
|
|
10
|
+
) -> None:
|
|
11
|
+
"""Add new cache"""
|
|
12
12
|
|
|
13
13
|
def bake(
|
|
14
14
|
execution_context: int | str | None = None,
|
|
@@ -19,10 +19,7 @@ def bake(
|
|
|
19
19
|
) -> None:
|
|
20
20
|
"""Bake physics
|
|
21
21
|
|
|
22
|
-
:type execution_context: int | str | None
|
|
23
|
-
:type undo: bool | None
|
|
24
22
|
:param bake: Bake
|
|
25
|
-
:type bake: bool | None
|
|
26
23
|
"""
|
|
27
24
|
|
|
28
25
|
def bake_all(
|
|
@@ -34,44 +31,33 @@ def bake_all(
|
|
|
34
31
|
) -> None:
|
|
35
32
|
"""Bake all physics
|
|
36
33
|
|
|
37
|
-
:type execution_context: int | str | None
|
|
38
|
-
:type undo: bool | None
|
|
39
34
|
:param bake: Bake
|
|
40
|
-
:type bake: bool | None
|
|
41
35
|
"""
|
|
42
36
|
|
|
43
37
|
def bake_from_cache(
|
|
44
|
-
execution_context: int | str | None = None,
|
|
38
|
+
execution_context: int | str | None = None,
|
|
39
|
+
undo: bool | None = None,
|
|
40
|
+
/,
|
|
45
41
|
) -> None:
|
|
46
|
-
"""Bake from cache
|
|
47
|
-
|
|
48
|
-
:type execution_context: int | str | None
|
|
49
|
-
:type undo: bool | None
|
|
50
|
-
"""
|
|
42
|
+
"""Bake from cache"""
|
|
51
43
|
|
|
52
44
|
def free_bake(
|
|
53
|
-
execution_context: int | str | None = None,
|
|
45
|
+
execution_context: int | str | None = None,
|
|
46
|
+
undo: bool | None = None,
|
|
47
|
+
/,
|
|
54
48
|
) -> None:
|
|
55
|
-
"""Delete physics bake
|
|
56
|
-
|
|
57
|
-
:type execution_context: int | str | None
|
|
58
|
-
:type undo: bool | None
|
|
59
|
-
"""
|
|
49
|
+
"""Delete physics bake"""
|
|
60
50
|
|
|
61
51
|
def free_bake_all(
|
|
62
|
-
execution_context: int | str | None = None,
|
|
52
|
+
execution_context: int | str | None = None,
|
|
53
|
+
undo: bool | None = None,
|
|
54
|
+
/,
|
|
63
55
|
) -> None:
|
|
64
|
-
"""Delete all baked caches of all objects in the current scene
|
|
65
|
-
|
|
66
|
-
:type execution_context: int | str | None
|
|
67
|
-
:type undo: bool | None
|
|
68
|
-
"""
|
|
56
|
+
"""Delete all baked caches of all objects in the current scene"""
|
|
69
57
|
|
|
70
58
|
def remove(
|
|
71
|
-
execution_context: int | str | None = None,
|
|
59
|
+
execution_context: int | str | None = None,
|
|
60
|
+
undo: bool | None = None,
|
|
61
|
+
/,
|
|
72
62
|
) -> None:
|
|
73
|
-
"""Delete current cache
|
|
74
|
-
|
|
75
|
-
:type execution_context: int | str | None
|
|
76
|
-
:type undo: bool | None
|
|
77
|
-
"""
|
|
63
|
+
"""Delete current cache"""
|