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
console_python/__init__.py
DELETED
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
import sys
|
|
2
|
-
import typing
|
|
3
|
-
|
|
4
|
-
GenericType = typing.TypeVar("GenericType")
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
class _TempModuleOverride:
|
|
8
|
-
module = None
|
|
9
|
-
''' '''
|
|
10
|
-
|
|
11
|
-
module_name = None
|
|
12
|
-
''' '''
|
|
13
|
-
|
|
14
|
-
module_override = None
|
|
15
|
-
''' '''
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
def add_scrollback(text, text_type):
|
|
19
|
-
'''
|
|
20
|
-
|
|
21
|
-
'''
|
|
22
|
-
|
|
23
|
-
pass
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
def autocomplete(context):
|
|
27
|
-
'''
|
|
28
|
-
|
|
29
|
-
'''
|
|
30
|
-
|
|
31
|
-
pass
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
def banner(context):
|
|
35
|
-
'''
|
|
36
|
-
|
|
37
|
-
'''
|
|
38
|
-
|
|
39
|
-
pass
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
def copy_as_script(context):
|
|
43
|
-
'''
|
|
44
|
-
|
|
45
|
-
'''
|
|
46
|
-
|
|
47
|
-
pass
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
def execute(context, is_interactive):
|
|
51
|
-
'''
|
|
52
|
-
|
|
53
|
-
'''
|
|
54
|
-
|
|
55
|
-
pass
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
def get_console(console_id):
|
|
59
|
-
'''
|
|
60
|
-
|
|
61
|
-
'''
|
|
62
|
-
|
|
63
|
-
pass
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
def replace_help(namespace):
|
|
67
|
-
'''
|
|
68
|
-
|
|
69
|
-
'''
|
|
70
|
-
|
|
71
|
-
pass
|
console_shell/__init__.py
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import sys
|
|
2
|
-
import typing
|
|
3
|
-
|
|
4
|
-
GenericType = typing.TypeVar("GenericType")
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
def add_scrollback(text, text_type):
|
|
8
|
-
'''
|
|
9
|
-
|
|
10
|
-
'''
|
|
11
|
-
|
|
12
|
-
pass
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
def autocomplete(_context):
|
|
16
|
-
'''
|
|
17
|
-
|
|
18
|
-
'''
|
|
19
|
-
|
|
20
|
-
pass
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
def banner(context):
|
|
24
|
-
'''
|
|
25
|
-
|
|
26
|
-
'''
|
|
27
|
-
|
|
28
|
-
pass
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
def execute(context, _is_interactive):
|
|
32
|
-
'''
|
|
33
|
-
|
|
34
|
-
'''
|
|
35
|
-
|
|
36
|
-
pass
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
def shell_run(text):
|
|
40
|
-
'''
|
|
41
|
-
|
|
42
|
-
'''
|
|
43
|
-
|
|
44
|
-
pass
|
|
@@ -1,175 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: fake-bpy-module
|
|
3
|
-
Version: 20231205
|
|
4
|
-
Summary: Collection of the fake Blender Python API module for the code completion.
|
|
5
|
-
Author: nutti
|
|
6
|
-
Author-email: nutti.metro@gmail.com
|
|
7
|
-
Maintainer: nutti
|
|
8
|
-
Maintainer-email: nutti.metro@gmail.com
|
|
9
|
-
Project-URL: Homepage, https://github.com/nutti/fake-bpy-module
|
|
10
|
-
Project-URL: Documentation, https://github.com/nutti/fake-bpy-module/blob/master/README.md
|
|
11
|
-
Project-URL: Source, https://github.com/nutti/fake-bpy-module
|
|
12
|
-
Project-URL: Download, https://github.com/nutti/fake-bpy-module/releases
|
|
13
|
-
Project-URL: Bug Tracker, https://github.com/nutti/fake-bpy-module/issues
|
|
14
|
-
Project-URL: Release Notes, https://github.com/nutti/fake-bpy-module/blob/master/CHANGELOG.md
|
|
15
|
-
Platform: Windows
|
|
16
|
-
Platform: Linux
|
|
17
|
-
Platform: Mac OS-X
|
|
18
|
-
Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
|
|
19
|
-
Classifier: Topic :: Multimedia :: Graphics :: 3D Rendering
|
|
20
|
-
Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
|
|
21
|
-
Classifier: Programming Language :: Python
|
|
22
|
-
Classifier: Programming Language :: Python :: 3
|
|
23
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
24
|
-
Requires-Python: >=3.7
|
|
25
|
-
Description-Content-Type: text/markdown
|
|
26
|
-
|
|
27
|
-
# Fake Blender Python API module collection: fake-bpy-module
|
|
28
|
-
|
|
29
|
-
fake-bpy-module is the collections of the fake Blender Python API modules for
|
|
30
|
-
the code completion in commonly used IDEs.
|
|
31
|
-
|
|
32
|
-
Note: The similar project for Blender Game Engine (BGE) is available on
|
|
33
|
-
[fake-bge-module](https://github.com/nutti/fake-bge-module) which targets
|
|
34
|
-
[UPBGE](https://upbge.org/).
|
|
35
|
-
|
|
36
|
-

|
|
37
|
-
|
|
38
|
-
*To realize the long support of this project, your support is helpful.*
|
|
39
|
-
*You can support the development of this project via*
|
|
40
|
-
**[GitHub Sponsors](https://github.com/sponsors/nutti)**.
|
|
41
|
-
*See [the contribution document](CONTRIBUTING.md) for the detail of*
|
|
42
|
-
*the support.*
|
|
43
|
-
|
|
44
|
-
## Requirements
|
|
45
|
-
|
|
46
|
-
fake-bpy-module uses typing module and type hints which are available from
|
|
47
|
-
Python 3.7. Check your Python version is >= 3.7.
|
|
48
|
-
|
|
49
|
-
## Install
|
|
50
|
-
|
|
51
|
-
fake-bpy-module can be installed via a pip package, or pre-generated modules.
|
|
52
|
-
You can also generate and install modules manually.
|
|
53
|
-
|
|
54
|
-
### Install via pip package
|
|
55
|
-
|
|
56
|
-
fake-bpy-module is registered to PyPI.
|
|
57
|
-
You can install it as a pip package.
|
|
58
|
-
|
|
59
|
-
#### Install a latest package
|
|
60
|
-
|
|
61
|
-
If you install fake-bpy-module for Blender latest build (master branch daily
|
|
62
|
-
build powered by [nutti/blender-daily-build](https://github.com/nutti/blender-daily-build)),
|
|
63
|
-
run below command.
|
|
64
|
-
|
|
65
|
-
```sh
|
|
66
|
-
pip install fake-bpy-module
|
|
67
|
-
```
|
|
68
|
-
|
|
69
|
-
or, specify version "latest".
|
|
70
|
-
|
|
71
|
-
```sh
|
|
72
|
-
pip install fake-bpy-module-latest
|
|
73
|
-
```
|
|
74
|
-
|
|
75
|
-
#### Install a version specific package
|
|
76
|
-
|
|
77
|
-
If you want to install a version specific package, run below command.
|
|
78
|
-
|
|
79
|
-
```sh
|
|
80
|
-
pip install fake-bpy-module-<version>
|
|
81
|
-
```
|
|
82
|
-
|
|
83
|
-
If you install fake-bpy-module for Blender 2.93, run below command.
|
|
84
|
-
|
|
85
|
-
```sh
|
|
86
|
-
pip install fake-bpy-module-2.93
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
*Note: For PyCharm users, change the value `idea.max.intellisense.filesize` in
|
|
90
|
-
`idea.properties` file to more than 2600 because some modules have the issue of
|
|
91
|
-
being too big for intelliSense to work.*
|
|
92
|
-
|
|
93
|
-
##### Supported Blender Version
|
|
94
|
-
|
|
95
|
-
|Version|PyPI|
|
|
96
|
-
|---|---|
|
|
97
|
-
|2.78|[https://pypi.org/project/fake-bpy-module-2.78/](https://pypi.org/project/fake-bpy-module-2.78/)|
|
|
98
|
-
|2.79|[https://pypi.org/project/fake-bpy-module-2.79/](https://pypi.org/project/fake-bpy-module-2.79/)|
|
|
99
|
-
|2.80|[https://pypi.org/project/fake-bpy-module-2.80/](https://pypi.org/project/fake-bpy-module-2.80/)|
|
|
100
|
-
|2.81|[https://pypi.org/project/fake-bpy-module-2.81/](https://pypi.org/project/fake-bpy-module-2.81/)|
|
|
101
|
-
|2.82|[https://pypi.org/project/fake-bpy-module-2.82/](https://pypi.org/project/fake-bpy-module-2.82/)|
|
|
102
|
-
|2.83|[https://pypi.org/project/fake-bpy-module-2.83/](https://pypi.org/project/fake-bpy-module-2.83/)|
|
|
103
|
-
|2.90|[https://pypi.org/project/fake-bpy-module-2.90/](https://pypi.org/project/fake-bpy-module-2.90/)|
|
|
104
|
-
|2.91|[https://pypi.org/project/fake-bpy-module-2.91/](https://pypi.org/project/fake-bpy-module-2.91/)|
|
|
105
|
-
|2.92|[https://pypi.org/project/fake-bpy-module-2.92/](https://pypi.org/project/fake-bpy-module-2.92/)|
|
|
106
|
-
|2.93|[https://pypi.org/project/fake-bpy-module-2.93/](https://pypi.org/project/fake-bpy-module-2.93/)|
|
|
107
|
-
|3.0|[https://pypi.org/project/fake-bpy-module-3.0/](https://pypi.org/project/fake-bpy-module-3.0/)|
|
|
108
|
-
|3.1|[https://pypi.org/project/fake-bpy-module-3.1/](https://pypi.org/project/fake-bpy-module-3.1/)|
|
|
109
|
-
|3.2|[https://pypi.org/project/fake-bpy-module-3.2/](https://pypi.org/project/fake-bpy-module-3.2/)|
|
|
110
|
-
|3.3|[https://pypi.org/project/fake-bpy-module-3.3/](https://pypi.org/project/fake-bpy-module-3.3/)|
|
|
111
|
-
|3.4|[https://pypi.org/project/fake-bpy-module-3.4/](https://pypi.org/project/fake-bpy-module-3.4/)|
|
|
112
|
-
|3.5|[https://pypi.org/project/fake-bpy-module-3.5/](https://pypi.org/project/fake-bpy-module-3.5/)|
|
|
113
|
-
|3.6|[https://pypi.org/project/fake-bpy-module-3.6/](https://pypi.org/project/fake-bpy-module-3.6/)|
|
|
114
|
-
|4.0|[https://pypi.org/project/fake-bpy-module-4.0/](https://pypi.org/project/fake-bpy-module-4.0/)|
|
|
115
|
-
|latest|[https://pypi.org/project/fake-bpy-module/](https://pypi.org/project/fake-bpy-module/)|
|
|
116
|
-
||[https://pypi.org/project/fake-bpy-module-latest/](https://pypi.org/project/fake-bpy-module-latest/)|
|
|
117
|
-
|
|
118
|
-
### Install via pre-generated modules
|
|
119
|
-
|
|
120
|
-
Download Pre-generated modules from [Release page](https://github.com/nutti/fake-bpy-module/releases).
|
|
121
|
-
|
|
122
|
-
The process of installation via pre-generated modules is different by IDE.
|
|
123
|
-
See the installation processes as follows for detail.
|
|
124
|
-
|
|
125
|
-
* [PyCharm](docs/setup_pycharm.md)
|
|
126
|
-
* [Visual Studio Code](docs/setup_visual_studio_code.md)
|
|
127
|
-
* [All Text Editor (Install as Python module)](docs/setup_all_text_editor.md)
|
|
128
|
-
|
|
129
|
-
### Generate Modules Manually
|
|
130
|
-
|
|
131
|
-
You can also generate modules manually.
|
|
132
|
-
See [Generate Module](docs/generate_modules.md) for detail.
|
|
133
|
-
|
|
134
|
-
## Change Log
|
|
135
|
-
|
|
136
|
-
See [CHANGELOG.md](CHANGELOG.md)
|
|
137
|
-
|
|
138
|
-
## Bug report / Feature request / Disscussions
|
|
139
|
-
|
|
140
|
-
If you want to report bug, request features or discuss about this project, see
|
|
141
|
-
[ISSUES.md](ISSUES.md).
|
|
142
|
-
|
|
143
|
-
[fake-bpy-module](https://blender.chat/channel/fake-bpy-module) channel is
|
|
144
|
-
available on [blender.chat](https://blender.chat/).
|
|
145
|
-
The timely discussion and release announcement about fake-bpy-module will be
|
|
146
|
-
made in this channel.
|
|
147
|
-
|
|
148
|
-
Note: Registration of blender.chat is required for accessing fake-bpy-module channel.
|
|
149
|
-
|
|
150
|
-
## Contribution
|
|
151
|
-
|
|
152
|
-
If you want to contribute to this project, see [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
153
|
-
|
|
154
|
-
## Project Authors
|
|
155
|
-
|
|
156
|
-
### Owner
|
|
157
|
-
|
|
158
|
-
[**@nutti**](https://github.com/nutti)
|
|
159
|
-
|
|
160
|
-
Indie Game/Application Developer.
|
|
161
|
-
Especially, I spend most time to improve Blender and Unreal Game Engine via
|
|
162
|
-
providing the extensions.
|
|
163
|
-
|
|
164
|
-
Support via [GitHub Sponsors](https://github.com/sponsors/nutti)
|
|
165
|
-
|
|
166
|
-
* CONTACTS: [Twitter](https://twitter.com/nutti__)
|
|
167
|
-
* WEBSITE: [Japanese Only](https://colorful-pico.net/)
|
|
168
|
-
|
|
169
|
-
### Contributors
|
|
170
|
-
|
|
171
|
-
* [**@grische**](https://github.com/grische)
|
|
172
|
-
* [**@echantry**](https://github.com/echantry)
|
|
173
|
-
* [**@kant**](https://github.com/kant)
|
|
174
|
-
* [**@theoryshaw**](https://github.com/theoryshaw)
|
|
175
|
-
* [**@espiondev**](https://github.com/espiondev)
|
|
@@ -1,356 +0,0 @@
|
|
|
1
|
-
addon_utils/__init__.py,sha256=L4mcXhmkSVhG9Kdy5x0DMZIPpuBuRXEUVcgW5k86Su0,740
|
|
2
|
-
addon_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
animsys_refactor/__init__.py,sha256=BukvfRp8hYjg6goRTjnQjMqGW7IgB7_a1cNiz_Bw9so,588
|
|
4
|
-
animsys_refactor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
aud/__init__.py,sha256=yHyH08Fl0x8uibqjXPuhO44sqqXTmeP3IQxI0HDra60,33208
|
|
6
|
-
aud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
bgl/__init__.py,sha256=9Yitk1WTnOEngIEp6D-epkqW4KzZdb1_NsGq3umhikM,116266
|
|
8
|
-
bgl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
bl_app_override/__init__.py,sha256=CSaxiS71PV-q5PF1rdcqS4ZbpujmcPFpJoM6c7jizX4,441
|
|
10
|
-
bl_app_override/helpers.py,sha256=jwuB6bPK76sHBVZwTSQXl2HNp5twRf6G35Pgo5BMGsk,531
|
|
11
|
-
bl_app_override/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
bl_app_template_utils/__init__.py,sha256=8b1qin_xdAWCAcKumw0RyJhFZ6Lxs9Obbn-uhsEnQ88,357
|
|
13
|
-
bl_app_template_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
bl_console_utils/__init__.py,sha256=qOGRa_N1-VEAf9cr60mvvxQMYSKNNSzuSQ0_TuSEq1I,97
|
|
15
|
-
bl_console_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
bl_console_utils/autocomplete/__init__.py,sha256=u42XMuxeB9SmwNak1aZDHhxMEIR539Q6GyhR7HisRi0,191
|
|
17
|
-
bl_console_utils/autocomplete/complete_calltip.py,sha256=MPKfExCeGGQ8_4N_Tlc0jmW-fds90pQev9SL117BsUM,377
|
|
18
|
-
bl_console_utils/autocomplete/complete_import.py,sha256=siEo09By6i0XXG93NuA8a-BjPDm86vKAfZWNhv_l8CE,227
|
|
19
|
-
bl_console_utils/autocomplete/complete_namespace.py,sha256=pgGkpgraV9HpeoCYrvkyfZPMy-gjZ7Ycs2NQpEiQJwA,389
|
|
20
|
-
bl_console_utils/autocomplete/intellisense.py,sha256=xDJSSliCSB7zLfprMv3fhJ_8v9nDIbNjh4iWsPBSXGc,224
|
|
21
|
-
bl_console_utils/autocomplete/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
-
bl_i18n_utils/__init__.py,sha256=Zf-v6s6BmS2qcMgYUXiSeSl42kW9km9thQYvsaq02Rc,253
|
|
23
|
-
bl_i18n_utils/bl_extract_messages.py,sha256=CGDo_zEECIRqL9T2KH2uEmyQwWqvrhMaufHB14eLDDI,1291
|
|
24
|
-
bl_i18n_utils/merge_po.py,sha256=OhoBaW8ucVvvFHfvVDdnb9lu-tcSqunHBLNNjqWeVVM,112
|
|
25
|
-
bl_i18n_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
|
-
bl_i18n_utils/settings.py,sha256=rkKXjg0P_ouiUhfVd0Mh9IF6tccYqW42P3qLOGkXipI,817
|
|
27
|
-
bl_i18n_utils/utils.py,sha256=aryTDpTgcQzkslzcFjd7EQ2vQdZ0Zlk9Xoaq2hml4hM,4191
|
|
28
|
-
bl_i18n_utils/utils_cli.py,sha256=QyGeAstQg58HmOKJOtTxDF_ivivu_qTj2Ey8hg7VbPQ,426
|
|
29
|
-
bl_i18n_utils/utils_languages_menu.py,sha256=vYKm7amC2CLWXpESzyfocyMBViVGgaSx4Gq0R4pTZSs,136
|
|
30
|
-
bl_i18n_utils/utils_rtl.py,sha256=cK223AOBjHT-a48D0bG4CXB-tK8_qk_iLULn8HHDEV0,188
|
|
31
|
-
bl_keymap_utils/__init__.py,sha256=y_lKFreojfR2LuF1_vaEtqharHWMX0qqxtN00LbzgHw,208
|
|
32
|
-
bl_keymap_utils/io.py,sha256=zm4iPaSKw6oJHcuKExt3N8CQYV6863JmJWmKw1vUyLk,693
|
|
33
|
-
bl_keymap_utils/keymap_from_toolbar.py,sha256=wAg-NRqvXTB8kAe04RSWX2HA2IIdLcvX_3K3QwoH9aE,165
|
|
34
|
-
bl_keymap_utils/keymap_hierarchy.py,sha256=1aHezC2A-HiVlALoJhZToL-Ptr7Su_kTzd1EmZ7TfkI,116
|
|
35
|
-
bl_keymap_utils/platform_helpers.py,sha256=GFs_vTXu1q-i9cWAMQ2thuakyuCutyb81UX0dcPJj58,263
|
|
36
|
-
bl_keymap_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
-
bl_keymap_utils/versioning.py,sha256=i_F1unt1E48PkK8cHkyuyXyOVGYjtPSSuB0H7IeNm5s,157
|
|
38
|
-
bl_math/__init__.py,sha256=HuKBzISCORSFYStQOmmSfZkoEp7P1yYqulWMh4DlLFo,1600
|
|
39
|
-
bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
-
bl_operators/__init__.py,sha256=7BIsOtT6Wvgf1sEJko9UZMdzqIo9HHR3TUdyuLVL5bA,897
|
|
41
|
-
bl_operators/add_mesh_torus.py,sha256=ESE7JqYi0GJiPj89LmgjiAiSiJV943agNEB8Xewj5rI,2820
|
|
42
|
-
bl_operators/anim.py,sha256=Ku3AxXxJg-4vjomBVfHKqQZ8myzagRH0DQXeXNK32KM,15398
|
|
43
|
-
bl_operators/assets.py,sha256=6DaFpg0vV4LK97GqGfqnbgI54rFgw8PzwglU3yZ2kzY,7069
|
|
44
|
-
bl_operators/clip.py,sha256=M-QkKqDp2ubz7j17s4JHM977czwYAJcb0CUgQ4IoHA0,22556
|
|
45
|
-
bl_operators/console.py,sha256=dO4AffWZFDBlfIxaF9FOchn9JZmaVn9t10JLiSlMFOg,10879
|
|
46
|
-
bl_operators/constraint.py,sha256=MZ03aI8esZU8uUJgNJvar5dN-vB1DtTxRlEZWWyWpKY,8896
|
|
47
|
-
bl_operators/file.py,sha256=C42r_aw3ls_HEplI1eIdWxPEefWm7V0X02QM-5bFJ0g,6730
|
|
48
|
-
bl_operators/freestyle.py,sha256=j9GIX0-SfCkv0naZSvPXqGrhRvmrmkJ3TFj1XkP6SO4,9017
|
|
49
|
-
bl_operators/geometry_nodes.py,sha256=3GBBjrVdPg4_fCFk-p0sQ16jFV5kyA4hK3eEHwgVJTQ,30941
|
|
50
|
-
bl_operators/image.py,sha256=r3JsF0-HWKrQaCHPLD-snKSC-ONPBluQaxcoN_afymY,6510
|
|
51
|
-
bl_operators/mesh.py,sha256=erTw6OrLpRDU7PSo03kWNyCqy723X_aGne9rmnXHDTs,6724
|
|
52
|
-
bl_operators/node.py,sha256=VaN1hDnYwv7eaaOs535BZA9gJpvLkMmJAkcPgmlsI04,22112
|
|
53
|
-
bl_operators/object.py,sha256=JjH4sfE-WPKhdc2pa_x4487xwRGxXYJPnnYrQ4yxLJM,38158
|
|
54
|
-
bl_operators/object_align.py,sha256=D-nyuVrhVSjfY51oW2CYZR0J9-KVrx8jebwTF9vKiWo,2578
|
|
55
|
-
bl_operators/object_quick_effects.py,sha256=AbKoco_06qvThLwSQ2qUSWnX65n4W9K9YoEeLtszmrU,9176
|
|
56
|
-
bl_operators/object_randomize_transform.py,sha256=Dh0ZNQFmmo6ZY4lgwc9VY9baLzDJqFKXmRF1SGHIi_4,2417
|
|
57
|
-
bl_operators/presets.py,sha256=YPfZeD5N_XiZ5NkdX9umQPZSFatLCQP5tk0_MqJ3_Qo,45483
|
|
58
|
-
bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
|
-
bl_operators/rigidbody.py,sha256=D3Li5kDZt1ox1zoMGKyBUXZELVCnhy9yhX0ELpHalG0,6733
|
|
60
|
-
bl_operators/screen_play_rendered_anim.py,sha256=qHeuLh5lDdmFfK-4APn2xiCwxkeShald7x9lK_NGcko,2266
|
|
61
|
-
bl_operators/sequencer.py,sha256=5y3BaqmYTKu0N4BwKWmusOFAMe9rel2MhYRaNQrhkFA,12099
|
|
62
|
-
bl_operators/spreadsheet.py,sha256=wJJhiuJV5FXDHe3bN_aH2qHVgUMDtpba3TdMlLh_paM,2421
|
|
63
|
-
bl_operators/userpref.py,sha256=-sNi3R9s3eBjeFnniDwslbpgrj7FrN7xIdc-7Ediqlw,56119
|
|
64
|
-
bl_operators/uvcalc_follow_active.py,sha256=enGupdGiTMa-JwP1yhwL2f-CqJ-aCusTAyJOfyBiWrA,2491
|
|
65
|
-
bl_operators/uvcalc_lightmap.py,sha256=Nn9XfOlItEB5Tf7CZpIvT3KFq81DNznBNaJcZL-oUS4,3074
|
|
66
|
-
bl_operators/uvcalc_transform.py,sha256=uWhrSMG4aXVCwY0NGxx7tUqjsJ7PbYHhSiyLAFfkJkA,5831
|
|
67
|
-
bl_operators/vertexpaint_dirt.py,sha256=4cc2uv2sOcBWliOoUiFBi4KUoP3GvrrIk3wG-Mys4DE,2496
|
|
68
|
-
bl_operators/view3d.py,sha256=1t7uQSwvZZ9gAZzXmxdwHMul4p1rT7EznsRr4YRMcXU,11529
|
|
69
|
-
bl_operators/wm.py,sha256=ZiY0LjVgeRAp2gPWEaMNrRhlKI63KdP7BlrvECKgxpU,100648
|
|
70
|
-
bl_operators/bmesh/__init__.py,sha256=RqpKaBmg6ClJZrSrvnS72CwoyvtEOYtDxSIE85m-Gg8,98
|
|
71
|
-
bl_operators/bmesh/find_adjacent.py,sha256=GOLnbbZ6U-0lcwPr9ZnX4wMDVj50fRaQgtC1ywhxhjg,684
|
|
72
|
-
bl_operators/bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
|
-
bl_previews_utils/__init__.py,sha256=JILVVvj9rfHf6QQP0IRbkKeY0rSyXjhbwBNLtbFY2gQ,103
|
|
74
|
-
bl_previews_utils/bl_previews_render.py,sha256=gd7Xz0MDLIgseifWJ5-ogPZX1ahcse3BX1ss2u3sqP4,597
|
|
75
|
-
bl_previews_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
|
-
bl_rna_utils/__init__.py,sha256=_ZedP0Rq98G84OMuo8xTNA45-U4caz9i1nPCLr8u1SI,94
|
|
77
|
-
bl_rna_utils/data_path.py,sha256=p05IUVHAbCEtUI30udp_nbzZs3j5lEJgGgZ2-H2BAaE,283
|
|
78
|
-
bl_rna_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
|
-
bl_text_utils/__init__.py,sha256=mA4rhlhHGbhXjawE0_uzcLQZhw4Rj4xm5DsFzDaoR0I,100
|
|
80
|
-
bl_text_utils/external_editor.py,sha256=uZ85B8RMbHYByZgDttYvq1HvYw96djWRTBOOBdYz3a4,150
|
|
81
|
-
bl_text_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
|
-
bl_ui/__init__.py,sha256=_XzPCJSOc-g-EruZWvN2cq2rLRJK4h8FUKIwXRLFT9k,10429
|
|
83
|
-
bl_ui/asset_shelf.py,sha256=vsUJdmc6qMwSUw6LG0DdvfBnGU_9XzGf8aM6JSgxTSU,2443
|
|
84
|
-
bl_ui/generic_ui_list.py,sha256=qVS6kLVZIfhxSIlkEvdD6VtJ_p32nD_MUzeK2Jpf2KU,7770
|
|
85
|
-
bl_ui/node_add_menu.py,sha256=BaGnC0A1Dgtch576n-2KloP1kd22lYY2lnd2c9vP4PQ,3123
|
|
86
|
-
bl_ui/node_add_menu_compositor.py,sha256=tNZbzqFtfKE2SUkHFK6QNZodGXgk7fHMo7-EbSVwd3g,47489
|
|
87
|
-
bl_ui/node_add_menu_geometry.py,sha256=Za4vfe30_2ZJDKNqlnny1txjkLcKRdSVQNo6rv_eVRg,108253
|
|
88
|
-
bl_ui/node_add_menu_shader.py,sha256=CjihYBwj9TGyhdNZs5FfbYyypjz-uQte56YINEfOrSQ,26737
|
|
89
|
-
bl_ui/node_add_menu_texture.py,sha256=-cXM8Qbf_d9rk-BSaKJKp4KXKP-q0FqSUyNtcI_U8FA,23567
|
|
90
|
-
bl_ui/properties_animviz.py,sha256=4FDV_Oo6QE9VKZrc2Cqf7Bb_DuiMpT0B3XtDR0yabGM,556
|
|
91
|
-
bl_ui/properties_collection.py,sha256=kQkBdg8lFNafrt9jXHDwFipKHEu0x7xpK4j4it4p_1g,13049
|
|
92
|
-
bl_ui/properties_constraint.py,sha256=U0DVN-9roMSN6fOvzmfBa2S8AKWqeXBwr4xbsO8wz8k,385296
|
|
93
|
-
bl_ui/properties_data_armature.py,sha256=IVTyVuXhbPKnySFv6OeOpGy8l8nCJnvsC5r7TBWPK6I,28006
|
|
94
|
-
bl_ui/properties_data_bone.py,sha256=fLwqLEgmfeH_M8elR7tGCEO8a95pOXzunNTRU4vCP6c,25335
|
|
95
|
-
bl_ui/properties_data_camera.py,sha256=3ntFSlXjf-DIK3eei-s_9ASPz3c19FfYn_NzfjW82ts,36945
|
|
96
|
-
bl_ui/properties_data_curve.py,sha256=z4qGVjdSzDCijGOeqZQIo8dbpWtU3JzmLOrJ9j8VvCA,38857
|
|
97
|
-
bl_ui/properties_data_curves.py,sha256=WH_9MHNjSnESOtbDDMKbCNwYgxcY9vkD0rthm8xsocI,15423
|
|
98
|
-
bl_ui/properties_data_empty.py,sha256=9mtavdXT5XmMB5Mke-KLDniJjUJJhnfjR8wl1y0kDLw,5174
|
|
99
|
-
bl_ui/properties_data_gpencil.py,sha256=2egZKV0Ze2y7nK-YAT734Z8jippEGq0PaWwpRCvXgf4,46403
|
|
100
|
-
bl_ui/properties_data_grease_pencil.py,sha256=7XRiR7Sg6OTeos9M7V_HUfBD2Wt7CYnnXbRSt5QZv30,7874
|
|
101
|
-
bl_ui/properties_data_lattice.py,sha256=L7SwJ5CYQ7xy9zYX7UCmQdETLniKoIat2hBXXLZDu4M,7776
|
|
102
|
-
bl_ui/properties_data_light.py,sha256=8GHfwTfhrqMW-PyrlTQ66TWn8zlvY5yHSJ8lr2jp2T4,25643
|
|
103
|
-
bl_ui/properties_data_lightprobe.py,sha256=_fRTCQgv5CbUXx8ILP5Dj1y1h-IiIDsRyJBXvO6OXBY,15425
|
|
104
|
-
bl_ui/properties_data_mesh.py,sha256=ubQHKhE1hEQJx_TpwjW9jlRWXdWRftidhxOnIk0QWpU,50153
|
|
105
|
-
bl_ui/properties_data_metaball.py,sha256=n_Xd_jRnSdOr1IAmB-olZDr36UHdV7vBaCf2tzPwbyQ,12806
|
|
106
|
-
bl_ui/properties_data_modifier.py,sha256=uD1zKpdiPHv_wqGzMH57NzH1bYugTVAjnVbd_LQik1I,22150
|
|
107
|
-
bl_ui/properties_data_pointcloud.py,sha256=sLg5vdiG-VAW_6WK41LzhByLvutWXwOLw2XdntO1VgM,13050
|
|
108
|
-
bl_ui/properties_data_shaderfx.py,sha256=4XZ6M9OHEJ3xY4aZz-ssznyukQAM1skPqlDOpb1PzRo,2628
|
|
109
|
-
bl_ui/properties_data_speaker.py,sha256=MqFA5EQENFEcO1LivpATsR826qnkJP-LEm2NpbHQQ3Q,12829
|
|
110
|
-
bl_ui/properties_data_volume.py,sha256=lndgeIN6DAw6lyRY9cCD9o21fnjtKdwbZ2mZGbkIf0k,20178
|
|
111
|
-
bl_ui/properties_freestyle.py,sha256=-MJPnDzQ30_KCVZ0H-fEdA0lmqMd61Zu77qN65Fe9qA,66640
|
|
112
|
-
bl_ui/properties_grease_pencil_common.py,sha256=-gSckH_4pudOF8Dh0ezHlTs_CbyWZTmk98ZXBzE6Tks,34791
|
|
113
|
-
bl_ui/properties_mask_common.py,sha256=s4_ukNliZuPiBtTum64_lClNE9Bi9MOJid629zj1C58,19327
|
|
114
|
-
bl_ui/properties_material.py,sha256=SsGg9U_11P5Ald1qPLuRiGwZjWUTM5N2uRP6swz4hwk,38125
|
|
115
|
-
bl_ui/properties_material_gpencil.py,sha256=HGjLNXvbb6z3QCwACp5zJzm6oneDNfztD5Xj-vpTzWA,25891
|
|
116
|
-
bl_ui/properties_object.py,sha256=ICvAGFvCcCeJAV99Up4P45oQ9TbtKNah3u4wnX9wgwo,35174
|
|
117
|
-
bl_ui/properties_output.py,sha256=HjpItU5OTVTckaSd8lgwj2O7GQBfPuF6evbpDuIizP8,46745
|
|
118
|
-
bl_ui/properties_paint_common.py,sha256=HSsbKG80ILQDsgBjtM7F-ynLNfMeQM1jpow2HI_5_B8,12467
|
|
119
|
-
bl_ui/properties_particle.py,sha256=5uPDquhbeQEQljL-kyFVadF-_rOavaUa8VBY8c7Vbic,133597
|
|
120
|
-
bl_ui/properties_physics_cloth.py,sha256=ZEVCrh07dfraZi3Gfpw8yKR0VslNtexxdkBBj_MIb64,36563
|
|
121
|
-
bl_ui/properties_physics_common.py,sha256=QTSe44Ddrws8rjvuKJPOWnIPR-w33gIyPLRnJs6eWTE,3283
|
|
122
|
-
bl_ui/properties_physics_dynamicpaint.py,sha256=j4D6BQ25Sr6lUtr5C0BgEQKOiYFBeOEoh2PEhgFIt3s,67584
|
|
123
|
-
bl_ui/properties_physics_field.py,sha256=SUZRDQQ4aW6-mi5G94f7nQC3Y0kVgk_Z4dXwS0xzLTI,27217
|
|
124
|
-
bl_ui/properties_physics_fluid.py,sha256=WYvDJOkq6JQGm55McgrMDIIhucbhiZ83aMuXMEqCCkk,91307
|
|
125
|
-
bl_ui/properties_physics_geometry_nodes.py,sha256=gdkb1mSCD3pf6jie6JnuF3iCFpTw64Q7vDp7VjzZqEc,2604
|
|
126
|
-
bl_ui/properties_physics_rigidbody.py,sha256=IN4rNj7mp3hZYsTtGajTzQT05cTB46EF7C8o5L8PJk4,20769
|
|
127
|
-
bl_ui/properties_physics_rigidbody_constraint.py,sha256=Nwr1xk786DEe76xZQASLiynYMRlqtaDr2cAzsU1vul4,33547
|
|
128
|
-
bl_ui/properties_physics_softbody.py,sha256=-c9MXujhSAn1KAEn1M-9Kv7rTEFQHpRaWTruA7NQM-Q,39030
|
|
129
|
-
bl_ui/properties_render.py,sha256=wCeucBe_i0mr9NcmIjQidAz0vAFyXCzR8A4o4lStrx0,154780
|
|
130
|
-
bl_ui/properties_scene.py,sha256=tPkFs-HTLstmnAbRMcSJxD_tyZ47_PKYJNkyPx9ILpc,35286
|
|
131
|
-
bl_ui/properties_texture.py,sha256=ppCQO5-ZsheoOoz4iFqbCuVXX-Jw3nGh158E2qDDILY,66952
|
|
132
|
-
bl_ui/properties_view_layer.py,sha256=z3pryfCr9owko0KNI72Y0R6NRenVXKXLsqcl7_tk5oM,42733
|
|
133
|
-
bl_ui/properties_workspace.py,sha256=MoqnoKTtqtj0YdINuYrepGJUu16yYwVM4WzsR8ST7ok,7748
|
|
134
|
-
bl_ui/properties_world.py,sha256=tAglxWzGuqQH52B0eaJ3xyMExDfkNX-sOWE4Iin1fI8,18016
|
|
135
|
-
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
136
|
-
bl_ui/space_clip.py,sha256=PDBqLzNQ3EOVz_dU8L_5MXXY7L5yGhRRGkcxltMUFh4,176850
|
|
137
|
-
bl_ui/space_console.py,sha256=F4xqKmlUsPZJxl4o4oxuk9sMNTAjFehjSmw-o7FCk5A,15218
|
|
138
|
-
bl_ui/space_dopesheet.py,sha256=VDqtjgFU33QAexLv-VZuqBrzk1e1hTkBlz7IfGO7nhU,67216
|
|
139
|
-
bl_ui/space_filebrowser.py,sha256=yFw7uui5toh2uLTehQuBTR0cfuPRPlTSP6t5VvXa3wg,74500
|
|
140
|
-
bl_ui/space_graph.py,sha256=4nkRr5CwVweKDPeKI4xM1w-ija6u3dhh8k_F9mUGBKU,50610
|
|
141
|
-
bl_ui/space_image.py,sha256=4YyyIIWypsrut5tJbeUeV1pyS1WsHgMlQx7Q2948M3c,187053
|
|
142
|
-
bl_ui/space_info.py,sha256=yF4iBEy4jS-qXmDJVqr3zxHib1vyGDMiZcVSnGlAwqQ,15172
|
|
143
|
-
bl_ui/space_nla.py,sha256=z74-3evr421T-wS7jBGJGCt_VD1bzaUw3wtvvRyBQhc,43203
|
|
144
|
-
bl_ui/space_node.py,sha256=wrf2KuMyTRUTO_tK0_849h7lQl1P8vILMI-eIv2gkNc,80131
|
|
145
|
-
bl_ui/space_outliner.py,sha256=DKQquhc3fGn9coH33KCiTMw5jQUGZyoLUTHJEtJghmc,35830
|
|
146
|
-
bl_ui/space_properties.py,sha256=nk-bxC14VIKGzwbn3QCSgpz8tf4eV-RKTsKPRRhJizE,6918
|
|
147
|
-
bl_ui/space_sequencer.py,sha256=aBqhnBS1rffBj7JbUqPQmJB6OVny9KMCYXCbUGAayKQ,190294
|
|
148
|
-
bl_ui/space_spreadsheet.py,sha256=BJP606uYzLYO_5Eg6nZh88x0r59eSb49nflXExZv6jM,2902
|
|
149
|
-
bl_ui/space_statusbar.py,sha256=jtJcf2bkpqmETANXJx32ItZIYLboMLWgnvS0lKXdelU,2301
|
|
150
|
-
bl_ui/space_text.py,sha256=jjN17ZxIqHpjVd3X6aLzvp3U5ELV12RfEII2_YMSx-I,40008
|
|
151
|
-
bl_ui/space_time.py,sha256=grK7SCMpYWoxrHQnYyQumeABif0JovbeEg4vKfluCDY,18254
|
|
152
|
-
bl_ui/space_toolsystem_common.py,sha256=KxRiVROPKsNGxHHdQtspWVLxBc5qfcfJmMjQ5kIqEZ0,5550
|
|
153
|
-
bl_ui/space_toolsystem_toolbar.py,sha256=kLF2fOXUVQfMJc6LKa3veZaZdw-hnP2vUNZ_rXAQ4Gg,21728
|
|
154
|
-
bl_ui/space_topbar.py,sha256=-sCAycjeAkK1n4dlINXL5MCueq2iABES7PNiVjhj7oQ,65863
|
|
155
|
-
bl_ui/space_userpref.py,sha256=ykwSG8SmzmeeFJPi7HciqhARflIJYVd7hrhZNPzfRUY,220003
|
|
156
|
-
bl_ui/space_view3d.py,sha256=s2lhe0nBI927tcqSlnveeyNEBfCCu26T3kxhn0uo8v8,647269
|
|
157
|
-
bl_ui/space_view3d_toolbar.py,sha256=-4AzEHAdL9xj-P_AAaGMcpwEl7qb4ovrnpJkNJKMhFc,243469
|
|
158
|
-
bl_ui/utils.py,sha256=K5yqT-IaUcR3sNZqrpwJUphTNa1MdLiaLR1uwirv2q0,618
|
|
159
|
-
bl_ui_utils/__init__.py,sha256=09VcD0Qr5ySzpITMc17GRGqGUrN-qjyG6qBeq0jgIFk,120
|
|
160
|
-
bl_ui_utils/bug_report_url.py,sha256=M51wZHtWA958vDu6plUC7IUcSWPVAZbp802cD40Pe7s,142
|
|
161
|
-
bl_ui_utils/layout.py,sha256=b7jcmjKLkH_2T8APBi-x_Mq87uYb3SHcSet6vVQ8UQQ,142
|
|
162
|
-
bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
163
|
-
blend_render_info/__init__.py,sha256=r4ZaBhNlt4hSSpRsjjL6RUM4BdZ0m-VOX10wo4u0Cic,216
|
|
164
|
-
blend_render_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
165
|
-
blf/__init__.py,sha256=xAUwxDUxn54_b2dJsCduURHQ-k_MY03sOPazZHzGPd4,5213
|
|
166
|
-
blf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
167
|
-
bmesh/__init__.py,sha256=g4s6qEcJg7RbQqaMlWvbCk8ZH9-KAzTNPKHduLHwV6Y,1328
|
|
168
|
-
bmesh/geometry.py,sha256=x6mddYzW2WecuFz1Z9n2cLrxTufR1cqGnZjO-nL-uME,626
|
|
169
|
-
bmesh/ops.py,sha256=C852Zt3wgC-2F9ucuEIOlpq7YLro8lZMPZsg8SKQTjo,77359
|
|
170
|
-
bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
|
-
bmesh/types.py,sha256=oYEC1mdFyB4xuouSZ81BykLlOcfQf3TIzwi3KEM2_Kg,37528
|
|
172
|
-
bmesh/utils.py,sha256=xljVJDVm-7bKplQoobdKQOeWHwINjMMe-Azb274XOz4,6556
|
|
173
|
-
bpy/__init__.py,sha256=v-Mt-IHTcT1Ws3-JjCAf6zAPap0Q2Mjs8NsxcMaT5x4,338
|
|
174
|
-
bpy/msgbus.py,sha256=iU7oyEPGqk30JvYfwUTx89kfSPmxLXmzo92Xgc9mmhg,1669
|
|
175
|
-
bpy/path.py,sha256=y_nSzvITDZDD5L45io2KmiOJDOWIRm6LPMZT14surqg,6327
|
|
176
|
-
bpy/props.py,sha256=FhZ7Ne0nnqoYjeNENCm2c99RpOvPDmaBsXEA4HReUaQ,29328
|
|
177
|
-
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
178
|
-
bpy/types.py,sha256=b2ab8a4vz5oaPmXpDBptudaE42ZKqX3ow0J9yKS14Qw,3578951
|
|
179
|
-
bpy/app/__init__.py,sha256=yNrEMGmq2Z0zZzbVGaP2glIMFSRbYaq840Ib1STucHI,9210
|
|
180
|
-
bpy/app/handlers.py,sha256=7DaM8QZ79D5nHstZ4ZDM6yBZCde38yDUQ9BbNy6UK4E,5838
|
|
181
|
-
bpy/app/icons.py,sha256=L1J2n6QE3FEDrzSvf8jdmHr2SkMoY-ejZq1sS1o0UgY,1157
|
|
182
|
-
bpy/app/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
183
|
-
bpy/app/timers.py,sha256=XaSmMpe33D0yHdkOrYBGOJb6KA7fM2ciQiWCrAQhNUg,1476
|
|
184
|
-
bpy/app/translations.py,sha256=WPGkHLCBiSBZnxrl2nFNUjX9llLi-CKZfBqoCvw0yq4,4499
|
|
185
|
-
bpy/ops/__init__.py,sha256=03TVSYnSnJu1xtCaXV6A2jn0fYcTchV8qI1F4yB8As0,1751
|
|
186
|
-
bpy/ops/action.py,sha256=DmRPlY_eVfSEsmaSzvL1oQe5pDi8Thtcc5pOke1_Btc,29695
|
|
187
|
-
bpy/ops/anim.py,sha256=woPbB120Wo54gaVjzAnnHbnZAv7A1x3YWrZt2SC9e0w,38872
|
|
188
|
-
bpy/ops/armature.py,sha256=-4Guf6-QVitqY0RvcbjfAYQqJx1PrWvjGxpdE7PVAmI,34409
|
|
189
|
-
bpy/ops/asset.py,sha256=NP1eCr1hnGR-Q96AdhAvqDEk9ht9irI6S2r-xXu_pwU,16062
|
|
190
|
-
bpy/ops/boid.py,sha256=R4yy1esI8lZ_8iFDHRiWdeU7sLAxpn8EAs2lX7Qo37s,4311
|
|
191
|
-
bpy/ops/brush.py,sha256=FTVGoJl7lqMEFyeLajaDCy9qAnYcxOBbd1Iog2MmDMs,6267
|
|
192
|
-
bpy/ops/buttons.py,sha256=VNhGRo8QllzjUNlxitv-DI4Zg0UDxFo1Vl650hGElt4,14203
|
|
193
|
-
bpy/ops/cachefile.py,sha256=OPnnd2xVCdOh4x-ktS17jPP0IQIJl2XOmZmSdc9zfZQ,13723
|
|
194
|
-
bpy/ops/camera.py,sha256=lbsmSKX3_rr2_iTLCuW0dkLbGw29YxkGK26-0BxhRZI,2886
|
|
195
|
-
bpy/ops/clip.py,sha256=1yDByyhgu-TeL33g5uCrRZfhMhd5MOOusqjsm2W7W48,75474
|
|
196
|
-
bpy/ops/cloth.py,sha256=ntxwa03gSITXEBlXmKDyldzyQV8tO6GvEi1EZC6F100,1353
|
|
197
|
-
bpy/ops/collection.py,sha256=GivLzrnxn601lM4uawIXbYTUwItqzzTOcfQsC3epRzA,3676
|
|
198
|
-
bpy/ops/console.py,sha256=9AOySd0Zo6b110lOAvBCYwkioxzGdYcFBwBCct5OlwY,14663
|
|
199
|
-
bpy/ops/constraint.py,sha256=jDxUa7zMwDsxpSGS5fhq8m-sZMuoVTHFS27FqYbpwMM,18079
|
|
200
|
-
bpy/ops/curve.py,sha256=prcZhlS95fINt2v4k0L8gzyG37nyFII0exYpoz6m5gk,43979
|
|
201
|
-
bpy/ops/curves.py,sha256=xGWjCG9uXG2SR6Usb8IOf1EJ_G7KZiaipu_i2tPhpss,10279
|
|
202
|
-
bpy/ops/cycles.py,sha256=ZPWJP5dvEhLra0mtTE6QPMdSWgJgO10ADLnSC4tjtxI,3287
|
|
203
|
-
bpy/ops/dpaint.py,sha256=Ao3ldFlxA6yiu9S0Rh9lGK7G9K5AIG3kpdaENguQ2O8,2961
|
|
204
|
-
bpy/ops/ed.py,sha256=oXlIFsc3ndR3F-jHQQNF-ccMDeiGO9pM0aU8Bu40EQw,12358
|
|
205
|
-
bpy/ops/export_anim.py,sha256=z5UL3h0fQi4a0eYJMt2NBdVx5pK2X3wuW91SFGIYP6I,2714
|
|
206
|
-
bpy/ops/export_mesh.py,sha256=I4oQWg4VfijRNZJrzQ_ZJA1hLpzC8Tb7wOjcW_d4a5Q,3456
|
|
207
|
-
bpy/ops/export_scene.py,sha256=GLW39bmxq4V28PvwRoKOzsbPc2aInldEZBLfzvJ6F1k,49773
|
|
208
|
-
bpy/ops/file.py,sha256=PWKN3BdXE9tDF8BoBYthiGCzwizs10Dxofruo1LJGtQ,33329
|
|
209
|
-
bpy/ops/fluid.py,sha256=e9zwzi-bmRE2N76_3B5Q848xLywo8BojKH0KdLFYwxM,7771
|
|
210
|
-
bpy/ops/font.py,sha256=leZ2v9sOFhEmVwgr3-9TFcpLv3svLAjdJ8SI7LhIjV4,24152
|
|
211
|
-
bpy/ops/geometry.py,sha256=2NaXyqqzm_Jv1I4pgHY7zEVCamUkgJWWZqB-eExN8m8,8982
|
|
212
|
-
bpy/ops/gizmogroup.py,sha256=20xapYSUJsxGj18ARkiaTgQFTqrHsru_-4GHAjprAWg,2307
|
|
213
|
-
bpy/ops/gpencil.py,sha256=ywJIBG7b2pb64v6Q-E63S0MMNkdTx9arGOC7ikzHqwE,140587
|
|
214
|
-
bpy/ops/graph.py,sha256=78ho2uSXKPELANPS2k5iKiHb3m-kzHETbzTUS77tlQ4,63212
|
|
215
|
-
bpy/ops/grease_pencil.py,sha256=sRNxOKrh77m4T2kdEHDdmah5gCX1KkgOdiqcREjDcCM,28134
|
|
216
|
-
bpy/ops/image.py,sha256=iXKM5m7zFp_IH4qiCN4pQ3PjdFTVXMk3iFuUulUyFiQ,60453
|
|
217
|
-
bpy/ops/import_anim.py,sha256=F7lL59APjEPDm2_w3JvuNLomH09wlDMOED_RfhIQNSw,3573
|
|
218
|
-
bpy/ops/import_curve.py,sha256=WK2FeQ8phtt1gqhUWuM_Q2fwGqssRpPuPBj41uQzmbQ,1030
|
|
219
|
-
bpy/ops/import_mesh.py,sha256=glfT3LyalyKWTZJO0ekba77DXDHE4g-jz-0_XF0eWPU,2482
|
|
220
|
-
bpy/ops/import_scene.py,sha256=FHRFAlU0NueyjBjlUHCh4Yd5BJt-LkBm937n92fdf6E,13435
|
|
221
|
-
bpy/ops/info.py,sha256=ckotxyUrnAITL3M_VJoh6x9nbdUuN9_I5yrsyuyguQ4,5313
|
|
222
|
-
bpy/ops/lattice.py,sha256=GvweMCp3RYe4ENKUsqAWwzj4ZImQCC4Ff93x0Dqe8hQ,5892
|
|
223
|
-
bpy/ops/marker.py,sha256=D-j6XYkL3Co3zGIjqO058byL9booG3kYG0M5U3dUuPQ,9454
|
|
224
|
-
bpy/ops/mask.py,sha256=lqFihR2Fj_xJ4-k9LP6PZbXVShMEnXpkJcoNZNmUxKE,28916
|
|
225
|
-
bpy/ops/material.py,sha256=G-X3u1Q0dz5uV-u6kW5kJbV7cTGP_i21Doy5bAgEvG4,1555
|
|
226
|
-
bpy/ops/mball.py,sha256=2bLdE6RZIj8gwdGp1ykNDgmRCWJV4eNSnD_3Wi-kiFs,6643
|
|
227
|
-
bpy/ops/mesh.py,sha256=LqYqfNeDGBdWCKWkdPbWWPTyLFJa2VwuMNlYrYQfg54,195245
|
|
228
|
-
bpy/ops/nla.py,sha256=JSX_WT9vb_YkImofk6LFrFwb9HFhKzYqVwCwvrYxKww,31698
|
|
229
|
-
bpy/ops/node.py,sha256=KF2rA3a0LmJd5C6EMLo5jQKgLhOZwW6rvg_PZ-H6cr8,80673
|
|
230
|
-
bpy/ops/object.py,sha256=ILKQNKnpF5CblQH8QnqLK5kgXWsoLNv6SgxuB-7IyFk,246417
|
|
231
|
-
bpy/ops/outliner.py,sha256=-5nHZPW9-8lIcblO8d8d30EiXxrT4GirH4SCraRJEus,47160
|
|
232
|
-
bpy/ops/paint.py,sha256=YIgOs5TNYn9JycXPS1awg-wjtzmXNDKhw0pfzKnXddc,46676
|
|
233
|
-
bpy/ops/paintcurve.py,sha256=-KO2LTDl1ZJXO6lHtxoVk5VNLXsyOSfhXXpfBdLpai0,5636
|
|
234
|
-
bpy/ops/palette.py,sha256=Qntl2IpH0GxWIKsxm4gWGj6KYwX3QoxNr6CK5MOCT5Q,4151
|
|
235
|
-
bpy/ops/particle.py,sha256=wvfQe07e53uJ3jC1Tv5knH-kylUSQnkVSa7FNJld2Tc,24796
|
|
236
|
-
bpy/ops/pose.py,sha256=XbUO1IOg095_NZv7CQ7X1jWMcc_imar_F-quQP0Hix4,34846
|
|
237
|
-
bpy/ops/poselib.py,sha256=MEvN3gG-Au_yBXJAESCS7QtY0FZ4YszixRo4Z3ShQwo,8132
|
|
238
|
-
bpy/ops/preferences.py,sha256=Fwe1_iNFCRq48S8g6WrENv6jEZugSMS3_Q_RrYHIjpw,41253
|
|
239
|
-
bpy/ops/ptcache.py,sha256=gCyn3CQgA6my1N2mePfguSX5f11pBZsf3N2HMOs-ydg,3874
|
|
240
|
-
bpy/ops/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
241
|
-
bpy/ops/render.py,sha256=VLcg2Fi-Bn3mu3_LRPoO8hK9-YFL97H6PT5IQ7BC-wM,12364
|
|
242
|
-
bpy/ops/rigidbody.py,sha256=kTCt5HqZEN1m0qQCarT9NJWUeVxz4bJgP6Gxi4veolI,10760
|
|
243
|
-
bpy/ops/scene.py,sha256=5hAjZQhNVPRrBB0Zj1MUKWHQUClzhgqbqtv91-jmcu8,27388
|
|
244
|
-
bpy/ops/screen.py,sha256=Wd3DInzm9FesfYca18gi9cMyXQWZ6-72n7kKgNSIpo4,35435
|
|
245
|
-
bpy/ops/script.py,sha256=Pc-XpkjrsR8gWJncupzczXRwVL28_CIUcYp1-59iQQA,2186
|
|
246
|
-
bpy/ops/sculpt.py,sha256=cQXiZ9s9OHtL4Z3J7T8F6jFVfnIPCe_oW2gAaJG_H68,46998
|
|
247
|
-
bpy/ops/sculpt_curves.py,sha256=oNZBAkwHU4eiqi3aUsTKHBd5OzQj8qHxEV71J9Pkb5o,4070
|
|
248
|
-
bpy/ops/sequencer.py,sha256=mVaIHyuQGQyfwRaXqV7YoaA41QLjoJ0yjgNFQ9qmhBA,106989
|
|
249
|
-
bpy/ops/sound.py,sha256=NNyrQUq1dBGD2gR5U-DQtyZQLyH1c9EWdUhfCoTeLmI,23506
|
|
250
|
-
bpy/ops/spreadsheet.py,sha256=qp2jyKi8qnqCF7wCcWjPhSPsHVxoZIAxvkYNE-jidJ8,2819
|
|
251
|
-
bpy/ops/surface.py,sha256=ixOgjSqfzXFO4Q4BPmmozZ4tTME0D1jHgnys7VIygdY,11037
|
|
252
|
-
bpy/ops/text.py,sha256=bywrf3wfkbcTcxuCBYL1zIJGwQONQUnrXv-61qyEkkY,35639
|
|
253
|
-
bpy/ops/text_editor.py,sha256=pxBy-WaNl1P3uGkI_CkQ4E8jD8XS8pjjHvfjDi2M9qs,1359
|
|
254
|
-
bpy/ops/texture.py,sha256=70yWizBVh7pIN3oRGiMULc-mpyVO38ALce3JfWNjbNs,2222
|
|
255
|
-
bpy/ops/transform.py,sha256=yVa1b231XT9UsF8OCp22npmsu_lqYJ4JgWtgJQdP3yU,87201
|
|
256
|
-
bpy/ops/ui.py,sha256=qun-GU2n3ly4pzlkBnvQ9S_9dE0E-PVXSnsm-CXr98Y,20804
|
|
257
|
-
bpy/ops/uilist.py,sha256=CvKQWaIkvk35QZNJ4JYrxDLmoq6HEq06a1wJY3Nqh3E,3256
|
|
258
|
-
bpy/ops/uv.py,sha256=YpOgyzNq9dQv6TF0JiMhujDcuiPOPRlAeW8PI5zV51g,62478
|
|
259
|
-
bpy/ops/view2d.py,sha256=_GBefdie6MtPgihbLXWUxdwxmzbQ3y3pMoy5Ieng2Ns,12729
|
|
260
|
-
bpy/ops/view3d.py,sha256=zwPEfpDKR9qR-XQdQ-J-_NGP9jCq8kJgBWUZdO8lzq0,59752
|
|
261
|
-
bpy/ops/wm.py,sha256=vvrZb_VRFHt9xJWnwkHEgtcVFnv4iAfw-hP1XDLsWK4,290533
|
|
262
|
-
bpy/ops/workspace.py,sha256=PJnVkwoIojMxPW81k5iVz752k_ED1NG76S0IO2KbOUw,4154
|
|
263
|
-
bpy/ops/world.py,sha256=gVKvKri-E8mwwU3ZZXc09h_nwoe7XE3YVOH8boBUogM,572
|
|
264
|
-
bpy/utils/__init__.py,sha256=R0mT4Z0kdkd651Xd1QOxHdfQi9jJvd2u_Wa7zlzoodw,11238
|
|
265
|
-
bpy/utils/previews.py,sha256=oGOL8p-TJh7jHzflLSQCT2WwrUGPLQBLUh8Dh2Gav7M,2314
|
|
266
|
-
bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
267
|
-
bpy/utils/units.py,sha256=lwJazbcrjfb-4hR-hpZFdZzaxhNJ6lYyIvwQOHI2lm4,2778
|
|
268
|
-
bpy_extras/__init__.py,sha256=H3KyRqzMR_0g_Dz4coyi8hIy6N_YhKKpCz-vCJixUF8,437
|
|
269
|
-
bpy_extras/anim_utils.py,sha256=gC1KEbCJEMIoDv9Cah9P56lGXyq_a2MxP-RbHuOaMCw,2924
|
|
270
|
-
bpy_extras/asset_utils.py,sha256=RtVNNGlGVc6K5QsRiVGdiQGtDuhZN39ijuJcAkp9F8o,498
|
|
271
|
-
bpy_extras/bmesh_utils.py,sha256=0x8qtsw1GfeTEuBemF6-YgNs7oG3cEkpX6_z_QInIpg,213
|
|
272
|
-
bpy_extras/id_map_utils.py,sha256=VzlLilMdf4ceZrZtjUOTKPpCA_yvv-GzottxjRLsX-0,447
|
|
273
|
-
bpy_extras/image_utils.py,sha256=_u1fIp6329AIIvSNhqoAwd8gyG7Qrj-gQk_yMzZcln0,2171
|
|
274
|
-
bpy_extras/io_utils.py,sha256=VzrLEFrj5nZak0VtjcKH0y01n99Kpcn5lYoM-CyE9Pk,4957
|
|
275
|
-
bpy_extras/keyconfig_utils.py,sha256=CXO-4SMge_ytZ0a_cMX0fPGj47BuRE4R3WNCffFac5M,431
|
|
276
|
-
bpy_extras/mesh_utils.py,sha256=drt5vD4wDSEbd180w2R7Alw3cXk86be-nU_fy_U7O2s,2854
|
|
277
|
-
bpy_extras/node_shader_utils.py,sha256=e8oAMZt2tzBq_3retNePL4wr9GfYh9GQlykW9pgvPAI,6849
|
|
278
|
-
bpy_extras/node_utils.py,sha256=wnzmiyiHrZKVAtCGj08JzrtlulZREFBP7PxUH0fjozg,264
|
|
279
|
-
bpy_extras/object_utils.py,sha256=0gtzJmHnvaWV0wdK54optNBOQEUc26TFQeE7R8XVqrI,2752
|
|
280
|
-
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
281
|
-
bpy_extras/view3d_utils.py,sha256=Xl1-7E8Ge0DtFVJQECAZ2uyZhewIt3d0jNuJxU_ZJ2U,3562
|
|
282
|
-
bpy_extras/extensions/__init__.py,sha256=bdsIrb_l0d2w4d7-VdYRHrY1iSferwAUc8qAkJTmdtM,100
|
|
283
|
-
bpy_extras/extensions/junction_module.py,sha256=IlOVd4Ow7btD1MnT8vz6EVke60oP-y3daOd7i5r1wTg,714
|
|
284
|
-
bpy_extras/extensions/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
285
|
-
bpy_extras/wm_utils/__init__.py,sha256=DW9DeIMC3fdLn7M9-PndWQSe2eT-mB5rhr8au0xj02M,100
|
|
286
|
-
bpy_extras/wm_utils/progress_report.py,sha256=rS2rjtEShiYRSXdEQY-VvyL5ES3xij1D87hNNG-GiVE,1146
|
|
287
|
-
bpy_extras/wm_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
288
|
-
bpy_restrict_state/__init__.py,sha256=v1uyuhb3Qfq_5yWzmAYt4kJ3iz_Ghoz1qW_8vp5gajM,285
|
|
289
|
-
bpy_restrict_state/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
290
|
-
bpy_types/__init__.py,sha256=4O5zuk3zjxtWHOWmeQ96QdbV6EjHqXvfmorljaLuJ2c,61096
|
|
291
|
-
bpy_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
292
|
-
console_python/__init__.py,sha256=lX8AcXEbMppaJ1-VamCmNKzzw2qBKt6OIQBEQc3j6t4,625
|
|
293
|
-
console_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
294
|
-
console_shell/__init__.py,sha256=GbmrWc9awNhB8qA71CE3C9t_R-TafC6_lHsRbkkytpc,366
|
|
295
|
-
console_shell/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
296
|
-
freestyle/__init__.py,sha256=1Kko9644OCjZQsaRS59nww-E3Gum3iQi8lvUkxHmR4M,213
|
|
297
|
-
freestyle/chainingiterators.py,sha256=fBffHxb3mkEd0Woh9sCZvRQUoU8aoFJmNXsz-xNMzzY,9918
|
|
298
|
-
freestyle/functions.py,sha256=1dQMRk_L3C9FBSMpyS9bpqqcS-ucbf6L1PNBba8Xuqs,47908
|
|
299
|
-
freestyle/predicates.py,sha256=FB7Jjw7BfAu0dFhuYngCwXWH0Ho6cNNRi-kDXHkHXO0,13232
|
|
300
|
-
freestyle/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
|
-
freestyle/shaders.py,sha256=qd7pb9iCO7zpCBOONW59Ac40hewtMuzF2mxTu0bvzBU,23745
|
|
302
|
-
freestyle/types.py,sha256=sgOQogFJ3DA4PANTQlg-FxIhEnvv9XZu-M5rSKEefyY,86403
|
|
303
|
-
freestyle/utils/ContextFunctions.py,sha256=vJzn9t9gvmL0Mfl9t3vcpHwOsF8SwrdoL1y3zL_jYns,3357
|
|
304
|
-
freestyle/utils/__init__.py,sha256=dHik8d-dXju35xQM8o7XyoxTzhM5ASP3SWaj3ugOFgQ,5644
|
|
305
|
-
freestyle/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
306
|
-
gpu/__init__.py,sha256=qVb-CCBXJ4COcSNUmYKyT72qRnFkGLb5Jw6jx0KBEJI,245
|
|
307
|
-
gpu/capabilities.py,sha256=AD0lJtvRByQN9z1AflKaQ9dtHGqmdXlSAVpwEDh-aw8,3662
|
|
308
|
-
gpu/matrix.py,sha256=9c2ltUJkE6Z7oyEHPsnpIoBwbsllL7mKFzcvw0Nbn_Q,2710
|
|
309
|
-
gpu/platform.py,sha256=-lUniiNkDFTF6IkQBKulJFCdAIfs9sfa6x1yuHLSrAY,804
|
|
310
|
-
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
311
|
-
gpu/select.py,sha256=Q5TGA1jwYwEW0xAQEnNN4p8pBo5MZflzIul5UaWsQG4,235
|
|
312
|
-
gpu/shader.py,sha256=h1VMUl-3WRxqRhRJsOq7up2Vr82PnR9jPD_2dDSY_tI,1190
|
|
313
|
-
gpu/state.py,sha256=uLustVOVTpy-e7Ef2ow8VQmTxYiZdC8-QOImqIrN-Nw,5391
|
|
314
|
-
gpu/texture.py,sha256=7YjR9Sk7X61Mi1GNn-JHB0hIj4FkYnnROX_W6zciTjw,598
|
|
315
|
-
gpu/types.py,sha256=vJrBcHMfnzpoTjfxBuWcI1tXeGl0OZy_3YwtbqDlmKA,29847
|
|
316
|
-
gpu_extras/__init__.py,sha256=QnaA2BEZeaM89M3kwnsQ-c0KDAunbu3vRamRm6sI3JY,112
|
|
317
|
-
gpu_extras/batch.py,sha256=x5MRDs3n8du0fCB9CGwgMFWCchlNfR6Fmte3RZ3UJOs,781
|
|
318
|
-
gpu_extras/presets.py,sha256=-YqgXe1H7MXkIJpSHGZeTttW-UNG87jADAzbbm0MY6g,1438
|
|
319
|
-
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
320
|
-
graphviz_export/__init__.py,sha256=NzLJsNzQ1elL2BFsz47t67qyZwUyBuSoHvQ2W5gk0uU,265
|
|
321
|
-
graphviz_export/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
322
|
-
idprop/__init__.py,sha256=VrqW1I_LJSGD7wUckdB6BuAnXGty0TKBrgII9mVAfsc,90
|
|
323
|
-
idprop/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
324
|
-
idprop/types.py,sha256=DW-ATppvBQKKzx2Gr97Bs6pALt2NkaLCbrdE-QvfzUs,1993
|
|
325
|
-
imbuf/__init__.py,sha256=0xWEPYtcMJxqgroun-EKdSG0WmoMjEKc3sY_uJ01qp0,997
|
|
326
|
-
imbuf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
327
|
-
imbuf/types.py,sha256=o_-mV4cazzdmBjaf-r8PrwW_gA2Ek_nFni4oM7aNIlo,1298
|
|
328
|
-
keyingsets_builtins/__init__.py,sha256=h6Aow_lEkNBCQhDPbyD6M04-7qk9GgDOlbazEPor9IQ,48637
|
|
329
|
-
keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
330
|
-
keyingsets_utils/__init__.py,sha256=sVWQCtBaLhE_LBzOrQ6x5JmPmr_TpdHS4AWuFax8VaI,1141
|
|
331
|
-
keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
332
|
-
mathutils/__init__.py,sha256=i3SK5zVwluLNDFVlodixLZ77iznYrDF6-TF_y_szngE,86905
|
|
333
|
-
mathutils/bvhtree.py,sha256=QvhPyk19HY4FFHZyRVB5qfGoMIlZeuSnDn6xzXZXZj0,4758
|
|
334
|
-
mathutils/geometry.py,sha256=ln_2cvBPmV4gUibQvyDnNnbnpsTglCvr7ysCUtON2uE,22716
|
|
335
|
-
mathutils/interpolate.py,sha256=usXtY0hT9BLgpjOGveMhgXERSSgsyq9CSJzTpB9aTcg,345
|
|
336
|
-
mathutils/kdtree.py,sha256=4qzMjy6Uf6WdVGTbFofQh-MQe6Gp4xZW4ZUX3YyBvik,2263
|
|
337
|
-
mathutils/noise.py,sha256=xFpsndQ8wEtG2DBA2g3BmktEHQG1tmu8TPGOAwXCTFQ,13248
|
|
338
|
-
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
339
|
-
nodeitems_builtins/__init__.py,sha256=tx0gdaefLeQz_e3cv5FnWLPNfzobyNVCfdYAip-qW7U,821
|
|
340
|
-
nodeitems_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
341
|
-
nodeitems_utils/__init__.py,sha256=Aci02ip_vJ5lwNzuA23VkDj5kIRDKmYmA4TFN70Pom4,845
|
|
342
|
-
nodeitems_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
343
|
-
rna_info/__init__.py,sha256=riM-OwN99rpWOPDVxMfwkMtS8fE29rNglh8aqcRNQW8,3689
|
|
344
|
-
rna_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
|
-
rna_keymap_ui/__init__.py,sha256=1qI2UFVikTspoWUTD_3rQEnIEhP2WKIEV5t6i1AH2E4,574
|
|
346
|
-
rna_keymap_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
|
-
rna_prop_ui/__init__.py,sha256=qfnaxqtPcV56DvGWbqO3hcsBS6aj-8GgviUgqH1sCsc,1249
|
|
348
|
-
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
349
|
-
rna_xml/__init__.py,sha256=gVXdeZEyySdOsTsovZP6-COW4AShgF0ow2wSnF_a-TQ,606
|
|
350
|
-
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
351
|
-
sys_info/__init__.py,sha256=R6zN_jJrhmc_QgS9X_BQrknsTTUotqadk1HGwEnhwEg,129
|
|
352
|
-
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
353
|
-
fake_bpy_module-20231205.dist-info/METADATA,sha256=mjrI0Eagp_lNOLi7IXbT3yKGfJi4bieOiUbT4tC5W-o,7008
|
|
354
|
-
fake_bpy_module-20231205.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
355
|
-
fake_bpy_module-20231205.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
356
|
-
fake_bpy_module-20231205.dist-info/RECORD,,
|