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/node.py
DELETED
|
@@ -1,1894 +0,0 @@
|
|
|
1
|
-
import sys
|
|
2
|
-
import typing
|
|
3
|
-
import bpy.types
|
|
4
|
-
import bl_operators.node
|
|
5
|
-
import bpy.ops.transform
|
|
6
|
-
|
|
7
|
-
GenericType = typing.TypeVar("GenericType")
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
def add_collection(
|
|
11
|
-
override_context: typing.Optional[
|
|
12
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
13
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
14
|
-
undo: typing.Optional[bool] = None,
|
|
15
|
-
*,
|
|
16
|
-
name: typing.Union[str, typing.Any] = "",
|
|
17
|
-
session_uuid: typing.Optional[typing.Any] = 0):
|
|
18
|
-
''' Add a collection info node to the current node editor
|
|
19
|
-
|
|
20
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
21
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
22
|
-
:type undo: typing.Optional[bool]
|
|
23
|
-
:param name: Name, Name of the data-block to use by the operator
|
|
24
|
-
:type name: typing.Union[str, typing.Any]
|
|
25
|
-
:param session_uuid: Session UUID, Session UUID of the data-block to use by the operator
|
|
26
|
-
:type session_uuid: typing.Optional[typing.Any]
|
|
27
|
-
'''
|
|
28
|
-
|
|
29
|
-
pass
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
def add_file(
|
|
33
|
-
override_context: typing.Optional[
|
|
34
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
35
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
36
|
-
undo: typing.Optional[bool] = None,
|
|
37
|
-
*,
|
|
38
|
-
filepath: typing.Union[str, typing.Any] = "",
|
|
39
|
-
hide_props_region: typing.Optional[typing.Union[bool, typing.
|
|
40
|
-
Any]] = True,
|
|
41
|
-
check_existing: typing.Optional[typing.Union[bool, typing.
|
|
42
|
-
Any]] = False,
|
|
43
|
-
filter_blender: typing.Optional[typing.Union[bool, typing.
|
|
44
|
-
Any]] = False,
|
|
45
|
-
filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
46
|
-
filter_image: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
47
|
-
filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
48
|
-
filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
49
|
-
filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
50
|
-
filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
51
|
-
filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
52
|
-
filter_archive: typing.Optional[typing.Union[bool, typing.
|
|
53
|
-
Any]] = False,
|
|
54
|
-
filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
55
|
-
filter_collada: typing.Optional[typing.Union[bool, typing.
|
|
56
|
-
Any]] = False,
|
|
57
|
-
filter_alembic: typing.Optional[typing.Union[bool, typing.
|
|
58
|
-
Any]] = False,
|
|
59
|
-
filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
60
|
-
filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
61
|
-
filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
62
|
-
filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
63
|
-
filter_blenlib: typing.Optional[typing.Union[bool, typing.
|
|
64
|
-
Any]] = False,
|
|
65
|
-
filemode: typing.Optional[typing.Any] = 9,
|
|
66
|
-
relative_path: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
67
|
-
show_multiview: typing.Optional[typing.Union[bool, typing.
|
|
68
|
-
Any]] = False,
|
|
69
|
-
use_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
70
|
-
display_type: typing.Optional[typing.Any] = 'DEFAULT',
|
|
71
|
-
sort_method: typing.Optional[typing.Union[str, int, typing.Any]] = '',
|
|
72
|
-
name: typing.Union[str, typing.Any] = "",
|
|
73
|
-
session_uuid: typing.Optional[typing.Any] = 0):
|
|
74
|
-
''' Add a file node to the current node editor
|
|
75
|
-
|
|
76
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
77
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
78
|
-
:type undo: typing.Optional[bool]
|
|
79
|
-
:param filepath: File Path, Path to file
|
|
80
|
-
:type filepath: typing.Union[str, typing.Any]
|
|
81
|
-
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
82
|
-
:type hide_props_region: typing.Optional[typing.Union[bool, typing.Any]]
|
|
83
|
-
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
84
|
-
:type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
|
|
85
|
-
:param filter_blender: Filter .blend files
|
|
86
|
-
:type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
|
|
87
|
-
:param filter_backup: Filter .blend files
|
|
88
|
-
:type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
|
|
89
|
-
:param filter_image: Filter image files
|
|
90
|
-
:type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
|
|
91
|
-
:param filter_movie: Filter movie files
|
|
92
|
-
:type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
|
|
93
|
-
:param filter_python: Filter Python files
|
|
94
|
-
:type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
|
|
95
|
-
:param filter_font: Filter font files
|
|
96
|
-
:type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
|
|
97
|
-
:param filter_sound: Filter sound files
|
|
98
|
-
:type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
|
|
99
|
-
:param filter_text: Filter text files
|
|
100
|
-
:type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
|
|
101
|
-
:param filter_archive: Filter archive files
|
|
102
|
-
:type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
|
|
103
|
-
:param filter_btx: Filter btx files
|
|
104
|
-
:type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
|
|
105
|
-
:param filter_collada: Filter COLLADA files
|
|
106
|
-
:type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
|
|
107
|
-
:param filter_alembic: Filter Alembic files
|
|
108
|
-
:type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
|
|
109
|
-
:param filter_usd: Filter USD files
|
|
110
|
-
:type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
|
|
111
|
-
:param filter_obj: Filter OBJ files
|
|
112
|
-
:type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
|
|
113
|
-
:param filter_volume: Filter OpenVDB volume files
|
|
114
|
-
:type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
|
|
115
|
-
:param filter_folder: Filter folders
|
|
116
|
-
:type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
|
|
117
|
-
:param filter_blenlib: Filter Blender IDs
|
|
118
|
-
:type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
|
|
119
|
-
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
120
|
-
:type filemode: typing.Optional[typing.Any]
|
|
121
|
-
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
122
|
-
:type relative_path: typing.Optional[typing.Union[bool, typing.Any]]
|
|
123
|
-
:param show_multiview: Enable Multi-View
|
|
124
|
-
:type show_multiview: typing.Optional[typing.Union[bool, typing.Any]]
|
|
125
|
-
:param use_multiview: Use Multi-View
|
|
126
|
-
:type use_multiview: typing.Optional[typing.Union[bool, typing.Any]]
|
|
127
|
-
: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.
|
|
128
|
-
:type display_type: typing.Optional[typing.Any]
|
|
129
|
-
:param sort_method: File sorting mode
|
|
130
|
-
:type sort_method: typing.Optional[typing.Union[str, int, typing.Any]]
|
|
131
|
-
:param name: Name, Name of the data-block to use by the operator
|
|
132
|
-
:type name: typing.Union[str, typing.Any]
|
|
133
|
-
:param session_uuid: Session UUID, Session UUID of the data-block to use by the operator
|
|
134
|
-
:type session_uuid: typing.Optional[typing.Any]
|
|
135
|
-
'''
|
|
136
|
-
|
|
137
|
-
pass
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
def add_group(
|
|
141
|
-
override_context: typing.Optional[
|
|
142
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
143
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
144
|
-
undo: typing.Optional[bool] = None,
|
|
145
|
-
*,
|
|
146
|
-
name: typing.Union[str, typing.Any] = "",
|
|
147
|
-
session_uuid: typing.Optional[typing.Any] = 0,
|
|
148
|
-
show_datablock_in_node: typing.Optional[typing.Union[bool, typing.
|
|
149
|
-
Any]] = True):
|
|
150
|
-
''' Add an existing node group to the current node editor
|
|
151
|
-
|
|
152
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
153
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
154
|
-
:type undo: typing.Optional[bool]
|
|
155
|
-
:param name: Name, Name of the data-block to use by the operator
|
|
156
|
-
:type name: typing.Union[str, typing.Any]
|
|
157
|
-
:param session_uuid: Session UUID, Session UUID of the data-block to use by the operator
|
|
158
|
-
:type session_uuid: typing.Optional[typing.Any]
|
|
159
|
-
:param show_datablock_in_node: Show the datablock selector in the node
|
|
160
|
-
:type show_datablock_in_node: typing.Optional[typing.Union[bool, typing.Any]]
|
|
161
|
-
'''
|
|
162
|
-
|
|
163
|
-
pass
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
def add_group_asset(
|
|
167
|
-
override_context: typing.Optional[
|
|
168
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
169
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
170
|
-
undo: typing.Optional[bool] = None,
|
|
171
|
-
*,
|
|
172
|
-
asset_library_type: typing.Optional[typing.Union[str, int]] = 'LOCAL',
|
|
173
|
-
asset_library_identifier: typing.Union[str, typing.Any] = "",
|
|
174
|
-
relative_asset_identifier: typing.Union[str, typing.Any] = ""):
|
|
175
|
-
''' Add a node group asset to the active node tree
|
|
176
|
-
|
|
177
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
178
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
179
|
-
:type undo: typing.Optional[bool]
|
|
180
|
-
:param asset_library_type: Asset Library Type
|
|
181
|
-
:type asset_library_type: typing.Optional[typing.Union[str, int]]
|
|
182
|
-
:param asset_library_identifier: Asset Library Identifier
|
|
183
|
-
:type asset_library_identifier: typing.Union[str, typing.Any]
|
|
184
|
-
:param relative_asset_identifier: Relative Asset Identifier
|
|
185
|
-
:type relative_asset_identifier: typing.Union[str, typing.Any]
|
|
186
|
-
'''
|
|
187
|
-
|
|
188
|
-
pass
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
def add_mask(override_context: typing.Optional[
|
|
192
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
193
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
194
|
-
undo: typing.Optional[bool] = None,
|
|
195
|
-
*,
|
|
196
|
-
name: typing.Union[str, typing.Any] = "",
|
|
197
|
-
session_uuid: typing.Optional[typing.Any] = 0):
|
|
198
|
-
''' Add a mask node to the current node editor
|
|
199
|
-
|
|
200
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
201
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
202
|
-
:type undo: typing.Optional[bool]
|
|
203
|
-
:param name: Name, Name of the data-block to use by the operator
|
|
204
|
-
:type name: typing.Union[str, typing.Any]
|
|
205
|
-
:param session_uuid: Session UUID, Session UUID of the data-block to use by the operator
|
|
206
|
-
:type session_uuid: typing.Optional[typing.Any]
|
|
207
|
-
'''
|
|
208
|
-
|
|
209
|
-
pass
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
def add_material(
|
|
213
|
-
override_context: typing.Optional[
|
|
214
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
215
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
216
|
-
undo: typing.Optional[bool] = None,
|
|
217
|
-
*,
|
|
218
|
-
name: typing.Union[str, typing.Any] = "",
|
|
219
|
-
session_uuid: typing.Optional[typing.Any] = 0):
|
|
220
|
-
''' Add a material node to the current node editor
|
|
221
|
-
|
|
222
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
223
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
224
|
-
:type undo: typing.Optional[bool]
|
|
225
|
-
:param name: Name, Name of the data-block to use by the operator
|
|
226
|
-
:type name: typing.Union[str, typing.Any]
|
|
227
|
-
:param session_uuid: Session UUID, Session UUID of the data-block to use by the operator
|
|
228
|
-
:type session_uuid: typing.Optional[typing.Any]
|
|
229
|
-
'''
|
|
230
|
-
|
|
231
|
-
pass
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
def add_node(
|
|
235
|
-
override_context: typing.Optional[
|
|
236
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
237
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
238
|
-
undo: typing.Optional[bool] = None,
|
|
239
|
-
*,
|
|
240
|
-
use_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
241
|
-
settings: typing.Optional[bpy.types.bpy_prop_collection[
|
|
242
|
-
'bl_operators.node.NodeSetting']] = None,
|
|
243
|
-
type: typing.Union[str, typing.Any] = ""):
|
|
244
|
-
''' Add a node to the active tree :File: `startup/bl_operators/node.py\:139 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L139>`__
|
|
245
|
-
|
|
246
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
247
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
248
|
-
:type undo: typing.Optional[bool]
|
|
249
|
-
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
250
|
-
:type use_transform: typing.Optional[typing.Union[bool, typing.Any]]
|
|
251
|
-
:param settings: Settings, Settings to be applied on the newly created node
|
|
252
|
-
:type settings: typing.Optional[bpy.types.bpy_prop_collection['bl_operators.node.NodeSetting']]
|
|
253
|
-
:param type: Node Type, Node type
|
|
254
|
-
:type type: typing.Union[str, typing.Any]
|
|
255
|
-
'''
|
|
256
|
-
|
|
257
|
-
pass
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
def add_object(
|
|
261
|
-
override_context: typing.Optional[
|
|
262
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
263
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
264
|
-
undo: typing.Optional[bool] = None,
|
|
265
|
-
*,
|
|
266
|
-
name: typing.Union[str, typing.Any] = "",
|
|
267
|
-
session_uuid: typing.Optional[typing.Any] = 0):
|
|
268
|
-
''' Add an object info node to the current node editor
|
|
269
|
-
|
|
270
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
271
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
272
|
-
:type undo: typing.Optional[bool]
|
|
273
|
-
:param name: Name, Name of the data-block to use by the operator
|
|
274
|
-
:type name: typing.Union[str, typing.Any]
|
|
275
|
-
:param session_uuid: Session UUID, Session UUID of the data-block to use by the operator
|
|
276
|
-
:type session_uuid: typing.Optional[typing.Any]
|
|
277
|
-
'''
|
|
278
|
-
|
|
279
|
-
pass
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
def add_repeat_zone(
|
|
283
|
-
override_context: typing.Optional[
|
|
284
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
285
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
286
|
-
undo: typing.Optional[bool] = None,
|
|
287
|
-
*,
|
|
288
|
-
use_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
289
|
-
settings: typing.Optional[bpy.types.bpy_prop_collection[
|
|
290
|
-
'bl_operators.node.NodeSetting']] = None,
|
|
291
|
-
offset: typing.Optional[typing.Any] = (150.0, 0.0)):
|
|
292
|
-
''' Add a repeat zone that allows executing nodes a dynamic number of times :File: `startup/bl_operators/node.py\:165 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L165>`__
|
|
293
|
-
|
|
294
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
295
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
296
|
-
:type undo: typing.Optional[bool]
|
|
297
|
-
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
298
|
-
:type use_transform: typing.Optional[typing.Union[bool, typing.Any]]
|
|
299
|
-
:param settings: Settings, Settings to be applied on the newly created node
|
|
300
|
-
:type settings: typing.Optional[bpy.types.bpy_prop_collection['bl_operators.node.NodeSetting']]
|
|
301
|
-
:param offset: Offset, Offset of nodes from the cursor when added
|
|
302
|
-
:type offset: typing.Optional[typing.Any]
|
|
303
|
-
'''
|
|
304
|
-
|
|
305
|
-
pass
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
def add_reroute(
|
|
309
|
-
override_context: typing.Optional[
|
|
310
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
311
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
312
|
-
undo: typing.Optional[bool] = None,
|
|
313
|
-
*,
|
|
314
|
-
path: typing.Optional[bpy.types.bpy_prop_collection[
|
|
315
|
-
'bpy.types.OperatorMousePath']] = None,
|
|
316
|
-
cursor: typing.Optional[typing.Any] = 8):
|
|
317
|
-
''' Add a reroute node
|
|
318
|
-
|
|
319
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
320
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
321
|
-
:type undo: typing.Optional[bool]
|
|
322
|
-
:param path: Path
|
|
323
|
-
:type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
|
|
324
|
-
:param cursor: Cursor
|
|
325
|
-
:type cursor: typing.Optional[typing.Any]
|
|
326
|
-
'''
|
|
327
|
-
|
|
328
|
-
pass
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
def add_simulation_zone(
|
|
332
|
-
override_context: typing.Optional[
|
|
333
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
334
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
335
|
-
undo: typing.Optional[bool] = None,
|
|
336
|
-
*,
|
|
337
|
-
use_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
338
|
-
settings: typing.Optional[bpy.types.bpy_prop_collection[
|
|
339
|
-
'bl_operators.node.NodeSetting']] = None,
|
|
340
|
-
offset: typing.Optional[typing.Any] = (150.0, 0.0)):
|
|
341
|
-
''' Add simulation zone input and output nodes to the active tree :File: `startup/bl_operators/node.py\:165 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L165>`__
|
|
342
|
-
|
|
343
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
344
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
345
|
-
:type undo: typing.Optional[bool]
|
|
346
|
-
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
347
|
-
:type use_transform: typing.Optional[typing.Union[bool, typing.Any]]
|
|
348
|
-
:param settings: Settings, Settings to be applied on the newly created node
|
|
349
|
-
:type settings: typing.Optional[bpy.types.bpy_prop_collection['bl_operators.node.NodeSetting']]
|
|
350
|
-
:param offset: Offset, Offset of nodes from the cursor when added
|
|
351
|
-
:type offset: typing.Optional[typing.Any]
|
|
352
|
-
'''
|
|
353
|
-
|
|
354
|
-
pass
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
def attach(override_context: typing.Optional[
|
|
358
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
359
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
360
|
-
undo: typing.Optional[bool] = None):
|
|
361
|
-
''' Attach active node to a frame
|
|
362
|
-
|
|
363
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
364
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
365
|
-
:type undo: typing.Optional[bool]
|
|
366
|
-
'''
|
|
367
|
-
|
|
368
|
-
pass
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
def backimage_fit(
|
|
372
|
-
override_context: typing.Optional[
|
|
373
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
374
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
375
|
-
undo: typing.Optional[bool] = None):
|
|
376
|
-
''' Fit the background image to the view
|
|
377
|
-
|
|
378
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
379
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
380
|
-
:type undo: typing.Optional[bool]
|
|
381
|
-
'''
|
|
382
|
-
|
|
383
|
-
pass
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
def backimage_move(
|
|
387
|
-
override_context: typing.Optional[
|
|
388
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
389
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
390
|
-
undo: typing.Optional[bool] = None):
|
|
391
|
-
''' Move node backdrop
|
|
392
|
-
|
|
393
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
394
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
395
|
-
:type undo: typing.Optional[bool]
|
|
396
|
-
'''
|
|
397
|
-
|
|
398
|
-
pass
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
def backimage_sample(
|
|
402
|
-
override_context: typing.Optional[
|
|
403
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
404
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
405
|
-
undo: typing.Optional[bool] = None):
|
|
406
|
-
''' Use mouse to sample background image
|
|
407
|
-
|
|
408
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
409
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
410
|
-
:type undo: typing.Optional[bool]
|
|
411
|
-
'''
|
|
412
|
-
|
|
413
|
-
pass
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
def backimage_zoom(
|
|
417
|
-
override_context: typing.Optional[
|
|
418
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
419
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
420
|
-
undo: typing.Optional[bool] = None,
|
|
421
|
-
*,
|
|
422
|
-
factor: typing.Optional[typing.Any] = 1.2):
|
|
423
|
-
''' Zoom in/out the background image
|
|
424
|
-
|
|
425
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
426
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
427
|
-
:type undo: typing.Optional[bool]
|
|
428
|
-
:param factor: Factor
|
|
429
|
-
:type factor: typing.Optional[typing.Any]
|
|
430
|
-
'''
|
|
431
|
-
|
|
432
|
-
pass
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
def clear_viewer_border(
|
|
436
|
-
override_context: typing.Optional[
|
|
437
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
438
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
439
|
-
undo: typing.Optional[bool] = None):
|
|
440
|
-
''' Clear the boundaries for viewer operations
|
|
441
|
-
|
|
442
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
443
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
444
|
-
:type undo: typing.Optional[bool]
|
|
445
|
-
'''
|
|
446
|
-
|
|
447
|
-
pass
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
def clipboard_copy(
|
|
451
|
-
override_context: typing.Optional[
|
|
452
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
453
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
454
|
-
undo: typing.Optional[bool] = None):
|
|
455
|
-
''' Copy the selected nodes to the internal clipboard
|
|
456
|
-
|
|
457
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
458
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
459
|
-
:type undo: typing.Optional[bool]
|
|
460
|
-
'''
|
|
461
|
-
|
|
462
|
-
pass
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
def clipboard_paste(
|
|
466
|
-
override_context: typing.Optional[
|
|
467
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
468
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
469
|
-
undo: typing.Optional[bool] = None,
|
|
470
|
-
*,
|
|
471
|
-
offset: typing.Optional[typing.Any] = (0.0, 0.0)):
|
|
472
|
-
''' Paste nodes from the internal clipboard to the active node tree
|
|
473
|
-
|
|
474
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
475
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
476
|
-
:type undo: typing.Optional[bool]
|
|
477
|
-
:param offset: Location, The 2D view location for the center of the new nodes, or unchanged if not set
|
|
478
|
-
:type offset: typing.Optional[typing.Any]
|
|
479
|
-
'''
|
|
480
|
-
|
|
481
|
-
pass
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
def collapse_hide_unused_toggle(
|
|
485
|
-
override_context: typing.Optional[
|
|
486
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
487
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
488
|
-
undo: typing.Optional[bool] = None):
|
|
489
|
-
''' Toggle collapsed nodes and hide unused sockets :File: `startup/bl_operators/node.py\:223 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L223>`__
|
|
490
|
-
|
|
491
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
492
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
493
|
-
:type undo: typing.Optional[bool]
|
|
494
|
-
'''
|
|
495
|
-
|
|
496
|
-
pass
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
def cryptomatte_layer_add(
|
|
500
|
-
override_context: typing.Optional[
|
|
501
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
502
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
503
|
-
undo: typing.Optional[bool] = None):
|
|
504
|
-
''' Add a new input layer to a Cryptomatte node
|
|
505
|
-
|
|
506
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
507
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
508
|
-
:type undo: typing.Optional[bool]
|
|
509
|
-
'''
|
|
510
|
-
|
|
511
|
-
pass
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
def cryptomatte_layer_remove(
|
|
515
|
-
override_context: typing.Optional[
|
|
516
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
517
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
518
|
-
undo: typing.Optional[bool] = None):
|
|
519
|
-
''' Remove layer from a Cryptomatte node
|
|
520
|
-
|
|
521
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
522
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
523
|
-
:type undo: typing.Optional[bool]
|
|
524
|
-
'''
|
|
525
|
-
|
|
526
|
-
pass
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
def deactivate_viewer(
|
|
530
|
-
override_context: typing.Optional[
|
|
531
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
532
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
533
|
-
undo: typing.Optional[bool] = None):
|
|
534
|
-
''' Deactivate selected viewer node in geometry nodes
|
|
535
|
-
|
|
536
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
537
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
538
|
-
:type undo: typing.Optional[bool]
|
|
539
|
-
'''
|
|
540
|
-
|
|
541
|
-
pass
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
def delete(override_context: typing.Optional[
|
|
545
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
546
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
547
|
-
undo: typing.Optional[bool] = None):
|
|
548
|
-
''' Remove selected nodes
|
|
549
|
-
|
|
550
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
551
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
552
|
-
:type undo: typing.Optional[bool]
|
|
553
|
-
'''
|
|
554
|
-
|
|
555
|
-
pass
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
def delete_reconnect(
|
|
559
|
-
override_context: typing.Optional[
|
|
560
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
561
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
562
|
-
undo: typing.Optional[bool] = None):
|
|
563
|
-
''' Remove nodes and reconnect nodes as if deletion was muted
|
|
564
|
-
|
|
565
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
566
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
567
|
-
:type undo: typing.Optional[bool]
|
|
568
|
-
'''
|
|
569
|
-
|
|
570
|
-
pass
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
def detach(override_context: typing.Optional[
|
|
574
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
575
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
576
|
-
undo: typing.Optional[bool] = None):
|
|
577
|
-
''' Detach selected nodes from parents
|
|
578
|
-
|
|
579
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
580
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
581
|
-
:type undo: typing.Optional[bool]
|
|
582
|
-
'''
|
|
583
|
-
|
|
584
|
-
pass
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
def detach_translate_attach(
|
|
588
|
-
override_context: typing.Optional[
|
|
589
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
590
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
591
|
-
undo: typing.Optional[bool] = None,
|
|
592
|
-
*,
|
|
593
|
-
NODE_OT_detach: typing.Optional['detach'] = None,
|
|
594
|
-
TRANSFORM_OT_translate: typing.
|
|
595
|
-
Optional['bpy.ops.transform.translate'] = None,
|
|
596
|
-
NODE_OT_attach: typing.Optional['attach'] = None):
|
|
597
|
-
''' Detach nodes, move and attach to frame
|
|
598
|
-
|
|
599
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
600
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
601
|
-
:type undo: typing.Optional[bool]
|
|
602
|
-
:param NODE_OT_detach: Detach Nodes, Detach selected nodes from parents
|
|
603
|
-
:type NODE_OT_detach: typing.Optional['detach']
|
|
604
|
-
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
605
|
-
:type TRANSFORM_OT_translate: typing.Optional['bpy.ops.transform.translate']
|
|
606
|
-
:param NODE_OT_attach: Attach Nodes, Attach active node to a frame
|
|
607
|
-
:type NODE_OT_attach: typing.Optional['attach']
|
|
608
|
-
'''
|
|
609
|
-
|
|
610
|
-
pass
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
def duplicate(
|
|
614
|
-
override_context: typing.Optional[
|
|
615
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
616
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
617
|
-
undo: typing.Optional[bool] = None,
|
|
618
|
-
*,
|
|
619
|
-
keep_inputs: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
620
|
-
linked: typing.Optional[typing.Union[bool, typing.Any]] = True):
|
|
621
|
-
''' Duplicate selected nodes
|
|
622
|
-
|
|
623
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
624
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
625
|
-
:type undo: typing.Optional[bool]
|
|
626
|
-
:param keep_inputs: Keep Inputs, Keep the input links to duplicated nodes
|
|
627
|
-
:type keep_inputs: typing.Optional[typing.Union[bool, typing.Any]]
|
|
628
|
-
:param linked: Linked, Duplicate node but not node trees, linking to the original data
|
|
629
|
-
:type linked: typing.Optional[typing.Union[bool, typing.Any]]
|
|
630
|
-
'''
|
|
631
|
-
|
|
632
|
-
pass
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
def duplicate_move(
|
|
636
|
-
override_context: typing.Optional[
|
|
637
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
638
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
639
|
-
undo: typing.Optional[bool] = None,
|
|
640
|
-
*,
|
|
641
|
-
NODE_OT_duplicate: typing.Optional['duplicate'] = None,
|
|
642
|
-
NODE_OT_translate_attach: typing.Optional['translate_attach'] = None):
|
|
643
|
-
''' Duplicate selected nodes and move them
|
|
644
|
-
|
|
645
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
646
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
647
|
-
:type undo: typing.Optional[bool]
|
|
648
|
-
:param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
|
|
649
|
-
:type NODE_OT_duplicate: typing.Optional['duplicate']
|
|
650
|
-
:param NODE_OT_translate_attach: Move and Attach, Move nodes and attach to frame
|
|
651
|
-
:type NODE_OT_translate_attach: typing.Optional['translate_attach']
|
|
652
|
-
'''
|
|
653
|
-
|
|
654
|
-
pass
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
def duplicate_move_keep_inputs(
|
|
658
|
-
override_context: typing.Optional[
|
|
659
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
660
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
661
|
-
undo: typing.Optional[bool] = None,
|
|
662
|
-
*,
|
|
663
|
-
NODE_OT_duplicate: typing.Optional['duplicate'] = None,
|
|
664
|
-
NODE_OT_translate_attach: typing.Optional['translate_attach'] = None):
|
|
665
|
-
''' Duplicate selected nodes keeping input links and move them
|
|
666
|
-
|
|
667
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
668
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
669
|
-
:type undo: typing.Optional[bool]
|
|
670
|
-
:param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
|
|
671
|
-
:type NODE_OT_duplicate: typing.Optional['duplicate']
|
|
672
|
-
:param NODE_OT_translate_attach: Move and Attach, Move nodes and attach to frame
|
|
673
|
-
:type NODE_OT_translate_attach: typing.Optional['translate_attach']
|
|
674
|
-
'''
|
|
675
|
-
|
|
676
|
-
pass
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
def duplicate_move_linked(
|
|
680
|
-
override_context: typing.Optional[
|
|
681
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
682
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
683
|
-
undo: typing.Optional[bool] = None,
|
|
684
|
-
*,
|
|
685
|
-
NODE_OT_duplicate: typing.Optional['duplicate'] = None,
|
|
686
|
-
NODE_OT_translate_attach: typing.Optional['translate_attach'] = None):
|
|
687
|
-
''' Duplicate selected nodes, but not their node trees, and move them
|
|
688
|
-
|
|
689
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
690
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
691
|
-
:type undo: typing.Optional[bool]
|
|
692
|
-
:param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
|
|
693
|
-
:type NODE_OT_duplicate: typing.Optional['duplicate']
|
|
694
|
-
:param NODE_OT_translate_attach: Move and Attach, Move nodes and attach to frame
|
|
695
|
-
:type NODE_OT_translate_attach: typing.Optional['translate_attach']
|
|
696
|
-
'''
|
|
697
|
-
|
|
698
|
-
pass
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
def find_node(
|
|
702
|
-
override_context: typing.Optional[
|
|
703
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
704
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
705
|
-
undo: typing.Optional[bool] = None):
|
|
706
|
-
''' Search for a node by name and focus and select it
|
|
707
|
-
|
|
708
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
709
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
710
|
-
:type undo: typing.Optional[bool]
|
|
711
|
-
'''
|
|
712
|
-
|
|
713
|
-
pass
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
def gltf_settings_node_operator(
|
|
717
|
-
override_context: typing.Optional[
|
|
718
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
719
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
720
|
-
undo: typing.Optional[bool] = None):
|
|
721
|
-
''' Add a node to the active tree for glTF export :File: `addons/io_scene_gltf2/blender/com/gltf2_blender_ui.py\:33 <https://projects.blender.org/blender/blender-addons/addons/io_scene_gltf2/blender/com/gltf2_blender_ui.py#L33>`__
|
|
722
|
-
|
|
723
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
724
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
725
|
-
:type undo: typing.Optional[bool]
|
|
726
|
-
'''
|
|
727
|
-
|
|
728
|
-
pass
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
def group_edit(
|
|
732
|
-
override_context: typing.Optional[
|
|
733
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
734
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
735
|
-
undo: typing.Optional[bool] = None,
|
|
736
|
-
*,
|
|
737
|
-
exit: typing.Optional[typing.Union[bool, typing.Any]] = False):
|
|
738
|
-
''' Edit node group
|
|
739
|
-
|
|
740
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
741
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
742
|
-
:type undo: typing.Optional[bool]
|
|
743
|
-
:param exit: Exit
|
|
744
|
-
:type exit: typing.Optional[typing.Union[bool, typing.Any]]
|
|
745
|
-
'''
|
|
746
|
-
|
|
747
|
-
pass
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
def group_insert(
|
|
751
|
-
override_context: typing.Optional[
|
|
752
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
753
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
754
|
-
undo: typing.Optional[bool] = None):
|
|
755
|
-
''' Insert selected nodes into a node group
|
|
756
|
-
|
|
757
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
758
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
759
|
-
:type undo: typing.Optional[bool]
|
|
760
|
-
'''
|
|
761
|
-
|
|
762
|
-
pass
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
def group_make(
|
|
766
|
-
override_context: typing.Optional[
|
|
767
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
768
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
769
|
-
undo: typing.Optional[bool] = None):
|
|
770
|
-
''' Make group from selected nodes
|
|
771
|
-
|
|
772
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
773
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
774
|
-
:type undo: typing.Optional[bool]
|
|
775
|
-
'''
|
|
776
|
-
|
|
777
|
-
pass
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
def group_separate(
|
|
781
|
-
override_context: typing.Optional[
|
|
782
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
783
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
784
|
-
undo: typing.Optional[bool] = None,
|
|
785
|
-
*,
|
|
786
|
-
type: typing.Optional[typing.Any] = 'COPY'):
|
|
787
|
-
''' Separate selected nodes from the node group
|
|
788
|
-
|
|
789
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
790
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
791
|
-
:type undo: typing.Optional[bool]
|
|
792
|
-
:param type: Type * ``COPY`` Copy -- Copy to parent node tree, keep group intact. * ``MOVE`` Move -- Move to parent node tree, remove from group.
|
|
793
|
-
:type type: typing.Optional[typing.Any]
|
|
794
|
-
'''
|
|
795
|
-
|
|
796
|
-
pass
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
def group_ungroup(
|
|
800
|
-
override_context: typing.Optional[
|
|
801
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
802
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
803
|
-
undo: typing.Optional[bool] = None):
|
|
804
|
-
''' Ungroup selected nodes
|
|
805
|
-
|
|
806
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
807
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
808
|
-
:type undo: typing.Optional[bool]
|
|
809
|
-
'''
|
|
810
|
-
|
|
811
|
-
pass
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
def hide_socket_toggle(
|
|
815
|
-
override_context: typing.Optional[
|
|
816
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
817
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
818
|
-
undo: typing.Optional[bool] = None):
|
|
819
|
-
''' Toggle unused node socket display
|
|
820
|
-
|
|
821
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
822
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
823
|
-
:type undo: typing.Optional[bool]
|
|
824
|
-
'''
|
|
825
|
-
|
|
826
|
-
pass
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
def hide_toggle(
|
|
830
|
-
override_context: typing.Optional[
|
|
831
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
832
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
833
|
-
undo: typing.Optional[bool] = None):
|
|
834
|
-
''' Toggle hiding of selected nodes
|
|
835
|
-
|
|
836
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
837
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
838
|
-
:type undo: typing.Optional[bool]
|
|
839
|
-
'''
|
|
840
|
-
|
|
841
|
-
pass
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
def index_switch_item_add(
|
|
845
|
-
override_context: typing.Optional[
|
|
846
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
847
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
848
|
-
undo: typing.Optional[bool] = None):
|
|
849
|
-
''' Add an item to the index switch :File: `startup/bl_operators/geometry_nodes.py\:484 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L484>`__
|
|
850
|
-
|
|
851
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
852
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
853
|
-
:type undo: typing.Optional[bool]
|
|
854
|
-
'''
|
|
855
|
-
|
|
856
|
-
pass
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
def index_switch_item_remove(
|
|
860
|
-
override_context: typing.Optional[
|
|
861
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
862
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
863
|
-
undo: typing.Optional[bool] = None,
|
|
864
|
-
*,
|
|
865
|
-
index: typing.Optional[typing.Any] = 0):
|
|
866
|
-
''' Remove an item from the index switch :File: `startup/bl_operators/geometry_nodes.py\:505 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L505>`__
|
|
867
|
-
|
|
868
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
869
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
870
|
-
:type undo: typing.Optional[bool]
|
|
871
|
-
:param index: Index, Index of item to remove
|
|
872
|
-
:type index: typing.Optional[typing.Any]
|
|
873
|
-
'''
|
|
874
|
-
|
|
875
|
-
pass
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
def insert_offset(
|
|
879
|
-
override_context: typing.Optional[
|
|
880
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
881
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
882
|
-
undo: typing.Optional[bool] = None):
|
|
883
|
-
''' Automatically offset nodes on insertion
|
|
884
|
-
|
|
885
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
886
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
887
|
-
:type undo: typing.Optional[bool]
|
|
888
|
-
'''
|
|
889
|
-
|
|
890
|
-
pass
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
def interface_item_duplicate(
|
|
894
|
-
override_context: typing.Optional[
|
|
895
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
896
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
897
|
-
undo: typing.Optional[bool] = None):
|
|
898
|
-
''' Add a copy of the active item to the interface :File: `startup/bl_operators/node.py\:354 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L354>`__
|
|
899
|
-
|
|
900
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
901
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
902
|
-
:type undo: typing.Optional[bool]
|
|
903
|
-
'''
|
|
904
|
-
|
|
905
|
-
pass
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
def interface_item_new(
|
|
909
|
-
override_context: typing.Optional[
|
|
910
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
911
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
912
|
-
undo: typing.Optional[bool] = None,
|
|
913
|
-
*,
|
|
914
|
-
item_type: typing.Optional[typing.Any] = 'INPUT'):
|
|
915
|
-
''' Add a new item to the interface :File: `startup/bl_operators/node.py\:309 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L309>`__
|
|
916
|
-
|
|
917
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
918
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
919
|
-
:type undo: typing.Optional[bool]
|
|
920
|
-
:param item_type: Item Type, Type of the item to create
|
|
921
|
-
:type item_type: typing.Optional[typing.Any]
|
|
922
|
-
'''
|
|
923
|
-
|
|
924
|
-
pass
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
def interface_item_remove(
|
|
928
|
-
override_context: typing.Optional[
|
|
929
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
930
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
931
|
-
undo: typing.Optional[bool] = None):
|
|
932
|
-
''' Remove active item from the interface :File: `startup/bl_operators/node.py\:373 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L373>`__
|
|
933
|
-
|
|
934
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
935
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
936
|
-
:type undo: typing.Optional[bool]
|
|
937
|
-
'''
|
|
938
|
-
|
|
939
|
-
pass
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
def join(override_context: typing.Optional[
|
|
943
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
944
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
945
|
-
undo: typing.Optional[bool] = None):
|
|
946
|
-
''' Attach selected nodes to a new common frame
|
|
947
|
-
|
|
948
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
949
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
950
|
-
:type undo: typing.Optional[bool]
|
|
951
|
-
'''
|
|
952
|
-
|
|
953
|
-
pass
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
def link(override_context: typing.Optional[
|
|
957
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
958
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
959
|
-
undo: typing.Optional[bool] = None,
|
|
960
|
-
*,
|
|
961
|
-
detach: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
962
|
-
drag_start: typing.Optional[typing.Any] = (0.0, 0.0),
|
|
963
|
-
inside_padding: typing.Optional[typing.Any] = 2.0,
|
|
964
|
-
outside_padding: typing.Optional[typing.Any] = 0.0,
|
|
965
|
-
speed_ramp: typing.Optional[typing.Any] = 1.0,
|
|
966
|
-
max_speed: typing.Optional[typing.Any] = 26.0,
|
|
967
|
-
delay: typing.Optional[typing.Any] = 0.5,
|
|
968
|
-
zoom_influence: typing.Optional[typing.Any] = 0.5):
|
|
969
|
-
''' Use the mouse to create a link between two nodes
|
|
970
|
-
|
|
971
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
972
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
973
|
-
:type undo: typing.Optional[bool]
|
|
974
|
-
:param detach: Detach, Detach and redirect existing links
|
|
975
|
-
:type detach: typing.Optional[typing.Union[bool, typing.Any]]
|
|
976
|
-
:param drag_start: Drag Start, The position of the mouse cursor at the start of the operation
|
|
977
|
-
:type drag_start: typing.Optional[typing.Any]
|
|
978
|
-
:param inside_padding: Inside Padding, Inside distance in UI units from the edge of the region within which to start panning
|
|
979
|
-
:type inside_padding: typing.Optional[typing.Any]
|
|
980
|
-
:param outside_padding: Outside Padding, Outside distance in UI units from the edge of the region at which to stop panning
|
|
981
|
-
:type outside_padding: typing.Optional[typing.Any]
|
|
982
|
-
:param speed_ramp: Speed Ramp, Width of the zone in UI units where speed increases with distance from the edge
|
|
983
|
-
:type speed_ramp: typing.Optional[typing.Any]
|
|
984
|
-
:param max_speed: Max Speed, Maximum speed in UI units per second
|
|
985
|
-
:type max_speed: typing.Optional[typing.Any]
|
|
986
|
-
:param delay: Delay, Delay in seconds before maximum speed is reached
|
|
987
|
-
:type delay: typing.Optional[typing.Any]
|
|
988
|
-
:param zoom_influence: Zoom Influence, Influence of the zoom factor on scroll speed
|
|
989
|
-
:type zoom_influence: typing.Optional[typing.Any]
|
|
990
|
-
'''
|
|
991
|
-
|
|
992
|
-
pass
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
def link_make(
|
|
996
|
-
override_context: typing.Optional[
|
|
997
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
998
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
999
|
-
undo: typing.Optional[bool] = None,
|
|
1000
|
-
*,
|
|
1001
|
-
replace: typing.Optional[typing.Union[bool, typing.Any]] = False):
|
|
1002
|
-
''' Makes a link between selected output in input sockets
|
|
1003
|
-
|
|
1004
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1005
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1006
|
-
:type undo: typing.Optional[bool]
|
|
1007
|
-
:param replace: Replace, Replace socket connections with the new links
|
|
1008
|
-
:type replace: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1009
|
-
'''
|
|
1010
|
-
|
|
1011
|
-
pass
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
def link_viewer(
|
|
1015
|
-
override_context: typing.Optional[
|
|
1016
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1017
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1018
|
-
undo: typing.Optional[bool] = None):
|
|
1019
|
-
''' Link to viewer node
|
|
1020
|
-
|
|
1021
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1022
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1023
|
-
:type undo: typing.Optional[bool]
|
|
1024
|
-
'''
|
|
1025
|
-
|
|
1026
|
-
pass
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
def links_cut(
|
|
1030
|
-
override_context: typing.Optional[
|
|
1031
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1032
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1033
|
-
undo: typing.Optional[bool] = None,
|
|
1034
|
-
*,
|
|
1035
|
-
path: typing.Optional[bpy.types.bpy_prop_collection[
|
|
1036
|
-
'bpy.types.OperatorMousePath']] = None,
|
|
1037
|
-
cursor: typing.Optional[typing.Any] = 12):
|
|
1038
|
-
''' Use the mouse to cut (remove) some links
|
|
1039
|
-
|
|
1040
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1041
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1042
|
-
:type undo: typing.Optional[bool]
|
|
1043
|
-
:param path: Path
|
|
1044
|
-
:type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
|
|
1045
|
-
:param cursor: Cursor
|
|
1046
|
-
:type cursor: typing.Optional[typing.Any]
|
|
1047
|
-
'''
|
|
1048
|
-
|
|
1049
|
-
pass
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
def links_detach(
|
|
1053
|
-
override_context: typing.Optional[
|
|
1054
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1055
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1056
|
-
undo: typing.Optional[bool] = None):
|
|
1057
|
-
''' Remove all links to selected nodes, and try to connect neighbor nodes together
|
|
1058
|
-
|
|
1059
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1060
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1061
|
-
:type undo: typing.Optional[bool]
|
|
1062
|
-
'''
|
|
1063
|
-
|
|
1064
|
-
pass
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
def links_mute(
|
|
1068
|
-
override_context: typing.Optional[
|
|
1069
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1070
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1071
|
-
undo: typing.Optional[bool] = None,
|
|
1072
|
-
*,
|
|
1073
|
-
path: typing.Optional[bpy.types.bpy_prop_collection[
|
|
1074
|
-
'bpy.types.OperatorMousePath']] = None,
|
|
1075
|
-
cursor: typing.Optional[typing.Any] = 35):
|
|
1076
|
-
''' Use the mouse to mute links
|
|
1077
|
-
|
|
1078
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1079
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1080
|
-
:type undo: typing.Optional[bool]
|
|
1081
|
-
:param path: Path
|
|
1082
|
-
:type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
|
|
1083
|
-
:param cursor: Cursor
|
|
1084
|
-
:type cursor: typing.Optional[typing.Any]
|
|
1085
|
-
'''
|
|
1086
|
-
|
|
1087
|
-
pass
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
def move_detach_links(
|
|
1091
|
-
override_context: typing.Optional[
|
|
1092
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1093
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1094
|
-
undo: typing.Optional[bool] = None,
|
|
1095
|
-
*,
|
|
1096
|
-
NODE_OT_links_detach: typing.Optional['links_detach'] = None,
|
|
1097
|
-
TRANSFORM_OT_translate: typing.
|
|
1098
|
-
Optional['bpy.ops.transform.translate'] = None):
|
|
1099
|
-
''' Move a node to detach links
|
|
1100
|
-
|
|
1101
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1102
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1103
|
-
:type undo: typing.Optional[bool]
|
|
1104
|
-
:param NODE_OT_links_detach: Detach Links, Remove all links to selected nodes, and try to connect neighbor nodes together
|
|
1105
|
-
:type NODE_OT_links_detach: typing.Optional['links_detach']
|
|
1106
|
-
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
1107
|
-
:type TRANSFORM_OT_translate: typing.Optional['bpy.ops.transform.translate']
|
|
1108
|
-
'''
|
|
1109
|
-
|
|
1110
|
-
pass
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
def move_detach_links_release(
|
|
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
|
-
NODE_OT_links_detach: typing.Optional['links_detach'] = None,
|
|
1120
|
-
NODE_OT_translate_attach: typing.Optional['translate_attach'] = None):
|
|
1121
|
-
''' Move a node to detach links
|
|
1122
|
-
|
|
1123
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1124
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1125
|
-
:type undo: typing.Optional[bool]
|
|
1126
|
-
:param NODE_OT_links_detach: Detach Links, Remove all links to selected nodes, and try to connect neighbor nodes together
|
|
1127
|
-
:type NODE_OT_links_detach: typing.Optional['links_detach']
|
|
1128
|
-
:param NODE_OT_translate_attach: Move and Attach, Move nodes and attach to frame
|
|
1129
|
-
:type NODE_OT_translate_attach: typing.Optional['translate_attach']
|
|
1130
|
-
'''
|
|
1131
|
-
|
|
1132
|
-
pass
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
def mute_toggle(
|
|
1136
|
-
override_context: typing.Optional[
|
|
1137
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1138
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1139
|
-
undo: typing.Optional[bool] = None):
|
|
1140
|
-
''' Toggle muting of selected nodes
|
|
1141
|
-
|
|
1142
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1143
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1144
|
-
:type undo: typing.Optional[bool]
|
|
1145
|
-
'''
|
|
1146
|
-
|
|
1147
|
-
pass
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
def new_geometry_node_group_assign(
|
|
1151
|
-
override_context: typing.Optional[
|
|
1152
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1153
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1154
|
-
undo: typing.Optional[bool] = None):
|
|
1155
|
-
''' Create a new geometry node group and assign it to the active modifier :File: `startup/bl_operators/geometry_nodes.py\:289 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L289>`__
|
|
1156
|
-
|
|
1157
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1158
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1159
|
-
:type undo: typing.Optional[bool]
|
|
1160
|
-
'''
|
|
1161
|
-
|
|
1162
|
-
pass
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
def new_geometry_node_group_tool(
|
|
1166
|
-
override_context: typing.Optional[
|
|
1167
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1168
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1169
|
-
undo: typing.Optional[bool] = None):
|
|
1170
|
-
''' Create a new geometry node group for a tool :File: `startup/bl_operators/geometry_nodes.py\:310 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L310>`__
|
|
1171
|
-
|
|
1172
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1173
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1174
|
-
:type undo: typing.Optional[bool]
|
|
1175
|
-
'''
|
|
1176
|
-
|
|
1177
|
-
pass
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
def new_geometry_nodes_modifier(
|
|
1181
|
-
override_context: typing.Optional[
|
|
1182
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1183
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1184
|
-
undo: typing.Optional[bool] = None):
|
|
1185
|
-
''' Create a new modifier with a new geometry node group :File: `startup/bl_operators/geometry_nodes.py\:266 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L266>`__
|
|
1186
|
-
|
|
1187
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1188
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1189
|
-
:type undo: typing.Optional[bool]
|
|
1190
|
-
'''
|
|
1191
|
-
|
|
1192
|
-
pass
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
def new_node_tree(
|
|
1196
|
-
override_context: typing.Optional[
|
|
1197
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1198
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1199
|
-
undo: typing.Optional[bool] = None,
|
|
1200
|
-
*,
|
|
1201
|
-
type: typing.Optional[typing.Union[str, int, typing.Any]] = '',
|
|
1202
|
-
name: typing.Union[str, typing.Any] = "NodeTree"):
|
|
1203
|
-
''' Create a new node tree
|
|
1204
|
-
|
|
1205
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1206
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1207
|
-
:type undo: typing.Optional[bool]
|
|
1208
|
-
:param type: Tree Type
|
|
1209
|
-
:type type: typing.Optional[typing.Union[str, int, typing.Any]]
|
|
1210
|
-
:param name: Name
|
|
1211
|
-
:type name: typing.Union[str, typing.Any]
|
|
1212
|
-
'''
|
|
1213
|
-
|
|
1214
|
-
pass
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
def node_color_preset_add(
|
|
1218
|
-
override_context: typing.Optional[
|
|
1219
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1220
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1221
|
-
undo: typing.Optional[bool] = None,
|
|
1222
|
-
*,
|
|
1223
|
-
name: typing.Union[str, typing.Any] = "",
|
|
1224
|
-
remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1225
|
-
remove_active: typing.Optional[typing.Union[bool, typing.
|
|
1226
|
-
Any]] = False):
|
|
1227
|
-
''' Add or remove a Node Color Preset :File: `startup/bl_operators/presets.py\:75 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L75>`__
|
|
1228
|
-
|
|
1229
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1230
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1231
|
-
:type undo: typing.Optional[bool]
|
|
1232
|
-
:param name: Name, Name of the preset, used to make the path name
|
|
1233
|
-
:type name: typing.Union[str, typing.Any]
|
|
1234
|
-
:param remove_name: remove_name
|
|
1235
|
-
:type remove_name: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1236
|
-
:param remove_active: remove_active
|
|
1237
|
-
:type remove_active: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1238
|
-
'''
|
|
1239
|
-
|
|
1240
|
-
pass
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
def node_copy_color(
|
|
1244
|
-
override_context: typing.Optional[
|
|
1245
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1246
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1247
|
-
undo: typing.Optional[bool] = None):
|
|
1248
|
-
''' Copy color to all selected nodes
|
|
1249
|
-
|
|
1250
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1251
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1252
|
-
:type undo: typing.Optional[bool]
|
|
1253
|
-
'''
|
|
1254
|
-
|
|
1255
|
-
pass
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
def options_toggle(
|
|
1259
|
-
override_context: typing.Optional[
|
|
1260
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1261
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1262
|
-
undo: typing.Optional[bool] = None):
|
|
1263
|
-
''' Toggle option buttons display for selected nodes
|
|
1264
|
-
|
|
1265
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1266
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1267
|
-
:type undo: typing.Optional[bool]
|
|
1268
|
-
'''
|
|
1269
|
-
|
|
1270
|
-
pass
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
def output_file_add_socket(
|
|
1274
|
-
override_context: typing.Optional[
|
|
1275
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1276
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1277
|
-
undo: typing.Optional[bool] = None,
|
|
1278
|
-
*,
|
|
1279
|
-
file_path: typing.Union[str, typing.Any] = "Image"):
|
|
1280
|
-
''' Add a new input to a file output node
|
|
1281
|
-
|
|
1282
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1283
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1284
|
-
:type undo: typing.Optional[bool]
|
|
1285
|
-
:param file_path: File Path, Subpath of the output file
|
|
1286
|
-
:type file_path: typing.Union[str, typing.Any]
|
|
1287
|
-
'''
|
|
1288
|
-
|
|
1289
|
-
pass
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
def output_file_move_active_socket(
|
|
1293
|
-
override_context: typing.Optional[
|
|
1294
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1295
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1296
|
-
undo: typing.Optional[bool] = None,
|
|
1297
|
-
*,
|
|
1298
|
-
direction: typing.Optional[typing.Any] = 'DOWN'):
|
|
1299
|
-
''' Move the active input of a file output node up or down the list
|
|
1300
|
-
|
|
1301
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1302
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1303
|
-
:type undo: typing.Optional[bool]
|
|
1304
|
-
:param direction: Direction
|
|
1305
|
-
:type direction: typing.Optional[typing.Any]
|
|
1306
|
-
'''
|
|
1307
|
-
|
|
1308
|
-
pass
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
def output_file_remove_active_socket(
|
|
1312
|
-
override_context: typing.Optional[
|
|
1313
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1314
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1315
|
-
undo: typing.Optional[bool] = None):
|
|
1316
|
-
''' Remove the active input from a file output node
|
|
1317
|
-
|
|
1318
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1319
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1320
|
-
:type undo: typing.Optional[bool]
|
|
1321
|
-
'''
|
|
1322
|
-
|
|
1323
|
-
pass
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
def parent_set(
|
|
1327
|
-
override_context: typing.Optional[
|
|
1328
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1329
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1330
|
-
undo: typing.Optional[bool] = None):
|
|
1331
|
-
''' Attach selected nodes
|
|
1332
|
-
|
|
1333
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1334
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1335
|
-
:type undo: typing.Optional[bool]
|
|
1336
|
-
'''
|
|
1337
|
-
|
|
1338
|
-
pass
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
def preview_toggle(
|
|
1342
|
-
override_context: typing.Optional[
|
|
1343
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1344
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1345
|
-
undo: typing.Optional[bool] = None):
|
|
1346
|
-
''' Toggle preview display for selected nodes
|
|
1347
|
-
|
|
1348
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1349
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1350
|
-
:type undo: typing.Optional[bool]
|
|
1351
|
-
'''
|
|
1352
|
-
|
|
1353
|
-
pass
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
def read_viewlayers(
|
|
1357
|
-
override_context: typing.Optional[
|
|
1358
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1359
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1360
|
-
undo: typing.Optional[bool] = None):
|
|
1361
|
-
''' Read all render layers of all used scenes
|
|
1362
|
-
|
|
1363
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1364
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1365
|
-
:type undo: typing.Optional[bool]
|
|
1366
|
-
'''
|
|
1367
|
-
|
|
1368
|
-
pass
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
def render_changed(
|
|
1372
|
-
override_context: typing.Optional[
|
|
1373
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1374
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1375
|
-
undo: typing.Optional[bool] = None):
|
|
1376
|
-
''' Render current scene, when input node's layer has been changed
|
|
1377
|
-
|
|
1378
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1379
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1380
|
-
:type undo: typing.Optional[bool]
|
|
1381
|
-
'''
|
|
1382
|
-
|
|
1383
|
-
pass
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
def repeat_zone_item_add(
|
|
1387
|
-
override_context: typing.Optional[
|
|
1388
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1389
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1390
|
-
undo: typing.Optional[bool] = None):
|
|
1391
|
-
''' Add a repeat item to the repeat zone :File: `startup/bl_operators/geometry_nodes.py\:344 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L344>`__
|
|
1392
|
-
|
|
1393
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1394
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1395
|
-
:type undo: typing.Optional[bool]
|
|
1396
|
-
'''
|
|
1397
|
-
|
|
1398
|
-
pass
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
def repeat_zone_item_move(
|
|
1402
|
-
override_context: typing.Optional[
|
|
1403
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1404
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1405
|
-
undo: typing.Optional[bool] = None,
|
|
1406
|
-
*,
|
|
1407
|
-
direction: typing.Optional[typing.Any] = 'UP'):
|
|
1408
|
-
''' Move a repeat item up or down in the list :File: `startup/bl_operators/geometry_nodes.py\:390 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L390>`__
|
|
1409
|
-
|
|
1410
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1411
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1412
|
-
:type undo: typing.Optional[bool]
|
|
1413
|
-
:param direction: Direction
|
|
1414
|
-
:type direction: typing.Optional[typing.Any]
|
|
1415
|
-
'''
|
|
1416
|
-
|
|
1417
|
-
pass
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
def repeat_zone_item_remove(
|
|
1421
|
-
override_context: typing.Optional[
|
|
1422
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1423
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1424
|
-
undo: typing.Optional[bool] = None):
|
|
1425
|
-
''' Remove a repeat item from the repeat zone :File: `startup/bl_operators/geometry_nodes.py\:369 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L369>`__
|
|
1426
|
-
|
|
1427
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1428
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1429
|
-
:type undo: typing.Optional[bool]
|
|
1430
|
-
'''
|
|
1431
|
-
|
|
1432
|
-
pass
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
def resize(override_context: typing.Optional[
|
|
1436
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1437
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1438
|
-
undo: typing.Optional[bool] = None):
|
|
1439
|
-
''' Resize a node
|
|
1440
|
-
|
|
1441
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1442
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1443
|
-
:type undo: typing.Optional[bool]
|
|
1444
|
-
'''
|
|
1445
|
-
|
|
1446
|
-
pass
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
def select(
|
|
1450
|
-
override_context: typing.Optional[
|
|
1451
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1452
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1453
|
-
undo: typing.Optional[bool] = None,
|
|
1454
|
-
*,
|
|
1455
|
-
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1456
|
-
deselect: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1457
|
-
toggle: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1458
|
-
deselect_all: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1459
|
-
select_passthrough: typing.Optional[typing.Union[bool, typing.
|
|
1460
|
-
Any]] = False,
|
|
1461
|
-
location: typing.Optional[typing.Any] = (0, 0),
|
|
1462
|
-
socket_select: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1463
|
-
clear_viewer: typing.Optional[typing.Union[bool, typing.Any]] = False):
|
|
1464
|
-
''' Select the node under the cursor
|
|
1465
|
-
|
|
1466
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1467
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1468
|
-
:type undo: typing.Optional[bool]
|
|
1469
|
-
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
1470
|
-
:type extend: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1471
|
-
:param deselect: Deselect, Remove from selection
|
|
1472
|
-
:type deselect: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1473
|
-
:param toggle: Toggle Selection, Toggle the selection
|
|
1474
|
-
:type toggle: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1475
|
-
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
1476
|
-
:type deselect_all: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1477
|
-
:param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
|
|
1478
|
-
:type select_passthrough: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1479
|
-
:param location: Location, Mouse location
|
|
1480
|
-
:type location: typing.Optional[typing.Any]
|
|
1481
|
-
:param socket_select: Socket Select
|
|
1482
|
-
:type socket_select: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1483
|
-
:param clear_viewer: Clear Viewer, Deactivate geometry nodes viewer when clicking in empty space
|
|
1484
|
-
:type clear_viewer: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1485
|
-
'''
|
|
1486
|
-
|
|
1487
|
-
pass
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
def select_all(
|
|
1491
|
-
override_context: typing.Optional[
|
|
1492
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1493
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1494
|
-
undo: typing.Optional[bool] = None,
|
|
1495
|
-
*,
|
|
1496
|
-
action: typing.Optional[typing.Any] = 'TOGGLE'):
|
|
1497
|
-
''' (De)select all nodes
|
|
1498
|
-
|
|
1499
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1500
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1501
|
-
:type undo: typing.Optional[bool]
|
|
1502
|
-
: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.
|
|
1503
|
-
:type action: typing.Optional[typing.Any]
|
|
1504
|
-
'''
|
|
1505
|
-
|
|
1506
|
-
pass
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
def select_box(
|
|
1510
|
-
override_context: typing.Optional[
|
|
1511
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1512
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1513
|
-
undo: typing.Optional[bool] = None,
|
|
1514
|
-
*,
|
|
1515
|
-
tweak: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1516
|
-
xmin: typing.Optional[typing.Any] = 0,
|
|
1517
|
-
xmax: typing.Optional[typing.Any] = 0,
|
|
1518
|
-
ymin: typing.Optional[typing.Any] = 0,
|
|
1519
|
-
ymax: typing.Optional[typing.Any] = 0,
|
|
1520
|
-
wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
1521
|
-
mode: typing.Optional[typing.Any] = 'SET'):
|
|
1522
|
-
''' Use box selection to select nodes
|
|
1523
|
-
|
|
1524
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1525
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1526
|
-
:type undo: typing.Optional[bool]
|
|
1527
|
-
:param tweak: Tweak, Only activate when mouse is not over a node (useful for tweak gesture)
|
|
1528
|
-
:type tweak: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1529
|
-
:param xmin: X Min
|
|
1530
|
-
:type xmin: typing.Optional[typing.Any]
|
|
1531
|
-
:param xmax: X Max
|
|
1532
|
-
:type xmax: typing.Optional[typing.Any]
|
|
1533
|
-
:param ymin: Y Min
|
|
1534
|
-
:type ymin: typing.Optional[typing.Any]
|
|
1535
|
-
:param ymax: Y Max
|
|
1536
|
-
:type ymax: typing.Optional[typing.Any]
|
|
1537
|
-
:param wait_for_input: Wait for Input
|
|
1538
|
-
:type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1539
|
-
:param mode: Mode * ``SET`` Set -- Set a new selection. * ``ADD`` Extend -- Extend existing selection. * ``SUB`` Subtract -- Subtract existing selection.
|
|
1540
|
-
:type mode: typing.Optional[typing.Any]
|
|
1541
|
-
'''
|
|
1542
|
-
|
|
1543
|
-
pass
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
def select_circle(
|
|
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
|
-
x: typing.Optional[typing.Any] = 0,
|
|
1553
|
-
y: typing.Optional[typing.Any] = 0,
|
|
1554
|
-
radius: typing.Optional[typing.Any] = 25,
|
|
1555
|
-
wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
1556
|
-
mode: typing.Optional[typing.Any] = 'SET'):
|
|
1557
|
-
''' Use circle selection to select nodes
|
|
1558
|
-
|
|
1559
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1560
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1561
|
-
:type undo: typing.Optional[bool]
|
|
1562
|
-
:param x: X
|
|
1563
|
-
:type x: typing.Optional[typing.Any]
|
|
1564
|
-
:param y: Y
|
|
1565
|
-
:type y: typing.Optional[typing.Any]
|
|
1566
|
-
:param radius: Radius
|
|
1567
|
-
:type radius: typing.Optional[typing.Any]
|
|
1568
|
-
:param wait_for_input: Wait for Input
|
|
1569
|
-
:type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1570
|
-
:param mode: Mode * ``SET`` Set -- Set a new selection. * ``ADD`` Extend -- Extend existing selection. * ``SUB`` Subtract -- Subtract existing selection.
|
|
1571
|
-
:type mode: typing.Optional[typing.Any]
|
|
1572
|
-
'''
|
|
1573
|
-
|
|
1574
|
-
pass
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
def select_grouped(
|
|
1578
|
-
override_context: typing.Optional[
|
|
1579
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1580
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1581
|
-
undo: typing.Optional[bool] = None,
|
|
1582
|
-
*,
|
|
1583
|
-
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1584
|
-
type: typing.Optional[typing.Any] = 'TYPE'):
|
|
1585
|
-
''' Select nodes with similar properties
|
|
1586
|
-
|
|
1587
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1588
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1589
|
-
:type undo: typing.Optional[bool]
|
|
1590
|
-
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
1591
|
-
:type extend: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1592
|
-
:param type: Type
|
|
1593
|
-
:type type: typing.Optional[typing.Any]
|
|
1594
|
-
'''
|
|
1595
|
-
|
|
1596
|
-
pass
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
def select_lasso(
|
|
1600
|
-
override_context: typing.Optional[
|
|
1601
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1602
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1603
|
-
undo: typing.Optional[bool] = None,
|
|
1604
|
-
*,
|
|
1605
|
-
tweak: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1606
|
-
path: typing.Optional[bpy.types.bpy_prop_collection[
|
|
1607
|
-
'bpy.types.OperatorMousePath']] = None,
|
|
1608
|
-
mode: typing.Optional[typing.Any] = 'SET'):
|
|
1609
|
-
''' Select nodes using lasso selection
|
|
1610
|
-
|
|
1611
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1612
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1613
|
-
:type undo: typing.Optional[bool]
|
|
1614
|
-
:param tweak: Tweak, Only activate when mouse is not over a node (useful for tweak gesture)
|
|
1615
|
-
:type tweak: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1616
|
-
:param path: Path
|
|
1617
|
-
:type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
|
|
1618
|
-
:param mode: Mode * ``SET`` Set -- Set a new selection. * ``ADD`` Extend -- Extend existing selection. * ``SUB`` Subtract -- Subtract existing selection.
|
|
1619
|
-
:type mode: typing.Optional[typing.Any]
|
|
1620
|
-
'''
|
|
1621
|
-
|
|
1622
|
-
pass
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
def select_link_viewer(
|
|
1626
|
-
override_context: typing.Optional[
|
|
1627
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1628
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1629
|
-
undo: typing.Optional[bool] = None,
|
|
1630
|
-
*,
|
|
1631
|
-
NODE_OT_select: typing.Optional['select'] = None,
|
|
1632
|
-
NODE_OT_link_viewer: typing.Optional['link_viewer'] = None):
|
|
1633
|
-
''' Select node and link it to a viewer node
|
|
1634
|
-
|
|
1635
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1636
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1637
|
-
:type undo: typing.Optional[bool]
|
|
1638
|
-
:param NODE_OT_select: Select, Select the node under the cursor
|
|
1639
|
-
:type NODE_OT_select: typing.Optional['select']
|
|
1640
|
-
:param NODE_OT_link_viewer: Link to Viewer Node, Link to viewer node
|
|
1641
|
-
:type NODE_OT_link_viewer: typing.Optional['link_viewer']
|
|
1642
|
-
'''
|
|
1643
|
-
|
|
1644
|
-
pass
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
def select_linked_from(
|
|
1648
|
-
override_context: typing.Optional[
|
|
1649
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1650
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1651
|
-
undo: typing.Optional[bool] = None):
|
|
1652
|
-
''' Select nodes linked from the selected ones
|
|
1653
|
-
|
|
1654
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1655
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1656
|
-
:type undo: typing.Optional[bool]
|
|
1657
|
-
'''
|
|
1658
|
-
|
|
1659
|
-
pass
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
def select_linked_to(
|
|
1663
|
-
override_context: typing.Optional[
|
|
1664
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1665
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1666
|
-
undo: typing.Optional[bool] = None):
|
|
1667
|
-
''' Select nodes linked to the selected ones
|
|
1668
|
-
|
|
1669
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1670
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1671
|
-
:type undo: typing.Optional[bool]
|
|
1672
|
-
'''
|
|
1673
|
-
|
|
1674
|
-
pass
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
def select_same_type_step(
|
|
1678
|
-
override_context: typing.Optional[
|
|
1679
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1680
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1681
|
-
undo: typing.Optional[bool] = None,
|
|
1682
|
-
*,
|
|
1683
|
-
prev: typing.Optional[typing.Union[bool, typing.Any]] = False):
|
|
1684
|
-
''' Activate and view same node type, step by step
|
|
1685
|
-
|
|
1686
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1687
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1688
|
-
:type undo: typing.Optional[bool]
|
|
1689
|
-
:param prev: Previous
|
|
1690
|
-
:type prev: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1691
|
-
'''
|
|
1692
|
-
|
|
1693
|
-
pass
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
def shader_script_update(
|
|
1697
|
-
override_context: typing.Optional[
|
|
1698
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1699
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1700
|
-
undo: typing.Optional[bool] = None):
|
|
1701
|
-
''' Update shader script node with new sockets and options from the script
|
|
1702
|
-
|
|
1703
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1704
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1705
|
-
:type undo: typing.Optional[bool]
|
|
1706
|
-
'''
|
|
1707
|
-
|
|
1708
|
-
pass
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
def simulation_zone_item_add(
|
|
1712
|
-
override_context: typing.Optional[
|
|
1713
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1714
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1715
|
-
undo: typing.Optional[bool] = None):
|
|
1716
|
-
''' Add a state item to the simulation zone :File: `startup/bl_operators/geometry_nodes.py\:344 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L344>`__
|
|
1717
|
-
|
|
1718
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1719
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1720
|
-
:type undo: typing.Optional[bool]
|
|
1721
|
-
'''
|
|
1722
|
-
|
|
1723
|
-
pass
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
def simulation_zone_item_move(
|
|
1727
|
-
override_context: typing.Optional[
|
|
1728
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1729
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1730
|
-
undo: typing.Optional[bool] = None,
|
|
1731
|
-
*,
|
|
1732
|
-
direction: typing.Optional[typing.Any] = 'UP'):
|
|
1733
|
-
''' Move a simulation state item up or down in the list :File: `startup/bl_operators/geometry_nodes.py\:390 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L390>`__
|
|
1734
|
-
|
|
1735
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1736
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1737
|
-
:type undo: typing.Optional[bool]
|
|
1738
|
-
:param direction: Direction
|
|
1739
|
-
:type direction: typing.Optional[typing.Any]
|
|
1740
|
-
'''
|
|
1741
|
-
|
|
1742
|
-
pass
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
def simulation_zone_item_remove(
|
|
1746
|
-
override_context: typing.Optional[
|
|
1747
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1748
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1749
|
-
undo: typing.Optional[bool] = None):
|
|
1750
|
-
''' Remove a state item from the simulation zone :File: `startup/bl_operators/geometry_nodes.py\:369 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L369>`__
|
|
1751
|
-
|
|
1752
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1753
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1754
|
-
:type undo: typing.Optional[bool]
|
|
1755
|
-
'''
|
|
1756
|
-
|
|
1757
|
-
pass
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
def switch_view_update(
|
|
1761
|
-
override_context: typing.Optional[
|
|
1762
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1763
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1764
|
-
undo: typing.Optional[bool] = None):
|
|
1765
|
-
''' Update views of selected node
|
|
1766
|
-
|
|
1767
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1768
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1769
|
-
:type undo: typing.Optional[bool]
|
|
1770
|
-
'''
|
|
1771
|
-
|
|
1772
|
-
pass
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
def translate_attach(
|
|
1776
|
-
override_context: typing.Optional[
|
|
1777
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1778
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1779
|
-
undo: typing.Optional[bool] = None,
|
|
1780
|
-
*,
|
|
1781
|
-
TRANSFORM_OT_translate: typing.
|
|
1782
|
-
Optional['bpy.ops.transform.translate'] = None,
|
|
1783
|
-
NODE_OT_attach: typing.Optional['attach'] = None):
|
|
1784
|
-
''' Move nodes and attach to frame
|
|
1785
|
-
|
|
1786
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1787
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1788
|
-
:type undo: typing.Optional[bool]
|
|
1789
|
-
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
1790
|
-
:type TRANSFORM_OT_translate: typing.Optional['bpy.ops.transform.translate']
|
|
1791
|
-
:param NODE_OT_attach: Attach Nodes, Attach active node to a frame
|
|
1792
|
-
:type NODE_OT_attach: typing.Optional['attach']
|
|
1793
|
-
'''
|
|
1794
|
-
|
|
1795
|
-
pass
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
def translate_attach_remove_on_cancel(
|
|
1799
|
-
override_context: typing.Optional[
|
|
1800
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1801
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1802
|
-
undo: typing.Optional[bool] = None,
|
|
1803
|
-
*,
|
|
1804
|
-
TRANSFORM_OT_translate: typing.
|
|
1805
|
-
Optional['bpy.ops.transform.translate'] = None,
|
|
1806
|
-
NODE_OT_attach: typing.Optional['attach'] = None):
|
|
1807
|
-
''' Move nodes and attach to frame
|
|
1808
|
-
|
|
1809
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1810
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1811
|
-
:type undo: typing.Optional[bool]
|
|
1812
|
-
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
1813
|
-
:type TRANSFORM_OT_translate: typing.Optional['bpy.ops.transform.translate']
|
|
1814
|
-
:param NODE_OT_attach: Attach Nodes, Attach active node to a frame
|
|
1815
|
-
:type NODE_OT_attach: typing.Optional['attach']
|
|
1816
|
-
'''
|
|
1817
|
-
|
|
1818
|
-
pass
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
def tree_path_parent(
|
|
1822
|
-
override_context: typing.Optional[
|
|
1823
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1824
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1825
|
-
undo: typing.Optional[bool] = None):
|
|
1826
|
-
''' Go to parent node tree :File: `startup/bl_operators/node.py\:253 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L253>`__
|
|
1827
|
-
|
|
1828
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1829
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1830
|
-
:type undo: typing.Optional[bool]
|
|
1831
|
-
'''
|
|
1832
|
-
|
|
1833
|
-
pass
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
def view_all(override_context: typing.Optional[
|
|
1837
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1838
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1839
|
-
undo: typing.Optional[bool] = None):
|
|
1840
|
-
''' Resize view so you can see all nodes
|
|
1841
|
-
|
|
1842
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1843
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1844
|
-
:type undo: typing.Optional[bool]
|
|
1845
|
-
'''
|
|
1846
|
-
|
|
1847
|
-
pass
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
def view_selected(
|
|
1851
|
-
override_context: typing.Optional[
|
|
1852
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1853
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1854
|
-
undo: typing.Optional[bool] = None):
|
|
1855
|
-
''' Resize view so you can see selected nodes
|
|
1856
|
-
|
|
1857
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1858
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1859
|
-
:type undo: typing.Optional[bool]
|
|
1860
|
-
'''
|
|
1861
|
-
|
|
1862
|
-
pass
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
def viewer_border(
|
|
1866
|
-
override_context: typing.Optional[
|
|
1867
|
-
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
1868
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1869
|
-
undo: typing.Optional[bool] = None,
|
|
1870
|
-
*,
|
|
1871
|
-
xmin: typing.Optional[typing.Any] = 0,
|
|
1872
|
-
xmax: typing.Optional[typing.Any] = 0,
|
|
1873
|
-
ymin: typing.Optional[typing.Any] = 0,
|
|
1874
|
-
ymax: typing.Optional[typing.Any] = 0,
|
|
1875
|
-
wait_for_input: typing.Optional[typing.Union[bool, typing.
|
|
1876
|
-
Any]] = True):
|
|
1877
|
-
''' Set the boundaries for viewer operations
|
|
1878
|
-
|
|
1879
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1880
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1881
|
-
:type undo: typing.Optional[bool]
|
|
1882
|
-
:param xmin: X Min
|
|
1883
|
-
:type xmin: typing.Optional[typing.Any]
|
|
1884
|
-
:param xmax: X Max
|
|
1885
|
-
:type xmax: typing.Optional[typing.Any]
|
|
1886
|
-
:param ymin: Y Min
|
|
1887
|
-
:type ymin: typing.Optional[typing.Any]
|
|
1888
|
-
:param ymax: Y Max
|
|
1889
|
-
:type ymax: typing.Optional[typing.Any]
|
|
1890
|
-
:param wait_for_input: Wait for Input
|
|
1891
|
-
:type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1892
|
-
'''
|
|
1893
|
-
|
|
1894
|
-
pass
|