fake-bpy-module 20231205__py3-none-any.whl → 20231207__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.
- addon_utils/__init__.pyi +84 -0
- animsys_refactor/__init__.pyi +55 -0
- aud/__init__.pyi +1190 -0
- bgl/__init__.pyi +5084 -0
- bl_app_override/__init__.pyi +31 -0
- bl_app_override/helpers/__init__.pyi +42 -0
- bl_app_override/helpers/py.typed +0 -0
- bl_app_template_utils/__init__.pyi +36 -0
- bl_console_utils/autocomplete/__init__.pyi +8 -0
- bl_console_utils/autocomplete/complete_calltip/__init__.pyi +44 -0
- bl_console_utils/autocomplete/complete_calltip/py.typed +0 -0
- bl_console_utils/autocomplete/complete_import/__init__.pyi +28 -0
- bl_console_utils/autocomplete/complete_import/py.typed +0 -0
- bl_console_utils/autocomplete/complete_namespace/__init__.pyi +44 -0
- bl_console_utils/autocomplete/complete_namespace/py.typed +0 -0
- bl_console_utils/autocomplete/intellisense/__init__.pyi +20 -0
- bl_console_utils/autocomplete/intellisense/py.typed +0 -0
- bl_i18n_utils/__init__.pyi +11 -0
- bl_i18n_utils/bl_extract_messages/__init__.pyi +124 -0
- bl_i18n_utils/bl_extract_messages/py.typed +0 -0
- bl_i18n_utils/merge_po/__init__.pyi +12 -0
- bl_i18n_utils/merge_po/py.typed +0 -0
- bl_i18n_utils/settings/__init__.pyi +66 -0
- bl_i18n_utils/settings/py.typed +0 -0
- bl_i18n_utils/utils/__init__.pyi +338 -0
- bl_i18n_utils/utils/py.typed +0 -0
- bl_i18n_utils/utils_cli/__init__.pyi +52 -0
- bl_i18n_utils/utils_cli/py.typed +0 -0
- bl_i18n_utils/utils_languages_menu/__init__.pyi +12 -0
- bl_i18n_utils/utils_languages_menu/py.typed +0 -0
- bl_i18n_utils/utils_rtl/__init__.pyi +20 -0
- bl_i18n_utils/utils_rtl/py.typed +0 -0
- bl_keymap_utils/__init__.pyi +9 -0
- bl_keymap_utils/io/__init__.pyi +76 -0
- bl_keymap_utils/io/py.typed +0 -0
- bl_keymap_utils/keymap_from_toolbar/__init__.pyi +12 -0
- bl_keymap_utils/keymap_from_toolbar/py.typed +0 -0
- bl_keymap_utils/keymap_hierarchy/__init__.pyi +12 -0
- bl_keymap_utils/keymap_hierarchy/py.typed +0 -0
- bl_keymap_utils/platform_helpers/__init__.pyi +20 -0
- bl_keymap_utils/platform_helpers/py.typed +0 -0
- bl_keymap_utils/versioning/__init__.pyi +12 -0
- bl_keymap_utils/versioning/py.typed +0 -0
- bl_math/__init__.pyi +52 -0
- bl_operators/__init__.pyi +49 -0
- bl_operators/add_mesh_torus/__init__.pyi +231 -0
- bl_operators/add_mesh_torus/py.typed +0 -0
- bl_operators/anim/__init__.pyi +1291 -0
- bl_operators/anim/py.typed +0 -0
- bl_operators/assets/__init__.pyi +586 -0
- bl_operators/assets/py.typed +0 -0
- bl_operators/bmesh/find_adjacent/__init__.pyi +76 -0
- bl_operators/bmesh/find_adjacent/py.typed +0 -0
- bl_operators/clip/__init__.pyi +1898 -0
- bl_operators/clip/py.typed +0 -0
- bl_operators/console/__init__.pyi +918 -0
- bl_operators/console/py.typed +0 -0
- bl_operators/constraint/__init__.pyi +745 -0
- bl_operators/constraint/py.typed +0 -0
- bl_operators/file/__init__.pyi +560 -0
- bl_operators/file/py.typed +0 -0
- bl_operators/freestyle/__init__.pyi +751 -0
- bl_operators/freestyle/py.typed +0 -0
- bl_operators/geometry_nodes/__init__.pyi +2553 -0
- bl_operators/geometry_nodes/py.typed +0 -0
- bl_operators/image/__init__.pyi +548 -0
- bl_operators/image/py.typed +0 -0
- bl_operators/mesh/__init__.pyi +566 -0
- bl_operators/mesh/py.typed +0 -0
- bl_operators/node/__init__.pyi +1814 -0
- bl_operators/node/py.typed +0 -0
- bl_operators/object/__init__.pyi +3212 -0
- bl_operators/object/py.typed +0 -0
- bl_operators/object_align/__init__.pyi +215 -0
- bl_operators/object_align/py.typed +0 -0
- bl_operators/object_quick_effects/__init__.pyi +777 -0
- bl_operators/object_quick_effects/py.typed +0 -0
- bl_operators/object_randomize_transform/__init__.pyi +199 -0
- bl_operators/object_randomize_transform/py.typed +0 -0
- bl_operators/presets/__init__.pyi +3776 -0
- bl_operators/presets/py.typed +0 -0
- bl_operators/rigidbody/__init__.pyi +566 -0
- bl_operators/rigidbody/py.typed +0 -0
- bl_operators/screen_play_rendered_anim/__init__.pyi +192 -0
- bl_operators/screen_play_rendered_anim/py.typed +0 -0
- bl_operators/sequencer/__init__.pyi +1001 -0
- bl_operators/sequencer/py.typed +0 -0
- bl_operators/spreadsheet/__init__.pyi +202 -0
- bl_operators/spreadsheet/py.typed +0 -0
- bl_operators/userpref/__init__.pyi +4701 -0
- bl_operators/userpref/py.typed +0 -0
- bl_operators/uvcalc_follow_active/__init__.pyi +212 -0
- bl_operators/uvcalc_follow_active/py.typed +0 -0
- bl_operators/uvcalc_lightmap/__init__.pyi +257 -0
- bl_operators/uvcalc_lightmap/py.typed +0 -0
- bl_operators/uvcalc_transform/__init__.pyi +501 -0
- bl_operators/uvcalc_transform/py.typed +0 -0
- bl_operators/vertexpaint_dirt/__init__.pyi +207 -0
- bl_operators/vertexpaint_dirt/py.typed +0 -0
- bl_operators/view3d/__init__.pyi +955 -0
- bl_operators/view3d/py.typed +0 -0
- bl_operators/wm/__init__.pyi +8409 -0
- bl_operators/wm/py.typed +0 -0
- bl_previews_utils/bl_previews_render/__init__.pyi +60 -0
- bl_previews_utils/bl_previews_render/py.typed +0 -0
- bl_rna_utils/data_path/__init__.pyi +25 -0
- bl_rna_utils/data_path/py.typed +0 -0
- bl_text_utils/external_editor/__init__.pyi +12 -0
- bl_text_utils/external_editor/py.typed +0 -0
- bl_ui/__init__.pyi +706 -0
- bl_ui/asset_shelf/__init__.pyi +202 -0
- bl_ui/asset_shelf/py.typed +0 -0
- bl_ui/generic_ui_list/__init__.pyi +629 -0
- bl_ui/generic_ui_list/py.typed +0 -0
- bl_ui/node_add_menu/__init__.pyi +260 -0
- bl_ui/node_add_menu/py.typed +0 -0
- bl_ui/node_add_menu_compositor/__init__.pyi +3739 -0
- bl_ui/node_add_menu_compositor/py.typed +0 -0
- bl_ui/node_add_menu_geometry/__init__.pyi +8520 -0
- bl_ui/node_add_menu_geometry/py.typed +0 -0
- bl_ui/node_add_menu_shader/__init__.pyi +2139 -0
- bl_ui/node_add_menu_shader/py.typed +0 -0
- bl_ui/node_add_menu_texture/__init__.pyi +1868 -0
- bl_ui/node_add_menu_texture/py.typed +0 -0
- bl_ui/properties_animviz/__init__.pyi +38 -0
- bl_ui/properties_animviz/py.typed +0 -0
- bl_ui/properties_collection/__init__.pyi +1051 -0
- bl_ui/properties_collection/py.typed +0 -0
- bl_ui/properties_constraint/__init__.pyi +29694 -0
- bl_ui/properties_constraint/py.typed +0 -0
- bl_ui/properties_data_armature/__init__.pyi +2274 -0
- bl_ui/properties_data_armature/py.typed +0 -0
- bl_ui/properties_data_bone/__init__.pyi +2087 -0
- bl_ui/properties_data_bone/py.typed +0 -0
- bl_ui/properties_data_camera/__init__.pyi +3004 -0
- bl_ui/properties_data_camera/py.typed +0 -0
- bl_ui/properties_data_curve/__init__.pyi +3164 -0
- bl_ui/properties_data_curve/py.typed +0 -0
- bl_ui/properties_data_curves/__init__.pyi +1247 -0
- bl_ui/properties_data_curves/py.typed +0 -0
- bl_ui/properties_data_empty/__init__.pyi +426 -0
- bl_ui/properties_data_empty/py.typed +0 -0
- bl_ui/properties_data_gpencil/__init__.pyi +3758 -0
- bl_ui/properties_data_gpencil/py.typed +0 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +632 -0
- bl_ui/properties_data_grease_pencil/py.typed +0 -0
- bl_ui/properties_data_lattice/__init__.pyi +637 -0
- bl_ui/properties_data_lattice/py.typed +0 -0
- bl_ui/properties_data_light/__init__.pyi +2111 -0
- bl_ui/properties_data_light/py.typed +0 -0
- bl_ui/properties_data_lightprobe/__init__.pyi +1264 -0
- bl_ui/properties_data_lightprobe/py.typed +0 -0
- bl_ui/properties_data_mesh/__init__.pyi +4052 -0
- bl_ui/properties_data_mesh/py.typed +0 -0
- bl_ui/properties_data_metaball/__init__.pyi +1047 -0
- bl_ui/properties_data_metaball/py.typed +0 -0
- bl_ui/properties_data_modifier/__init__.pyi +1741 -0
- bl_ui/properties_data_modifier/py.typed +0 -0
- bl_ui/properties_data_pointcloud/__init__.pyi +1045 -0
- bl_ui/properties_data_pointcloud/py.typed +0 -0
- bl_ui/properties_data_shaderfx/__init__.pyi +214 -0
- bl_ui/properties_data_shaderfx/py.typed +0 -0
- bl_ui/properties_data_speaker/__init__.pyi +1056 -0
- bl_ui/properties_data_speaker/py.typed +0 -0
- bl_ui/properties_data_volume/__init__.pyi +1652 -0
- bl_ui/properties_data_volume/py.typed +0 -0
- bl_ui/properties_freestyle/__init__.pyi +5309 -0
- bl_ui/properties_freestyle/py.typed +0 -0
- bl_ui/properties_grease_pencil_common/__init__.pyi +2780 -0
- bl_ui/properties_grease_pencil_common/py.typed +0 -0
- bl_ui/properties_mask_common/__init__.pyi +1554 -0
- bl_ui/properties_mask_common/py.typed +0 -0
- bl_ui/properties_material/__init__.pyi +3117 -0
- bl_ui/properties_material/py.typed +0 -0
- bl_ui/properties_material_gpencil/__init__.pyi +2086 -0
- bl_ui/properties_material_gpencil/py.typed +0 -0
- bl_ui/properties_object/__init__.pyi +2875 -0
- bl_ui/properties_object/py.typed +0 -0
- bl_ui/properties_output/__init__.pyi +3799 -0
- bl_ui/properties_output/py.typed +0 -0
- bl_ui/properties_paint_common/__init__.pyi +814 -0
- bl_ui/properties_paint_common/py.typed +0 -0
- bl_ui/properties_particle/__init__.pyi +10938 -0
- bl_ui/properties_particle/py.typed +0 -0
- bl_ui/properties_physics_cloth/__init__.pyi +2984 -0
- bl_ui/properties_physics_cloth/py.typed +0 -0
- bl_ui/properties_physics_common/__init__.pyi +277 -0
- bl_ui/properties_physics_common/py.typed +0 -0
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +5431 -0
- bl_ui/properties_physics_dynamicpaint/py.typed +0 -0
- bl_ui/properties_physics_field/__init__.pyi +2220 -0
- bl_ui/properties_physics_field/py.typed +0 -0
- bl_ui/properties_physics_fluid/__init__.pyi +7296 -0
- bl_ui/properties_physics_fluid/py.typed +0 -0
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +214 -0
- bl_ui/properties_physics_geometry_nodes/py.typed +0 -0
- bl_ui/properties_physics_rigidbody/__init__.pyi +1698 -0
- bl_ui/properties_physics_rigidbody/py.typed +0 -0
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2734 -0
- bl_ui/properties_physics_rigidbody_constraint/py.typed +0 -0
- bl_ui/properties_physics_softbody/__init__.pyi +3198 -0
- bl_ui/properties_physics_softbody/py.typed +0 -0
- bl_ui/properties_render/__init__.pyi +12664 -0
- bl_ui/properties_render/py.typed +0 -0
- bl_ui/properties_scene/__init__.pyi +2872 -0
- bl_ui/properties_scene/py.typed +0 -0
- bl_ui/properties_texture/__init__.pyi +5470 -0
- bl_ui/properties_texture/py.typed +0 -0
- bl_ui/properties_view_layer/__init__.pyi +3493 -0
- bl_ui/properties_view_layer/py.typed +0 -0
- bl_ui/properties_workspace/__init__.pyi +630 -0
- bl_ui/properties_workspace/py.typed +0 -0
- bl_ui/properties_world/__init__.pyi +1478 -0
- bl_ui/properties_world/py.typed +0 -0
- bl_ui/space_clip/__init__.pyi +14313 -0
- bl_ui/space_clip/py.typed +0 -0
- bl_ui/space_console/__init__.pyi +1221 -0
- bl_ui/space_console/py.typed +0 -0
- bl_ui/space_dopesheet/__init__.pyi +5388 -0
- bl_ui/space_dopesheet/py.typed +0 -0
- bl_ui/space_filebrowser/__init__.pyi +5996 -0
- bl_ui/space_filebrowser/py.typed +0 -0
- bl_ui/space_graph/__init__.pyi +4053 -0
- bl_ui/space_graph/py.typed +0 -0
- bl_ui/space_image/__init__.pyi +14801 -0
- bl_ui/space_image/py.typed +0 -0
- bl_ui/space_info/__init__.pyi +1216 -0
- bl_ui/space_info/py.typed +0 -0
- bl_ui/space_nla/__init__.pyi +3460 -0
- bl_ui/space_nla/py.typed +0 -0
- bl_ui/space_node/__init__.pyi +6519 -0
- bl_ui/space_node/py.typed +0 -0
- bl_ui/space_outliner/__init__.pyi +2864 -0
- bl_ui/space_outliner/py.typed +0 -0
- bl_ui/space_properties/__init__.pyi +575 -0
- bl_ui/space_properties/py.typed +0 -0
- bl_ui/space_sequencer/__init__.pyi +15360 -0
- bl_ui/space_sequencer/py.typed +0 -0
- bl_ui/space_spreadsheet/__init__.pyi +226 -0
- bl_ui/space_spreadsheet/py.typed +0 -0
- bl_ui/space_statusbar/__init__.pyi +190 -0
- bl_ui/space_statusbar/py.typed +0 -0
- bl_ui/space_text/__init__.pyi +3223 -0
- bl_ui/space_text/py.typed +0 -0
- bl_ui/space_time/__init__.pyi +1472 -0
- bl_ui/space_time/py.typed +0 -0
- bl_ui/space_toolsystem_common/__init__.pyi +435 -0
- bl_ui/space_toolsystem_common/py.typed +0 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +1671 -0
- bl_ui/space_toolsystem_toolbar/py.typed +0 -0
- bl_ui/space_topbar/__init__.pyi +5296 -0
- bl_ui/space_topbar/py.typed +0 -0
- bl_ui/space_userpref/__init__.pyi +17826 -0
- bl_ui/space_userpref/py.typed +0 -0
- bl_ui/space_view3d/__init__.pyi +51846 -0
- bl_ui/space_view3d/py.typed +0 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +18993 -0
- bl_ui/space_view3d_toolbar/py.typed +0 -0
- bl_ui/utils/__init__.pyi +40 -0
- bl_ui/utils/py.typed +0 -0
- bl_ui_utils/__init__.pyi +6 -0
- bl_ui_utils/bug_report_url/__init__.pyi +12 -0
- bl_ui_utils/bug_report_url/py.typed +0 -0
- bl_ui_utils/layout/__init__.pyi +12 -0
- bl_ui_utils/layout/py.typed +0 -0
- blend_render_info/__init__.pyi +24 -0
- blf/__init__.pyi +231 -0
- bmesh/__init__.pyi +51 -0
- bmesh/geometry/__init__.pyi +23 -0
- bmesh/geometry/py.typed +0 -0
- bmesh/ops/__init__.pyi +1935 -0
- bmesh/ops/py.typed +0 -0
- bmesh/types/__init__.pyi +1399 -0
- bmesh/types/py.typed +0 -0
- bmesh/utils/__init__.pyi +207 -0
- bmesh/utils/py.typed +0 -0
- bpy/__init__.pyi +18 -0
- bpy/app/__init__.pyi +247 -0
- bpy/app/handlers/__init__.pyi +151 -0
- bpy/app/handlers/py.typed +0 -0
- bpy/app/icons/__init__.pyi +42 -0
- bpy/app/icons/py.typed +0 -0
- bpy/app/timers/__init__.pyi +42 -0
- bpy/app/timers/py.typed +0 -0
- bpy/app/translations/__init__.pyi +107 -0
- bpy/app/translations/py.typed +0 -0
- bpy/msgbus/__init__.pyi +40 -0
- bpy/msgbus/py.typed +0 -0
- bpy/ops/__init__.pyi +81 -0
- bpy/ops/action/__init__.pyi +723 -0
- bpy/ops/action/py.typed +0 -0
- bpy/ops/anim/__init__.pyi +978 -0
- bpy/ops/anim/py.typed +0 -0
- bpy/ops/armature/__init__.pyi +858 -0
- bpy/ops/armature/py.typed +0 -0
- bpy/ops/asset/__init__.pyi +339 -0
- bpy/ops/asset/py.typed +0 -0
- bpy/ops/boid/__init__.pyi +127 -0
- bpy/ops/boid/py.typed +0 -0
- bpy/ops/brush/__init__.pyi +171 -0
- bpy/ops/brush/py.typed +0 -0
- bpy/ops/buttons/__init__.pyi +255 -0
- bpy/ops/buttons/py.typed +0 -0
- bpy/ops/cachefile/__init__.pyi +241 -0
- bpy/ops/cachefile/py.typed +0 -0
- bpy/ops/camera/__init__.pyi +60 -0
- bpy/ops/camera/py.typed +0 -0
- bpy/ops/clip/__init__.pyi +1782 -0
- bpy/ops/clip/py.typed +0 -0
- bpy/ops/cloth/__init__.pyi +31 -0
- bpy/ops/cloth/py.typed +0 -0
- bpy/ops/collection/__init__.pyi +95 -0
- bpy/ops/collection/py.typed +0 -0
- bpy/ops/console/__init__.pyi +370 -0
- bpy/ops/console/py.typed +0 -0
- bpy/ops/constraint/__init__.pyi +391 -0
- bpy/ops/constraint/py.typed +0 -0
- bpy/ops/curve/__init__.pyi +1052 -0
- bpy/ops/curve/py.typed +0 -0
- bpy/ops/curves/__init__.pyi +259 -0
- bpy/ops/curves/py.typed +0 -0
- bpy/ops/cycles/__init__.pyi +67 -0
- bpy/ops/cycles/py.typed +0 -0
- bpy/ops/dpaint/__init__.pyi +87 -0
- bpy/ops/dpaint/py.typed +0 -0
- bpy/ops/ed/__init__.pyi +276 -0
- bpy/ops/ed/py.typed +0 -0
- bpy/ops/export_anim/__init__.pyi +45 -0
- bpy/ops/export_anim/py.typed +0 -0
- bpy/ops/export_mesh/__init__.pyi +62 -0
- bpy/ops/export_mesh/py.typed +0 -0
- bpy/ops/export_scene/__init__.pyi +577 -0
- bpy/ops/export_scene/py.typed +0 -0
- bpy/ops/file/__init__.pyi +787 -0
- bpy/ops/file/py.typed +0 -0
- bpy/ops/fluid/__init__.pyi +224 -0
- bpy/ops/fluid/py.typed +0 -0
- bpy/ops/font/__init__.pyi +537 -0
- bpy/ops/font/py.typed +0 -0
- bpy/ops/geometry/__init__.pyi +219 -0
- bpy/ops/geometry/py.typed +0 -0
- bpy/ops/gizmogroup/__init__.pyi +52 -0
- bpy/ops/gizmogroup/py.typed +0 -0
- bpy/ops/gpencil/__init__.pyi +3247 -0
- bpy/ops/gpencil/py.typed +0 -0
- bpy/ops/graph/__init__.pyi +1392 -0
- bpy/ops/graph/py.typed +0 -0
- bpy/ops/grease_pencil/__init__.pyi +724 -0
- bpy/ops/grease_pencil/py.typed +0 -0
- bpy/ops/image/__init__.pyi +1261 -0
- bpy/ops/image/py.typed +0 -0
- bpy/ops/import_anim/__init__.pyi +58 -0
- bpy/ops/import_anim/py.typed +0 -0
- bpy/ops/import_curve/__init__.pyi +26 -0
- bpy/ops/import_curve/py.typed +0 -0
- bpy/ops/import_mesh/__init__.pyi +50 -0
- bpy/ops/import_mesh/py.typed +0 -0
- bpy/ops/import_scene/__init__.pyi +191 -0
- bpy/ops/import_scene/py.typed +0 -0
- bpy/ops/info/__init__.pyi +140 -0
- bpy/ops/info/py.typed +0 -0
- bpy/ops/lattice/__init__.pyi +153 -0
- bpy/ops/lattice/py.typed +0 -0
- bpy/ops/marker/__init__.pyi +238 -0
- bpy/ops/marker/py.typed +0 -0
- bpy/ops/mask/__init__.pyi +747 -0
- bpy/ops/mask/py.typed +0 -0
- bpy/ops/material/__init__.pyi +47 -0
- bpy/ops/material/py.typed +0 -0
- bpy/ops/mball/__init__.pyi +168 -0
- bpy/ops/mball/py.typed +0 -0
- bpy/ops/mesh/__init__.pyi +4168 -0
- bpy/ops/mesh/py.typed +0 -0
- bpy/ops/nla/__init__.pyi +756 -0
- bpy/ops/nla/py.typed +0 -0
- bpy/ops/node/__init__.pyi +1894 -0
- bpy/ops/node/py.typed +0 -0
- bpy/ops/object/__init__.pyi +5343 -0
- bpy/ops/object/py.typed +0 -0
- bpy/ops/outliner/__init__.pyi +1172 -0
- bpy/ops/outliner/py.typed +0 -0
- bpy/ops/paint/__init__.pyi +1067 -0
- bpy/ops/paint/py.typed +0 -0
- bpy/ops/paintcurve/__init__.pyi +148 -0
- bpy/ops/paintcurve/py.typed +0 -0
- bpy/ops/palette/__init__.pyi +123 -0
- bpy/ops/palette/py.typed +0 -0
- bpy/ops/particle/__init__.pyi +635 -0
- bpy/ops/particle/py.typed +0 -0
- bpy/ops/pose/__init__.pyi +763 -0
- bpy/ops/pose/py.typed +0 -0
- bpy/ops/poselib/__init__.pyi +173 -0
- bpy/ops/poselib/py.typed +0 -0
- bpy/ops/preferences/__init__.pyi +849 -0
- bpy/ops/preferences/py.typed +0 -0
- bpy/ops/ptcache/__init__.pyi +114 -0
- bpy/ops/ptcache/py.typed +0 -0
- bpy/ops/render/__init__.pyi +262 -0
- bpy/ops/render/py.typed +0 -0
- bpy/ops/rigidbody/__init__.pyi +244 -0
- bpy/ops/rigidbody/py.typed +0 -0
- bpy/ops/scene/__init__.pyi +675 -0
- bpy/ops/scene/py.typed +0 -0
- bpy/ops/screen/__init__.pyi +846 -0
- bpy/ops/screen/py.typed +0 -0
- bpy/ops/script/__init__.pyi +60 -0
- bpy/ops/script/py.typed +0 -0
- bpy/ops/sculpt/__init__.pyi +862 -0
- bpy/ops/sculpt/py.typed +0 -0
- bpy/ops/sculpt_curves/__init__.pyi +94 -0
- bpy/ops/sculpt_curves/py.typed +0 -0
- bpy/ops/sequencer/__init__.pyi +2165 -0
- bpy/ops/sequencer/py.typed +0 -0
- bpy/ops/sound/__init__.pyi +395 -0
- bpy/ops/sound/py.typed +0 -0
- bpy/ops/spreadsheet/__init__.pyi +76 -0
- bpy/ops/spreadsheet/py.typed +0 -0
- bpy/ops/surface/__init__.pyi +215 -0
- bpy/ops/surface/py.typed +0 -0
- bpy/ops/text/__init__.pyi +863 -0
- bpy/ops/text/py.typed +0 -0
- bpy/ops/text_editor/__init__.pyi +31 -0
- bpy/ops/text_editor/py.typed +0 -0
- bpy/ops/texture/__init__.pyi +68 -0
- bpy/ops/texture/py.typed +0 -0
- bpy/ops/transform/__init__.pyi +1545 -0
- bpy/ops/transform/py.typed +0 -0
- bpy/ops/ui/__init__.pyi +536 -0
- bpy/ops/ui/py.typed +0 -0
- bpy/ops/uilist/__init__.pyi +74 -0
- bpy/ops/uilist/py.typed +0 -0
- bpy/ops/uv/__init__.pyi +1251 -0
- bpy/ops/uv/py.typed +0 -0
- bpy/ops/view2d/__init__.pyi +329 -0
- bpy/ops/view2d/py.typed +0 -0
- bpy/ops/view3d/__init__.pyi +1392 -0
- bpy/ops/view3d/py.typed +0 -0
- bpy/ops/wm/__init__.pyi +4821 -0
- bpy/ops/wm/py.typed +0 -0
- bpy/ops/workspace/__init__.pyi +115 -0
- bpy/ops/workspace/py.typed +0 -0
- bpy/ops/world/__init__.pyi +19 -0
- bpy/ops/world/py.typed +0 -0
- bpy/path/__init__.pyi +194 -0
- bpy/path/py.typed +0 -0
- bpy/props/__init__.pyi +509 -0
- bpy/props/py.typed +0 -0
- bpy/types/__init__.pyi +131533 -0
- bpy/types/py.typed +0 -0
- bpy/utils/__init__.pyi +429 -0
- bpy/utils/previews/__init__.pyi +73 -0
- bpy/utils/previews/py.typed +0 -0
- bpy/utils/units/__init__.pyi +61 -0
- bpy/utils/units/py.typed +0 -0
- bpy_extras/__init__.pyi +18 -0
- bpy_extras/anim_utils/__init__.pyi +108 -0
- bpy_extras/anim_utils/py.typed +0 -0
- bpy_extras/asset_utils/__init__.pyi +39 -0
- bpy_extras/asset_utils/py.typed +0 -0
- bpy_extras/bmesh_utils/__init__.pyi +20 -0
- bpy_extras/bmesh_utils/py.typed +0 -0
- bpy_extras/extensions/junction_module/__init__.pyi +48 -0
- bpy_extras/extensions/junction_module/py.typed +0 -0
- bpy_extras/id_map_utils/__init__.pyi +28 -0
- bpy_extras/id_map_utils/py.typed +0 -0
- bpy_extras/image_utils/__init__.pyi +42 -0
- bpy_extras/image_utils/py.typed +0 -0
- bpy_extras/io_utils/__init__.pyi +165 -0
- bpy_extras/io_utils/py.typed +0 -0
- bpy_extras/keyconfig_utils/__init__.pyi +28 -0
- bpy_extras/keyconfig_utils/py.typed +0 -0
- bpy_extras/mesh_utils/__init__.pyi +91 -0
- bpy_extras/mesh_utils/py.typed +0 -0
- bpy_extras/node_shader_utils/__init__.pyi +562 -0
- bpy_extras/node_shader_utils/py.typed +0 -0
- bpy_extras/node_utils/__init__.pyi +28 -0
- bpy_extras/node_utils/py.typed +0 -0
- bpy_extras/object_utils/__init__.pyi +87 -0
- bpy_extras/object_utils/py.typed +0 -0
- bpy_extras/view3d_utils/__init__.pyi +90 -0
- bpy_extras/view3d_utils/py.typed +0 -0
- bpy_extras/wm_utils/progress_report/__init__.pyi +98 -0
- bpy_extras/wm_utils/progress_report/py.typed +0 -0
- bpy_restrict_state/__init__.pyi +24 -0
- bpy_types/__init__.pyi +5189 -0
- console_python/__init__.pyi +71 -0
- console_shell/__init__.pyi +44 -0
- fake_bpy_module-20231207.dist-info/METADATA +175 -0
- fake_bpy_module-20231207.dist-info/RECORD +610 -0
- freestyle/chainingiterators/__init__.pyi +306 -0
- freestyle/chainingiterators/py.typed +0 -0
- freestyle/functions/__init__.pyi +1270 -0
- freestyle/functions/py.typed +0 -0
- freestyle/predicates/__init__.pyi +535 -0
- freestyle/predicates/py.typed +0 -0
- freestyle/shaders/__init__.pyi +872 -0
- freestyle/shaders/py.typed +0 -0
- freestyle/types/__init__.pyi +2407 -0
- freestyle/types/py.typed +0 -0
- freestyle/utils/ContextFunctions/__init__.pyi +127 -0
- freestyle/utils/ContextFunctions/py.typed +0 -0
- freestyle/utils/__init__.pyi +246 -0
- gpu/capabilities/__init__.pyi +186 -0
- gpu/capabilities/py.typed +0 -0
- gpu/matrix/__init__.pyi +162 -0
- gpu/matrix/py.typed +0 -0
- gpu/platform/__init__.pyi +54 -0
- gpu/platform/py.typed +0 -0
- gpu/select/__init__.pyi +15 -0
- gpu/select/py.typed +0 -0
- gpu/shader/__init__.pyi +38 -0
- gpu/shader/py.typed +0 -0
- gpu/state/__init__.pyi +214 -0
- gpu/state/py.typed +0 -0
- gpu/texture/__init__.pyi +18 -0
- gpu/texture/py.typed +0 -0
- gpu/types/__init__.pyi +698 -0
- gpu/types/py.typed +0 -0
- gpu_extras/batch/__init__.pyi +25 -0
- gpu_extras/batch/py.typed +0 -0
- gpu_extras/presets/__init__.pyi +43 -0
- gpu_extras/presets/py.typed +0 -0
- graphviz_export/__init__.pyi +21 -0
- idprop/types/__init__.pyi +98 -0
- idprop/types/py.typed +0 -0
- imbuf/__init__.pyi +44 -0
- imbuf/types/__init__.pyi +70 -0
- imbuf/types/py.typed +0 -0
- keyingsets_builtins/__init__.pyi +4028 -0
- keyingsets_utils/__init__.pyi +116 -0
- mathutils/__init__.pyi +2917 -0
- mathutils/bvhtree/__init__.pyi +124 -0
- mathutils/bvhtree/py.typed +0 -0
- mathutils/geometry/__init__.pyi +526 -0
- mathutils/geometry/py.typed +0 -0
- mathutils/interpolate/__init__.pyi +16 -0
- mathutils/interpolate/py.typed +0 -0
- mathutils/kdtree/__init__.pyi +77 -0
- mathutils/kdtree/py.typed +0 -0
- mathutils/noise/__init__.pyi +342 -0
- mathutils/noise/py.typed +0 -0
- nodeitems_builtins/__init__.pyi +69 -0
- nodeitems_utils/__init__.pyi +86 -0
- rna_info/__init__.pyi +343 -0
- rna_keymap_ui/__init__.pyi +52 -0
- rna_prop_ui/__init__.pyi +109 -0
- rna_xml/__init__.pyi +53 -0
- sys_info/__init__.pyi +12 -0
- addon_utils/__init__.py +0 -84
- animsys_refactor/__init__.py +0 -55
- aud/__init__.py +0 -1190
- bgl/__init__.py +0 -5084
- bl_app_override/__init__.py +0 -31
- bl_app_override/helpers.py +0 -42
- bl_app_template_utils/__init__.py +0 -36
- bl_console_utils/autocomplete/__init__.py +0 -8
- bl_console_utils/autocomplete/complete_calltip.py +0 -44
- bl_console_utils/autocomplete/complete_import.py +0 -28
- bl_console_utils/autocomplete/complete_namespace.py +0 -44
- bl_console_utils/autocomplete/intellisense.py +0 -20
- bl_i18n_utils/__init__.py +0 -11
- bl_i18n_utils/bl_extract_messages.py +0 -124
- bl_i18n_utils/merge_po.py +0 -12
- bl_i18n_utils/settings.py +0 -66
- bl_i18n_utils/utils.py +0 -338
- bl_i18n_utils/utils_cli.py +0 -52
- bl_i18n_utils/utils_languages_menu.py +0 -12
- bl_i18n_utils/utils_rtl.py +0 -20
- bl_keymap_utils/__init__.py +0 -9
- bl_keymap_utils/io.py +0 -76
- bl_keymap_utils/keymap_from_toolbar.py +0 -12
- bl_keymap_utils/keymap_hierarchy.py +0 -12
- bl_keymap_utils/platform_helpers.py +0 -20
- bl_keymap_utils/versioning.py +0 -12
- bl_math/__init__.py +0 -52
- bl_operators/__init__.py +0 -49
- bl_operators/add_mesh_torus.py +0 -231
- bl_operators/anim.py +0 -1291
- bl_operators/assets.py +0 -586
- bl_operators/bmesh/find_adjacent.py +0 -76
- bl_operators/clip.py +0 -1898
- bl_operators/console.py +0 -918
- bl_operators/constraint.py +0 -745
- bl_operators/file.py +0 -560
- bl_operators/freestyle.py +0 -751
- bl_operators/geometry_nodes.py +0 -2553
- bl_operators/image.py +0 -548
- bl_operators/mesh.py +0 -566
- bl_operators/node.py +0 -1814
- bl_operators/object.py +0 -3212
- bl_operators/object_align.py +0 -215
- bl_operators/object_quick_effects.py +0 -777
- bl_operators/object_randomize_transform.py +0 -199
- bl_operators/presets.py +0 -3776
- bl_operators/rigidbody.py +0 -566
- bl_operators/screen_play_rendered_anim.py +0 -192
- bl_operators/sequencer.py +0 -1001
- bl_operators/spreadsheet.py +0 -202
- bl_operators/userpref.py +0 -4701
- bl_operators/uvcalc_follow_active.py +0 -212
- bl_operators/uvcalc_lightmap.py +0 -257
- bl_operators/uvcalc_transform.py +0 -501
- bl_operators/vertexpaint_dirt.py +0 -207
- bl_operators/view3d.py +0 -955
- bl_operators/wm.py +0 -8409
- bl_previews_utils/bl_previews_render.py +0 -60
- bl_rna_utils/data_path.py +0 -25
- bl_text_utils/external_editor.py +0 -12
- bl_ui/__init__.py +0 -706
- bl_ui/asset_shelf.py +0 -202
- bl_ui/generic_ui_list.py +0 -629
- bl_ui/node_add_menu.py +0 -260
- bl_ui/node_add_menu_compositor.py +0 -3739
- bl_ui/node_add_menu_geometry.py +0 -8520
- bl_ui/node_add_menu_shader.py +0 -2139
- bl_ui/node_add_menu_texture.py +0 -1868
- bl_ui/properties_animviz.py +0 -38
- bl_ui/properties_collection.py +0 -1051
- bl_ui/properties_constraint.py +0 -29694
- bl_ui/properties_data_armature.py +0 -2274
- bl_ui/properties_data_bone.py +0 -2087
- bl_ui/properties_data_camera.py +0 -3004
- bl_ui/properties_data_curve.py +0 -3164
- bl_ui/properties_data_curves.py +0 -1247
- bl_ui/properties_data_empty.py +0 -426
- bl_ui/properties_data_gpencil.py +0 -3758
- bl_ui/properties_data_grease_pencil.py +0 -632
- bl_ui/properties_data_lattice.py +0 -637
- bl_ui/properties_data_light.py +0 -2111
- bl_ui/properties_data_lightprobe.py +0 -1264
- bl_ui/properties_data_mesh.py +0 -4052
- bl_ui/properties_data_metaball.py +0 -1047
- bl_ui/properties_data_modifier.py +0 -1741
- bl_ui/properties_data_pointcloud.py +0 -1045
- bl_ui/properties_data_shaderfx.py +0 -214
- bl_ui/properties_data_speaker.py +0 -1056
- bl_ui/properties_data_volume.py +0 -1652
- bl_ui/properties_freestyle.py +0 -5309
- bl_ui/properties_grease_pencil_common.py +0 -2780
- bl_ui/properties_mask_common.py +0 -1554
- bl_ui/properties_material.py +0 -3117
- bl_ui/properties_material_gpencil.py +0 -2086
- bl_ui/properties_object.py +0 -2875
- bl_ui/properties_output.py +0 -3799
- bl_ui/properties_paint_common.py +0 -814
- bl_ui/properties_particle.py +0 -10938
- bl_ui/properties_physics_cloth.py +0 -2984
- bl_ui/properties_physics_common.py +0 -277
- bl_ui/properties_physics_dynamicpaint.py +0 -5431
- bl_ui/properties_physics_field.py +0 -2220
- bl_ui/properties_physics_fluid.py +0 -7296
- bl_ui/properties_physics_geometry_nodes.py +0 -214
- bl_ui/properties_physics_rigidbody.py +0 -1698
- bl_ui/properties_physics_rigidbody_constraint.py +0 -2734
- bl_ui/properties_physics_softbody.py +0 -3198
- bl_ui/properties_render.py +0 -12664
- bl_ui/properties_scene.py +0 -2872
- bl_ui/properties_texture.py +0 -5470
- bl_ui/properties_view_layer.py +0 -3493
- bl_ui/properties_workspace.py +0 -630
- bl_ui/properties_world.py +0 -1478
- bl_ui/space_clip.py +0 -14313
- bl_ui/space_console.py +0 -1221
- bl_ui/space_dopesheet.py +0 -5388
- bl_ui/space_filebrowser.py +0 -5996
- bl_ui/space_graph.py +0 -4053
- bl_ui/space_image.py +0 -14801
- bl_ui/space_info.py +0 -1216
- bl_ui/space_nla.py +0 -3460
- bl_ui/space_node.py +0 -6519
- bl_ui/space_outliner.py +0 -2864
- bl_ui/space_properties.py +0 -575
- bl_ui/space_sequencer.py +0 -15360
- bl_ui/space_spreadsheet.py +0 -226
- bl_ui/space_statusbar.py +0 -190
- bl_ui/space_text.py +0 -3223
- bl_ui/space_time.py +0 -1472
- bl_ui/space_toolsystem_common.py +0 -435
- bl_ui/space_toolsystem_toolbar.py +0 -1671
- bl_ui/space_topbar.py +0 -5296
- bl_ui/space_userpref.py +0 -17826
- bl_ui/space_view3d.py +0 -51846
- bl_ui/space_view3d_toolbar.py +0 -18993
- bl_ui/utils.py +0 -40
- bl_ui_utils/__init__.py +0 -6
- bl_ui_utils/bug_report_url.py +0 -12
- bl_ui_utils/layout.py +0 -12
- blend_render_info/__init__.py +0 -24
- blf/__init__.py +0 -231
- bmesh/__init__.py +0 -51
- bmesh/geometry.py +0 -23
- bmesh/ops.py +0 -1935
- bmesh/types.py +0 -1399
- bmesh/utils.py +0 -207
- bpy/__init__.py +0 -18
- bpy/app/__init__.py +0 -247
- bpy/app/handlers.py +0 -160
- bpy/app/icons.py +0 -42
- bpy/app/timers.py +0 -42
- bpy/app/translations.py +0 -107
- bpy/msgbus.py +0 -40
- bpy/ops/__init__.py +0 -81
- bpy/ops/action.py +0 -723
- bpy/ops/anim.py +0 -978
- bpy/ops/armature.py +0 -858
- bpy/ops/asset.py +0 -339
- bpy/ops/boid.py +0 -127
- bpy/ops/brush.py +0 -171
- bpy/ops/buttons.py +0 -255
- bpy/ops/cachefile.py +0 -241
- bpy/ops/camera.py +0 -60
- bpy/ops/clip.py +0 -1782
- bpy/ops/cloth.py +0 -31
- bpy/ops/collection.py +0 -95
- bpy/ops/console.py +0 -370
- bpy/ops/constraint.py +0 -391
- bpy/ops/curve.py +0 -1052
- bpy/ops/curves.py +0 -259
- bpy/ops/cycles.py +0 -67
- bpy/ops/dpaint.py +0 -87
- bpy/ops/ed.py +0 -276
- bpy/ops/export_anim.py +0 -45
- bpy/ops/export_mesh.py +0 -62
- bpy/ops/export_scene.py +0 -577
- bpy/ops/file.py +0 -787
- bpy/ops/fluid.py +0 -224
- bpy/ops/font.py +0 -537
- bpy/ops/geometry.py +0 -219
- bpy/ops/gizmogroup.py +0 -52
- bpy/ops/gpencil.py +0 -3247
- bpy/ops/graph.py +0 -1392
- bpy/ops/grease_pencil.py +0 -724
- bpy/ops/image.py +0 -1261
- bpy/ops/import_anim.py +0 -58
- bpy/ops/import_curve.py +0 -26
- bpy/ops/import_mesh.py +0 -50
- bpy/ops/import_scene.py +0 -191
- bpy/ops/info.py +0 -140
- bpy/ops/lattice.py +0 -153
- bpy/ops/marker.py +0 -238
- bpy/ops/mask.py +0 -747
- bpy/ops/material.py +0 -47
- bpy/ops/mball.py +0 -168
- bpy/ops/mesh.py +0 -4168
- bpy/ops/nla.py +0 -756
- bpy/ops/node.py +0 -1894
- bpy/ops/object.py +0 -5343
- bpy/ops/outliner.py +0 -1172
- bpy/ops/paint.py +0 -1067
- bpy/ops/paintcurve.py +0 -148
- bpy/ops/palette.py +0 -123
- bpy/ops/particle.py +0 -635
- bpy/ops/pose.py +0 -763
- bpy/ops/poselib.py +0 -173
- bpy/ops/preferences.py +0 -849
- bpy/ops/ptcache.py +0 -114
- bpy/ops/render.py +0 -262
- bpy/ops/rigidbody.py +0 -244
- bpy/ops/scene.py +0 -675
- bpy/ops/screen.py +0 -846
- bpy/ops/script.py +0 -60
- bpy/ops/sculpt.py +0 -862
- bpy/ops/sculpt_curves.py +0 -94
- bpy/ops/sequencer.py +0 -2165
- bpy/ops/sound.py +0 -395
- bpy/ops/spreadsheet.py +0 -76
- bpy/ops/surface.py +0 -215
- bpy/ops/text.py +0 -863
- bpy/ops/text_editor.py +0 -31
- bpy/ops/texture.py +0 -68
- bpy/ops/transform.py +0 -1545
- bpy/ops/ui.py +0 -536
- bpy/ops/uilist.py +0 -74
- bpy/ops/uv.py +0 -1251
- bpy/ops/view2d.py +0 -329
- bpy/ops/view3d.py +0 -1392
- bpy/ops/wm.py +0 -4821
- bpy/ops/workspace.py +0 -115
- bpy/ops/world.py +0 -19
- bpy/path.py +0 -194
- bpy/props.py +0 -509
- bpy/types.py +0 -131806
- bpy/utils/__init__.py +0 -429
- bpy/utils/previews.py +0 -73
- bpy/utils/units.py +0 -61
- bpy_extras/__init__.py +0 -18
- bpy_extras/anim_utils.py +0 -108
- bpy_extras/asset_utils.py +0 -39
- bpy_extras/bmesh_utils.py +0 -20
- bpy_extras/extensions/junction_module.py +0 -48
- bpy_extras/id_map_utils.py +0 -28
- bpy_extras/image_utils.py +0 -42
- bpy_extras/io_utils.py +0 -165
- bpy_extras/keyconfig_utils.py +0 -28
- bpy_extras/mesh_utils.py +0 -91
- bpy_extras/node_shader_utils.py +0 -562
- bpy_extras/node_utils.py +0 -28
- bpy_extras/object_utils.py +0 -87
- bpy_extras/view3d_utils.py +0 -90
- bpy_extras/wm_utils/progress_report.py +0 -98
- bpy_restrict_state/__init__.py +0 -24
- bpy_types/__init__.py +0 -5189
- console_python/__init__.py +0 -71
- console_shell/__init__.py +0 -44
- fake_bpy_module-20231205.dist-info/METADATA +0 -175
- fake_bpy_module-20231205.dist-info/RECORD +0 -356
- freestyle/chainingiterators.py +0 -306
- freestyle/functions.py +0 -1270
- freestyle/predicates.py +0 -535
- freestyle/shaders.py +0 -872
- freestyle/types.py +0 -2409
- freestyle/utils/ContextFunctions.py +0 -127
- freestyle/utils/__init__.py +0 -246
- gpu/capabilities.py +0 -186
- gpu/matrix.py +0 -162
- gpu/platform.py +0 -54
- gpu/select.py +0 -15
- gpu/shader.py +0 -38
- gpu/state.py +0 -214
- gpu/texture.py +0 -18
- gpu/types.py +0 -698
- gpu_extras/batch.py +0 -25
- gpu_extras/presets.py +0 -43
- graphviz_export/__init__.py +0 -21
- idprop/types.py +0 -98
- imbuf/__init__.py +0 -44
- imbuf/types.py +0 -70
- keyingsets_builtins/__init__.py +0 -4028
- keyingsets_utils/__init__.py +0 -116
- mathutils/__init__.py +0 -2917
- mathutils/bvhtree.py +0 -124
- mathutils/geometry.py +0 -526
- mathutils/interpolate.py +0 -16
- mathutils/kdtree.py +0 -77
- mathutils/noise.py +0 -342
- nodeitems_builtins/__init__.py +0 -69
- nodeitems_utils/__init__.py +0 -86
- rna_info/__init__.py +0 -343
- rna_keymap_ui/__init__.py +0 -52
- rna_prop_ui/__init__.py +0 -109
- rna_xml/__init__.py +0 -53
- sys_info/__init__.py +0 -12
- /bl_console_utils/{__init__.py → __init__.pyi} +0 -0
- /bl_operators/bmesh/{__init__.py → __init__.pyi} +0 -0
- /bl_previews_utils/{__init__.py → __init__.pyi} +0 -0
- /bl_rna_utils/{__init__.py → __init__.pyi} +0 -0
- /bl_text_utils/{__init__.py → __init__.pyi} +0 -0
- /bpy_extras/extensions/{__init__.py → __init__.pyi} +0 -0
- /bpy_extras/wm_utils/{__init__.py → __init__.pyi} +0 -0
- {fake_bpy_module-20231205.dist-info → fake_bpy_module-20231207.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20231205.dist-info → fake_bpy_module-20231207.dist-info}/top_level.txt +0 -0
- /freestyle/{__init__.py → __init__.pyi} +0 -0
- /gpu/{__init__.py → __init__.pyi} +0 -0
- /gpu_extras/{__init__.py → __init__.pyi} +0 -0
- /idprop/{__init__.py → __init__.pyi} +0 -0
bpy/ops/sequencer.py
DELETED
|
@@ -1,2165 +0,0 @@
|
|
|
1
|
-
import sys
|
|
2
|
-
import typing
|
|
3
|
-
import bpy.types
|
|
4
|
-
import bpy.ops.transform
|
|
5
|
-
|
|
6
|
-
GenericType = typing.TypeVar("GenericType")
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
def change_effect_input(
|
|
10
|
-
override_context: typing.Optional[
|
|
11
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
12
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
13
|
-
undo: typing.Optional[bool] = None,
|
|
14
|
-
*,
|
|
15
|
-
swap: typing.Optional[typing.Any] = 'A_B'):
|
|
16
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.
|
|
17
|
-
|
|
18
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
19
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
20
|
-
:type undo: typing.Optional[bool]
|
|
21
|
-
:param swap: Swap, The effect inputs to swap
|
|
22
|
-
:type swap: typing.Optional[typing.Any]
|
|
23
|
-
'''
|
|
24
|
-
|
|
25
|
-
pass
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
def change_effect_type(
|
|
29
|
-
override_context: typing.Optional[
|
|
30
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
31
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
32
|
-
undo: typing.Optional[bool] = None,
|
|
33
|
-
*,
|
|
34
|
-
type: typing.Optional[typing.Any] = 'CROSS'):
|
|
35
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.
|
|
36
|
-
|
|
37
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
38
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
39
|
-
:type undo: typing.Optional[bool]
|
|
40
|
-
:param type: Type, Sequencer effect type * ``CROSS`` Crossfade -- Crossfade effect strip type. * ``ADD`` Add -- Add effect strip type. * ``SUBTRACT`` Subtract -- Subtract effect strip type. * ``ALPHA_OVER`` Alpha Over -- Alpha Over effect strip type. * ``ALPHA_UNDER`` Alpha Under -- Alpha Under effect strip type. * ``GAMMA_CROSS`` Gamma Cross -- Gamma Cross effect strip type. * ``MULTIPLY`` Multiply -- Multiply effect strip type. * ``OVER_DROP`` Alpha Over Drop -- Alpha Over Drop effect strip type. * ``WIPE`` Wipe -- Wipe effect strip type. * ``GLOW`` Glow -- Glow effect strip type. * ``TRANSFORM`` Transform -- Transform effect strip type. * ``COLOR`` Color -- Color effect strip type. * ``SPEED`` Speed -- Color effect strip type. * ``MULTICAM`` Multicam Selector. * ``ADJUSTMENT`` Adjustment Layer. * ``GAUSSIAN_BLUR`` Gaussian Blur. * ``TEXT`` Text. * ``COLORMIX`` Color Mix.
|
|
41
|
-
:type type: typing.Optional[typing.Any]
|
|
42
|
-
'''
|
|
43
|
-
|
|
44
|
-
pass
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
def change_path(
|
|
48
|
-
override_context: typing.Optional[
|
|
49
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
50
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
51
|
-
undo: typing.Optional[bool] = None,
|
|
52
|
-
*,
|
|
53
|
-
filepath: typing.Union[str, typing.Any] = "",
|
|
54
|
-
directory: typing.Union[str, typing.Any] = "",
|
|
55
|
-
files: typing.Optional[bpy.types.bpy_prop_collection[
|
|
56
|
-
'bpy.types.OperatorFileListElement']] = None,
|
|
57
|
-
hide_props_region: typing.Optional[typing.Union[bool, typing.
|
|
58
|
-
Any]] = True,
|
|
59
|
-
check_existing: typing.Optional[typing.Union[bool, typing.
|
|
60
|
-
Any]] = False,
|
|
61
|
-
filter_blender: typing.Optional[typing.Union[bool, typing.
|
|
62
|
-
Any]] = False,
|
|
63
|
-
filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
64
|
-
filter_image: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
65
|
-
filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
66
|
-
filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
67
|
-
filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
68
|
-
filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
69
|
-
filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
70
|
-
filter_archive: typing.Optional[typing.Union[bool, typing.
|
|
71
|
-
Any]] = False,
|
|
72
|
-
filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
73
|
-
filter_collada: typing.Optional[typing.Union[bool, typing.
|
|
74
|
-
Any]] = False,
|
|
75
|
-
filter_alembic: typing.Optional[typing.Union[bool, typing.
|
|
76
|
-
Any]] = False,
|
|
77
|
-
filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
78
|
-
filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
79
|
-
filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
80
|
-
filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
81
|
-
filter_blenlib: typing.Optional[typing.Union[bool, typing.
|
|
82
|
-
Any]] = False,
|
|
83
|
-
filemode: typing.Optional[typing.Any] = 9,
|
|
84
|
-
relative_path: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
85
|
-
display_type: typing.Optional[typing.Any] = 'DEFAULT',
|
|
86
|
-
sort_method: typing.Optional[typing.Union[str, int, typing.Any]] = '',
|
|
87
|
-
use_placeholders: typing.Optional[typing.Union[bool, typing.
|
|
88
|
-
Any]] = False):
|
|
89
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.
|
|
90
|
-
|
|
91
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
92
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
93
|
-
:type undo: typing.Optional[bool]
|
|
94
|
-
:param filepath: File Path, Path to file
|
|
95
|
-
:type filepath: typing.Union[str, typing.Any]
|
|
96
|
-
:param directory: Directory, Directory of the file
|
|
97
|
-
:type directory: typing.Union[str, typing.Any]
|
|
98
|
-
:param files: Files
|
|
99
|
-
:type files: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorFileListElement']]
|
|
100
|
-
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
101
|
-
:type hide_props_region: typing.Optional[typing.Union[bool, typing.Any]]
|
|
102
|
-
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
103
|
-
:type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
|
|
104
|
-
:param filter_blender: Filter .blend files
|
|
105
|
-
:type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
|
|
106
|
-
:param filter_backup: Filter .blend files
|
|
107
|
-
:type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
|
|
108
|
-
:param filter_image: Filter image files
|
|
109
|
-
:type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
|
|
110
|
-
:param filter_movie: Filter movie files
|
|
111
|
-
:type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
|
|
112
|
-
:param filter_python: Filter Python files
|
|
113
|
-
:type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
|
|
114
|
-
:param filter_font: Filter font files
|
|
115
|
-
:type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
|
|
116
|
-
:param filter_sound: Filter sound files
|
|
117
|
-
:type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
|
|
118
|
-
:param filter_text: Filter text files
|
|
119
|
-
:type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
|
|
120
|
-
:param filter_archive: Filter archive files
|
|
121
|
-
:type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
|
|
122
|
-
:param filter_btx: Filter btx files
|
|
123
|
-
:type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
|
|
124
|
-
:param filter_collada: Filter COLLADA files
|
|
125
|
-
:type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
|
|
126
|
-
:param filter_alembic: Filter Alembic files
|
|
127
|
-
:type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
|
|
128
|
-
:param filter_usd: Filter USD files
|
|
129
|
-
:type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
|
|
130
|
-
:param filter_obj: Filter OBJ files
|
|
131
|
-
:type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
|
|
132
|
-
:param filter_volume: Filter OpenVDB volume files
|
|
133
|
-
:type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
|
|
134
|
-
:param filter_folder: Filter folders
|
|
135
|
-
:type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
|
|
136
|
-
:param filter_blenlib: Filter Blender IDs
|
|
137
|
-
:type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
|
|
138
|
-
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
139
|
-
:type filemode: typing.Optional[typing.Any]
|
|
140
|
-
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
141
|
-
:type relative_path: typing.Optional[typing.Union[bool, typing.Any]]
|
|
142
|
-
:param display_type: Display Type * ``DEFAULT`` Default -- Automatically determine display type for files. * ``LIST_VERTICAL`` Short List -- Display files as short list. * ``LIST_HORIZONTAL`` Long List -- Display files as a detailed list. * ``THUMBNAIL`` Thumbnails -- Display files as thumbnails.
|
|
143
|
-
:type display_type: typing.Optional[typing.Any]
|
|
144
|
-
:param sort_method: File sorting mode
|
|
145
|
-
:type sort_method: typing.Optional[typing.Union[str, int, typing.Any]]
|
|
146
|
-
:param use_placeholders: Use Placeholders, Use placeholders for missing frames of the strip
|
|
147
|
-
:type use_placeholders: typing.Optional[typing.Union[bool, typing.Any]]
|
|
148
|
-
'''
|
|
149
|
-
|
|
150
|
-
pass
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
def change_scene(
|
|
154
|
-
override_context: typing.Optional[
|
|
155
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
156
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
157
|
-
undo: typing.Optional[bool] = None,
|
|
158
|
-
*,
|
|
159
|
-
scene: typing.Optional[typing.Union[str, int, typing.Any]] = ''):
|
|
160
|
-
''' Change Scene assigned to Strip
|
|
161
|
-
|
|
162
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
163
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
164
|
-
:type undo: typing.Optional[bool]
|
|
165
|
-
:param scene: Scene
|
|
166
|
-
:type scene: typing.Optional[typing.Union[str, int, typing.Any]]
|
|
167
|
-
'''
|
|
168
|
-
|
|
169
|
-
pass
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
def copy(override_context: typing.Optional[
|
|
173
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
174
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
175
|
-
undo: typing.Optional[bool] = None):
|
|
176
|
-
''' Copy the selected strips to the internal clipboard
|
|
177
|
-
|
|
178
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
179
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
180
|
-
:type undo: typing.Optional[bool]
|
|
181
|
-
'''
|
|
182
|
-
|
|
183
|
-
pass
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
def crossfade_sounds(
|
|
187
|
-
override_context: typing.Optional[
|
|
188
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
189
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
190
|
-
undo: typing.Optional[bool] = None):
|
|
191
|
-
''' Do cross-fading volume animation of two selected sound strips :File: `startup/bl_operators/sequencer.py\:28 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/sequencer.py#L28>`__
|
|
192
|
-
|
|
193
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
194
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
195
|
-
:type undo: typing.Optional[bool]
|
|
196
|
-
'''
|
|
197
|
-
|
|
198
|
-
pass
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
def cursor_set(
|
|
202
|
-
override_context: typing.Optional[
|
|
203
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
204
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
205
|
-
undo: typing.Optional[bool] = None,
|
|
206
|
-
*,
|
|
207
|
-
location: typing.Optional[typing.Any] = (0.0, 0.0)):
|
|
208
|
-
''' Set 2D cursor location
|
|
209
|
-
|
|
210
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
211
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
212
|
-
:type undo: typing.Optional[bool]
|
|
213
|
-
:param location: Location, Cursor location in normalized preview coordinates
|
|
214
|
-
:type location: typing.Optional[typing.Any]
|
|
215
|
-
'''
|
|
216
|
-
|
|
217
|
-
pass
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
def deinterlace_selected_movies(
|
|
221
|
-
override_context: typing.Optional[
|
|
222
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
223
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
224
|
-
undo: typing.Optional[bool] = None):
|
|
225
|
-
''' Deinterlace all selected movie sources :File: `startup/bl_operators/sequencer.py\:116 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/sequencer.py#L116>`__
|
|
226
|
-
|
|
227
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
228
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
229
|
-
:type undo: typing.Optional[bool]
|
|
230
|
-
'''
|
|
231
|
-
|
|
232
|
-
pass
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
def delete(
|
|
236
|
-
override_context: typing.Optional[
|
|
237
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
238
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
239
|
-
undo: typing.Optional[bool] = None,
|
|
240
|
-
*,
|
|
241
|
-
delete_data: typing.Optional[typing.Union[bool, typing.Any]] = False):
|
|
242
|
-
''' Delete selected strips from the sequencer
|
|
243
|
-
|
|
244
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
245
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
246
|
-
:type undo: typing.Optional[bool]
|
|
247
|
-
:param delete_data: Delete Data, After removing the Strip, delete the associated data also
|
|
248
|
-
:type delete_data: typing.Optional[typing.Union[bool, typing.Any]]
|
|
249
|
-
'''
|
|
250
|
-
|
|
251
|
-
pass
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
def duplicate(
|
|
255
|
-
override_context: typing.Optional[
|
|
256
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
257
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
258
|
-
undo: typing.Optional[bool] = None):
|
|
259
|
-
''' Duplicate the selected strips
|
|
260
|
-
|
|
261
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
262
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
263
|
-
:type undo: typing.Optional[bool]
|
|
264
|
-
'''
|
|
265
|
-
|
|
266
|
-
pass
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
def duplicate_move(
|
|
270
|
-
override_context: typing.Optional[
|
|
271
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
272
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
273
|
-
undo: typing.Optional[bool] = None,
|
|
274
|
-
*,
|
|
275
|
-
SEQUENCER_OT_duplicate: typing.Optional['duplicate'] = None,
|
|
276
|
-
TRANSFORM_OT_seq_slide: typing.
|
|
277
|
-
Optional['bpy.ops.transform.seq_slide'] = None):
|
|
278
|
-
''' Duplicate selected strips and move them
|
|
279
|
-
|
|
280
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
281
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
282
|
-
:type undo: typing.Optional[bool]
|
|
283
|
-
:param SEQUENCER_OT_duplicate: Duplicate Strips, Duplicate the selected strips
|
|
284
|
-
:type SEQUENCER_OT_duplicate: typing.Optional['duplicate']
|
|
285
|
-
:param TRANSFORM_OT_seq_slide: Sequence Slide, Slide a sequence strip in time
|
|
286
|
-
:type TRANSFORM_OT_seq_slide: typing.Optional['bpy.ops.transform.seq_slide']
|
|
287
|
-
'''
|
|
288
|
-
|
|
289
|
-
pass
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
def effect_strip_add(
|
|
293
|
-
override_context: typing.Optional[
|
|
294
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
295
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
296
|
-
undo: typing.Optional[bool] = None,
|
|
297
|
-
*,
|
|
298
|
-
type: typing.Optional[typing.Any] = 'CROSS',
|
|
299
|
-
frame_start: typing.Optional[typing.Any] = 0,
|
|
300
|
-
frame_end: typing.Optional[typing.Any] = 0,
|
|
301
|
-
channel: typing.Optional[typing.Any] = 1,
|
|
302
|
-
replace_sel: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
303
|
-
overlap: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
304
|
-
overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.
|
|
305
|
-
Any]] = False,
|
|
306
|
-
color: typing.Optional[typing.Any] = (0.0, 0.0, 0.0)):
|
|
307
|
-
''' Add an effect to the sequencer, most are applied on top of existing strips
|
|
308
|
-
|
|
309
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
310
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
311
|
-
:type undo: typing.Optional[bool]
|
|
312
|
-
:param type: Type, Sequencer effect type * ``CROSS`` Crossfade -- Crossfade effect strip type. * ``ADD`` Add -- Add effect strip type. * ``SUBTRACT`` Subtract -- Subtract effect strip type. * ``ALPHA_OVER`` Alpha Over -- Alpha Over effect strip type. * ``ALPHA_UNDER`` Alpha Under -- Alpha Under effect strip type. * ``GAMMA_CROSS`` Gamma Cross -- Gamma Cross effect strip type. * ``MULTIPLY`` Multiply -- Multiply effect strip type. * ``OVER_DROP`` Alpha Over Drop -- Alpha Over Drop effect strip type. * ``WIPE`` Wipe -- Wipe effect strip type. * ``GLOW`` Glow -- Glow effect strip type. * ``TRANSFORM`` Transform -- Transform effect strip type. * ``COLOR`` Color -- Color effect strip type. * ``SPEED`` Speed -- Color effect strip type. * ``MULTICAM`` Multicam Selector. * ``ADJUSTMENT`` Adjustment Layer. * ``GAUSSIAN_BLUR`` Gaussian Blur. * ``TEXT`` Text. * ``COLORMIX`` Color Mix.
|
|
313
|
-
:type type: typing.Optional[typing.Any]
|
|
314
|
-
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
315
|
-
:type frame_start: typing.Optional[typing.Any]
|
|
316
|
-
:param frame_end: End Frame, End frame for the color strip
|
|
317
|
-
:type frame_end: typing.Optional[typing.Any]
|
|
318
|
-
:param channel: Channel, Channel to place this strip into
|
|
319
|
-
:type channel: typing.Optional[typing.Any]
|
|
320
|
-
:param replace_sel: Replace Selection, Replace the current selection
|
|
321
|
-
:type replace_sel: typing.Optional[typing.Union[bool, typing.Any]]
|
|
322
|
-
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
323
|
-
:type overlap: typing.Optional[typing.Union[bool, typing.Any]]
|
|
324
|
-
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
325
|
-
:type overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]]
|
|
326
|
-
:param color: Color, Initialize the strip with this color
|
|
327
|
-
:type color: typing.Optional[typing.Any]
|
|
328
|
-
'''
|
|
329
|
-
|
|
330
|
-
pass
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
def enable_proxies(
|
|
334
|
-
override_context: typing.Optional[
|
|
335
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
336
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
337
|
-
undo: typing.Optional[bool] = None,
|
|
338
|
-
*,
|
|
339
|
-
proxy_25: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
340
|
-
proxy_50: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
341
|
-
proxy_75: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
342
|
-
proxy_100: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
343
|
-
overwrite: typing.Optional[typing.Union[bool, typing.Any]] = False):
|
|
344
|
-
''' Enable selected proxies on all selected Movie and Image strips
|
|
345
|
-
|
|
346
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
347
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
348
|
-
:type undo: typing.Optional[bool]
|
|
349
|
-
:param proxy_25: 25%
|
|
350
|
-
:type proxy_25: typing.Optional[typing.Union[bool, typing.Any]]
|
|
351
|
-
:param proxy_50: 50%
|
|
352
|
-
:type proxy_50: typing.Optional[typing.Union[bool, typing.Any]]
|
|
353
|
-
:param proxy_75: 75%
|
|
354
|
-
:type proxy_75: typing.Optional[typing.Union[bool, typing.Any]]
|
|
355
|
-
:param proxy_100: 100%
|
|
356
|
-
:type proxy_100: typing.Optional[typing.Union[bool, typing.Any]]
|
|
357
|
-
:param overwrite: Overwrite
|
|
358
|
-
:type overwrite: typing.Optional[typing.Union[bool, typing.Any]]
|
|
359
|
-
'''
|
|
360
|
-
|
|
361
|
-
pass
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
def export_subtitles(
|
|
365
|
-
override_context: typing.Optional[
|
|
366
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
367
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
368
|
-
undo: typing.Optional[bool] = None,
|
|
369
|
-
*,
|
|
370
|
-
filepath: typing.Union[str, typing.Any] = "",
|
|
371
|
-
hide_props_region: typing.Optional[typing.Union[bool, typing.
|
|
372
|
-
Any]] = True,
|
|
373
|
-
check_existing: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
374
|
-
filter_blender: typing.Optional[typing.Union[bool, typing.
|
|
375
|
-
Any]] = False,
|
|
376
|
-
filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
377
|
-
filter_image: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
378
|
-
filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
379
|
-
filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
380
|
-
filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
381
|
-
filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
382
|
-
filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
383
|
-
filter_archive: typing.Optional[typing.Union[bool, typing.
|
|
384
|
-
Any]] = False,
|
|
385
|
-
filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
386
|
-
filter_collada: typing.Optional[typing.Union[bool, typing.
|
|
387
|
-
Any]] = False,
|
|
388
|
-
filter_alembic: typing.Optional[typing.Union[bool, typing.
|
|
389
|
-
Any]] = False,
|
|
390
|
-
filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
391
|
-
filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
392
|
-
filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
393
|
-
filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
394
|
-
filter_blenlib: typing.Optional[typing.Union[bool, typing.
|
|
395
|
-
Any]] = False,
|
|
396
|
-
filemode: typing.Optional[typing.Any] = 8,
|
|
397
|
-
display_type: typing.Optional[typing.Any] = 'DEFAULT',
|
|
398
|
-
sort_method: typing.Optional[typing.Union[str, int, typing.Any]] = ''):
|
|
399
|
-
''' Export .srt file containing text strips
|
|
400
|
-
|
|
401
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
402
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
403
|
-
:type undo: typing.Optional[bool]
|
|
404
|
-
:param filepath: File Path, Path to file
|
|
405
|
-
:type filepath: typing.Union[str, typing.Any]
|
|
406
|
-
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
407
|
-
:type hide_props_region: typing.Optional[typing.Union[bool, typing.Any]]
|
|
408
|
-
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
409
|
-
:type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
|
|
410
|
-
:param filter_blender: Filter .blend files
|
|
411
|
-
:type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
|
|
412
|
-
:param filter_backup: Filter .blend files
|
|
413
|
-
:type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
|
|
414
|
-
:param filter_image: Filter image files
|
|
415
|
-
:type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
|
|
416
|
-
:param filter_movie: Filter movie files
|
|
417
|
-
:type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
|
|
418
|
-
:param filter_python: Filter Python files
|
|
419
|
-
:type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
|
|
420
|
-
:param filter_font: Filter font files
|
|
421
|
-
:type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
|
|
422
|
-
:param filter_sound: Filter sound files
|
|
423
|
-
:type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
|
|
424
|
-
:param filter_text: Filter text files
|
|
425
|
-
:type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
|
|
426
|
-
:param filter_archive: Filter archive files
|
|
427
|
-
:type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
|
|
428
|
-
:param filter_btx: Filter btx files
|
|
429
|
-
:type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
|
|
430
|
-
:param filter_collada: Filter COLLADA files
|
|
431
|
-
:type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
|
|
432
|
-
:param filter_alembic: Filter Alembic files
|
|
433
|
-
:type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
|
|
434
|
-
:param filter_usd: Filter USD files
|
|
435
|
-
:type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
|
|
436
|
-
:param filter_obj: Filter OBJ files
|
|
437
|
-
:type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
|
|
438
|
-
:param filter_volume: Filter OpenVDB volume files
|
|
439
|
-
:type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
|
|
440
|
-
:param filter_folder: Filter folders
|
|
441
|
-
:type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
|
|
442
|
-
:param filter_blenlib: Filter Blender IDs
|
|
443
|
-
:type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
|
|
444
|
-
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
445
|
-
:type filemode: typing.Optional[typing.Any]
|
|
446
|
-
:param display_type: Display Type * ``DEFAULT`` Default -- Automatically determine display type for files. * ``LIST_VERTICAL`` Short List -- Display files as short list. * ``LIST_HORIZONTAL`` Long List -- Display files as a detailed list. * ``THUMBNAIL`` Thumbnails -- Display files as thumbnails.
|
|
447
|
-
:type display_type: typing.Optional[typing.Any]
|
|
448
|
-
:param sort_method: File sorting mode
|
|
449
|
-
:type sort_method: typing.Optional[typing.Union[str, int, typing.Any]]
|
|
450
|
-
'''
|
|
451
|
-
|
|
452
|
-
pass
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
def fades_add(
|
|
456
|
-
override_context: typing.Optional[
|
|
457
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
458
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
459
|
-
undo: typing.Optional[bool] = None,
|
|
460
|
-
*,
|
|
461
|
-
duration_seconds: typing.Optional[typing.Any] = 1.0,
|
|
462
|
-
type: typing.Optional[typing.Any] = 'IN_OUT'):
|
|
463
|
-
''' Adds or updates a fade animation for either visual or audio strips :File: `startup/bl_operators/sequencer.py\:194 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/sequencer.py#L194>`__
|
|
464
|
-
|
|
465
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
466
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
467
|
-
:type undo: typing.Optional[bool]
|
|
468
|
-
:param duration_seconds: Fade Duration, Duration of the fade in seconds
|
|
469
|
-
:type duration_seconds: typing.Optional[typing.Any]
|
|
470
|
-
:param type: Fade Type, Fade in, out, both in and out, to, or from the current frame. Default is both in and out * ``IN_OUT`` Fade In and Out -- Fade selected strips in and out. * ``IN`` Fade In -- Fade in selected strips. * ``OUT`` Fade Out -- Fade out selected strips. * ``CURSOR_FROM`` From Current Frame -- Fade from the time cursor to the end of overlapping sequences. * ``CURSOR_TO`` To Current Frame -- Fade from the start of sequences under the time cursor to the current frame.
|
|
471
|
-
:type type: typing.Optional[typing.Any]
|
|
472
|
-
'''
|
|
473
|
-
|
|
474
|
-
pass
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
def fades_clear(
|
|
478
|
-
override_context: typing.Optional[
|
|
479
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
480
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
481
|
-
undo: typing.Optional[bool] = None):
|
|
482
|
-
''' Removes fade animation from selected sequences :File: `startup/bl_operators/sequencer.py\:135 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/sequencer.py#L135>`__
|
|
483
|
-
|
|
484
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
485
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
486
|
-
:type undo: typing.Optional[bool]
|
|
487
|
-
'''
|
|
488
|
-
|
|
489
|
-
pass
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
def gap_insert(
|
|
493
|
-
override_context: typing.Optional[
|
|
494
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
495
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
496
|
-
undo: typing.Optional[bool] = None,
|
|
497
|
-
*,
|
|
498
|
-
frames: typing.Optional[typing.Any] = 10):
|
|
499
|
-
''' Insert gap at current frame to first strips at the right, independent of selection or locked state of strips
|
|
500
|
-
|
|
501
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
502
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
503
|
-
:type undo: typing.Optional[bool]
|
|
504
|
-
:param frames: Frames, Frames to insert after current strip
|
|
505
|
-
:type frames: typing.Optional[typing.Any]
|
|
506
|
-
'''
|
|
507
|
-
|
|
508
|
-
pass
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
def gap_remove(
|
|
512
|
-
override_context: typing.Optional[
|
|
513
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
514
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
515
|
-
undo: typing.Optional[bool] = None,
|
|
516
|
-
*,
|
|
517
|
-
all: typing.Optional[typing.Union[bool, typing.Any]] = False):
|
|
518
|
-
''' Remove gap at current frame to first strip at the right, independent of selection or locked state of strips
|
|
519
|
-
|
|
520
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
521
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
522
|
-
:type undo: typing.Optional[bool]
|
|
523
|
-
:param all: All Gaps, Do all gaps to right of current frame
|
|
524
|
-
:type all: typing.Optional[typing.Union[bool, typing.Any]]
|
|
525
|
-
'''
|
|
526
|
-
|
|
527
|
-
pass
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
def image_strip_add(
|
|
531
|
-
override_context: typing.Optional[
|
|
532
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
533
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
534
|
-
undo: typing.Optional[bool] = None,
|
|
535
|
-
*,
|
|
536
|
-
directory: typing.Union[str, typing.Any] = "",
|
|
537
|
-
files: typing.Optional[bpy.types.bpy_prop_collection[
|
|
538
|
-
'bpy.types.OperatorFileListElement']] = None,
|
|
539
|
-
check_existing: typing.Optional[typing.Union[bool, typing.
|
|
540
|
-
Any]] = False,
|
|
541
|
-
filter_blender: typing.Optional[typing.Union[bool, typing.
|
|
542
|
-
Any]] = False,
|
|
543
|
-
filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
544
|
-
filter_image: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
545
|
-
filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
546
|
-
filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
547
|
-
filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
548
|
-
filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
549
|
-
filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
550
|
-
filter_archive: typing.Optional[typing.Union[bool, typing.
|
|
551
|
-
Any]] = False,
|
|
552
|
-
filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
553
|
-
filter_collada: typing.Optional[typing.Union[bool, typing.
|
|
554
|
-
Any]] = False,
|
|
555
|
-
filter_alembic: typing.Optional[typing.Union[bool, typing.
|
|
556
|
-
Any]] = False,
|
|
557
|
-
filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
558
|
-
filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
559
|
-
filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
560
|
-
filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
561
|
-
filter_blenlib: typing.Optional[typing.Union[bool, typing.
|
|
562
|
-
Any]] = False,
|
|
563
|
-
filemode: typing.Optional[typing.Any] = 9,
|
|
564
|
-
relative_path: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
565
|
-
show_multiview: typing.Optional[typing.Union[bool, typing.
|
|
566
|
-
Any]] = False,
|
|
567
|
-
use_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
568
|
-
display_type: typing.Optional[typing.Any] = 'DEFAULT',
|
|
569
|
-
sort_method: typing.Optional[typing.Union[str, int, typing.Any]] = '',
|
|
570
|
-
frame_start: typing.Optional[typing.Any] = 0,
|
|
571
|
-
frame_end: typing.Optional[typing.Any] = 0,
|
|
572
|
-
channel: typing.Optional[typing.Any] = 1,
|
|
573
|
-
replace_sel: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
574
|
-
overlap: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
575
|
-
overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.
|
|
576
|
-
Any]] = False,
|
|
577
|
-
fit_method: typing.Optional[typing.Any] = 'FIT',
|
|
578
|
-
set_view_transform: typing.Optional[typing.Union[bool, typing.
|
|
579
|
-
Any]] = True,
|
|
580
|
-
use_placeholders: typing.Optional[typing.Union[bool, typing.
|
|
581
|
-
Any]] = False):
|
|
582
|
-
''' Add an image or image sequence to the sequencer
|
|
583
|
-
|
|
584
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
585
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
586
|
-
:type undo: typing.Optional[bool]
|
|
587
|
-
:param directory: Directory, Directory of the file
|
|
588
|
-
:type directory: typing.Union[str, typing.Any]
|
|
589
|
-
:param files: Files
|
|
590
|
-
:type files: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorFileListElement']]
|
|
591
|
-
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
592
|
-
:type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
|
|
593
|
-
:param filter_blender: Filter .blend files
|
|
594
|
-
:type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
|
|
595
|
-
:param filter_backup: Filter .blend files
|
|
596
|
-
:type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
|
|
597
|
-
:param filter_image: Filter image files
|
|
598
|
-
:type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
|
|
599
|
-
:param filter_movie: Filter movie files
|
|
600
|
-
:type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
|
|
601
|
-
:param filter_python: Filter Python files
|
|
602
|
-
:type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
|
|
603
|
-
:param filter_font: Filter font files
|
|
604
|
-
:type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
|
|
605
|
-
:param filter_sound: Filter sound files
|
|
606
|
-
:type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
|
|
607
|
-
:param filter_text: Filter text files
|
|
608
|
-
:type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
|
|
609
|
-
:param filter_archive: Filter archive files
|
|
610
|
-
:type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
|
|
611
|
-
:param filter_btx: Filter btx files
|
|
612
|
-
:type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
|
|
613
|
-
:param filter_collada: Filter COLLADA files
|
|
614
|
-
:type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
|
|
615
|
-
:param filter_alembic: Filter Alembic files
|
|
616
|
-
:type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
|
|
617
|
-
:param filter_usd: Filter USD files
|
|
618
|
-
:type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
|
|
619
|
-
:param filter_obj: Filter OBJ files
|
|
620
|
-
:type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
|
|
621
|
-
:param filter_volume: Filter OpenVDB volume files
|
|
622
|
-
:type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
|
|
623
|
-
:param filter_folder: Filter folders
|
|
624
|
-
:type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
|
|
625
|
-
:param filter_blenlib: Filter Blender IDs
|
|
626
|
-
:type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
|
|
627
|
-
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
628
|
-
:type filemode: typing.Optional[typing.Any]
|
|
629
|
-
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
630
|
-
:type relative_path: typing.Optional[typing.Union[bool, typing.Any]]
|
|
631
|
-
:param show_multiview: Enable Multi-View
|
|
632
|
-
:type show_multiview: typing.Optional[typing.Union[bool, typing.Any]]
|
|
633
|
-
:param use_multiview: Use Multi-View
|
|
634
|
-
:type use_multiview: typing.Optional[typing.Union[bool, typing.Any]]
|
|
635
|
-
:param display_type: Display Type * ``DEFAULT`` Default -- Automatically determine display type for files. * ``LIST_VERTICAL`` Short List -- Display files as short list. * ``LIST_HORIZONTAL`` Long List -- Display files as a detailed list. * ``THUMBNAIL`` Thumbnails -- Display files as thumbnails.
|
|
636
|
-
:type display_type: typing.Optional[typing.Any]
|
|
637
|
-
:param sort_method: File sorting mode
|
|
638
|
-
:type sort_method: typing.Optional[typing.Union[str, int, typing.Any]]
|
|
639
|
-
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
640
|
-
:type frame_start: typing.Optional[typing.Any]
|
|
641
|
-
:param frame_end: End Frame, End frame for the color strip
|
|
642
|
-
:type frame_end: typing.Optional[typing.Any]
|
|
643
|
-
:param channel: Channel, Channel to place this strip into
|
|
644
|
-
:type channel: typing.Optional[typing.Any]
|
|
645
|
-
:param replace_sel: Replace Selection, Replace the current selection
|
|
646
|
-
:type replace_sel: typing.Optional[typing.Union[bool, typing.Any]]
|
|
647
|
-
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
648
|
-
:type overlap: typing.Optional[typing.Union[bool, typing.Any]]
|
|
649
|
-
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
650
|
-
:type overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]]
|
|
651
|
-
:param fit_method: Fit Method, Scale fit method * ``FIT`` Scale to Fit -- Scale image to fit within the canvas. * ``FILL`` Scale to Fill -- Scale image to completely fill the canvas. * ``STRETCH`` Stretch to Fill -- Stretch image to fill the canvas. * ``ORIGINAL`` Use Original Size -- Keep image at its original size.
|
|
652
|
-
:type fit_method: typing.Optional[typing.Any]
|
|
653
|
-
:param set_view_transform: Set View Transform, Set appropriate view transform based on media color space
|
|
654
|
-
:type set_view_transform: typing.Optional[typing.Union[bool, typing.Any]]
|
|
655
|
-
:param use_placeholders: Use Placeholders, Use placeholders for missing frames of the strip
|
|
656
|
-
:type use_placeholders: typing.Optional[typing.Union[bool, typing.Any]]
|
|
657
|
-
'''
|
|
658
|
-
|
|
659
|
-
pass
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
def images_separate(
|
|
663
|
-
override_context: typing.Optional[
|
|
664
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
665
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
666
|
-
undo: typing.Optional[bool] = None,
|
|
667
|
-
*,
|
|
668
|
-
length: typing.Optional[typing.Any] = 1):
|
|
669
|
-
''' On image sequence strips, it returns a strip for each image
|
|
670
|
-
|
|
671
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
672
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
673
|
-
:type undo: typing.Optional[bool]
|
|
674
|
-
:param length: Length, Length of each frame
|
|
675
|
-
:type length: typing.Optional[typing.Any]
|
|
676
|
-
'''
|
|
677
|
-
|
|
678
|
-
pass
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
def lock(override_context: typing.Optional[
|
|
682
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
683
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
684
|
-
undo: typing.Optional[bool] = None):
|
|
685
|
-
''' Lock strips so they can't be transformed
|
|
686
|
-
|
|
687
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
688
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
689
|
-
:type undo: typing.Optional[bool]
|
|
690
|
-
'''
|
|
691
|
-
|
|
692
|
-
pass
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
def mask_strip_add(
|
|
696
|
-
override_context: typing.Optional[
|
|
697
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
698
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
699
|
-
undo: typing.Optional[bool] = None,
|
|
700
|
-
*,
|
|
701
|
-
frame_start: typing.Optional[typing.Any] = 0,
|
|
702
|
-
channel: typing.Optional[typing.Any] = 1,
|
|
703
|
-
replace_sel: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
704
|
-
overlap: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
705
|
-
overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.
|
|
706
|
-
Any]] = False,
|
|
707
|
-
mask: typing.Optional[typing.Union[str, int, typing.Any]] = ''):
|
|
708
|
-
''' Add a mask strip to the sequencer
|
|
709
|
-
|
|
710
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
711
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
712
|
-
:type undo: typing.Optional[bool]
|
|
713
|
-
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
714
|
-
:type frame_start: typing.Optional[typing.Any]
|
|
715
|
-
:param channel: Channel, Channel to place this strip into
|
|
716
|
-
:type channel: typing.Optional[typing.Any]
|
|
717
|
-
:param replace_sel: Replace Selection, Replace the current selection
|
|
718
|
-
:type replace_sel: typing.Optional[typing.Union[bool, typing.Any]]
|
|
719
|
-
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
720
|
-
:type overlap: typing.Optional[typing.Union[bool, typing.Any]]
|
|
721
|
-
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
722
|
-
:type overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]]
|
|
723
|
-
:param mask: Mask
|
|
724
|
-
:type mask: typing.Optional[typing.Union[str, int, typing.Any]]
|
|
725
|
-
'''
|
|
726
|
-
|
|
727
|
-
pass
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
def meta_make(
|
|
731
|
-
override_context: typing.Optional[
|
|
732
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
733
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
734
|
-
undo: typing.Optional[bool] = None):
|
|
735
|
-
''' Group selected strips into a meta-strip
|
|
736
|
-
|
|
737
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
738
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
739
|
-
:type undo: typing.Optional[bool]
|
|
740
|
-
'''
|
|
741
|
-
|
|
742
|
-
pass
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
def meta_separate(
|
|
746
|
-
override_context: typing.Optional[
|
|
747
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
748
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
749
|
-
undo: typing.Optional[bool] = None):
|
|
750
|
-
''' Put the contents of a meta-strip back in the sequencer
|
|
751
|
-
|
|
752
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
753
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
754
|
-
:type undo: typing.Optional[bool]
|
|
755
|
-
'''
|
|
756
|
-
|
|
757
|
-
pass
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
def meta_toggle(
|
|
761
|
-
override_context: typing.Optional[
|
|
762
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
763
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
764
|
-
undo: typing.Optional[bool] = None):
|
|
765
|
-
''' Toggle a meta-strip (to edit enclosed strips)
|
|
766
|
-
|
|
767
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
768
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
769
|
-
:type undo: typing.Optional[bool]
|
|
770
|
-
'''
|
|
771
|
-
|
|
772
|
-
pass
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
def movie_strip_add(
|
|
776
|
-
override_context: typing.Optional[
|
|
777
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
778
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
779
|
-
undo: typing.Optional[bool] = None,
|
|
780
|
-
*,
|
|
781
|
-
filepath: typing.Union[str, typing.Any] = "",
|
|
782
|
-
directory: typing.Union[str, typing.Any] = "",
|
|
783
|
-
files: typing.Optional[bpy.types.bpy_prop_collection[
|
|
784
|
-
'bpy.types.OperatorFileListElement']] = None,
|
|
785
|
-
check_existing: typing.Optional[typing.Union[bool, typing.
|
|
786
|
-
Any]] = False,
|
|
787
|
-
filter_blender: typing.Optional[typing.Union[bool, typing.
|
|
788
|
-
Any]] = False,
|
|
789
|
-
filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
790
|
-
filter_image: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
791
|
-
filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
792
|
-
filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
793
|
-
filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
794
|
-
filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
795
|
-
filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
796
|
-
filter_archive: typing.Optional[typing.Union[bool, typing.
|
|
797
|
-
Any]] = False,
|
|
798
|
-
filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
799
|
-
filter_collada: typing.Optional[typing.Union[bool, typing.
|
|
800
|
-
Any]] = False,
|
|
801
|
-
filter_alembic: typing.Optional[typing.Union[bool, typing.
|
|
802
|
-
Any]] = False,
|
|
803
|
-
filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
804
|
-
filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
805
|
-
filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
806
|
-
filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
807
|
-
filter_blenlib: typing.Optional[typing.Union[bool, typing.
|
|
808
|
-
Any]] = False,
|
|
809
|
-
filemode: typing.Optional[typing.Any] = 9,
|
|
810
|
-
relative_path: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
811
|
-
show_multiview: typing.Optional[typing.Union[bool, typing.
|
|
812
|
-
Any]] = False,
|
|
813
|
-
use_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
814
|
-
display_type: typing.Optional[typing.Any] = 'DEFAULT',
|
|
815
|
-
sort_method: typing.Optional[typing.Union[str, int, typing.Any]] = '',
|
|
816
|
-
frame_start: typing.Optional[typing.Any] = 0,
|
|
817
|
-
channel: typing.Optional[typing.Any] = 1,
|
|
818
|
-
replace_sel: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
819
|
-
overlap: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
820
|
-
overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.
|
|
821
|
-
Any]] = False,
|
|
822
|
-
fit_method: typing.Optional[typing.Any] = 'FIT',
|
|
823
|
-
set_view_transform: typing.Optional[typing.Union[bool, typing.
|
|
824
|
-
Any]] = True,
|
|
825
|
-
adjust_playback_rate: typing.Optional[typing.Union[bool, typing.
|
|
826
|
-
Any]] = True,
|
|
827
|
-
sound: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
828
|
-
use_framerate: typing.Optional[typing.Union[bool, typing.Any]] = True):
|
|
829
|
-
''' Add a movie strip to the sequencer
|
|
830
|
-
|
|
831
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
832
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
833
|
-
:type undo: typing.Optional[bool]
|
|
834
|
-
:param filepath: File Path, Path to file
|
|
835
|
-
:type filepath: typing.Union[str, typing.Any]
|
|
836
|
-
:param directory: Directory, Directory of the file
|
|
837
|
-
:type directory: typing.Union[str, typing.Any]
|
|
838
|
-
:param files: Files
|
|
839
|
-
:type files: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorFileListElement']]
|
|
840
|
-
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
841
|
-
:type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
|
|
842
|
-
:param filter_blender: Filter .blend files
|
|
843
|
-
:type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
|
|
844
|
-
:param filter_backup: Filter .blend files
|
|
845
|
-
:type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
|
|
846
|
-
:param filter_image: Filter image files
|
|
847
|
-
:type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
|
|
848
|
-
:param filter_movie: Filter movie files
|
|
849
|
-
:type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
|
|
850
|
-
:param filter_python: Filter Python files
|
|
851
|
-
:type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
|
|
852
|
-
:param filter_font: Filter font files
|
|
853
|
-
:type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
|
|
854
|
-
:param filter_sound: Filter sound files
|
|
855
|
-
:type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
|
|
856
|
-
:param filter_text: Filter text files
|
|
857
|
-
:type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
|
|
858
|
-
:param filter_archive: Filter archive files
|
|
859
|
-
:type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
|
|
860
|
-
:param filter_btx: Filter btx files
|
|
861
|
-
:type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
|
|
862
|
-
:param filter_collada: Filter COLLADA files
|
|
863
|
-
:type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
|
|
864
|
-
:param filter_alembic: Filter Alembic files
|
|
865
|
-
:type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
|
|
866
|
-
:param filter_usd: Filter USD files
|
|
867
|
-
:type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
|
|
868
|
-
:param filter_obj: Filter OBJ files
|
|
869
|
-
:type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
|
|
870
|
-
:param filter_volume: Filter OpenVDB volume files
|
|
871
|
-
:type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
|
|
872
|
-
:param filter_folder: Filter folders
|
|
873
|
-
:type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
|
|
874
|
-
:param filter_blenlib: Filter Blender IDs
|
|
875
|
-
:type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
|
|
876
|
-
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
877
|
-
:type filemode: typing.Optional[typing.Any]
|
|
878
|
-
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
879
|
-
:type relative_path: typing.Optional[typing.Union[bool, typing.Any]]
|
|
880
|
-
:param show_multiview: Enable Multi-View
|
|
881
|
-
:type show_multiview: typing.Optional[typing.Union[bool, typing.Any]]
|
|
882
|
-
:param use_multiview: Use Multi-View
|
|
883
|
-
:type use_multiview: typing.Optional[typing.Union[bool, typing.Any]]
|
|
884
|
-
:param display_type: Display Type * ``DEFAULT`` Default -- Automatically determine display type for files. * ``LIST_VERTICAL`` Short List -- Display files as short list. * ``LIST_HORIZONTAL`` Long List -- Display files as a detailed list. * ``THUMBNAIL`` Thumbnails -- Display files as thumbnails.
|
|
885
|
-
:type display_type: typing.Optional[typing.Any]
|
|
886
|
-
:param sort_method: File sorting mode
|
|
887
|
-
:type sort_method: typing.Optional[typing.Union[str, int, typing.Any]]
|
|
888
|
-
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
889
|
-
:type frame_start: typing.Optional[typing.Any]
|
|
890
|
-
:param channel: Channel, Channel to place this strip into
|
|
891
|
-
:type channel: typing.Optional[typing.Any]
|
|
892
|
-
:param replace_sel: Replace Selection, Replace the current selection
|
|
893
|
-
:type replace_sel: typing.Optional[typing.Union[bool, typing.Any]]
|
|
894
|
-
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
895
|
-
:type overlap: typing.Optional[typing.Union[bool, typing.Any]]
|
|
896
|
-
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
897
|
-
:type overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]]
|
|
898
|
-
:param fit_method: Fit Method, Scale fit method * ``FIT`` Scale to Fit -- Scale image to fit within the canvas. * ``FILL`` Scale to Fill -- Scale image to completely fill the canvas. * ``STRETCH`` Stretch to Fill -- Stretch image to fill the canvas. * ``ORIGINAL`` Use Original Size -- Keep image at its original size.
|
|
899
|
-
:type fit_method: typing.Optional[typing.Any]
|
|
900
|
-
:param set_view_transform: Set View Transform, Set appropriate view transform based on media color space
|
|
901
|
-
:type set_view_transform: typing.Optional[typing.Union[bool, typing.Any]]
|
|
902
|
-
:param adjust_playback_rate: Adjust Playback Rate, Play at normal speed regardless of scene FPS
|
|
903
|
-
:type adjust_playback_rate: typing.Optional[typing.Union[bool, typing.Any]]
|
|
904
|
-
:param sound: Sound, Load sound with the movie
|
|
905
|
-
:type sound: typing.Optional[typing.Union[bool, typing.Any]]
|
|
906
|
-
:param use_framerate: Use Movie Framerate, Use framerate from the movie to keep sound and video in sync
|
|
907
|
-
:type use_framerate: typing.Optional[typing.Union[bool, typing.Any]]
|
|
908
|
-
'''
|
|
909
|
-
|
|
910
|
-
pass
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
def movieclip_strip_add(
|
|
914
|
-
override_context: typing.Optional[
|
|
915
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
916
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
917
|
-
undo: typing.Optional[bool] = None,
|
|
918
|
-
*,
|
|
919
|
-
frame_start: typing.Optional[typing.Any] = 0,
|
|
920
|
-
channel: typing.Optional[typing.Any] = 1,
|
|
921
|
-
replace_sel: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
922
|
-
overlap: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
923
|
-
overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.
|
|
924
|
-
Any]] = False,
|
|
925
|
-
clip: typing.Optional[typing.Union[str, int, typing.Any]] = ''):
|
|
926
|
-
''' Add a movieclip strip to the sequencer
|
|
927
|
-
|
|
928
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
929
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
930
|
-
:type undo: typing.Optional[bool]
|
|
931
|
-
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
932
|
-
:type frame_start: typing.Optional[typing.Any]
|
|
933
|
-
:param channel: Channel, Channel to place this strip into
|
|
934
|
-
:type channel: typing.Optional[typing.Any]
|
|
935
|
-
:param replace_sel: Replace Selection, Replace the current selection
|
|
936
|
-
:type replace_sel: typing.Optional[typing.Union[bool, typing.Any]]
|
|
937
|
-
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
938
|
-
:type overlap: typing.Optional[typing.Union[bool, typing.Any]]
|
|
939
|
-
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
940
|
-
:type overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]]
|
|
941
|
-
:param clip: Clip
|
|
942
|
-
:type clip: typing.Optional[typing.Union[str, int, typing.Any]]
|
|
943
|
-
'''
|
|
944
|
-
|
|
945
|
-
pass
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
def mute(override_context: typing.Optional[
|
|
949
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
950
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
951
|
-
undo: typing.Optional[bool] = None,
|
|
952
|
-
*,
|
|
953
|
-
unselected: typing.Optional[typing.Union[bool, typing.Any]] = False):
|
|
954
|
-
''' Mute (un)selected strips
|
|
955
|
-
|
|
956
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
957
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
958
|
-
:type undo: typing.Optional[bool]
|
|
959
|
-
:param unselected: Unselected, Mute unselected rather than selected strips
|
|
960
|
-
:type unselected: typing.Optional[typing.Union[bool, typing.Any]]
|
|
961
|
-
'''
|
|
962
|
-
|
|
963
|
-
pass
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
def offset_clear(
|
|
967
|
-
override_context: typing.Optional[
|
|
968
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
969
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
970
|
-
undo: typing.Optional[bool] = None):
|
|
971
|
-
''' Clear strip offsets from the start and end frames
|
|
972
|
-
|
|
973
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
974
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
975
|
-
:type undo: typing.Optional[bool]
|
|
976
|
-
'''
|
|
977
|
-
|
|
978
|
-
pass
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
def paste(
|
|
982
|
-
override_context: typing.Optional[
|
|
983
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
984
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
985
|
-
undo: typing.Optional[bool] = None,
|
|
986
|
-
*,
|
|
987
|
-
keep_offset: typing.Optional[typing.Union[bool, typing.Any]] = False):
|
|
988
|
-
''' Paste strips from the internal clipboard
|
|
989
|
-
|
|
990
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
991
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
992
|
-
:type undo: typing.Optional[bool]
|
|
993
|
-
:param keep_offset: Keep Offset, Keep strip offset relative to the current frame when pasting
|
|
994
|
-
:type keep_offset: typing.Optional[typing.Union[bool, typing.Any]]
|
|
995
|
-
'''
|
|
996
|
-
|
|
997
|
-
pass
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
def reassign_inputs(
|
|
1001
|
-
override_context: typing.Optional[
|
|
1002
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1003
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1004
|
-
undo: typing.Optional[bool] = None):
|
|
1005
|
-
''' Reassign the inputs for the effect strip
|
|
1006
|
-
|
|
1007
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1008
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1009
|
-
:type undo: typing.Optional[bool]
|
|
1010
|
-
'''
|
|
1011
|
-
|
|
1012
|
-
pass
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
def rebuild_proxy(
|
|
1016
|
-
override_context: typing.Optional[
|
|
1017
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1018
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1019
|
-
undo: typing.Optional[bool] = None):
|
|
1020
|
-
''' Rebuild all selected proxies and timecode indices using the job system
|
|
1021
|
-
|
|
1022
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1023
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1024
|
-
:type undo: typing.Optional[bool]
|
|
1025
|
-
'''
|
|
1026
|
-
|
|
1027
|
-
pass
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
def refresh_all(
|
|
1031
|
-
override_context: typing.Optional[
|
|
1032
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1033
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1034
|
-
undo: typing.Optional[bool] = None):
|
|
1035
|
-
''' Refresh the sequencer editor
|
|
1036
|
-
|
|
1037
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1038
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1039
|
-
:type undo: typing.Optional[bool]
|
|
1040
|
-
'''
|
|
1041
|
-
|
|
1042
|
-
pass
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
def reload(override_context: typing.Optional[
|
|
1046
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1047
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1048
|
-
undo: typing.Optional[bool] = None,
|
|
1049
|
-
*,
|
|
1050
|
-
adjust_length: typing.Optional[typing.Union[bool, typing.
|
|
1051
|
-
Any]] = False):
|
|
1052
|
-
''' Reload strips in the sequencer
|
|
1053
|
-
|
|
1054
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1055
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1056
|
-
:type undo: typing.Optional[bool]
|
|
1057
|
-
:param adjust_length: Adjust Length, Adjust length of strips to their data length
|
|
1058
|
-
:type adjust_length: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1059
|
-
'''
|
|
1060
|
-
|
|
1061
|
-
pass
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
def rename_channel(
|
|
1065
|
-
override_context: typing.Optional[
|
|
1066
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1067
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1068
|
-
undo: typing.Optional[bool] = None):
|
|
1069
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.
|
|
1070
|
-
|
|
1071
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1072
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1073
|
-
:type undo: typing.Optional[bool]
|
|
1074
|
-
'''
|
|
1075
|
-
|
|
1076
|
-
pass
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
def rendersize(
|
|
1080
|
-
override_context: typing.Optional[
|
|
1081
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1082
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1083
|
-
undo: typing.Optional[bool] = None):
|
|
1084
|
-
''' Set render size and aspect from active sequence
|
|
1085
|
-
|
|
1086
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1087
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1088
|
-
:type undo: typing.Optional[bool]
|
|
1089
|
-
'''
|
|
1090
|
-
|
|
1091
|
-
pass
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
def retiming_freeze_frame_add(
|
|
1095
|
-
override_context: typing.Optional[
|
|
1096
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1097
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1098
|
-
undo: typing.Optional[bool] = None,
|
|
1099
|
-
*,
|
|
1100
|
-
duration: typing.Optional[typing.Any] = 0):
|
|
1101
|
-
''' Add freeze frame
|
|
1102
|
-
|
|
1103
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1104
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1105
|
-
:type undo: typing.Optional[bool]
|
|
1106
|
-
:param duration: Duration, Duration of freeze frame segment
|
|
1107
|
-
:type duration: typing.Optional[typing.Any]
|
|
1108
|
-
'''
|
|
1109
|
-
|
|
1110
|
-
pass
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
def retiming_key_add(
|
|
1114
|
-
override_context: typing.Optional[
|
|
1115
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1116
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1117
|
-
undo: typing.Optional[bool] = None,
|
|
1118
|
-
*,
|
|
1119
|
-
timeline_frame: typing.Optional[typing.Any] = 0):
|
|
1120
|
-
''' Add retiming Key
|
|
1121
|
-
|
|
1122
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1123
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1124
|
-
:type undo: typing.Optional[bool]
|
|
1125
|
-
:param timeline_frame: Timeline Frame, Frame where key will be added
|
|
1126
|
-
:type timeline_frame: typing.Optional[typing.Any]
|
|
1127
|
-
'''
|
|
1128
|
-
|
|
1129
|
-
pass
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
def retiming_reset(
|
|
1133
|
-
override_context: typing.Optional[
|
|
1134
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1135
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1136
|
-
undo: typing.Optional[bool] = None):
|
|
1137
|
-
''' Reset strip retiming
|
|
1138
|
-
|
|
1139
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1140
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1141
|
-
:type undo: typing.Optional[bool]
|
|
1142
|
-
'''
|
|
1143
|
-
|
|
1144
|
-
pass
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
def retiming_segment_speed_set(
|
|
1148
|
-
override_context: typing.Optional[
|
|
1149
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1150
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1151
|
-
undo: typing.Optional[bool] = None,
|
|
1152
|
-
*,
|
|
1153
|
-
speed: typing.Optional[typing.Any] = 100.0):
|
|
1154
|
-
''' Set speed of retimed segment
|
|
1155
|
-
|
|
1156
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1157
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1158
|
-
:type undo: typing.Optional[bool]
|
|
1159
|
-
:param speed: Speed, New speed of retimed segment
|
|
1160
|
-
:type speed: typing.Optional[typing.Any]
|
|
1161
|
-
'''
|
|
1162
|
-
|
|
1163
|
-
pass
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
def retiming_show(
|
|
1167
|
-
override_context: typing.Optional[
|
|
1168
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1169
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1170
|
-
undo: typing.Optional[bool] = None):
|
|
1171
|
-
''' Show retiming keys in selected strips
|
|
1172
|
-
|
|
1173
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1174
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1175
|
-
:type undo: typing.Optional[bool]
|
|
1176
|
-
'''
|
|
1177
|
-
|
|
1178
|
-
pass
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
def retiming_transition_add(
|
|
1182
|
-
override_context: typing.Optional[
|
|
1183
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1184
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1185
|
-
undo: typing.Optional[bool] = None,
|
|
1186
|
-
*,
|
|
1187
|
-
duration: typing.Optional[typing.Any] = 0):
|
|
1188
|
-
''' Add smooth transition between 2 retimed segments
|
|
1189
|
-
|
|
1190
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1191
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1192
|
-
:type undo: typing.Optional[bool]
|
|
1193
|
-
:param duration: Duration, Duration of freeze frame segment
|
|
1194
|
-
:type duration: typing.Optional[typing.Any]
|
|
1195
|
-
'''
|
|
1196
|
-
|
|
1197
|
-
pass
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
def sample(override_context: typing.Optional[
|
|
1201
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1202
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1203
|
-
undo: typing.Optional[bool] = None,
|
|
1204
|
-
*,
|
|
1205
|
-
size: typing.Optional[typing.Any] = 1):
|
|
1206
|
-
''' Use mouse to sample color in current frame
|
|
1207
|
-
|
|
1208
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1209
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1210
|
-
:type undo: typing.Optional[bool]
|
|
1211
|
-
:param size: Sample Size
|
|
1212
|
-
:type size: typing.Optional[typing.Any]
|
|
1213
|
-
'''
|
|
1214
|
-
|
|
1215
|
-
pass
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
def scene_frame_range_update(
|
|
1219
|
-
override_context: typing.Optional[
|
|
1220
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1221
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1222
|
-
undo: typing.Optional[bool] = None):
|
|
1223
|
-
''' Update frame range of scene strip
|
|
1224
|
-
|
|
1225
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1226
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1227
|
-
:type undo: typing.Optional[bool]
|
|
1228
|
-
'''
|
|
1229
|
-
|
|
1230
|
-
pass
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
def scene_strip_add(
|
|
1234
|
-
override_context: typing.Optional[
|
|
1235
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1236
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1237
|
-
undo: typing.Optional[bool] = None,
|
|
1238
|
-
*,
|
|
1239
|
-
frame_start: typing.Optional[typing.Any] = 0,
|
|
1240
|
-
channel: typing.Optional[typing.Any] = 1,
|
|
1241
|
-
replace_sel: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
1242
|
-
overlap: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1243
|
-
overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.
|
|
1244
|
-
Any]] = False,
|
|
1245
|
-
scene: typing.Optional[typing.Union[str, int, typing.Any]] = ''):
|
|
1246
|
-
''' Add a strip to the sequencer using a Blender scene as a source
|
|
1247
|
-
|
|
1248
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1249
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1250
|
-
:type undo: typing.Optional[bool]
|
|
1251
|
-
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
1252
|
-
:type frame_start: typing.Optional[typing.Any]
|
|
1253
|
-
:param channel: Channel, Channel to place this strip into
|
|
1254
|
-
:type channel: typing.Optional[typing.Any]
|
|
1255
|
-
:param replace_sel: Replace Selection, Replace the current selection
|
|
1256
|
-
:type replace_sel: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1257
|
-
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
1258
|
-
:type overlap: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1259
|
-
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
1260
|
-
:type overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1261
|
-
:param scene: Scene
|
|
1262
|
-
:type scene: typing.Optional[typing.Union[str, int, typing.Any]]
|
|
1263
|
-
'''
|
|
1264
|
-
|
|
1265
|
-
pass
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
def scene_strip_add_new(
|
|
1269
|
-
override_context: typing.Optional[
|
|
1270
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1271
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1272
|
-
undo: typing.Optional[bool] = None,
|
|
1273
|
-
*,
|
|
1274
|
-
frame_start: typing.Optional[typing.Any] = 0,
|
|
1275
|
-
channel: typing.Optional[typing.Any] = 1,
|
|
1276
|
-
replace_sel: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
1277
|
-
overlap: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1278
|
-
overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.
|
|
1279
|
-
Any]] = False,
|
|
1280
|
-
type: typing.Optional[typing.Any] = 'NEW'):
|
|
1281
|
-
''' Create a new Strip and assign a new Scene as source
|
|
1282
|
-
|
|
1283
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1284
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1285
|
-
:type undo: typing.Optional[bool]
|
|
1286
|
-
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
1287
|
-
:type frame_start: typing.Optional[typing.Any]
|
|
1288
|
-
:param channel: Channel, Channel to place this strip into
|
|
1289
|
-
:type channel: typing.Optional[typing.Any]
|
|
1290
|
-
:param replace_sel: Replace Selection, Replace the current selection
|
|
1291
|
-
:type replace_sel: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1292
|
-
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
1293
|
-
:type overlap: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1294
|
-
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
1295
|
-
:type overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1296
|
-
:param type: Type * ``NEW`` New -- Add new Strip with a new empty Scene with default settings. * ``EMPTY`` Copy Settings -- Add a new Strip, with an empty scene, and copy settings from the current scene. * ``LINK_COPY`` Linked Copy -- Add a Strip and link in the collections from the current scene (shallow copy). * ``FULL_COPY`` Full Copy -- Add a Strip and make a full copy of the current scene.
|
|
1297
|
-
:type type: typing.Optional[typing.Any]
|
|
1298
|
-
'''
|
|
1299
|
-
|
|
1300
|
-
pass
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
def select(
|
|
1304
|
-
override_context: typing.Optional[
|
|
1305
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1306
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1307
|
-
undo: typing.Optional[bool] = None,
|
|
1308
|
-
*,
|
|
1309
|
-
wait_to_deselect_others: typing.Optional[typing.Union[bool, typing.
|
|
1310
|
-
Any]] = False,
|
|
1311
|
-
mouse_x: typing.Optional[typing.Any] = 0,
|
|
1312
|
-
mouse_y: typing.Optional[typing.Any] = 0,
|
|
1313
|
-
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1314
|
-
deselect: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1315
|
-
toggle: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1316
|
-
deselect_all: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1317
|
-
select_passthrough: typing.Optional[typing.Union[bool, typing.
|
|
1318
|
-
Any]] = False,
|
|
1319
|
-
center: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1320
|
-
linked_handle: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1321
|
-
linked_time: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1322
|
-
side_of_frame: typing.Optional[typing.Union[bool, typing.
|
|
1323
|
-
Any]] = False):
|
|
1324
|
-
''' Select a strip (last selected becomes the "active strip")
|
|
1325
|
-
|
|
1326
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1327
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1328
|
-
:type undo: typing.Optional[bool]
|
|
1329
|
-
:param wait_to_deselect_others: Wait to Deselect Others
|
|
1330
|
-
:type wait_to_deselect_others: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1331
|
-
:param mouse_x: Mouse X
|
|
1332
|
-
:type mouse_x: typing.Optional[typing.Any]
|
|
1333
|
-
:param mouse_y: Mouse Y
|
|
1334
|
-
:type mouse_y: typing.Optional[typing.Any]
|
|
1335
|
-
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
1336
|
-
:type extend: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1337
|
-
:param deselect: Deselect, Remove from selection
|
|
1338
|
-
:type deselect: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1339
|
-
:param toggle: Toggle Selection, Toggle the selection
|
|
1340
|
-
:type toggle: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1341
|
-
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
1342
|
-
:type deselect_all: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1343
|
-
:param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
|
|
1344
|
-
:type select_passthrough: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1345
|
-
:param center: Center, Use the object center when selecting, in edit mode used to extend object selection
|
|
1346
|
-
:type center: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1347
|
-
:param linked_handle: Linked Handle, Select handles next to the active strip
|
|
1348
|
-
:type linked_handle: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1349
|
-
:param linked_time: Linked Time, Select other strips at the same time
|
|
1350
|
-
:type linked_time: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1351
|
-
:param side_of_frame: Side of Frame, Select all strips on same side of the current frame as the mouse cursor
|
|
1352
|
-
:type side_of_frame: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1353
|
-
'''
|
|
1354
|
-
|
|
1355
|
-
pass
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
def select_all(
|
|
1359
|
-
override_context: typing.Optional[
|
|
1360
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1361
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1362
|
-
undo: typing.Optional[bool] = None,
|
|
1363
|
-
*,
|
|
1364
|
-
action: typing.Optional[typing.Any] = 'TOGGLE'):
|
|
1365
|
-
''' Select or deselect all strips
|
|
1366
|
-
|
|
1367
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1368
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1369
|
-
:type undo: typing.Optional[bool]
|
|
1370
|
-
:param action: Action, Selection action to execute * ``TOGGLE`` Toggle -- Toggle selection for all elements. * ``SELECT`` Select -- Select all elements. * ``DESELECT`` Deselect -- Deselect all elements. * ``INVERT`` Invert -- Invert selection of all elements.
|
|
1371
|
-
:type action: typing.Optional[typing.Any]
|
|
1372
|
-
'''
|
|
1373
|
-
|
|
1374
|
-
pass
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
def select_box(
|
|
1378
|
-
override_context: typing.Optional[
|
|
1379
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1380
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1381
|
-
undo: typing.Optional[bool] = None,
|
|
1382
|
-
*,
|
|
1383
|
-
xmin: typing.Optional[typing.Any] = 0,
|
|
1384
|
-
xmax: typing.Optional[typing.Any] = 0,
|
|
1385
|
-
ymin: typing.Optional[typing.Any] = 0,
|
|
1386
|
-
ymax: typing.Optional[typing.Any] = 0,
|
|
1387
|
-
wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
1388
|
-
mode: typing.Optional[typing.Any] = 'SET',
|
|
1389
|
-
tweak: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1390
|
-
include_handles: typing.Optional[typing.Union[bool, typing.
|
|
1391
|
-
Any]] = False):
|
|
1392
|
-
''' Select strips using box selection
|
|
1393
|
-
|
|
1394
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1395
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1396
|
-
:type undo: typing.Optional[bool]
|
|
1397
|
-
:param xmin: X Min
|
|
1398
|
-
:type xmin: typing.Optional[typing.Any]
|
|
1399
|
-
:param xmax: X Max
|
|
1400
|
-
:type xmax: typing.Optional[typing.Any]
|
|
1401
|
-
:param ymin: Y Min
|
|
1402
|
-
:type ymin: typing.Optional[typing.Any]
|
|
1403
|
-
:param ymax: Y Max
|
|
1404
|
-
:type ymax: typing.Optional[typing.Any]
|
|
1405
|
-
:param wait_for_input: Wait for Input
|
|
1406
|
-
:type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1407
|
-
:param mode: Mode * ``SET`` Set -- Set a new selection. * ``ADD`` Extend -- Extend existing selection. * ``SUB`` Subtract -- Subtract existing selection.
|
|
1408
|
-
:type mode: typing.Optional[typing.Any]
|
|
1409
|
-
:param tweak: Tweak, Operator has been activated using a click-drag event
|
|
1410
|
-
:type tweak: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1411
|
-
:param include_handles: Select Handles, Select the strips and their handles
|
|
1412
|
-
:type include_handles: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1413
|
-
'''
|
|
1414
|
-
|
|
1415
|
-
pass
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
def select_grouped(
|
|
1419
|
-
override_context: typing.Optional[
|
|
1420
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1421
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1422
|
-
undo: typing.Optional[bool] = None,
|
|
1423
|
-
*,
|
|
1424
|
-
type: typing.Optional[typing.Any] = 'TYPE',
|
|
1425
|
-
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1426
|
-
use_active_channel: typing.Optional[typing.Union[bool, typing.
|
|
1427
|
-
Any]] = False):
|
|
1428
|
-
''' Select all strips grouped by various properties
|
|
1429
|
-
|
|
1430
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1431
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1432
|
-
:type undo: typing.Optional[bool]
|
|
1433
|
-
:param type: Type * ``TYPE`` Type -- Shared strip type. * ``TYPE_BASIC`` Global Type -- All strips of same basic type (graphical or sound). * ``TYPE_EFFECT`` Effect Type -- Shared strip effect type (if active strip is not an effect one, select all non-effect strips). * ``DATA`` Data -- Shared data (scene, image, sound, etc.). * ``EFFECT`` Effect -- Shared effects. * ``EFFECT_LINK`` Effect/Linked -- Other strips affected by the active one (sharing some time, and below or effect-assigned). * ``OVERLAP`` Overlap -- Overlapping time.
|
|
1434
|
-
:type type: typing.Optional[typing.Any]
|
|
1435
|
-
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
1436
|
-
:type extend: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1437
|
-
:param use_active_channel: Same Channel, Only consider strips on the same channel as the active one
|
|
1438
|
-
:type use_active_channel: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1439
|
-
'''
|
|
1440
|
-
|
|
1441
|
-
pass
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
def select_handles(
|
|
1445
|
-
override_context: typing.Optional[
|
|
1446
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1447
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1448
|
-
undo: typing.Optional[bool] = None,
|
|
1449
|
-
*,
|
|
1450
|
-
side: typing.Optional[typing.Any] = 'BOTH'):
|
|
1451
|
-
''' Select gizmo handles on the sides of the selected strip
|
|
1452
|
-
|
|
1453
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1454
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1455
|
-
:type undo: typing.Optional[bool]
|
|
1456
|
-
:param side: Side, The side of the handle that is selected
|
|
1457
|
-
:type side: typing.Optional[typing.Any]
|
|
1458
|
-
'''
|
|
1459
|
-
|
|
1460
|
-
pass
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
def select_less(
|
|
1464
|
-
override_context: typing.Optional[
|
|
1465
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1466
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1467
|
-
undo: typing.Optional[bool] = None):
|
|
1468
|
-
''' Shrink the current selection of adjacent selected strips
|
|
1469
|
-
|
|
1470
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1471
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1472
|
-
:type undo: typing.Optional[bool]
|
|
1473
|
-
'''
|
|
1474
|
-
|
|
1475
|
-
pass
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
def select_linked(
|
|
1479
|
-
override_context: typing.Optional[
|
|
1480
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1481
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1482
|
-
undo: typing.Optional[bool] = None):
|
|
1483
|
-
''' Select all strips adjacent to the current selection
|
|
1484
|
-
|
|
1485
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1486
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1487
|
-
:type undo: typing.Optional[bool]
|
|
1488
|
-
'''
|
|
1489
|
-
|
|
1490
|
-
pass
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
def select_linked_pick(
|
|
1494
|
-
override_context: typing.Optional[
|
|
1495
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1496
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1497
|
-
undo: typing.Optional[bool] = None,
|
|
1498
|
-
*,
|
|
1499
|
-
extend: typing.Optional[typing.Union[bool, typing.Any]] = False):
|
|
1500
|
-
''' Select a chain of linked strips nearest to the mouse pointer
|
|
1501
|
-
|
|
1502
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1503
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1504
|
-
:type undo: typing.Optional[bool]
|
|
1505
|
-
:param extend: Extend, Extend the selection
|
|
1506
|
-
:type extend: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1507
|
-
'''
|
|
1508
|
-
|
|
1509
|
-
pass
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
def select_more(
|
|
1513
|
-
override_context: typing.Optional[
|
|
1514
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1515
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1516
|
-
undo: typing.Optional[bool] = None):
|
|
1517
|
-
''' Select more strips adjacent to the current selection
|
|
1518
|
-
|
|
1519
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1520
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1521
|
-
:type undo: typing.Optional[bool]
|
|
1522
|
-
'''
|
|
1523
|
-
|
|
1524
|
-
pass
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
def select_side(
|
|
1528
|
-
override_context: typing.Optional[
|
|
1529
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1530
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1531
|
-
undo: typing.Optional[bool] = None,
|
|
1532
|
-
*,
|
|
1533
|
-
side: typing.Optional[typing.Any] = 'BOTH'):
|
|
1534
|
-
''' Select strips on the nominated side of the selected strips
|
|
1535
|
-
|
|
1536
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1537
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1538
|
-
:type undo: typing.Optional[bool]
|
|
1539
|
-
:param side: Side, The side to which the selection is applied
|
|
1540
|
-
:type side: typing.Optional[typing.Any]
|
|
1541
|
-
'''
|
|
1542
|
-
|
|
1543
|
-
pass
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
def select_side_of_frame(
|
|
1547
|
-
override_context: typing.Optional[
|
|
1548
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1549
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1550
|
-
undo: typing.Optional[bool] = None,
|
|
1551
|
-
*,
|
|
1552
|
-
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1553
|
-
side: typing.Optional[typing.Any] = 'LEFT'):
|
|
1554
|
-
''' Select strips relative to the current frame
|
|
1555
|
-
|
|
1556
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1557
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1558
|
-
:type undo: typing.Optional[bool]
|
|
1559
|
-
:param extend: Extend, Extend the selection
|
|
1560
|
-
:type extend: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1561
|
-
:param side: Side * ``LEFT`` Left -- Select to the left of the current frame. * ``RIGHT`` Right -- Select to the right of the current frame. * ``CURRENT`` Current Frame -- Select intersecting with the current frame.
|
|
1562
|
-
:type side: typing.Optional[typing.Any]
|
|
1563
|
-
'''
|
|
1564
|
-
|
|
1565
|
-
pass
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
def set_range_to_strips(
|
|
1569
|
-
override_context: typing.Optional[
|
|
1570
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1571
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1572
|
-
undo: typing.Optional[bool] = None,
|
|
1573
|
-
*,
|
|
1574
|
-
preview: typing.Optional[typing.Union[bool, typing.Any]] = False):
|
|
1575
|
-
''' Set the frame range to the selected strips start and end
|
|
1576
|
-
|
|
1577
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1578
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1579
|
-
:type undo: typing.Optional[bool]
|
|
1580
|
-
:param preview: Preview, Set the preview range instead
|
|
1581
|
-
:type preview: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1582
|
-
'''
|
|
1583
|
-
|
|
1584
|
-
pass
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
def slip(override_context: typing.Optional[
|
|
1588
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1589
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1590
|
-
undo: typing.Optional[bool] = None,
|
|
1591
|
-
*,
|
|
1592
|
-
offset: typing.Optional[typing.Any] = 0):
|
|
1593
|
-
''' Slip the contents of selected strips
|
|
1594
|
-
|
|
1595
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1596
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1597
|
-
:type undo: typing.Optional[bool]
|
|
1598
|
-
:param offset: Offset, Offset to the data of the strip
|
|
1599
|
-
:type offset: typing.Optional[typing.Any]
|
|
1600
|
-
'''
|
|
1601
|
-
|
|
1602
|
-
pass
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
def snap(override_context: typing.Optional[
|
|
1606
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1607
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1608
|
-
undo: typing.Optional[bool] = None,
|
|
1609
|
-
*,
|
|
1610
|
-
frame: typing.Optional[typing.Any] = 0):
|
|
1611
|
-
''' Frame where selected strips will be snapped
|
|
1612
|
-
|
|
1613
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1614
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1615
|
-
:type undo: typing.Optional[bool]
|
|
1616
|
-
:param frame: Frame, Frame where selected strips will be snapped
|
|
1617
|
-
:type frame: typing.Optional[typing.Any]
|
|
1618
|
-
'''
|
|
1619
|
-
|
|
1620
|
-
pass
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
def sound_strip_add(
|
|
1624
|
-
override_context: typing.Optional[
|
|
1625
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1626
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1627
|
-
undo: typing.Optional[bool] = None,
|
|
1628
|
-
*,
|
|
1629
|
-
filepath: typing.Union[str, typing.Any] = "",
|
|
1630
|
-
directory: typing.Union[str, typing.Any] = "",
|
|
1631
|
-
files: typing.Optional[bpy.types.bpy_prop_collection[
|
|
1632
|
-
'bpy.types.OperatorFileListElement']] = None,
|
|
1633
|
-
check_existing: typing.Optional[typing.Union[bool, typing.
|
|
1634
|
-
Any]] = False,
|
|
1635
|
-
filter_blender: typing.Optional[typing.Union[bool, typing.
|
|
1636
|
-
Any]] = False,
|
|
1637
|
-
filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1638
|
-
filter_image: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1639
|
-
filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1640
|
-
filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1641
|
-
filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1642
|
-
filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
1643
|
-
filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1644
|
-
filter_archive: typing.Optional[typing.Union[bool, typing.
|
|
1645
|
-
Any]] = False,
|
|
1646
|
-
filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1647
|
-
filter_collada: typing.Optional[typing.Union[bool, typing.
|
|
1648
|
-
Any]] = False,
|
|
1649
|
-
filter_alembic: typing.Optional[typing.Union[bool, typing.
|
|
1650
|
-
Any]] = False,
|
|
1651
|
-
filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1652
|
-
filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1653
|
-
filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1654
|
-
filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
1655
|
-
filter_blenlib: typing.Optional[typing.Union[bool, typing.
|
|
1656
|
-
Any]] = False,
|
|
1657
|
-
filemode: typing.Optional[typing.Any] = 9,
|
|
1658
|
-
relative_path: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
1659
|
-
display_type: typing.Optional[typing.Any] = 'DEFAULT',
|
|
1660
|
-
sort_method: typing.Optional[typing.Union[str, int, typing.Any]] = '',
|
|
1661
|
-
frame_start: typing.Optional[typing.Any] = 0,
|
|
1662
|
-
channel: typing.Optional[typing.Any] = 1,
|
|
1663
|
-
replace_sel: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
1664
|
-
overlap: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1665
|
-
overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.
|
|
1666
|
-
Any]] = False,
|
|
1667
|
-
cache: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1668
|
-
mono: typing.Optional[typing.Union[bool, typing.Any]] = False):
|
|
1669
|
-
''' Add a sound strip to the sequencer
|
|
1670
|
-
|
|
1671
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1672
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1673
|
-
:type undo: typing.Optional[bool]
|
|
1674
|
-
:param filepath: File Path, Path to file
|
|
1675
|
-
:type filepath: typing.Union[str, typing.Any]
|
|
1676
|
-
:param directory: Directory, Directory of the file
|
|
1677
|
-
:type directory: typing.Union[str, typing.Any]
|
|
1678
|
-
:param files: Files
|
|
1679
|
-
:type files: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorFileListElement']]
|
|
1680
|
-
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
1681
|
-
:type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1682
|
-
:param filter_blender: Filter .blend files
|
|
1683
|
-
:type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1684
|
-
:param filter_backup: Filter .blend files
|
|
1685
|
-
:type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1686
|
-
:param filter_image: Filter image files
|
|
1687
|
-
:type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1688
|
-
:param filter_movie: Filter movie files
|
|
1689
|
-
:type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1690
|
-
:param filter_python: Filter Python files
|
|
1691
|
-
:type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1692
|
-
:param filter_font: Filter font files
|
|
1693
|
-
:type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1694
|
-
:param filter_sound: Filter sound files
|
|
1695
|
-
:type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1696
|
-
:param filter_text: Filter text files
|
|
1697
|
-
:type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1698
|
-
:param filter_archive: Filter archive files
|
|
1699
|
-
:type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1700
|
-
:param filter_btx: Filter btx files
|
|
1701
|
-
:type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1702
|
-
:param filter_collada: Filter COLLADA files
|
|
1703
|
-
:type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1704
|
-
:param filter_alembic: Filter Alembic files
|
|
1705
|
-
:type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1706
|
-
:param filter_usd: Filter USD files
|
|
1707
|
-
:type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1708
|
-
:param filter_obj: Filter OBJ files
|
|
1709
|
-
:type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1710
|
-
:param filter_volume: Filter OpenVDB volume files
|
|
1711
|
-
:type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1712
|
-
:param filter_folder: Filter folders
|
|
1713
|
-
:type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1714
|
-
:param filter_blenlib: Filter Blender IDs
|
|
1715
|
-
:type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1716
|
-
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
1717
|
-
:type filemode: typing.Optional[typing.Any]
|
|
1718
|
-
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
1719
|
-
:type relative_path: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1720
|
-
:param display_type: Display Type * ``DEFAULT`` Default -- Automatically determine display type for files. * ``LIST_VERTICAL`` Short List -- Display files as short list. * ``LIST_HORIZONTAL`` Long List -- Display files as a detailed list. * ``THUMBNAIL`` Thumbnails -- Display files as thumbnails.
|
|
1721
|
-
:type display_type: typing.Optional[typing.Any]
|
|
1722
|
-
:param sort_method: File sorting mode
|
|
1723
|
-
:type sort_method: typing.Optional[typing.Union[str, int, typing.Any]]
|
|
1724
|
-
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
1725
|
-
:type frame_start: typing.Optional[typing.Any]
|
|
1726
|
-
:param channel: Channel, Channel to place this strip into
|
|
1727
|
-
:type channel: typing.Optional[typing.Any]
|
|
1728
|
-
:param replace_sel: Replace Selection, Replace the current selection
|
|
1729
|
-
:type replace_sel: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1730
|
-
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
1731
|
-
:type overlap: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1732
|
-
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
1733
|
-
:type overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1734
|
-
:param cache: Cache, Cache the sound in memory
|
|
1735
|
-
:type cache: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1736
|
-
:param mono: Mono, Merge all the sound's channels into one
|
|
1737
|
-
:type mono: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1738
|
-
'''
|
|
1739
|
-
|
|
1740
|
-
pass
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
def split(override_context: typing.Optional[
|
|
1744
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1745
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1746
|
-
undo: typing.Optional[bool] = None,
|
|
1747
|
-
*,
|
|
1748
|
-
frame: typing.Optional[typing.Any] = 0,
|
|
1749
|
-
channel: typing.Optional[typing.Any] = 0,
|
|
1750
|
-
type: typing.Optional[typing.Any] = 'SOFT',
|
|
1751
|
-
use_cursor_position: typing.Optional[typing.Union[bool, typing.
|
|
1752
|
-
Any]] = False,
|
|
1753
|
-
side: typing.Optional[typing.Any] = 'MOUSE',
|
|
1754
|
-
ignore_selection: typing.Optional[typing.Union[bool, typing.
|
|
1755
|
-
Any]] = False):
|
|
1756
|
-
''' Split the selected strips in two
|
|
1757
|
-
|
|
1758
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1759
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1760
|
-
:type undo: typing.Optional[bool]
|
|
1761
|
-
:param frame: Frame, Frame where selected strips will be split
|
|
1762
|
-
:type frame: typing.Optional[typing.Any]
|
|
1763
|
-
:param channel: Channel, Channel in which strip will be cut
|
|
1764
|
-
:type channel: typing.Optional[typing.Any]
|
|
1765
|
-
:param type: Type, The type of split operation to perform on strips
|
|
1766
|
-
:type type: typing.Optional[typing.Any]
|
|
1767
|
-
:param use_cursor_position: Use Cursor Position, Split at position of the cursor instead of current frame
|
|
1768
|
-
:type use_cursor_position: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1769
|
-
:param side: Side, The side that remains selected after splitting
|
|
1770
|
-
:type side: typing.Optional[typing.Any]
|
|
1771
|
-
:param ignore_selection: Ignore Selection, Make cut even if strip is not selected preserving selection state after cut
|
|
1772
|
-
:type ignore_selection: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1773
|
-
'''
|
|
1774
|
-
|
|
1775
|
-
pass
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
def split_multicam(
|
|
1779
|
-
override_context: typing.Optional[
|
|
1780
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1781
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1782
|
-
undo: typing.Optional[bool] = None,
|
|
1783
|
-
*,
|
|
1784
|
-
camera: typing.Optional[typing.Any] = 1):
|
|
1785
|
-
''' Split multicam strip and select camera :File: `startup/bl_operators/sequencer.py\:83 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/sequencer.py#L83>`__
|
|
1786
|
-
|
|
1787
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1788
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1789
|
-
:type undo: typing.Optional[bool]
|
|
1790
|
-
:param camera: Camera
|
|
1791
|
-
:type camera: typing.Optional[typing.Any]
|
|
1792
|
-
'''
|
|
1793
|
-
|
|
1794
|
-
pass
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
def strip_color_tag_set(
|
|
1798
|
-
override_context: typing.Optional[
|
|
1799
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1800
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1801
|
-
undo: typing.Optional[bool] = None,
|
|
1802
|
-
*,
|
|
1803
|
-
color: typing.Optional[typing.Union[str, int]] = 'NONE'):
|
|
1804
|
-
''' Set a color tag for the selected strips
|
|
1805
|
-
|
|
1806
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1807
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1808
|
-
:type undo: typing.Optional[bool]
|
|
1809
|
-
:param color: Color Tag
|
|
1810
|
-
:type color: typing.Optional[typing.Union[str, int]]
|
|
1811
|
-
'''
|
|
1812
|
-
|
|
1813
|
-
pass
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
def strip_jump(
|
|
1817
|
-
override_context: typing.Optional[
|
|
1818
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1819
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1820
|
-
undo: typing.Optional[bool] = None,
|
|
1821
|
-
*,
|
|
1822
|
-
next: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
1823
|
-
center: typing.Optional[typing.Union[bool, typing.Any]] = True):
|
|
1824
|
-
''' Move frame to previous edit point
|
|
1825
|
-
|
|
1826
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1827
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1828
|
-
:type undo: typing.Optional[bool]
|
|
1829
|
-
:param next: Next Strip
|
|
1830
|
-
:type next: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1831
|
-
:param center: Use Strip Center
|
|
1832
|
-
:type center: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1833
|
-
'''
|
|
1834
|
-
|
|
1835
|
-
pass
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
def strip_modifier_add(
|
|
1839
|
-
override_context: typing.Optional[
|
|
1840
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1841
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1842
|
-
undo: typing.Optional[bool] = None,
|
|
1843
|
-
*,
|
|
1844
|
-
type: typing.Optional[typing.Union[str, int, typing.Any]] = ''):
|
|
1845
|
-
''' Add a modifier to the strip
|
|
1846
|
-
|
|
1847
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1848
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1849
|
-
:type undo: typing.Optional[bool]
|
|
1850
|
-
:param type: Type
|
|
1851
|
-
:type type: typing.Optional[typing.Union[str, int, typing.Any]]
|
|
1852
|
-
'''
|
|
1853
|
-
|
|
1854
|
-
pass
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
def strip_modifier_copy(
|
|
1858
|
-
override_context: typing.Optional[
|
|
1859
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1860
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1861
|
-
undo: typing.Optional[bool] = None,
|
|
1862
|
-
*,
|
|
1863
|
-
type: typing.Optional[typing.Any] = 'REPLACE'):
|
|
1864
|
-
''' Copy modifiers of the active strip to all selected strips
|
|
1865
|
-
|
|
1866
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1867
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1868
|
-
:type undo: typing.Optional[bool]
|
|
1869
|
-
:param type: Type * ``REPLACE`` Replace -- Replace modifiers in destination. * ``APPEND`` Append -- Append active modifiers to selected strips.
|
|
1870
|
-
:type type: typing.Optional[typing.Any]
|
|
1871
|
-
'''
|
|
1872
|
-
|
|
1873
|
-
pass
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
def strip_modifier_equalizer_redefine(
|
|
1877
|
-
override_context: typing.Optional[
|
|
1878
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1879
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1880
|
-
undo: typing.Optional[bool] = None,
|
|
1881
|
-
*,
|
|
1882
|
-
graphs: typing.Optional[typing.Any] = 'SIMPLE',
|
|
1883
|
-
name: typing.Union[str, typing.Any] = "Name"):
|
|
1884
|
-
''' Redefine equalizer graphs
|
|
1885
|
-
|
|
1886
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1887
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1888
|
-
:type undo: typing.Optional[bool]
|
|
1889
|
-
:param graphs: Graphs, Number of graphs * ``SIMPLE`` Unique -- One unique graphical definition. * ``DOUBLE`` Double -- Graphical definition in 2 sections. * ``TRIPLE`` Triplet -- Graphical definition in 3 sections.
|
|
1890
|
-
:type graphs: typing.Optional[typing.Any]
|
|
1891
|
-
:param name: Name, Name of modifier to redefine
|
|
1892
|
-
:type name: typing.Union[str, typing.Any]
|
|
1893
|
-
'''
|
|
1894
|
-
|
|
1895
|
-
pass
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
def strip_modifier_move(
|
|
1899
|
-
override_context: typing.Optional[
|
|
1900
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1901
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1902
|
-
undo: typing.Optional[bool] = None,
|
|
1903
|
-
*,
|
|
1904
|
-
name: typing.Union[str, typing.Any] = "Name",
|
|
1905
|
-
direction: typing.Optional[typing.Any] = 'UP'):
|
|
1906
|
-
''' Move modifier up and down in the stack
|
|
1907
|
-
|
|
1908
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1909
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1910
|
-
:type undo: typing.Optional[bool]
|
|
1911
|
-
:param name: Name, Name of modifier to remove
|
|
1912
|
-
:type name: typing.Union[str, typing.Any]
|
|
1913
|
-
:param direction: Type * ``UP`` Up -- Move modifier up in the stack. * ``DOWN`` Down -- Move modifier down in the stack.
|
|
1914
|
-
:type direction: typing.Optional[typing.Any]
|
|
1915
|
-
'''
|
|
1916
|
-
|
|
1917
|
-
pass
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
def strip_modifier_remove(
|
|
1921
|
-
override_context: typing.Optional[
|
|
1922
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1923
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1924
|
-
undo: typing.Optional[bool] = None,
|
|
1925
|
-
*,
|
|
1926
|
-
name: typing.Union[str, typing.Any] = "Name"):
|
|
1927
|
-
''' Remove a modifier from the strip
|
|
1928
|
-
|
|
1929
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1930
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1931
|
-
:type undo: typing.Optional[bool]
|
|
1932
|
-
:param name: Name, Name of modifier to remove
|
|
1933
|
-
:type name: typing.Union[str, typing.Any]
|
|
1934
|
-
'''
|
|
1935
|
-
|
|
1936
|
-
pass
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
def strip_transform_clear(
|
|
1940
|
-
override_context: typing.Optional[
|
|
1941
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1942
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1943
|
-
undo: typing.Optional[bool] = None,
|
|
1944
|
-
*,
|
|
1945
|
-
property: typing.Optional[typing.Any] = 'ALL'):
|
|
1946
|
-
''' Reset image transformation to default value
|
|
1947
|
-
|
|
1948
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1949
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1950
|
-
:type undo: typing.Optional[bool]
|
|
1951
|
-
:param property: Property, Strip transform property to be reset * ``POSITION`` Position -- Reset strip transform location. * ``SCALE`` Scale -- Reset strip transform scale. * ``ROTATION`` Rotation -- Reset strip transform rotation. * ``ALL`` All -- Reset strip transform location, scale and rotation.
|
|
1952
|
-
:type property: typing.Optional[typing.Any]
|
|
1953
|
-
'''
|
|
1954
|
-
|
|
1955
|
-
pass
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
def strip_transform_fit(
|
|
1959
|
-
override_context: typing.Optional[
|
|
1960
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1961
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1962
|
-
undo: typing.Optional[bool] = None,
|
|
1963
|
-
*,
|
|
1964
|
-
fit_method: typing.Optional[typing.Any] = 'FIT'):
|
|
1965
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.
|
|
1966
|
-
|
|
1967
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1968
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1969
|
-
:type undo: typing.Optional[bool]
|
|
1970
|
-
:param fit_method: Fit Method, Scale fit fit_method * ``FIT`` Scale to Fit -- Scale image so fits in preview. * ``FILL`` Scale to Fill -- Scale image so it fills preview completely. * ``STRETCH`` Stretch to Fill -- Stretch image so it fills preview.
|
|
1971
|
-
:type fit_method: typing.Optional[typing.Any]
|
|
1972
|
-
'''
|
|
1973
|
-
|
|
1974
|
-
pass
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
def swap(override_context: typing.Optional[
|
|
1978
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1979
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1980
|
-
undo: typing.Optional[bool] = None,
|
|
1981
|
-
*,
|
|
1982
|
-
side: typing.Optional[typing.Any] = 'RIGHT'):
|
|
1983
|
-
''' Swap active strip with strip to the right or left
|
|
1984
|
-
|
|
1985
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1986
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1987
|
-
:type undo: typing.Optional[bool]
|
|
1988
|
-
:param side: Side, Side of the strip to swap
|
|
1989
|
-
:type side: typing.Optional[typing.Any]
|
|
1990
|
-
'''
|
|
1991
|
-
|
|
1992
|
-
pass
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
def swap_data(
|
|
1996
|
-
override_context: typing.Optional[
|
|
1997
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1998
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1999
|
-
undo: typing.Optional[bool] = None):
|
|
2000
|
-
''' Swap 2 sequencer strips
|
|
2001
|
-
|
|
2002
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
2003
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2004
|
-
:type undo: typing.Optional[bool]
|
|
2005
|
-
'''
|
|
2006
|
-
|
|
2007
|
-
pass
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
def swap_inputs(
|
|
2011
|
-
override_context: typing.Optional[
|
|
2012
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
2013
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2014
|
-
undo: typing.Optional[bool] = None):
|
|
2015
|
-
''' Swap the first two inputs for the effect strip
|
|
2016
|
-
|
|
2017
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
2018
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2019
|
-
:type undo: typing.Optional[bool]
|
|
2020
|
-
'''
|
|
2021
|
-
|
|
2022
|
-
pass
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
def unlock(override_context: typing.Optional[
|
|
2026
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
2027
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2028
|
-
undo: typing.Optional[bool] = None):
|
|
2029
|
-
''' Unlock strips so they can be transformed
|
|
2030
|
-
|
|
2031
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
2032
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2033
|
-
:type undo: typing.Optional[bool]
|
|
2034
|
-
'''
|
|
2035
|
-
|
|
2036
|
-
pass
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
def unmute(
|
|
2040
|
-
override_context: typing.Optional[
|
|
2041
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
2042
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2043
|
-
undo: typing.Optional[bool] = None,
|
|
2044
|
-
*,
|
|
2045
|
-
unselected: typing.Optional[typing.Union[bool, typing.Any]] = False):
|
|
2046
|
-
''' Unmute (un)selected strips
|
|
2047
|
-
|
|
2048
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
2049
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2050
|
-
:type undo: typing.Optional[bool]
|
|
2051
|
-
:param unselected: Unselected, Unmute unselected rather than selected strips
|
|
2052
|
-
:type unselected: typing.Optional[typing.Union[bool, typing.Any]]
|
|
2053
|
-
'''
|
|
2054
|
-
|
|
2055
|
-
pass
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
def view_all(override_context: typing.Optional[
|
|
2059
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
2060
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2061
|
-
undo: typing.Optional[bool] = None):
|
|
2062
|
-
''' View all the strips in the sequencer
|
|
2063
|
-
|
|
2064
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
2065
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2066
|
-
:type undo: typing.Optional[bool]
|
|
2067
|
-
'''
|
|
2068
|
-
|
|
2069
|
-
pass
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
def view_all_preview(
|
|
2073
|
-
override_context: typing.Optional[
|
|
2074
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
2075
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2076
|
-
undo: typing.Optional[bool] = None):
|
|
2077
|
-
''' Zoom preview to fit in the area
|
|
2078
|
-
|
|
2079
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
2080
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2081
|
-
:type undo: typing.Optional[bool]
|
|
2082
|
-
'''
|
|
2083
|
-
|
|
2084
|
-
pass
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
def view_frame(
|
|
2088
|
-
override_context: typing.Optional[
|
|
2089
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
2090
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2091
|
-
undo: typing.Optional[bool] = None):
|
|
2092
|
-
''' Move the view to the current frame
|
|
2093
|
-
|
|
2094
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
2095
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2096
|
-
:type undo: typing.Optional[bool]
|
|
2097
|
-
'''
|
|
2098
|
-
|
|
2099
|
-
pass
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
def view_ghost_border(
|
|
2103
|
-
override_context: typing.Optional[
|
|
2104
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
2105
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2106
|
-
undo: typing.Optional[bool] = None,
|
|
2107
|
-
*,
|
|
2108
|
-
xmin: typing.Optional[typing.Any] = 0,
|
|
2109
|
-
xmax: typing.Optional[typing.Any] = 0,
|
|
2110
|
-
ymin: typing.Optional[typing.Any] = 0,
|
|
2111
|
-
ymax: typing.Optional[typing.Any] = 0,
|
|
2112
|
-
wait_for_input: typing.Optional[typing.Union[bool, typing.
|
|
2113
|
-
Any]] = True):
|
|
2114
|
-
''' Set the boundaries of the border used for offset view
|
|
2115
|
-
|
|
2116
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
2117
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2118
|
-
:type undo: typing.Optional[bool]
|
|
2119
|
-
:param xmin: X Min
|
|
2120
|
-
:type xmin: typing.Optional[typing.Any]
|
|
2121
|
-
:param xmax: X Max
|
|
2122
|
-
:type xmax: typing.Optional[typing.Any]
|
|
2123
|
-
:param ymin: Y Min
|
|
2124
|
-
:type ymin: typing.Optional[typing.Any]
|
|
2125
|
-
:param ymax: Y Max
|
|
2126
|
-
:type ymax: typing.Optional[typing.Any]
|
|
2127
|
-
:param wait_for_input: Wait for Input
|
|
2128
|
-
:type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
|
|
2129
|
-
'''
|
|
2130
|
-
|
|
2131
|
-
pass
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
def view_selected(
|
|
2135
|
-
override_context: typing.Optional[
|
|
2136
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
2137
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2138
|
-
undo: typing.Optional[bool] = None):
|
|
2139
|
-
''' Zoom the sequencer on the selected strips
|
|
2140
|
-
|
|
2141
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
2142
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2143
|
-
:type undo: typing.Optional[bool]
|
|
2144
|
-
'''
|
|
2145
|
-
|
|
2146
|
-
pass
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
def view_zoom_ratio(
|
|
2150
|
-
override_context: typing.Optional[
|
|
2151
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
2152
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2153
|
-
undo: typing.Optional[bool] = None,
|
|
2154
|
-
*,
|
|
2155
|
-
ratio: typing.Optional[typing.Any] = 1.0):
|
|
2156
|
-
''' Change zoom ratio of sequencer preview
|
|
2157
|
-
|
|
2158
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
2159
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2160
|
-
:type undo: typing.Optional[bool]
|
|
2161
|
-
:param ratio: 1, higher is zoomed in, lower is zoomed out
|
|
2162
|
-
:type ratio: typing.Optional[typing.Any]
|
|
2163
|
-
'''
|
|
2164
|
-
|
|
2165
|
-
pass
|