fake-bpy-module 20250612__py3-none-any.whl → 20260118__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_calltip/__init__.pyi +0 -13
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_import/__init__.pyi +0 -5
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_namespace/__init__.pyi +0 -11
- {bl_console_utils → _bl_console_utils}/autocomplete/intellisense/__init__.pyi +0 -10
- {bl_i18n_utils → _bl_i18n_utils}/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/bl_extract_messages/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/settings/__init__.pyi +3 -1
- {bl_i18n_utils → _bl_i18n_utils}/utils/__init__.pyi +4 -4
- _bl_i18n_utils/utils_spell_check/__init__.pyi +22 -0
- {bl_ui_utils → _bl_ui_utils}/__init__.pyi +1 -0
- _blendfile_header/__init__.pyi +48 -0
- _bpy_internal/__init__.pyi +4 -1
- _bpy_internal/assets/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/blender_asset_library_openapi/__init__.pyi +13 -0
- _bpy_internal/disk_file_hash_service/__init__.pyi +19 -0
- _bpy_internal/disk_file_hash_service/backend_sqlite/__init__.pyi +48 -0
- _bpy_internal/disk_file_hash_service/hash_service/__init__.pyi +64 -0
- _bpy_internal/disk_file_hash_service/types/__init__.pyi +53 -0
- _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
- _bpy_internal/filesystem/__init__.pyi +5 -0
- _bpy_internal/filesystem/locking/__init__.pyi +28 -0
- _bpy_internal/grease_pencil/stroke/__init__.pyi +2 -2
- _bpy_internal/platform/__init__.pyi +5 -0
- _bpy_types/__init__.pyi +1592 -0
- {keyingsets_utils → _keyingsets_utils}/__init__.pyi +2 -0
- {rna_info → _rna_info}/__init__.pyi +4 -2
- addon_utils/__init__.pyi +0 -13
- aud/__init__.pyi +122 -145
- bl_app_templates_system/Storyboarding/__init__.pyi +11 -0
- bl_app_templates_system/__init__.pyi +5 -0
- bl_app_templates_system/py.typed +0 -0
- bl_math/__init__.pyi +3 -13
- bl_operators/__init__.pyi +1 -0
- bl_operators/add_mesh_torus/__init__.pyi +2 -3
- bl_operators/anim/__init__.pyi +62 -38
- bl_operators/assets/__init__.pyi +4 -9
- bl_operators/bone_selection_sets/__init__.pyi +15 -42
- bl_operators/clip/__init__.pyi +12 -31
- bl_operators/connect_to_output/__init__.pyi +2 -3
- bl_operators/console/__init__.pyi +6 -15
- bl_operators/constraint/__init__.pyi +6 -13
- bl_operators/copy_global_transform/__init__.pyi +261 -0
- bl_operators/file/__init__.pyi +6 -11
- bl_operators/freestyle/__init__.pyi +5 -12
- bl_operators/geometry_nodes/__init__.pyi +5 -12
- bl_operators/grease_pencil/__init__.pyi +2 -3
- bl_operators/image/__init__.pyi +6 -15
- bl_operators/image_as_planes/__init__.pyi +3 -10
- bl_operators/mesh/__init__.pyi +3 -49
- bl_operators/node/__init__.pyi +294 -73
- bl_operators/object/__init__.pyi +17 -53
- bl_operators/object_align/__init__.pyi +2 -3
- bl_operators/object_quick_effects/__init__.pyi +5 -12
- bl_operators/object_randomize_transform/__init__.pyi +2 -3
- bl_operators/presets/__init__.pyi +27 -76
- bl_operators/rigidbody/__init__.pyi +4 -9
- bl_operators/screen_play_rendered_anim/__init__.pyi +2 -3
- bl_operators/sequencer/__init__.pyi +12 -27
- bl_operators/spreadsheet/__init__.pyi +2 -3
- bl_operators/userpref/__init__.pyi +26 -75
- bl_operators/uvcalc_follow_active/__init__.pyi +3 -4
- bl_operators/uvcalc_lightmap/__init__.pyi +3 -4
- bl_operators/uvcalc_transform/__init__.pyi +26 -16
- bl_operators/vertexpaint_dirt/__init__.pyi +2 -3
- bl_operators/view3d/__init__.pyi +9 -24
- bl_operators/wm/__init__.pyi +48 -139
- bl_operators/world/__init__.pyi +3 -4
- bl_ui/__init__.pyi +7 -7
- bl_ui/anim/__init__.pyi +2 -3
- bl_ui/asset_shelf/__init__.pyi +2 -3
- bl_ui/generic_ui_list/__init__.pyi +4 -19
- bl_ui/node_add_menu/__init__.pyi +263 -7
- bl_ui/node_add_menu_compositor/__init__.pyi +96 -79
- bl_ui/node_add_menu_geometry/__init__.pyi +309 -270
- bl_ui/node_add_menu_shader/__init__.pyi +49 -49
- bl_ui/node_add_menu_texture/__init__.pyi +17 -62
- bl_ui/properties_collection/__init__.pyi +9 -22
- bl_ui/properties_constraint/__init__.pyi +129 -282
- bl_ui/properties_data_armature/__init__.pyi +22 -57
- bl_ui/properties_data_bone/__init__.pyi +12 -31
- bl_ui/properties_data_camera/__init__.pyi +18 -47
- bl_ui/properties_data_curve/__init__.pyi +18 -47
- bl_ui/properties_data_curves/__init__.pyi +11 -26
- bl_ui/properties_data_empty/__init__.pyi +3 -6
- bl_ui/properties_data_grease_pencil/__init__.pyi +23 -62
- bl_ui/properties_data_lattice/__init__.pyi +7 -14
- bl_ui/properties_data_light/__init__.pyi +13 -32
- bl_ui/properties_data_lightprobe/__init__.pyi +16 -43
- bl_ui/properties_data_mesh/__init__.pyi +47 -62
- bl_ui/properties_data_metaball/__init__.pyi +9 -20
- bl_ui/properties_data_modifier/__init__.pyi +22 -28
- bl_ui/properties_data_pointcloud/__init__.pyi +8 -19
- bl_ui/properties_data_shaderfx/__init__.pyi +2 -3
- bl_ui/properties_data_speaker/__init__.pyi +9 -20
- bl_ui/properties_data_volume/__init__.pyi +12 -29
- bl_ui/properties_freestyle/__init__.pyi +27 -76
- bl_ui/properties_grease_pencil_common/__init__.pyi +10 -168
- bl_ui/properties_mask_common/__init__.pyi +8 -21
- bl_ui/properties_material/__init__.pyi +26 -86
- bl_ui/properties_material_gpencil/__init__.pyi +36 -57
- bl_ui/properties_object/__init__.pyi +59 -65
- bl_ui/properties_output/__init__.pyi +21 -60
- bl_ui/properties_paint_common/__init__.pyi +30 -22
- bl_ui/properties_particle/__init__.pyi +58 -161
- bl_ui/properties_physics_cloth/__init__.pyi +15 -42
- bl_ui/properties_physics_common/__init__.pyi +2 -3
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +23 -66
- bl_ui/properties_physics_field/__init__.pyi +11 -30
- bl_ui/properties_physics_fluid/__init__.pyi +29 -84
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +2 -3
- bl_ui/properties_physics_rigidbody/__init__.pyi +9 -24
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +14 -39
- bl_ui/properties_physics_softbody/__init__.pyi +16 -45
- bl_ui/properties_render/__init__.pyi +139 -197
- bl_ui/properties_scene/__init__.pyi +46 -50
- bl_ui/properties_strip/__init__.pyi +744 -0
- bl_ui/properties_strip_modifier/__init__.pyi +45 -0
- bl_ui/properties_texture/__init__.pyi +30 -83
- bl_ui/properties_view_layer/__init__.pyi +84 -39
- bl_ui/properties_workspace/__init__.pyi +6 -13
- bl_ui/properties_world/__init__.pyi +14 -35
- bl_ui/space_clip/__init__.pyi +150 -231
- bl_ui/space_console/__init__.pyi +7 -18
- bl_ui/space_dopesheet/__init__.pyi +143 -100
- bl_ui/space_filebrowser/__init__.pyi +33 -90
- bl_ui/space_graph/__init__.pyi +48 -85
- bl_ui/space_image/__init__.pyi +111 -229
- bl_ui/space_info/__init__.pyi +7 -18
- bl_ui/space_nla/__init__.pyi +44 -73
- bl_ui/space_node/__init__.pyi +161 -123
- bl_ui/space_outliner/__init__.pyi +16 -45
- bl_ui/space_properties/__init__.pyi +34 -10
- bl_ui/space_sequencer/__init__.pyi +164 -901
- bl_ui/space_spreadsheet/__init__.pyi +4 -9
- bl_ui/space_statusbar/__init__.pyi +2 -3
- bl_ui/space_text/__init__.pyi +17 -48
- bl_ui/space_time/__init__.pyi +25 -71
- bl_ui/space_toolsystem_common/__init__.pyi +2 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +30 -7
- bl_ui/space_topbar/__init__.pyi +35 -79
- bl_ui/space_userpref/__init__.pyi +185 -321
- bl_ui/space_view3d/__init__.pyi +337 -817
- bl_ui/space_view3d_sidebar/__init__.pyi +127 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +110 -880
- bl_ui/utils/__init__.pyi +0 -17
- blend_render_info/__init__.pyi +1 -0
- blf/__init__.pyi +8 -54
- bmesh/__init__.pyi +2 -9
- bmesh/geometry/__init__.pyi +1 -4
- bmesh/ops/__init__.pyi +125 -508
- bmesh/types/__init__.pyi +318 -664
- bmesh/utils/__init__.pyi +17 -43
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +93 -88
- bpy/app/handlers/__init__.pyi +19 -19
- bpy/app/icons/__init__.pyi +0 -6
- bpy/app/timers/__init__.pyi +2 -7
- bpy/app/translations/__init__.pyi +8 -23
- bpy/msgbus/__init__.pyi +4 -6
- bpy/ops/action/__init__.pyi +68 -199
- bpy/ops/anim/__init__.pyi +142 -299
- bpy/ops/armature/__init__.pyi +78 -209
- bpy/ops/asset/__init__.pyi +46 -108
- bpy/ops/boid/__init__.pyi +28 -45
- bpy/ops/brush/__init__.pyi +13 -108
- bpy/ops/buttons/__init__.pyi +16 -75
- bpy/ops/cachefile/__init__.pyi +8 -65
- bpy/ops/camera/__init__.pyi +0 -11
- bpy/ops/clip/__init__.pyi +173 -471
- bpy/ops/cloth/__init__.pyi +0 -5
- bpy/ops/collection/__init__.pyi +23 -36
- bpy/ops/console/__init__.pyi +40 -98
- bpy/ops/constraint/__init__.pyi +14 -85
- bpy/ops/curve/__init__.pyi +94 -277
- bpy/ops/curves/__init__.pyi +119 -166
- bpy/ops/cycles/__init__.pyi +4 -15
- bpy/ops/dpaint/__init__.pyi +14 -24
- bpy/ops/ed/__init__.pyi +44 -92
- bpy/ops/export_anim/__init__.pyi +2 -10
- bpy/ops/export_scene/__init__.pyi +16 -170
- bpy/ops/extensions/__init__.pyi +60 -165
- bpy/ops/file/__init__.pyi +110 -246
- bpy/ops/fluid/__init__.pyi +52 -83
- bpy/ops/font/__init__.pyi +40 -144
- bpy/ops/geometry/__init__.pyi +12 -127
- bpy/ops/gizmogroup/__init__.pyi +4 -13
- bpy/ops/gpencil/__init__.pyi +22 -54
- bpy/ops/graph/__init__.pyi +92 -343
- bpy/ops/grease_pencil/__init__.pyi +218 -550
- bpy/ops/image/__init__.pyi +85 -435
- bpy/ops/import_anim/__init__.pyi +3 -17
- bpy/ops/import_curve/__init__.pyi +2 -5
- bpy/ops/import_scene/__init__.pyi +15 -49
- bpy/ops/info/__init__.pyi +16 -39
- bpy/ops/lattice/__init__.pyi +12 -36
- bpy/ops/marker/__init__.pyi +12 -51
- bpy/ops/mask/__init__.pyi +68 -193
- bpy/ops/material/__init__.pyi +18 -18
- bpy/ops/mball/__init__.pyi +4 -31
- bpy/ops/mesh/__init__.pyi +140 -967
- bpy/ops/nla/__init__.pyi +87 -206
- bpy/ops/node/__init__.pyi +714 -744
- bpy/ops/object/__init__.pyi +461 -1341
- bpy/ops/outliner/__init__.pyi +192 -376
- bpy/ops/paint/__init__.pyi +94 -319
- bpy/ops/paintcurve/__init__.pyi +20 -40
- bpy/ops/palette/__init__.pyi +14 -30
- bpy/ops/particle/__init__.pyi +86 -184
- bpy/ops/pointcloud/__init__.pyi +12 -38
- bpy/ops/pose/__init__.pyi +108 -261
- bpy/ops/poselib/__init__.pyi +32 -67
- bpy/ops/preferences/__init__.pyi +37 -187
- bpy/ops/ptcache/__init__.pyi +22 -36
- bpy/ops/render/__init__.pyi +20 -72
- bpy/ops/rigidbody/__init__.pyi +25 -63
- bpy/ops/scene/__init__.pyi +122 -181
- bpy/ops/screen/__init__.pyi +93 -221
- bpy/ops/script/__init__.pyi +4 -13
- bpy/ops/sculpt/__init__.pyi +69 -324
- bpy/ops/sculpt_curves/__init__.pyi +10 -23
- bpy/ops/sequencer/__init__.pyi +410 -730
- bpy/ops/sound/__init__.pyi +16 -114
- bpy/ops/spreadsheet/__init__.pyi +20 -37
- bpy/ops/surface/__init__.pyi +0 -48
- bpy/ops/text/__init__.pyi +112 -250
- bpy/ops/text_editor/__init__.pyi +0 -5
- bpy/ops/texture/__init__.pyi +14 -21
- bpy/ops/transform/__init__.pyi +18 -386
- bpy/ops/ui/__init__.pyi +117 -188
- bpy/ops/uilist/__init__.pyi +0 -13
- bpy/ops/uv/__init__.pyi +238 -305
- bpy/ops/view2d/__init__.pyi +16 -76
- bpy/ops/view3d/__init__.pyi +153 -377
- bpy/ops/wm/__init__.pyi +277 -1397
- bpy/ops/workspace/__init__.pyi +32 -39
- bpy/ops/world/__init__.pyi +10 -12
- bpy/path/__init__.pyi +1 -35
- bpy/props/__init__.pyi +347 -218
- bpy/stub_internal/rna_enums/__init__.pyi +142 -108
- bpy/types/__init__.pyi +77367 -101305
- bpy/utils/__init__.pyi +11 -82
- bpy/utils/previews/__init__.pyi +2 -11
- bpy/utils/units/__init__.pyi +5 -15
- bpy_extras/anim_utils/__init__.pyi +24 -16
- bpy_extras/bmesh_utils/__init__.pyi +0 -1
- bpy_extras/id_map_utils/__init__.pyi +14 -6
- bpy_extras/image_utils/__init__.pyi +2 -11
- bpy_extras/io_utils/__init__.pyi +8 -27
- bpy_extras/keyconfig_utils/__init__.pyi +1 -1
- bpy_extras/mesh_utils/__init__.pyi +0 -12
- bpy_extras/node_shader_utils/__init__.pyi +1 -9
- bpy_extras/object_utils/__init__.pyi +1 -15
- bpy_extras/view3d_utils/__init__.pyi +0 -18
- bpy_extras/wm_utils/progress_report/__init__.pyi +1 -1
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/METADATA +4 -1
- fake_bpy_module-20260118.dist-info/RECORD +385 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/top_level.txt +17 -16
- freestyle/chainingiterators/__init__.pyi +5 -27
- freestyle/functions/__init__.pyi +0 -139
- freestyle/predicates/__init__.pyi +2 -53
- freestyle/shaders/__init__.pyi +15 -81
- freestyle/types/__init__.pyi +159 -799
- freestyle/utils/ContextFunctions/__init__.pyi +0 -23
- freestyle/utils/__init__.pyi +5 -11
- gpu/capabilities/__init__.pyi +0 -21
- gpu/matrix/__init__.pyi +1 -10
- gpu/platform/__init__.pyi +2 -7
- gpu/shader/__init__.pyi +26 -9
- gpu/state/__init__.pyi +60 -39
- gpu/texture/__init__.pyi +3 -5
- gpu/types/__init__.pyi +116 -184
- gpu_extras/batch/__init__.pyi +1 -5
- gpu_extras/presets/__init__.pyi +6 -8
- idprop/types/__init__.pyi +6 -6
- imbuf/__init__.pyi +3 -10
- imbuf/types/__init__.pyi +7 -21
- keyingsets_builtins/__init__.pyi +24 -67
- mathutils/__init__.pyi +241 -2207
- mathutils/bvhtree/__init__.pyi +18 -26
- mathutils/geometry/__init__.pyi +82 -132
- mathutils/interpolate/__init__.pyi +6 -5
- mathutils/kdtree/__init__.pyi +1 -11
- mathutils/noise/__init__.pyi +61 -106
- rna_prop_ui/__init__.pyi +1 -1
- bgl/__init__.pyi +0 -4256
- bpy_types/__init__.pyi +0 -30
- fake_bpy_module-20250612.dist-info/RECORD +0 -367
- {animsys_refactor → _animsys_refactor}/__init__.pyi +0 -0
- {animsys_refactor → _animsys_refactor}/py.typed +0 -0
- {bl_console_utils → _bl_console_utils}/__init__.pyi +0 -0
- {bl_console_utils → _bl_console_utils}/autocomplete/__init__.pyi +0 -0
- {bgl → _bl_console_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/merge_po/__init__.pyi +0 -0
- {bl_console_utils → _bl_i18n_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_cli/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_languages_menu/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_rtl/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/bl_previews_render/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_previews_utils}/py.typed +0 -0
- {bl_rna_utils → _bl_rna_utils}/__init__.pyi +0 -0
- {bl_rna_utils → _bl_rna_utils}/data_path/__init__.pyi +0 -0
- {bl_previews_utils → _bl_rna_utils}/py.typed +0 -0
- {bl_text_utils → _bl_text_utils}/__init__.pyi +0 -0
- {bl_text_utils → _bl_text_utils}/external_editor/__init__.pyi +0 -0
- {bl_rna_utils → _bl_text_utils}/py.typed +0 -0
- {bl_ui_utils → _bl_ui_utils}/layout/__init__.pyi +0 -0
- {bl_text_utils → _bl_ui_utils}/py.typed +0 -0
- {bl_ui_utils → _blendfile_header}/py.typed +0 -0
- /_bpy_internal/{freedesktop → platform/freedesktop}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/py.typed +0 -0
- {bpy_types → _bpy_types}/py.typed +0 -0
- {console_python → _console_python}/__init__.pyi +0 -0
- {console_python → _console_python}/py.typed +0 -0
- {console_shell → _console_shell}/__init__.pyi +0 -0
- {console_shell → _console_shell}/py.typed +0 -0
- {graphviz_export → _graphviz_export}/__init__.pyi +0 -0
- {graphviz_export → _graphviz_export}/py.typed +0 -0
- {keyingsets_utils → _keyingsets_utils}/py.typed +0 -0
- {rna_info → _rna_info}/py.typed +0 -0
- {rna_xml → _rna_xml}/__init__.pyi +0 -0
- {rna_xml → _rna_xml}/py.typed +0 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/WHEEL +0 -0
gpu_extras/batch/__init__.pyi
CHANGED
|
@@ -21,12 +21,8 @@ def batch_for_shader(
|
|
|
21
21
|
"""Return a batch already configured and compatible with the shader.
|
|
22
22
|
|
|
23
23
|
:param shader: shader for which a compatible format will be computed.
|
|
24
|
-
:type
|
|
25
|
-
:param type: "'POINTS', 'LINES', 'TRIS' or 'LINES_ADJ'".
|
|
26
|
-
:type type: str
|
|
24
|
+
:param type: "POINTS, LINES, TRIS or LINES_ADJ".
|
|
27
25
|
:param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
|
|
28
26
|
For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
|
|
29
|
-
:type content: dict[str, gpu.types.Buffer | collections.abc.Sequence[float] | collections.abc.Sequence[int] | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[collections.abc.Sequence[int]]]
|
|
30
27
|
:return: compatible batch
|
|
31
|
-
:rtype: gpu.types.GPUBatch
|
|
32
28
|
"""
|
gpu_extras/presets/__init__.pyi
CHANGED
|
@@ -15,16 +15,12 @@ def draw_circle_2d(
|
|
|
15
15
|
"""Draw a circle.
|
|
16
16
|
|
|
17
17
|
:param position: 2D position where the circle will be drawn.
|
|
18
|
-
:type position: collections.abc.Sequence[float]
|
|
19
18
|
:param color: Color of the circle (RGBA).
|
|
20
19
|
To use transparency blend must be set to ALPHA, see: `gpu.state.blend_set`.
|
|
21
|
-
:type color: collections.abc.Sequence[float]
|
|
22
20
|
:param radius: Radius of the circle.
|
|
23
|
-
:type radius: float
|
|
24
21
|
:param segments: How many segments will be used to draw the circle.
|
|
25
22
|
Higher values give better results but the drawing will take longer.
|
|
26
23
|
If None or not specified, an automatic value will be calculated.
|
|
27
|
-
:type segments: None | int | None
|
|
28
24
|
"""
|
|
29
25
|
|
|
30
26
|
def draw_texture_2d(
|
|
@@ -32,16 +28,18 @@ def draw_texture_2d(
|
|
|
32
28
|
position: collections.abc.Sequence[float] | mathutils.Vector,
|
|
33
29
|
width: float,
|
|
34
30
|
height: float,
|
|
31
|
+
is_scene_linear_with_rec709_srgb_target: bool = False,
|
|
35
32
|
) -> None:
|
|
36
33
|
"""Draw a 2d texture.
|
|
37
34
|
|
|
38
35
|
:param texture: GPUTexture to draw (e.g. gpu.texture.from_image(image) for `bpy.types.Image`).
|
|
39
|
-
:type texture: gpu.types.GPUTexture
|
|
40
36
|
:param position: Position of the lower left corner.
|
|
41
|
-
:type position: collections.abc.Sequence[float] | mathutils.Vector
|
|
42
37
|
:param width: Width of the image when drawn (not necessarily
|
|
43
38
|
the original width of the texture).
|
|
44
|
-
:type width: float
|
|
45
39
|
:param height: Height of the image when drawn.
|
|
46
|
-
:
|
|
40
|
+
:param is_scene_linear_with_rec709_srgb_target: True if the texture is stored in scene linear color space and
|
|
41
|
+
the destination frame-buffer uses the Rec.709 sRGB color space
|
|
42
|
+
(which is true when drawing textures acquired from `bpy.types.Image` inside a
|
|
43
|
+
PRE_VIEW, POST_VIEW or POST_PIXEL draw handler).
|
|
44
|
+
Otherwise the color space is assumed to match the one of the frame-buffer. (default=False)
|
|
47
45
|
"""
|
idprop/types/__init__.pyi
CHANGED
|
@@ -27,16 +27,17 @@ class IDPropertyGroup:
|
|
|
27
27
|
def items(self) -> None:
|
|
28
28
|
"""Iterate through the items in the dict; behaves like dictionary method items."""
|
|
29
29
|
|
|
30
|
-
def keys(self) ->
|
|
31
|
-
"""Return the keys associated with this group
|
|
30
|
+
def keys(self) -> IDPropertyGroupViewKeys:
|
|
31
|
+
"""Return the keys associated with this group.
|
|
32
|
+
|
|
33
|
+
:return: The keys.
|
|
34
|
+
"""
|
|
32
35
|
|
|
33
36
|
def pop(self, key: str, default: typing.Any) -> None:
|
|
34
37
|
"""Remove an item from the group, returning a Python representation.
|
|
35
38
|
|
|
36
39
|
:param key: Name of item to remove.
|
|
37
|
-
:
|
|
38
|
-
:param default: Value to return when key isn't found, otherwise raise an exception.
|
|
39
|
-
:type default: typing.Any
|
|
40
|
+
:param default: Value to return when key isnt found, otherwise raise an exception.
|
|
40
41
|
"""
|
|
41
42
|
|
|
42
43
|
def to_dict(self) -> None:
|
|
@@ -46,7 +47,6 @@ class IDPropertyGroup:
|
|
|
46
47
|
"""Update key, values.
|
|
47
48
|
|
|
48
49
|
:param other: Updates the values in the group with this.
|
|
49
|
-
:type other: dict[str, typing.Any] | typing_extensions.Self
|
|
50
50
|
"""
|
|
51
51
|
|
|
52
52
|
def values(self) -> None:
|
imbuf/__init__.pyi
CHANGED
|
@@ -23,9 +23,7 @@ def load(filepath: bytes | str) -> imbuf.types.ImBuf:
|
|
|
23
23
|
"""Load an image from a file.
|
|
24
24
|
|
|
25
25
|
:param filepath: the filepath of the image.
|
|
26
|
-
:type filepath: bytes | str
|
|
27
26
|
:return: the newly loaded image.
|
|
28
|
-
:rtype: imbuf.types.ImBuf
|
|
29
27
|
"""
|
|
30
28
|
|
|
31
29
|
def load_from_buffer(buffer) -> imbuf.types.ImBuf:
|
|
@@ -33,25 +31,20 @@ def load_from_buffer(buffer) -> imbuf.types.ImBuf:
|
|
|
33
31
|
|
|
34
32
|
:param buffer: A buffer containing the image data.
|
|
35
33
|
:return: the newly loaded image.
|
|
36
|
-
:rtype: imbuf.types.ImBuf
|
|
37
34
|
"""
|
|
38
35
|
|
|
39
36
|
def new(size: tuple[int, int]) -> imbuf.types.ImBuf:
|
|
40
|
-
"""
|
|
37
|
+
"""Create a new image.
|
|
41
38
|
|
|
42
39
|
:param size: The size of the image in pixels.
|
|
43
|
-
:
|
|
44
|
-
:return: the newly loaded image.
|
|
45
|
-
:rtype: imbuf.types.ImBuf
|
|
40
|
+
:return: the newly created image.
|
|
46
41
|
"""
|
|
47
42
|
|
|
48
43
|
def write(
|
|
49
|
-
image: imbuf.types.ImBuf, filepath: None | bytes | str = image.filepath
|
|
44
|
+
image: imbuf.types.ImBuf, *, filepath: None | bytes | str = image.filepath
|
|
50
45
|
) -> None:
|
|
51
46
|
"""Write an image.
|
|
52
47
|
|
|
53
48
|
:param image: the image to write.
|
|
54
|
-
:type image: imbuf.types.ImBuf
|
|
55
49
|
:param filepath: Optional filepath of the image (fallback to the images file path).
|
|
56
|
-
:type filepath: None | bytes | str
|
|
57
50
|
"""
|
imbuf/types/__init__.pyi
CHANGED
|
@@ -14,53 +14,39 @@ import numpy.typing as npt
|
|
|
14
14
|
|
|
15
15
|
class ImBuf:
|
|
16
16
|
channels: int
|
|
17
|
-
""" Number of
|
|
18
|
-
|
|
19
|
-
:type: int
|
|
20
|
-
"""
|
|
17
|
+
""" Number of color channels."""
|
|
21
18
|
|
|
22
19
|
filepath: str
|
|
23
|
-
""" filepath associated with this image.
|
|
24
|
-
|
|
25
|
-
:type: str
|
|
26
|
-
"""
|
|
20
|
+
""" filepath associated with this image."""
|
|
27
21
|
|
|
28
22
|
planes: int
|
|
29
|
-
""" Number of bits
|
|
30
|
-
|
|
31
|
-
:type: int
|
|
32
|
-
"""
|
|
23
|
+
""" Number of bits per pixel."""
|
|
33
24
|
|
|
34
|
-
ppm:
|
|
25
|
+
ppm: tuple[float, float]
|
|
35
26
|
""" pixels per meter."""
|
|
36
27
|
|
|
37
|
-
size:
|
|
28
|
+
size: tuple[int, int]
|
|
38
29
|
""" size of the image in pixels."""
|
|
39
30
|
|
|
40
31
|
def copy(self) -> typing_extensions.Self:
|
|
41
32
|
"""
|
|
42
33
|
|
|
43
34
|
:return: A copy of the image.
|
|
44
|
-
:rtype: typing_extensions.Self
|
|
45
35
|
"""
|
|
46
36
|
|
|
47
37
|
def crop(self, min: tuple[int, int], max: tuple[int, int]) -> None:
|
|
48
38
|
"""Crop the image.
|
|
49
39
|
|
|
50
40
|
:param min: X, Y minimum.
|
|
51
|
-
:type min: tuple[int, int]
|
|
52
41
|
:param max: X, Y maximum.
|
|
53
|
-
:type max: tuple[int, int]
|
|
54
42
|
"""
|
|
55
43
|
|
|
56
44
|
def free(self) -> None:
|
|
57
45
|
"""Clear image data immediately (causing an error on re-use)."""
|
|
58
46
|
|
|
59
|
-
def resize(self, size: tuple[int, int], method: str = "FAST") -> None:
|
|
47
|
+
def resize(self, size: tuple[int, int], *, method: str = "FAST") -> None:
|
|
60
48
|
"""Resize the image.
|
|
61
49
|
|
|
62
50
|
:param size: New size.
|
|
63
|
-
:
|
|
64
|
-
:param method: Method of resizing ('FAST', 'BILINEAR')
|
|
65
|
-
:type method: str
|
|
51
|
+
:param method: Method of resizing (FAST, BILINEAR)
|
|
66
52
|
"""
|
keyingsets_builtins/__init__.pyi
CHANGED
|
@@ -2,9 +2,10 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
+
import _bpy_types
|
|
5
6
|
import bpy.types
|
|
6
7
|
|
|
7
|
-
class BUILTIN_KSI_Available(
|
|
8
|
+
class BUILTIN_KSI_Available(_bpy_types.KeyingSetInfo):
|
|
8
9
|
"""Insert a keyframe on each of the already existing F-Curves"""
|
|
9
10
|
|
|
10
11
|
bl_idname: typing.Any
|
|
@@ -16,14 +17,12 @@ class BUILTIN_KSI_Available(bpy.types.KeyingSetInfo):
|
|
|
16
17
|
"""
|
|
17
18
|
|
|
18
19
|
:return: The RNA type or default when not found.
|
|
19
|
-
:rtype: bpy.types.Struct
|
|
20
20
|
"""
|
|
21
21
|
|
|
22
22
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
25
|
:return: The class or default when not found.
|
|
26
|
-
:rtype: typing.Any
|
|
27
26
|
"""
|
|
28
27
|
|
|
29
28
|
def poll(self, context) -> None:
|
|
@@ -32,8 +31,8 @@ class BUILTIN_KSI_Available(bpy.types.KeyingSetInfo):
|
|
|
32
31
|
:param context:
|
|
33
32
|
"""
|
|
34
33
|
|
|
35
|
-
class BUILTIN_KSI_BendyBones(
|
|
36
|
-
"""Insert a keyframe for each of the
|
|
34
|
+
class BUILTIN_KSI_BendyBones(_bpy_types.KeyingSetInfo):
|
|
35
|
+
"""Insert a keyframe for each of the B-Bone shape properties"""
|
|
37
36
|
|
|
38
37
|
bl_label: typing.Any
|
|
39
38
|
bl_rna: typing.Any
|
|
@@ -43,17 +42,15 @@ class BUILTIN_KSI_BendyBones(bpy.types.KeyingSetInfo):
|
|
|
43
42
|
"""
|
|
44
43
|
|
|
45
44
|
:return: The RNA type or default when not found.
|
|
46
|
-
:rtype: bpy.types.Struct
|
|
47
45
|
"""
|
|
48
46
|
|
|
49
47
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
50
48
|
"""
|
|
51
49
|
|
|
52
50
|
:return: The class or default when not found.
|
|
53
|
-
:rtype: typing.Any
|
|
54
51
|
"""
|
|
55
52
|
|
|
56
|
-
class BUILTIN_KSI_DeltaLocation(
|
|
53
|
+
class BUILTIN_KSI_DeltaLocation(_bpy_types.KeyingSetInfo):
|
|
57
54
|
"""Insert keyframes for additional location offset"""
|
|
58
55
|
|
|
59
56
|
bl_label: typing.Any
|
|
@@ -64,14 +61,12 @@ class BUILTIN_KSI_DeltaLocation(bpy.types.KeyingSetInfo):
|
|
|
64
61
|
"""
|
|
65
62
|
|
|
66
63
|
:return: The RNA type or default when not found.
|
|
67
|
-
:rtype: bpy.types.Struct
|
|
68
64
|
"""
|
|
69
65
|
|
|
70
66
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
71
67
|
"""
|
|
72
68
|
|
|
73
69
|
:return: The class or default when not found.
|
|
74
|
-
:rtype: typing.Any
|
|
75
70
|
"""
|
|
76
71
|
|
|
77
72
|
def generate(self, _context, ks, data) -> None:
|
|
@@ -82,7 +77,7 @@ class BUILTIN_KSI_DeltaLocation(bpy.types.KeyingSetInfo):
|
|
|
82
77
|
:param data:
|
|
83
78
|
"""
|
|
84
79
|
|
|
85
|
-
class BUILTIN_KSI_DeltaRotation(
|
|
80
|
+
class BUILTIN_KSI_DeltaRotation(_bpy_types.KeyingSetInfo):
|
|
86
81
|
"""Insert keyframes for additional rotation offset"""
|
|
87
82
|
|
|
88
83
|
bl_label: typing.Any
|
|
@@ -93,14 +88,12 @@ class BUILTIN_KSI_DeltaRotation(bpy.types.KeyingSetInfo):
|
|
|
93
88
|
"""
|
|
94
89
|
|
|
95
90
|
:return: The RNA type or default when not found.
|
|
96
|
-
:rtype: bpy.types.Struct
|
|
97
91
|
"""
|
|
98
92
|
|
|
99
93
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
100
94
|
"""
|
|
101
95
|
|
|
102
96
|
:return: The class or default when not found.
|
|
103
|
-
:rtype: typing.Any
|
|
104
97
|
"""
|
|
105
98
|
|
|
106
99
|
def generate(self, _context, ks, data) -> None:
|
|
@@ -111,7 +104,7 @@ class BUILTIN_KSI_DeltaRotation(bpy.types.KeyingSetInfo):
|
|
|
111
104
|
:param data:
|
|
112
105
|
"""
|
|
113
106
|
|
|
114
|
-
class BUILTIN_KSI_DeltaScale(
|
|
107
|
+
class BUILTIN_KSI_DeltaScale(_bpy_types.KeyingSetInfo):
|
|
115
108
|
"""Insert keyframes for additional scale factor"""
|
|
116
109
|
|
|
117
110
|
bl_label: typing.Any
|
|
@@ -122,14 +115,12 @@ class BUILTIN_KSI_DeltaScale(bpy.types.KeyingSetInfo):
|
|
|
122
115
|
"""
|
|
123
116
|
|
|
124
117
|
:return: The RNA type or default when not found.
|
|
125
|
-
:rtype: bpy.types.Struct
|
|
126
118
|
"""
|
|
127
119
|
|
|
128
120
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
129
121
|
"""
|
|
130
122
|
|
|
131
123
|
:return: The class or default when not found.
|
|
132
|
-
:rtype: typing.Any
|
|
133
124
|
"""
|
|
134
125
|
|
|
135
126
|
def generate(self, _context, ks, data) -> None:
|
|
@@ -140,7 +131,7 @@ class BUILTIN_KSI_DeltaScale(bpy.types.KeyingSetInfo):
|
|
|
140
131
|
:param data:
|
|
141
132
|
"""
|
|
142
133
|
|
|
143
|
-
class BUILTIN_KSI_LocRot(
|
|
134
|
+
class BUILTIN_KSI_LocRot(_bpy_types.KeyingSetInfo):
|
|
144
135
|
"""Insert a keyframe on each of the location and rotation channels"""
|
|
145
136
|
|
|
146
137
|
bl_label: typing.Any
|
|
@@ -151,14 +142,12 @@ class BUILTIN_KSI_LocRot(bpy.types.KeyingSetInfo):
|
|
|
151
142
|
"""
|
|
152
143
|
|
|
153
144
|
:return: The RNA type or default when not found.
|
|
154
|
-
:rtype: bpy.types.Struct
|
|
155
145
|
"""
|
|
156
146
|
|
|
157
147
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
158
148
|
"""
|
|
159
149
|
|
|
160
150
|
:return: The class or default when not found.
|
|
161
|
-
:rtype: typing.Any
|
|
162
151
|
"""
|
|
163
152
|
|
|
164
153
|
def generate(self, context, ks, data) -> None:
|
|
@@ -169,7 +158,7 @@ class BUILTIN_KSI_LocRot(bpy.types.KeyingSetInfo):
|
|
|
169
158
|
:param data:
|
|
170
159
|
"""
|
|
171
160
|
|
|
172
|
-
class BUILTIN_KSI_LocRotScale(
|
|
161
|
+
class BUILTIN_KSI_LocRotScale(_bpy_types.KeyingSetInfo):
|
|
173
162
|
"""Insert a keyframe on each of the location, rotation, and scale channels"""
|
|
174
163
|
|
|
175
164
|
bl_idname: typing.Any
|
|
@@ -181,14 +170,12 @@ class BUILTIN_KSI_LocRotScale(bpy.types.KeyingSetInfo):
|
|
|
181
170
|
"""
|
|
182
171
|
|
|
183
172
|
:return: The RNA type or default when not found.
|
|
184
|
-
:rtype: bpy.types.Struct
|
|
185
173
|
"""
|
|
186
174
|
|
|
187
175
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
188
176
|
"""
|
|
189
177
|
|
|
190
178
|
:return: The class or default when not found.
|
|
191
|
-
:rtype: typing.Any
|
|
192
179
|
"""
|
|
193
180
|
|
|
194
181
|
def generate(self, context, ks, data) -> None:
|
|
@@ -199,7 +186,7 @@ class BUILTIN_KSI_LocRotScale(bpy.types.KeyingSetInfo):
|
|
|
199
186
|
:param data:
|
|
200
187
|
"""
|
|
201
188
|
|
|
202
|
-
class BUILTIN_KSI_LocRotScaleCProp(
|
|
189
|
+
class BUILTIN_KSI_LocRotScaleCProp(_bpy_types.KeyingSetInfo):
|
|
203
190
|
"""Key location/rotation/scale as well as custom properties"""
|
|
204
191
|
|
|
205
192
|
bl_idname: typing.Any
|
|
@@ -211,14 +198,12 @@ class BUILTIN_KSI_LocRotScaleCProp(bpy.types.KeyingSetInfo):
|
|
|
211
198
|
"""
|
|
212
199
|
|
|
213
200
|
:return: The RNA type or default when not found.
|
|
214
|
-
:rtype: bpy.types.Struct
|
|
215
201
|
"""
|
|
216
202
|
|
|
217
203
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
218
204
|
"""
|
|
219
205
|
|
|
220
206
|
:return: The class or default when not found.
|
|
221
|
-
:rtype: typing.Any
|
|
222
207
|
"""
|
|
223
208
|
|
|
224
209
|
def generate(self, context, ks, data) -> None:
|
|
@@ -229,7 +214,7 @@ class BUILTIN_KSI_LocRotScaleCProp(bpy.types.KeyingSetInfo):
|
|
|
229
214
|
:param data:
|
|
230
215
|
"""
|
|
231
216
|
|
|
232
|
-
class BUILTIN_KSI_LocScale(
|
|
217
|
+
class BUILTIN_KSI_LocScale(_bpy_types.KeyingSetInfo):
|
|
233
218
|
"""Insert a keyframe on each of the location and scale channels"""
|
|
234
219
|
|
|
235
220
|
bl_label: typing.Any
|
|
@@ -240,14 +225,12 @@ class BUILTIN_KSI_LocScale(bpy.types.KeyingSetInfo):
|
|
|
240
225
|
"""
|
|
241
226
|
|
|
242
227
|
:return: The RNA type or default when not found.
|
|
243
|
-
:rtype: bpy.types.Struct
|
|
244
228
|
"""
|
|
245
229
|
|
|
246
230
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
247
231
|
"""
|
|
248
232
|
|
|
249
233
|
:return: The class or default when not found.
|
|
250
|
-
:rtype: typing.Any
|
|
251
234
|
"""
|
|
252
235
|
|
|
253
236
|
def generate(self, context, ks, data) -> None:
|
|
@@ -258,7 +241,7 @@ class BUILTIN_KSI_LocScale(bpy.types.KeyingSetInfo):
|
|
|
258
241
|
:param data:
|
|
259
242
|
"""
|
|
260
243
|
|
|
261
|
-
class BUILTIN_KSI_Location(
|
|
244
|
+
class BUILTIN_KSI_Location(_bpy_types.KeyingSetInfo):
|
|
262
245
|
"""Insert a keyframe on each of the location channels"""
|
|
263
246
|
|
|
264
247
|
bl_idname: typing.Any
|
|
@@ -270,17 +253,15 @@ class BUILTIN_KSI_Location(bpy.types.KeyingSetInfo):
|
|
|
270
253
|
"""
|
|
271
254
|
|
|
272
255
|
:return: The RNA type or default when not found.
|
|
273
|
-
:rtype: bpy.types.Struct
|
|
274
256
|
"""
|
|
275
257
|
|
|
276
258
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
277
259
|
"""
|
|
278
260
|
|
|
279
261
|
:return: The class or default when not found.
|
|
280
|
-
:rtype: typing.Any
|
|
281
262
|
"""
|
|
282
263
|
|
|
283
|
-
class BUILTIN_KSI_RotScale(
|
|
264
|
+
class BUILTIN_KSI_RotScale(_bpy_types.KeyingSetInfo):
|
|
284
265
|
"""Insert a keyframe on each of the rotation and scale channels"""
|
|
285
266
|
|
|
286
267
|
bl_label: typing.Any
|
|
@@ -291,14 +272,12 @@ class BUILTIN_KSI_RotScale(bpy.types.KeyingSetInfo):
|
|
|
291
272
|
"""
|
|
292
273
|
|
|
293
274
|
:return: The RNA type or default when not found.
|
|
294
|
-
:rtype: bpy.types.Struct
|
|
295
275
|
"""
|
|
296
276
|
|
|
297
277
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
298
278
|
"""
|
|
299
279
|
|
|
300
280
|
:return: The class or default when not found.
|
|
301
|
-
:rtype: typing.Any
|
|
302
281
|
"""
|
|
303
282
|
|
|
304
283
|
def generate(self, context, ks, data) -> None:
|
|
@@ -309,7 +288,7 @@ class BUILTIN_KSI_RotScale(bpy.types.KeyingSetInfo):
|
|
|
309
288
|
:param data:
|
|
310
289
|
"""
|
|
311
290
|
|
|
312
|
-
class BUILTIN_KSI_Rotation(
|
|
291
|
+
class BUILTIN_KSI_Rotation(_bpy_types.KeyingSetInfo):
|
|
313
292
|
"""Insert a keyframe on each of the rotation channels"""
|
|
314
293
|
|
|
315
294
|
bl_idname: typing.Any
|
|
@@ -321,17 +300,15 @@ class BUILTIN_KSI_Rotation(bpy.types.KeyingSetInfo):
|
|
|
321
300
|
"""
|
|
322
301
|
|
|
323
302
|
:return: The RNA type or default when not found.
|
|
324
|
-
:rtype: bpy.types.Struct
|
|
325
303
|
"""
|
|
326
304
|
|
|
327
305
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
328
306
|
"""
|
|
329
307
|
|
|
330
308
|
:return: The class or default when not found.
|
|
331
|
-
:rtype: typing.Any
|
|
332
309
|
"""
|
|
333
310
|
|
|
334
|
-
class BUILTIN_KSI_Scaling(
|
|
311
|
+
class BUILTIN_KSI_Scaling(_bpy_types.KeyingSetInfo):
|
|
335
312
|
"""Insert a keyframe on each of the scale channels"""
|
|
336
313
|
|
|
337
314
|
bl_idname: typing.Any
|
|
@@ -343,17 +320,15 @@ class BUILTIN_KSI_Scaling(bpy.types.KeyingSetInfo):
|
|
|
343
320
|
"""
|
|
344
321
|
|
|
345
322
|
:return: The RNA type or default when not found.
|
|
346
|
-
:rtype: bpy.types.Struct
|
|
347
323
|
"""
|
|
348
324
|
|
|
349
325
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
350
326
|
"""
|
|
351
327
|
|
|
352
328
|
:return: The class or default when not found.
|
|
353
|
-
:rtype: typing.Any
|
|
354
329
|
"""
|
|
355
330
|
|
|
356
|
-
class BUILTIN_KSI_VisualLoc(
|
|
331
|
+
class BUILTIN_KSI_VisualLoc(_bpy_types.KeyingSetInfo):
|
|
357
332
|
"""Insert a keyframe on each of the location channels, taking into account effects of constraints and relationships"""
|
|
358
333
|
|
|
359
334
|
bl_label: typing.Any
|
|
@@ -365,17 +340,15 @@ class BUILTIN_KSI_VisualLoc(bpy.types.KeyingSetInfo):
|
|
|
365
340
|
"""
|
|
366
341
|
|
|
367
342
|
:return: The RNA type or default when not found.
|
|
368
|
-
:rtype: bpy.types.Struct
|
|
369
343
|
"""
|
|
370
344
|
|
|
371
345
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
372
346
|
"""
|
|
373
347
|
|
|
374
348
|
:return: The class or default when not found.
|
|
375
|
-
:rtype: typing.Any
|
|
376
349
|
"""
|
|
377
350
|
|
|
378
|
-
class BUILTIN_KSI_VisualLocRot(
|
|
351
|
+
class BUILTIN_KSI_VisualLocRot(_bpy_types.KeyingSetInfo):
|
|
379
352
|
"""Insert a keyframe on each of the location and rotation channels, taking into account effects of constraints and relationships"""
|
|
380
353
|
|
|
381
354
|
bl_label: typing.Any
|
|
@@ -387,14 +360,12 @@ class BUILTIN_KSI_VisualLocRot(bpy.types.KeyingSetInfo):
|
|
|
387
360
|
"""
|
|
388
361
|
|
|
389
362
|
:return: The RNA type or default when not found.
|
|
390
|
-
:rtype: bpy.types.Struct
|
|
391
363
|
"""
|
|
392
364
|
|
|
393
365
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
394
366
|
"""
|
|
395
367
|
|
|
396
368
|
:return: The class or default when not found.
|
|
397
|
-
:rtype: typing.Any
|
|
398
369
|
"""
|
|
399
370
|
|
|
400
371
|
def generate(self, context, ks, data) -> None:
|
|
@@ -405,7 +376,7 @@ class BUILTIN_KSI_VisualLocRot(bpy.types.KeyingSetInfo):
|
|
|
405
376
|
:param data:
|
|
406
377
|
"""
|
|
407
378
|
|
|
408
|
-
class BUILTIN_KSI_VisualLocRotScale(
|
|
379
|
+
class BUILTIN_KSI_VisualLocRotScale(_bpy_types.KeyingSetInfo):
|
|
409
380
|
"""Insert a keyframe on each of the location, rotation and scale channels, taking into account effects of constraints and relationships"""
|
|
410
381
|
|
|
411
382
|
bl_label: typing.Any
|
|
@@ -417,14 +388,12 @@ class BUILTIN_KSI_VisualLocRotScale(bpy.types.KeyingSetInfo):
|
|
|
417
388
|
"""
|
|
418
389
|
|
|
419
390
|
:return: The RNA type or default when not found.
|
|
420
|
-
:rtype: bpy.types.Struct
|
|
421
391
|
"""
|
|
422
392
|
|
|
423
393
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
424
394
|
"""
|
|
425
395
|
|
|
426
396
|
:return: The class or default when not found.
|
|
427
|
-
:rtype: typing.Any
|
|
428
397
|
"""
|
|
429
398
|
|
|
430
399
|
def generate(self, context, ks, data) -> None:
|
|
@@ -435,7 +404,7 @@ class BUILTIN_KSI_VisualLocRotScale(bpy.types.KeyingSetInfo):
|
|
|
435
404
|
:param data:
|
|
436
405
|
"""
|
|
437
406
|
|
|
438
|
-
class BUILTIN_KSI_VisualLocScale(
|
|
407
|
+
class BUILTIN_KSI_VisualLocScale(_bpy_types.KeyingSetInfo):
|
|
439
408
|
"""Insert a keyframe on each of the location and scale channels, taking into account effects of constraints and relationships"""
|
|
440
409
|
|
|
441
410
|
bl_label: typing.Any
|
|
@@ -447,14 +416,12 @@ class BUILTIN_KSI_VisualLocScale(bpy.types.KeyingSetInfo):
|
|
|
447
416
|
"""
|
|
448
417
|
|
|
449
418
|
:return: The RNA type or default when not found.
|
|
450
|
-
:rtype: bpy.types.Struct
|
|
451
419
|
"""
|
|
452
420
|
|
|
453
421
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
454
422
|
"""
|
|
455
423
|
|
|
456
424
|
:return: The class or default when not found.
|
|
457
|
-
:rtype: typing.Any
|
|
458
425
|
"""
|
|
459
426
|
|
|
460
427
|
def generate(self, context, ks, data) -> None:
|
|
@@ -465,7 +432,7 @@ class BUILTIN_KSI_VisualLocScale(bpy.types.KeyingSetInfo):
|
|
|
465
432
|
:param data:
|
|
466
433
|
"""
|
|
467
434
|
|
|
468
|
-
class BUILTIN_KSI_VisualRot(
|
|
435
|
+
class BUILTIN_KSI_VisualRot(_bpy_types.KeyingSetInfo):
|
|
469
436
|
"""Insert a keyframe on each of the rotation channels, taking into account effects of constraints and relationships"""
|
|
470
437
|
|
|
471
438
|
bl_label: typing.Any
|
|
@@ -477,17 +444,15 @@ class BUILTIN_KSI_VisualRot(bpy.types.KeyingSetInfo):
|
|
|
477
444
|
"""
|
|
478
445
|
|
|
479
446
|
:return: The RNA type or default when not found.
|
|
480
|
-
:rtype: bpy.types.Struct
|
|
481
447
|
"""
|
|
482
448
|
|
|
483
449
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
484
450
|
"""
|
|
485
451
|
|
|
486
452
|
:return: The class or default when not found.
|
|
487
|
-
:rtype: typing.Any
|
|
488
453
|
"""
|
|
489
454
|
|
|
490
|
-
class BUILTIN_KSI_VisualRotScale(
|
|
455
|
+
class BUILTIN_KSI_VisualRotScale(_bpy_types.KeyingSetInfo):
|
|
491
456
|
"""Insert a keyframe on each of the rotation and scale channels, taking into account effects of constraints and relationships"""
|
|
492
457
|
|
|
493
458
|
bl_label: typing.Any
|
|
@@ -499,14 +464,12 @@ class BUILTIN_KSI_VisualRotScale(bpy.types.KeyingSetInfo):
|
|
|
499
464
|
"""
|
|
500
465
|
|
|
501
466
|
:return: The RNA type or default when not found.
|
|
502
|
-
:rtype: bpy.types.Struct
|
|
503
467
|
"""
|
|
504
468
|
|
|
505
469
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
506
470
|
"""
|
|
507
471
|
|
|
508
472
|
:return: The class or default when not found.
|
|
509
|
-
:rtype: typing.Any
|
|
510
473
|
"""
|
|
511
474
|
|
|
512
475
|
def generate(self, context, ks, data) -> None:
|
|
@@ -517,7 +480,7 @@ class BUILTIN_KSI_VisualRotScale(bpy.types.KeyingSetInfo):
|
|
|
517
480
|
:param data:
|
|
518
481
|
"""
|
|
519
482
|
|
|
520
|
-
class BUILTIN_KSI_VisualScaling(
|
|
483
|
+
class BUILTIN_KSI_VisualScaling(_bpy_types.KeyingSetInfo):
|
|
521
484
|
"""Insert a keyframe on each of the scale channels, taking into account effects of constraints and relationships"""
|
|
522
485
|
|
|
523
486
|
bl_label: typing.Any
|
|
@@ -529,17 +492,15 @@ class BUILTIN_KSI_VisualScaling(bpy.types.KeyingSetInfo):
|
|
|
529
492
|
"""
|
|
530
493
|
|
|
531
494
|
:return: The RNA type or default when not found.
|
|
532
|
-
:rtype: bpy.types.Struct
|
|
533
495
|
"""
|
|
534
496
|
|
|
535
497
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
536
498
|
"""
|
|
537
499
|
|
|
538
500
|
:return: The class or default when not found.
|
|
539
|
-
:rtype: typing.Any
|
|
540
501
|
"""
|
|
541
502
|
|
|
542
|
-
class BUILTIN_KSI_WholeCharacter(WholeCharacterMixin,
|
|
503
|
+
class BUILTIN_KSI_WholeCharacter(WholeCharacterMixin, _bpy_types.KeyingSetInfo):
|
|
543
504
|
"""Insert a keyframe for all properties that are likely to get animated in a character rig (useful when blocking out a shot)"""
|
|
544
505
|
|
|
545
506
|
badBonePrefixes: typing.Any
|
|
@@ -552,17 +513,15 @@ class BUILTIN_KSI_WholeCharacter(WholeCharacterMixin, bpy.types.KeyingSetInfo):
|
|
|
552
513
|
"""
|
|
553
514
|
|
|
554
515
|
:return: The RNA type or default when not found.
|
|
555
|
-
:rtype: bpy.types.Struct
|
|
556
516
|
"""
|
|
557
517
|
|
|
558
518
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
559
519
|
"""
|
|
560
520
|
|
|
561
521
|
:return: The class or default when not found.
|
|
562
|
-
:rtype: typing.Any
|
|
563
522
|
"""
|
|
564
523
|
|
|
565
|
-
class BUILTIN_KSI_WholeCharacterSelected(WholeCharacterMixin,
|
|
524
|
+
class BUILTIN_KSI_WholeCharacterSelected(WholeCharacterMixin, _bpy_types.KeyingSetInfo):
|
|
566
525
|
"""Insert a keyframe for all properties that are likely to get animated in a character rig (only selected bones)"""
|
|
567
526
|
|
|
568
527
|
badBonePrefixes: typing.Any
|
|
@@ -575,14 +534,12 @@ class BUILTIN_KSI_WholeCharacterSelected(WholeCharacterMixin, bpy.types.KeyingSe
|
|
|
575
534
|
"""
|
|
576
535
|
|
|
577
536
|
:return: The RNA type or default when not found.
|
|
578
|
-
:rtype: bpy.types.Struct
|
|
579
537
|
"""
|
|
580
538
|
|
|
581
539
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
582
540
|
"""
|
|
583
541
|
|
|
584
542
|
:return: The class or default when not found.
|
|
585
|
-
:rtype: typing.Any
|
|
586
543
|
"""
|
|
587
544
|
|
|
588
545
|
def iterator(self, context, ks) -> None:
|