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
|
@@ -74,33 +74,33 @@ type AttributeDomainWithoutCornerItems = typing.Literal[
|
|
|
74
74
|
type AttributeTypeItems = typing.Literal[
|
|
75
75
|
"FLOAT", # Float.Floating-point value.
|
|
76
76
|
"INT", # Integer.32-bit integer.
|
|
77
|
+
"BOOLEAN", # Boolean.True or false.
|
|
77
78
|
"FLOAT_VECTOR", # Vector.3D vector with floating-point values.
|
|
78
79
|
"FLOAT_COLOR", # Color.RGBA color with 32-bit floating-point values.
|
|
79
|
-
"
|
|
80
|
+
"QUATERNION", # Quaternion.Floating point quaternion rotation.
|
|
81
|
+
"FLOAT4X4", # 4x4 Matrix.Floating point matrix.
|
|
80
82
|
"STRING", # String.Text string.
|
|
81
|
-
"BOOLEAN", # Boolean.True or false.
|
|
82
|
-
"FLOAT2", # 2D Vector.2D vector with floating-point values.
|
|
83
83
|
"INT8", # 8-Bit Integer.Smaller integer with a range from -128 to 127.
|
|
84
84
|
"INT16_2D", # 2D 16-Bit Integer Vector.16-bit signed integer vector.
|
|
85
85
|
"INT32_2D", # 2D Integer Vector.32-bit signed integer vector.
|
|
86
|
-
"
|
|
87
|
-
"
|
|
86
|
+
"FLOAT2", # 2D Vector.2D vector with floating-point values.
|
|
87
|
+
"BYTE_COLOR", # Byte Color.RGBA color with 8-bit positive integer values.
|
|
88
88
|
]
|
|
89
89
|
type AttributeTypeWithAutoItems = typing.Literal[
|
|
90
90
|
"AUTO", # Auto.
|
|
91
91
|
"FLOAT", # Float.Floating-point value.
|
|
92
92
|
"INT", # Integer.32-bit integer.
|
|
93
|
+
"BOOLEAN", # Boolean.True or false.
|
|
93
94
|
"FLOAT_VECTOR", # Vector.3D vector with floating-point values.
|
|
94
95
|
"FLOAT_COLOR", # Color.RGBA color with 32-bit floating-point values.
|
|
95
|
-
"
|
|
96
|
+
"QUATERNION", # Quaternion.Floating point quaternion rotation.
|
|
97
|
+
"FLOAT4X4", # 4x4 Matrix.Floating point matrix.
|
|
96
98
|
"STRING", # String.Text string.
|
|
97
|
-
"
|
|
98
|
-
"FLOAT2", # 2D Vector.2D vector with floating-point values.
|
|
99
|
-
"FLOAT2", # 2D Vector.2D vector with floating-point values.
|
|
99
|
+
"INT8", # 8-Bit Integer.Smaller integer with a range from -128 to 127.
|
|
100
100
|
"INT16_2D", # 2D 16-Bit Integer Vector.16-bit signed integer vector.
|
|
101
101
|
"INT32_2D", # 2D Integer Vector.32-bit signed integer vector.
|
|
102
|
-
"
|
|
103
|
-
"
|
|
102
|
+
"FLOAT2", # 2D Vector.2D vector with floating-point values.
|
|
103
|
+
"BYTE_COLOR", # Byte Color.RGBA color with 8-bit positive integer values.
|
|
104
104
|
]
|
|
105
105
|
type AxisFlagXyzItems = typing.Literal[
|
|
106
106
|
"X", # <string>:4: (INFO/1) Enumerated list start value not ordinal-1: "X" (ordinal 24)
|
|
@@ -138,7 +138,7 @@ type BakePassTypeItems = typing.Literal[
|
|
|
138
138
|
"NORMAL", # Normal.
|
|
139
139
|
"UV", # UV.
|
|
140
140
|
"ROUGHNESS", # ROUGHNESS.
|
|
141
|
-
"EMIT", #
|
|
141
|
+
"EMIT", # Emission.
|
|
142
142
|
"ENVIRONMENT", # Environment.
|
|
143
143
|
"DIFFUSE", # Diffuse.
|
|
144
144
|
"GLOSSY", # Glossy.
|
|
@@ -193,9 +193,9 @@ type BoidruleTypeItems = typing.Literal[
|
|
|
193
193
|
]
|
|
194
194
|
type BrushAutomaskingFlagItems = typing.Literal[
|
|
195
195
|
"use_automasking_topology", # Topology.Affect only vertices connected to the active vertex under the brush.
|
|
196
|
-
"use_automasking_face_sets", # Face Sets.Affect only vertices that share
|
|
196
|
+
"use_automasking_face_sets", # Face Sets.Affect only vertices that share face sets with the active vertex.
|
|
197
197
|
"use_automasking_boundary_edges", # Mesh Boundary Auto-Masking.Do not affect non manifold boundary edges.
|
|
198
|
-
"use_automasking_boundary_face_sets", # Face Sets Boundary Automasking.Do not affect vertices that belong to a
|
|
198
|
+
"use_automasking_boundary_face_sets", # Face Sets Boundary Automasking.Do not affect vertices that belong to a face set boundary.
|
|
199
199
|
"use_automasking_cavity", # Cavity Mask.Do not affect vertices on peaks, based on the surface curvature.
|
|
200
200
|
"use_automasking_cavity_inverted", # Inverted Cavity Mask.Do not affect vertices within crevices, based on the surface curvature.
|
|
201
201
|
"use_automasking_custom_cavity_curve", # Custom Cavity Curve.Use custom curve.
|
|
@@ -294,6 +294,7 @@ type BrushSculptBrushTypeItems = typing.Literal[
|
|
|
294
294
|
"DISPLACEMENT_SMEAR", # Multires Displacement Smear.
|
|
295
295
|
"PAINT", # Paint.
|
|
296
296
|
"SMEAR", # Smear.
|
|
297
|
+
"BLUR", # Blur.
|
|
297
298
|
]
|
|
298
299
|
type BrushVertexBrushTypeItems = typing.Literal[
|
|
299
300
|
"DRAW", # Draw.
|
|
@@ -384,6 +385,7 @@ type ConstraintTypeItems = typing.Literal[
|
|
|
384
385
|
"CHILD_OF", # Child Of.Make target the 'detachable' parent of owner.
|
|
385
386
|
"FLOOR", # Floor.Use position (and optionally rotation) of target to define a 'wall' or 'floor' that the owner cannot cross.
|
|
386
387
|
"FOLLOW_PATH", # Follow Path.Use to animate an object/bone following a path.
|
|
388
|
+
"GEOMETRY_ATTRIBUTE", # Geometry Attribute.Retrieve transform from target geometry attribute data.
|
|
387
389
|
"PIVOT", # Pivot.Change pivot point for transforms (buggy).
|
|
388
390
|
"SHRINKWRAP", # Shrinkwrap.Restrict movements to surface of target mesh.
|
|
389
391
|
]
|
|
@@ -426,7 +428,7 @@ type CurveNormalModeItems = typing.Literal[
|
|
|
426
428
|
"FREE", # Free.Use the stored custom normal attribute as the final normals.
|
|
427
429
|
]
|
|
428
430
|
type CurvesHandleTypeItems = typing.Literal[
|
|
429
|
-
"FREE", # Free.The handle can be moved anywhere, and
|
|
431
|
+
"FREE", # Free.The handle can be moved anywhere, and does not influence the point's other handle.
|
|
430
432
|
"AUTO", # Auto.The location is automatically calculated to be smooth.
|
|
431
433
|
"VECTOR", # Vector.The location is calculated to point to the next/previous control point.
|
|
432
434
|
"ALIGN", # Align.The location is constrained to point in the opposite direction as the other handle.
|
|
@@ -705,6 +707,7 @@ type EventTypeItems = typing.Literal[
|
|
|
705
707
|
"NDOF_BUTTON_12", # NDOF Button 12.NdofB12.
|
|
706
708
|
"ACTIONZONE_AREA", # ActionZone Area.AZone Area.
|
|
707
709
|
"ACTIONZONE_REGION", # ActionZone Region.AZone Region.
|
|
710
|
+
"ACTIONZONE_REGION_QUAD", # ActionZone Quad.AZone Quad.
|
|
708
711
|
"ACTIONZONE_FULLSCREEN", # ActionZone Fullscreen.AZone FullScr.
|
|
709
712
|
"XR_ACTION", # XR Action.
|
|
710
713
|
]
|
|
@@ -724,7 +727,7 @@ type EventValueItems = typing.Literal[
|
|
|
724
727
|
"RELEASE", # Release.
|
|
725
728
|
"CLICK", # Click.
|
|
726
729
|
"DOUBLE_CLICK", # Double Click.
|
|
727
|
-
"CLICK_DRAG", #
|
|
730
|
+
"CLICK_DRAG", # Drag.
|
|
728
731
|
"NOTHING", # Nothing.
|
|
729
732
|
]
|
|
730
733
|
type ExrCodecItems = typing.Literal[
|
|
@@ -743,6 +746,14 @@ type FcurveAutoSmoothingItems = typing.Literal[
|
|
|
743
746
|
"NONE", # None.Automatic handles only take immediately adjacent keys into account.
|
|
744
747
|
"CONT_ACCEL", # Continuous Acceleration.Automatic handles are adjusted to avoid jumps in acceleration, resulting in smoother curves. However, key changes may affect interpolation over a larger stretch of the curve..
|
|
745
748
|
]
|
|
749
|
+
type FilePathForeachFlagItems = typing.Literal[
|
|
750
|
+
"SKIP_LINKED", # Skip Linked.Skip paths of linked IDs.
|
|
751
|
+
"SKIP_PACKED", # Skip Packed.Skip paths when their matching data is packed.
|
|
752
|
+
"RESOLVE_TOKEN", # Resolve Token.Resolve tokens within a virtual filepath to a single, concrete, filepath. Currently only used for UDIM tiles.
|
|
753
|
+
"SKIP_WEAK_REFERENCES", # Skip Weak References.Skip weak reference paths. Those paths are typically 'nice to have' extra information, but are not used as actual source of data by the current .blend file.
|
|
754
|
+
"SKIP_MULTIFILE", # Skip Multi-file.Skip paths where a single dir is used with an array of files, eg. sequence strip images or point-caches. In this case only the first file path is processed. This is needed for directory manipulation callbacks which might otherwise modify the same directory multiple times.
|
|
755
|
+
"RELOAD_EDITED", # Reload Edited.Reload data when the path is edited.
|
|
756
|
+
]
|
|
746
757
|
type FileselectParamsSortItems = typing.Literal[
|
|
747
758
|
"FILE_SORT_ALPHA", # Name.Sort the file list alphabetically.
|
|
748
759
|
"FILE_SORT_EXTENSION", # Extension.Sort the file list by extension/type.
|
|
@@ -824,6 +835,8 @@ type IconItems = typing.Literal[
|
|
|
824
835
|
"SELECT_DIFFERENCE", # SELECT_DIFFERENCE.
|
|
825
836
|
"SNAP_OFF", # SNAP_OFF.
|
|
826
837
|
"SNAP_ON", # SNAP_ON.
|
|
838
|
+
"PLAYHEAD_SNAP_OFF", # PLAYHEAD_SNAP_OFF.
|
|
839
|
+
"PLAYHEAD_SNAP_ON", # PLAYHEAD_SNAP_ON.
|
|
827
840
|
"UNLOCKED", # UNLOCKED.
|
|
828
841
|
"LOCKED", # LOCKED.
|
|
829
842
|
"VIS_SEL_11", # VIS_SEL_11.
|
|
@@ -874,6 +887,7 @@ type IconItems = typing.Literal[
|
|
|
874
887
|
"PLUGIN", # PLUGIN.
|
|
875
888
|
"PLUS", # PLUS.
|
|
876
889
|
"PRESET_NEW", # PRESET_NEW.
|
|
890
|
+
"PROJECT", # PROJECT.
|
|
877
891
|
"QUIT", # QUIT.
|
|
878
892
|
"RECOVER_LAST", # RECOVER_LAST.
|
|
879
893
|
"REMOVE", # REMOVE.
|
|
@@ -1004,7 +1018,6 @@ type IconItems = typing.Literal[
|
|
|
1004
1018
|
"PRESET", # PRESET.
|
|
1005
1019
|
"RENDER_ANIMATION", # RENDER_ANIMATION.
|
|
1006
1020
|
"RENDER_STILL", # RENDER_STILL.
|
|
1007
|
-
"RNA_ADD", # RNA_ADD.
|
|
1008
1021
|
"RNA", # RNA.
|
|
1009
1022
|
"STRANDS", # STRANDS.
|
|
1010
1023
|
"UGLYPACKAGE", # UGLYPACKAGE.
|
|
@@ -1025,6 +1038,14 @@ type IconItems = typing.Literal[
|
|
|
1025
1038
|
"DECORATE_OVERRIDE", # DECORATE_OVERRIDE.
|
|
1026
1039
|
"DECORATE", # DECORATE.
|
|
1027
1040
|
"OUTLINER_COLLECTION", # OUTLINER_COLLECTION.
|
|
1041
|
+
"COLLECTION_COLOR_01", # COLLECTION_COLOR_01.
|
|
1042
|
+
"COLLECTION_COLOR_02", # COLLECTION_COLOR_02.
|
|
1043
|
+
"COLLECTION_COLOR_03", # COLLECTION_COLOR_03.
|
|
1044
|
+
"COLLECTION_COLOR_04", # COLLECTION_COLOR_04.
|
|
1045
|
+
"COLLECTION_COLOR_05", # COLLECTION_COLOR_05.
|
|
1046
|
+
"COLLECTION_COLOR_06", # COLLECTION_COLOR_06.
|
|
1047
|
+
"COLLECTION_COLOR_07", # COLLECTION_COLOR_07.
|
|
1048
|
+
"COLLECTION_COLOR_08", # COLLECTION_COLOR_08.
|
|
1028
1049
|
"CURVES_DATA", # CURVES_DATA.
|
|
1029
1050
|
"OUTLINER_DATA_ARMATURE", # OUTLINER_DATA_ARMATURE.
|
|
1030
1051
|
"OUTLINER_DATA_CAMERA", # OUTLINER_DATA_CAMERA.
|
|
@@ -1189,6 +1210,7 @@ type IconItems = typing.Literal[
|
|
|
1189
1210
|
"WORDWRAP_ON", # WORDWRAP_ON.
|
|
1190
1211
|
"CON_ACTION", # CON_ACTION.
|
|
1191
1212
|
"CON_ARMATURE", # CON_ARMATURE.
|
|
1213
|
+
"CON_GEOMETRYATTRIBUTE", # CON_GEOMETRYATTRIBUTE.
|
|
1192
1214
|
"CON_CAMERASOLVER", # CON_CAMERASOLVER.
|
|
1193
1215
|
"CON_CHILDOF", # CON_CHILDOF.
|
|
1194
1216
|
"CON_CLAMPTO", # CON_CLAMPTO.
|
|
@@ -1223,6 +1245,7 @@ type IconItems = typing.Literal[
|
|
|
1223
1245
|
"MOD_CAST", # MOD_CAST.
|
|
1224
1246
|
"MOD_CLOTH", # MOD_CLOTH.
|
|
1225
1247
|
"MOD_CURVE", # MOD_CURVE.
|
|
1248
|
+
"MOD_CURVE_TO_TUBE", # MOD_CURVE_TO_TUBE.
|
|
1226
1249
|
"MOD_DASH", # MOD_DASH.
|
|
1227
1250
|
"MOD_DATA_TRANSFER", # MOD_DATA_TRANSFER.
|
|
1228
1251
|
"MOD_DECIM", # MOD_DECIM.
|
|
@@ -1252,6 +1275,7 @@ type IconItems = typing.Literal[
|
|
|
1252
1275
|
"MOD_PARTICLES", # MOD_PARTICLES.
|
|
1253
1276
|
"MOD_PHYSICS", # MOD_PHYSICS.
|
|
1254
1277
|
"MOD_REMESH", # MOD_REMESH.
|
|
1278
|
+
"MOD_SCATTER_ON_SURFACE", # MOD_SCATTER_ON_SURFACE.
|
|
1255
1279
|
"MOD_SCREW", # MOD_SCREW.
|
|
1256
1280
|
"MOD_SHRINKWRAP", # MOD_SHRINKWRAP.
|
|
1257
1281
|
"MOD_SIMPLEDEFORM", # MOD_SIMPLEDEFORM.
|
|
@@ -1327,6 +1351,10 @@ type IconItems = typing.Literal[
|
|
|
1327
1351
|
"CENTER_ONLY", # CENTER_ONLY.
|
|
1328
1352
|
"CURSOR", # CURSOR.
|
|
1329
1353
|
"EDGESEL", # EDGESEL.
|
|
1354
|
+
"EDGE_BEVEL", # EDGE_BEVEL.
|
|
1355
|
+
"EDGE_CREASE", # EDGE_CREASE.
|
|
1356
|
+
"EDGE_SEAM", # EDGE_SEAM.
|
|
1357
|
+
"EDGE_SHARP", # EDGE_SHARP.
|
|
1330
1358
|
"FACE_CORNER", # FACE_CORNER.
|
|
1331
1359
|
"FACESEL", # FACESEL.
|
|
1332
1360
|
"INVERSESQUARECURVE", # INVERSESQUARECURVE.
|
|
@@ -1350,6 +1378,7 @@ type IconItems = typing.Literal[
|
|
|
1350
1378
|
"SMOOTHCURVE", # SMOOTHCURVE.
|
|
1351
1379
|
"SPHERECURVE", # SPHERECURVE.
|
|
1352
1380
|
"VERTEXSEL", # VERTEXSEL.
|
|
1381
|
+
"VERTEX_CREASE", # VERTEX_CREASE.
|
|
1353
1382
|
"SNAP_EDGE", # SNAP_EDGE.
|
|
1354
1383
|
"SNAP_FACE_CENTER", # SNAP_FACE_CENTER.
|
|
1355
1384
|
"SNAP_FACE_NEAREST", # SNAP_FACE_NEAREST.
|
|
@@ -1425,6 +1454,7 @@ type IconItems = typing.Literal[
|
|
|
1425
1454
|
"DOCUMENTS", # DOCUMENTS.
|
|
1426
1455
|
"EXPORT", # EXPORT.
|
|
1427
1456
|
"EXTERNAL_DRIVE", # EXTERNAL_DRIVE.
|
|
1457
|
+
"USB_DRIVE", # USB_DRIVE.
|
|
1428
1458
|
"FILE_3D", # FILE_3D.
|
|
1429
1459
|
"FILE_ARCHIVE", # FILE_ARCHIVE.
|
|
1430
1460
|
"FILE_BACKUP", # FILE_BACKUP.
|
|
@@ -1482,6 +1512,13 @@ type IconItems = typing.Literal[
|
|
|
1482
1512
|
"SEQ_SPLITVIEW", # SEQ_SPLITVIEW.
|
|
1483
1513
|
"SEQ_STRIP_DUPLICATE", # SEQ_STRIP_DUPLICATE.
|
|
1484
1514
|
"SEQ_STRIP_META", # SEQ_STRIP_META.
|
|
1515
|
+
"SEQ_STRIP_MODIFIER", # SEQ_STRIP_MODIFIER.
|
|
1516
|
+
"MOD_BRIGHTNESS_CONTRAST", # MOD_BRIGHTNESS_CONTRAST.
|
|
1517
|
+
"MOD_COLOR_BALANCE", # MOD_COLOR_BALANCE.
|
|
1518
|
+
"MOD_CURVES", # MOD_CURVES.
|
|
1519
|
+
"MOD_HUE_CORRECT", # MOD_HUE_CORRECT.
|
|
1520
|
+
"MOD_TONEMAP", # MOD_TONEMAP.
|
|
1521
|
+
"MOD_WHITE_BALANCE", # MOD_WHITE_BALANCE.
|
|
1485
1522
|
"IMAGE_ALPHA", # IMAGE_ALPHA.
|
|
1486
1523
|
"IMAGE_RGB_ALPHA", # IMAGE_RGB_ALPHA.
|
|
1487
1524
|
"IMAGE_RGB", # IMAGE_RGB.
|
|
@@ -1491,6 +1528,7 @@ type IconItems = typing.Literal[
|
|
|
1491
1528
|
"DISC_LARGE", # DISC_LARGE.
|
|
1492
1529
|
"DISK_DRIVE_LARGE", # DISK_DRIVE_LARGE.
|
|
1493
1530
|
"EXTERNAL_DRIVE_LARGE", # EXTERNAL_DRIVE_LARGE.
|
|
1531
|
+
"USB_DRIVE_LARGE", # USB_DRIVE_LARGE.
|
|
1494
1532
|
"FILE_FOLDER_LARGE", # FILE_FOLDER_LARGE.
|
|
1495
1533
|
"FILE_LARGE", # FILE_LARGE.
|
|
1496
1534
|
"FILE_PARENT_LARGE", # FILE_PARENT_LARGE.
|
|
@@ -1568,14 +1606,6 @@ type IconItems = typing.Literal[
|
|
|
1568
1606
|
"COLORSET_18_VEC", # COLORSET_18_VEC.
|
|
1569
1607
|
"COLORSET_19_VEC", # COLORSET_19_VEC.
|
|
1570
1608
|
"COLORSET_20_VEC", # COLORSET_20_VEC.
|
|
1571
|
-
"COLLECTION_COLOR_01", # COLLECTION_COLOR_01.
|
|
1572
|
-
"COLLECTION_COLOR_02", # COLLECTION_COLOR_02.
|
|
1573
|
-
"COLLECTION_COLOR_03", # COLLECTION_COLOR_03.
|
|
1574
|
-
"COLLECTION_COLOR_04", # COLLECTION_COLOR_04.
|
|
1575
|
-
"COLLECTION_COLOR_05", # COLLECTION_COLOR_05.
|
|
1576
|
-
"COLLECTION_COLOR_06", # COLLECTION_COLOR_06.
|
|
1577
|
-
"COLLECTION_COLOR_07", # COLLECTION_COLOR_07.
|
|
1578
|
-
"COLLECTION_COLOR_08", # COLLECTION_COLOR_08.
|
|
1579
1609
|
"STRIP_COLOR_01", # STRIP_COLOR_01.
|
|
1580
1610
|
"STRIP_COLOR_02", # STRIP_COLOR_02.
|
|
1581
1611
|
"STRIP_COLOR_03", # STRIP_COLOR_03.
|
|
@@ -1778,6 +1808,11 @@ type IconItems = typing.Literal[
|
|
|
1778
1808
|
"NODE_SOCKET_MATRIX", # NODE_SOCKET_MATRIX.
|
|
1779
1809
|
"NODE_SOCKET_BUNDLE", # NODE_SOCKET_BUNDLE.
|
|
1780
1810
|
"NODE_SOCKET_CLOSURE", # NODE_SOCKET_CLOSURE.
|
|
1811
|
+
"NODE_SOCKET_FONT", # NODE_SOCKET_FONT.
|
|
1812
|
+
"NODE_SOCKET_SCENE", # NODE_SOCKET_SCENE.
|
|
1813
|
+
"NODE_SOCKET_TEXT", # NODE_SOCKET_TEXT.
|
|
1814
|
+
"NODE_SOCKET_MASK", # NODE_SOCKET_MASK.
|
|
1815
|
+
"NODE_SOCKET_SOUND", # NODE_SOCKET_SOUND.
|
|
1781
1816
|
]
|
|
1782
1817
|
type IdTypeItems = typing.Literal[
|
|
1783
1818
|
"ACTION", # Action.
|
|
@@ -1837,21 +1872,21 @@ type ImageGeneratedTypeItems = typing.Literal[
|
|
|
1837
1872
|
"UV_GRID", # UV Grid.Generated grid to test UV mappings.
|
|
1838
1873
|
"COLOR_GRID", # Color Grid.Generated improved UV grid to test UV mappings.
|
|
1839
1874
|
]
|
|
1840
|
-
type
|
|
1841
|
-
"
|
|
1842
|
-
"
|
|
1843
|
-
"PNG", # PNG.Output image in PNG format.
|
|
1844
|
-
"
|
|
1845
|
-
"
|
|
1846
|
-
"
|
|
1847
|
-
"
|
|
1848
|
-
"
|
|
1849
|
-
"
|
|
1850
|
-
"
|
|
1851
|
-
"
|
|
1852
|
-
"
|
|
1853
|
-
"TIFF", # TIFF.Output image in TIFF format.
|
|
1854
|
-
"
|
|
1875
|
+
type ImageTypeAllItems = typing.Literal[
|
|
1876
|
+
"JPEG", # JPEG (.jpg).Output image in JPEG format.
|
|
1877
|
+
"OPEN_EXR", # OpenEXR (.exr).Output image in OpenEXR format.
|
|
1878
|
+
"PNG", # PNG (.png).Output image in PNG format.
|
|
1879
|
+
"WEBP", # WebP (.webp).Output image in WebP format.
|
|
1880
|
+
"BMP", # Bitmap (.bmp).Output image in bitmap format.
|
|
1881
|
+
"CINEON", # Cineon (.cin).Output image in Cineon format.
|
|
1882
|
+
"DPX", # DPX (.dpx).Output image in DPX format.
|
|
1883
|
+
"IRIS", # Iris (.rgb).Output image in SGI IRIS format.
|
|
1884
|
+
"JPEG2000", # JPEG 2000 (.jp2).Output image in JPEG 2000 format.
|
|
1885
|
+
"HDR", # Radiance HDR (.hdr).Output image in Radiance HDR format.
|
|
1886
|
+
"TARGA", # Targa (.tga).Output image in Targa format.
|
|
1887
|
+
"TARGA_RAW", # Targa Raw (.tga).Output image in uncompressed Targa format.
|
|
1888
|
+
"TIFF", # TIFF (.tif).Output image in TIFF format.
|
|
1889
|
+
"OPEN_EXR_MULTILAYER", # OpenEXR MultiLayer (.exr).Output image in multilayer OpenEXR format.
|
|
1855
1890
|
"FFMPEG", # FFmpeg Video.
|
|
1856
1891
|
]
|
|
1857
1892
|
type KeyblockTypeItems = typing.Literal[
|
|
@@ -1889,7 +1924,6 @@ type KeyframePasteOffsetValueItems = typing.Literal[
|
|
|
1889
1924
|
type KeyingFlagApiItems = typing.Literal[
|
|
1890
1925
|
"INSERTKEY_NEEDED", # Only Needed.Only insert keyframes where they're needed in the relevant F-Curves.
|
|
1891
1926
|
"INSERTKEY_VISUAL", # Visual Keying.Insert keyframes based on 'visual transforms'.
|
|
1892
|
-
"INSERTKEY_XYZ_TO_RGB", # XYZ=RGB Colors (ignored).This flag is no longer in use, and is here so that code that uses it doesn't break. The XYZ=RGB coloring is determined by the animation preferences..
|
|
1893
1927
|
"INSERTKEY_REPLACE", # Replace Existing.Only replace existing keyframes.
|
|
1894
1928
|
"INSERTKEY_AVAILABLE", # Only Available.Don't create F-Curves when they don't already exist.
|
|
1895
1929
|
"INSERTKEY_CYCLE_AWARE", # Cycle Aware Keying.When inserting into a curve with cyclic extrapolation, remap the keyframe inside the cycle time range, and if changing an end key, also update the other one.
|
|
@@ -1897,7 +1931,6 @@ type KeyingFlagApiItems = typing.Literal[
|
|
|
1897
1931
|
type KeyingFlagItems = typing.Literal[
|
|
1898
1932
|
"INSERTKEY_NEEDED", # Only Needed.Only insert keyframes where they're needed in the relevant F-Curves.
|
|
1899
1933
|
"INSERTKEY_VISUAL", # Visual Keying.Insert keyframes based on 'visual transforms'.
|
|
1900
|
-
"INSERTKEY_XYZ_TO_RGB", # XYZ=RGB Colors (ignored).This flag is no longer in use, and is here so that code that uses it doesn't break. The XYZ=RGB coloring is determined by the animation preferences..
|
|
1901
1934
|
]
|
|
1902
1935
|
type KeyingsetPathGroupingItems = typing.Literal[
|
|
1903
1936
|
"NAMED", # Named Group.
|
|
@@ -1985,7 +2018,6 @@ type MeshSelectModeUvItems = typing.Literal[
|
|
|
1985
2018
|
"VERTEX", # Vertex.Vertex selection mode.
|
|
1986
2019
|
"EDGE", # Edge.Edge selection mode.
|
|
1987
2020
|
"FACE", # Face.Face selection mode.
|
|
1988
|
-
"ISLAND", # Island.Island selection mode.
|
|
1989
2021
|
]
|
|
1990
2022
|
type MetaelemTypeItems = typing.Literal[
|
|
1991
2023
|
"BALL", # Ball.
|
|
@@ -2072,23 +2104,16 @@ type NodeCompareOperationItems = typing.Literal[
|
|
|
2072
2104
|
"BRIGHTER", # Brighter.True when the first input is brighter.
|
|
2073
2105
|
"DARKER", # Darker.True when the first input is darker.
|
|
2074
2106
|
]
|
|
2075
|
-
type
|
|
2076
|
-
"
|
|
2077
|
-
"
|
|
2078
|
-
"
|
|
2079
|
-
"LAPLACE", # Laplace.
|
|
2080
|
-
"SOBEL", # Sobel.
|
|
2081
|
-
"PREWITT", # Prewitt.
|
|
2082
|
-
"KIRSCH", # Kirsch.
|
|
2083
|
-
"SHADOW", # Shadow.
|
|
2107
|
+
type NodeCompositorExtensionItems = typing.Literal[
|
|
2108
|
+
"CLIP", # Clip.Areas outside of the image are filled with zero.
|
|
2109
|
+
"EXTEND", # Extend.Areas outside of the image are filled with the closest boundary pixel in the image.
|
|
2110
|
+
"REPEAT", # Repeat.Areas outside of the image are filled with repetitions of the image.
|
|
2084
2111
|
]
|
|
2085
|
-
type
|
|
2086
|
-
"
|
|
2087
|
-
"
|
|
2088
|
-
"
|
|
2089
|
-
"
|
|
2090
|
-
"EQUAL", # Equal.True when both inputs are approximately equal.
|
|
2091
|
-
"NOT_EQUAL", # Not Equal.True when both inputs are not approximately equal.
|
|
2112
|
+
type NodeCompositorInterpolationItems = typing.Literal[
|
|
2113
|
+
"NEAREST", # Nearest.Use Nearest interpolation.
|
|
2114
|
+
"BILINEAR", # Bilinear.Use Bilinear interpolation.
|
|
2115
|
+
"BICUBIC", # Bicubic.Use Cubic B-Spline interpolation.
|
|
2116
|
+
"ANISOTROPIC", # Anisotropic.Use Anisotropic interpolation.
|
|
2092
2117
|
]
|
|
2093
2118
|
type NodeFloatToIntItems = typing.Literal[
|
|
2094
2119
|
"ROUND", # Round.Round the float up or down to the nearest integer.
|
|
@@ -2179,11 +2204,12 @@ type NodeSocketDataTypeItems = typing.Literal[
|
|
|
2179
2204
|
"INT", # Integer.
|
|
2180
2205
|
"BOOLEAN", # Boolean.
|
|
2181
2206
|
"VECTOR", # Vector.
|
|
2207
|
+
"RGBA", # Color.
|
|
2182
2208
|
"ROTATION", # Rotation.
|
|
2183
2209
|
"MATRIX", # Matrix.
|
|
2184
2210
|
"STRING", # String.
|
|
2185
2211
|
"MENU", # Menu.
|
|
2186
|
-
"
|
|
2212
|
+
"SHADER", # Shader.
|
|
2187
2213
|
"OBJECT", # Object.
|
|
2188
2214
|
"IMAGE", # Image.
|
|
2189
2215
|
"GEOMETRY", # Geometry.
|
|
@@ -2192,6 +2218,11 @@ type NodeSocketDataTypeItems = typing.Literal[
|
|
|
2192
2218
|
"MATERIAL", # Material.
|
|
2193
2219
|
"BUNDLE", # Bundle.
|
|
2194
2220
|
"CLOSURE", # Closure.
|
|
2221
|
+
"FONT", # Font.
|
|
2222
|
+
"SCENE", # Scene.
|
|
2223
|
+
"TEXT", # Text.
|
|
2224
|
+
"MASK", # Mask.
|
|
2225
|
+
"SOUND", # Sound.
|
|
2195
2226
|
]
|
|
2196
2227
|
type NodeSocketInOutItems = typing.Literal[
|
|
2197
2228
|
"IN", # Input.
|
|
@@ -2199,10 +2230,11 @@ type NodeSocketInOutItems = typing.Literal[
|
|
|
2199
2230
|
]
|
|
2200
2231
|
type NodeSocketStructureTypeItems = typing.Literal[
|
|
2201
2232
|
"AUTO", # Auto.Automatically detect a good structure type based on how the socket is used.
|
|
2202
|
-
"SINGLE", # Single.Socket expects a single value.
|
|
2203
2233
|
"DYNAMIC", # Dynamic.Socket can work with different kinds of structures.
|
|
2204
2234
|
"FIELD", # Field.Socket expects a field.
|
|
2205
2235
|
"GRID", # Grid.Socket expects a grid.
|
|
2236
|
+
"LIST", # List.Socket expects a list.
|
|
2237
|
+
"SINGLE", # Single.Socket expects a single value.
|
|
2206
2238
|
]
|
|
2207
2239
|
type NodeSocketTypeItems = typing.Literal[
|
|
2208
2240
|
"CUSTOM", # Custom.
|
|
@@ -2224,6 +2256,11 @@ type NodeSocketTypeItems = typing.Literal[
|
|
|
2224
2256
|
"MENU", # Menu.
|
|
2225
2257
|
"BUNDLE", # Bundle.
|
|
2226
2258
|
"CLOSURE", # Closure.
|
|
2259
|
+
"FONT", # Font.
|
|
2260
|
+
"SCENE", # Scene.
|
|
2261
|
+
"TEXT", # Text.
|
|
2262
|
+
"MASK", # Mask.
|
|
2263
|
+
"SOUND", # Sound.
|
|
2227
2264
|
]
|
|
2228
2265
|
type NodeTreeInterfaceItemTypeItems = typing.Literal[
|
|
2229
2266
|
"SOCKET", # Socket.
|
|
@@ -2237,7 +2274,7 @@ type NodeVecMathItems = typing.Literal[
|
|
|
2237
2274
|
"MULTIPLY_ADD", # Multiply Add.A * B + C.
|
|
2238
2275
|
"CROSS_PRODUCT", # Cross Product.A cross B.
|
|
2239
2276
|
"PROJECT", # Project.Project A onto B.
|
|
2240
|
-
"REFLECT", # Reflect.Reflect A around the normal B. B
|
|
2277
|
+
"REFLECT", # Reflect.Reflect A around the normal B. B does not need to be normalized..
|
|
2241
2278
|
"REFRACT", # Refract.For a given incident vector A, surface normal B and ratio of indices of refraction, Ior, refract returns the refraction vector, R.
|
|
2242
2279
|
"FACEFORWARD", # Faceforward.Orients a vector A to point away from a surface B as defined by its normal C. Returns (dot(B, C) < 0) ? A : -A.
|
|
2243
2280
|
"DOT_PRODUCT", # Dot Product.A dot B.
|
|
@@ -2517,6 +2554,7 @@ type PreferenceSectionItems = typing.Literal[
|
|
|
2517
2554
|
"SYSTEM", # System.
|
|
2518
2555
|
"SAVE_LOAD", # Save & Load.
|
|
2519
2556
|
"FILE_PATHS", # File Paths.
|
|
2557
|
+
"DEVELOPER_TOOLS", # Developer Tools.
|
|
2520
2558
|
"EXPERIMENTAL", # Experimental.
|
|
2521
2559
|
]
|
|
2522
2560
|
type PropDynamicpaintTypeItems = typing.Literal[
|
|
@@ -2524,6 +2562,7 @@ type PropDynamicpaintTypeItems = typing.Literal[
|
|
|
2524
2562
|
"BRUSH", # Brush.
|
|
2525
2563
|
]
|
|
2526
2564
|
type PropertyFlagEnumItems = typing.Literal[
|
|
2565
|
+
"READ_ONLY", # Read Only.When set, the property cannot be edited.
|
|
2527
2566
|
"HIDDEN", # Hidden.For operators: hide from places in the user interface where Blender would add the property automatically, like Adjust Last Operation. Also this property is not written to presets..
|
|
2528
2567
|
"SKIP_SAVE", # Skip Save.For operators: the value of this property will not be remembered between invocations of the operator; instead, each invocation will start by using the default value. Also this property is not written to presets..
|
|
2529
2568
|
"ANIMATABLE", # Animatable.
|
|
@@ -2531,6 +2570,7 @@ type PropertyFlagEnumItems = typing.Literal[
|
|
|
2531
2570
|
"ENUM_FLAG", # Enum Flag.
|
|
2532
2571
|
]
|
|
2533
2572
|
type PropertyFlagItems = typing.Literal[
|
|
2573
|
+
"READ_ONLY", # Read Only.When set, the property cannot be edited.
|
|
2534
2574
|
"HIDDEN", # Hidden.For operators: hide from places in the user interface where Blender would add the property automatically, like Adjust Last Operation. Also this property is not written to presets..
|
|
2535
2575
|
"SKIP_SAVE", # Skip Save.For operators: the value of this property will not be remembered between invocations of the operator; instead, each invocation will start by using the default value. Also this property is not written to presets..
|
|
2536
2576
|
"SKIP_PRESET", # Skip Preset.Do not write in presets.
|
|
@@ -2562,21 +2602,24 @@ type PropertySubtypeItems = typing.Literal[
|
|
|
2562
2602
|
"BYTE_STRING", # Byte String.
|
|
2563
2603
|
"PASSWORD", # Password.A string that is displayed hidden ('********').
|
|
2564
2604
|
"PIXEL", # Pixel.A distance on screen.
|
|
2605
|
+
"PIXEL_DIAMETER", # Pixel.A distance on screen, specifically representing a diameter value.
|
|
2565
2606
|
"UNSIGNED", # Unsigned.
|
|
2566
2607
|
"PERCENTAGE", # Percentage.A percentage between 0 and 100.
|
|
2567
2608
|
"FACTOR", # Factor.A factor between 0.0 and 1.0.
|
|
2609
|
+
"MASS", # Mass.A mass, based on scene unit settings.
|
|
2568
2610
|
"ANGLE", # Angle.A rotational value specified in radians.
|
|
2569
2611
|
"TIME", # Time (Scene Relative).Time specified in frames, converted to seconds based on scene frame rate.
|
|
2570
2612
|
"TIME_ABSOLUTE", # Time (Absolute).Time specified in seconds, independent of the scene.
|
|
2571
2613
|
"DISTANCE", # Distance.A distance between two points.
|
|
2614
|
+
"DISTANCE_DIAMETER", # Distance.A distance between two points, specifically representing a diameter value.
|
|
2572
2615
|
"DISTANCE_CAMERA", # Camera Distance.
|
|
2573
2616
|
"POWER", # Power.
|
|
2574
2617
|
"TEMPERATURE", # Temperature.
|
|
2575
2618
|
"WAVELENGTH", # Wavelength.
|
|
2576
2619
|
"COLOR_TEMPERATURE", # Color Temperature.
|
|
2577
2620
|
"FREQUENCY", # Frequency.
|
|
2578
|
-
"COLOR", # Linear Color.Color in the linear space.
|
|
2579
|
-
"TRANSLATION", # Translation.
|
|
2621
|
+
"COLOR", # Linear Color.Color in the scene linear working color space.
|
|
2622
|
+
"TRANSLATION", # Translation.
|
|
2580
2623
|
"DIRECTION", # Direction.
|
|
2581
2624
|
"VELOCITY", # Velocity.
|
|
2582
2625
|
"ACCELERATION", # Acceleration.
|
|
@@ -2586,14 +2629,14 @@ type PropertySubtypeItems = typing.Literal[
|
|
|
2586
2629
|
"AXISANGLE", # Axis-Angle.Angle and axis to rotate around.
|
|
2587
2630
|
"XYZ", # XYZ.
|
|
2588
2631
|
"XYZ_LENGTH", # XYZ Length.
|
|
2589
|
-
"COLOR_GAMMA", #
|
|
2632
|
+
"COLOR_GAMMA", # sRGB Color.Color in sRGB color space (mainly for user interface colors).
|
|
2590
2633
|
"COORDINATES", # Coordinates.
|
|
2591
2634
|
"LAYER", # Layer.
|
|
2592
2635
|
"LAYER_MEMBER", # Layer Member.
|
|
2593
2636
|
]
|
|
2594
2637
|
type PropertySubtypeNumberArrayItems = typing.Literal[
|
|
2595
|
-
"COLOR", # Linear Color.Color in the linear space.
|
|
2596
|
-
"TRANSLATION", # Translation.
|
|
2638
|
+
"COLOR", # Linear Color.Color in the scene linear working color space.
|
|
2639
|
+
"TRANSLATION", # Translation.
|
|
2597
2640
|
"DIRECTION", # Direction.
|
|
2598
2641
|
"VELOCITY", # Velocity.
|
|
2599
2642
|
"ACCELERATION", # Acceleration.
|
|
@@ -2603,7 +2646,7 @@ type PropertySubtypeNumberArrayItems = typing.Literal[
|
|
|
2603
2646
|
"AXISANGLE", # Axis-Angle.Angle and axis to rotate around.
|
|
2604
2647
|
"XYZ", # XYZ.
|
|
2605
2648
|
"XYZ_LENGTH", # XYZ Length.
|
|
2606
|
-
"COLOR_GAMMA", #
|
|
2649
|
+
"COLOR_GAMMA", # sRGB Color.Color in sRGB color space (mainly for user interface colors).
|
|
2607
2650
|
"COORDINATES", # Coordinates.
|
|
2608
2651
|
"LAYER", # Layer.
|
|
2609
2652
|
"LAYER_MEMBER", # Layer Member.
|
|
@@ -2611,13 +2654,16 @@ type PropertySubtypeNumberArrayItems = typing.Literal[
|
|
|
2611
2654
|
]
|
|
2612
2655
|
type PropertySubtypeNumberItems = typing.Literal[
|
|
2613
2656
|
"PIXEL", # Pixel.A distance on screen.
|
|
2657
|
+
"PIXEL_DIAMETER", # Pixel.A distance on screen, specifically representing a diameter value.
|
|
2614
2658
|
"UNSIGNED", # Unsigned.
|
|
2615
2659
|
"PERCENTAGE", # Percentage.A percentage between 0 and 100.
|
|
2616
2660
|
"FACTOR", # Factor.A factor between 0.0 and 1.0.
|
|
2661
|
+
"MASS", # Mass.A mass, based on scene unit settings.
|
|
2617
2662
|
"ANGLE", # Angle.A rotational value specified in radians.
|
|
2618
2663
|
"TIME", # Time (Scene Relative).Time specified in frames, converted to seconds based on scene frame rate.
|
|
2619
2664
|
"TIME_ABSOLUTE", # Time (Absolute).Time specified in seconds, independent of the scene.
|
|
2620
2665
|
"DISTANCE", # Distance.A distance between two points.
|
|
2666
|
+
"DISTANCE_DIAMETER", # Distance.A distance between two points, specifically representing a diameter value.
|
|
2621
2667
|
"DISTANCE_CAMERA", # Camera Distance.
|
|
2622
2668
|
"POWER", # Power.
|
|
2623
2669
|
"TEMPERATURE", # Temperature.
|
|
@@ -2700,6 +2746,9 @@ type RampBlendItems = typing.Literal[
|
|
|
2700
2746
|
"COLOR", # Color.
|
|
2701
2747
|
"VALUE", # Value.
|
|
2702
2748
|
]
|
|
2749
|
+
type RegionPanelCategoryItems = typing.Literal[
|
|
2750
|
+
"UNSUPPORTED", # Not Supported.This region does not support panel categories.
|
|
2751
|
+
]
|
|
2703
2752
|
type RegionTypeItems = typing.Literal[
|
|
2704
2753
|
"WINDOW", # Window.
|
|
2705
2754
|
"HEADER", # Header.
|
|
@@ -2718,33 +2767,6 @@ type RegionTypeItems = typing.Literal[
|
|
|
2718
2767
|
"TOOL_HEADER", # Tool Header.
|
|
2719
2768
|
"XR", # XR.
|
|
2720
2769
|
]
|
|
2721
|
-
type RenderPassTypeItems = typing.Literal[
|
|
2722
|
-
"COMBINED", # Combined.
|
|
2723
|
-
"Z", # <string>:4: (INFO/1) Enumerated list start value not ordinal-1: "Z" (ordinal 26)
|
|
2724
|
-
"SHADOW", # Shadow.
|
|
2725
|
-
"AO", # Ambient Occlusion.
|
|
2726
|
-
"POSITION", # Position.
|
|
2727
|
-
"NORMAL", # Normal.
|
|
2728
|
-
"VECTOR", # Vector.
|
|
2729
|
-
"OBJECT_INDEX", # Object Index.
|
|
2730
|
-
"UV", # UV.
|
|
2731
|
-
"MIST", # Mist.
|
|
2732
|
-
"EMIT", # Emit.
|
|
2733
|
-
"ENVIRONMENT", # Environment.
|
|
2734
|
-
"MATERIAL_INDEX", # Material Index.
|
|
2735
|
-
"DIFFUSE_DIRECT", # Diffuse Direct.
|
|
2736
|
-
"DIFFUSE_INDIRECT", # Diffuse Indirect.
|
|
2737
|
-
"DIFFUSE_COLOR", # Diffuse Color.
|
|
2738
|
-
"GLOSSY_DIRECT", # Glossy Direct.
|
|
2739
|
-
"GLOSSY_INDIRECT", # Glossy Indirect.
|
|
2740
|
-
"GLOSSY_COLOR", # Glossy Color.
|
|
2741
|
-
"TRANSMISSION_DIRECT", # Transmission Direct.
|
|
2742
|
-
"TRANSMISSION_INDIRECT", # Transmission Indirect.
|
|
2743
|
-
"TRANSMISSION_COLOR", # Transmission Color.
|
|
2744
|
-
"SUBSURFACE_DIRECT", # Subsurface Direct.
|
|
2745
|
-
"SUBSURFACE_INDIRECT", # Subsurface Indirect.
|
|
2746
|
-
"SUBSURFACE_COLOR", # Subsurface Color.
|
|
2747
|
-
]
|
|
2748
2770
|
type RigidbodyConstraintTypeItems = typing.Literal[
|
|
2749
2771
|
"FIXED", # Fixed.Glue rigid bodies together.
|
|
2750
2772
|
"POINT", # Point.Constrain rigid bodies to move around common pivot point.
|
|
@@ -2800,6 +2822,7 @@ type SnapElementItems = typing.Literal[
|
|
|
2800
2822
|
"VOLUME", # Volume.Snap to volume.
|
|
2801
2823
|
"EDGE_MIDPOINT", # Edge Center.Snap to the middle of edges.
|
|
2802
2824
|
"EDGE_PERPENDICULAR", # Edge Perpendicular.Snap to the nearest point on an edge.
|
|
2825
|
+
"FACE_MIDPOINT", # Face Center.Snap to the middle of faces.
|
|
2803
2826
|
"FACE_PROJECT", # Face Project.Snap by projecting onto faces.
|
|
2804
2827
|
"FACE_NEAREST", # Face Nearest.Snap to nearest point on faces.
|
|
2805
2828
|
]
|
|
@@ -2811,25 +2834,25 @@ type SnapSourceItems = typing.Literal[
|
|
|
2811
2834
|
]
|
|
2812
2835
|
type SpaceActionModeItems = typing.Literal[
|
|
2813
2836
|
"DOPESHEET", # Dope Sheet.Edit all keyframes in scene.
|
|
2814
|
-
"TIMELINE", # Timeline.
|
|
2837
|
+
"TIMELINE", # Timeline.Simple timeline view with playback controls in the header, without channel list, side-panel, or footer.
|
|
2815
2838
|
]
|
|
2816
2839
|
type SpaceFileBrowseModeItems = typing.Literal[
|
|
2817
|
-
"FILES", # File Browser.
|
|
2818
|
-
"ASSETS", # Asset Browser.
|
|
2840
|
+
"FILES", # File Browser.Built-in file manager for opening, saving, and linking data.
|
|
2841
|
+
"ASSETS", # Asset Browser.Manage assets in the current file and access linked asset libraries.
|
|
2819
2842
|
]
|
|
2820
2843
|
type SpaceGraphModeItems = typing.Literal[
|
|
2821
2844
|
"FCURVES", # Graph Editor.Edit animation/keyframes displayed as 2D curves.
|
|
2822
|
-
"DRIVERS", # Drivers.
|
|
2845
|
+
"DRIVERS", # Drivers.Define and edit drivers that link properties to custom functions or other data.
|
|
2823
2846
|
]
|
|
2824
2847
|
type SpaceImageModeAllItems = typing.Literal[
|
|
2825
|
-
"VIEW", # View.
|
|
2826
|
-
"UV", # UV Editor.
|
|
2827
|
-
"PAINT", # Paint.
|
|
2828
|
-
"MASK", # Mask.
|
|
2848
|
+
"VIEW", # View.Inspect images or render results.
|
|
2849
|
+
"UV", # UV Editor.View and edit UVs.
|
|
2850
|
+
"PAINT", # Paint.Paint images in 2D.
|
|
2851
|
+
"MASK", # Mask.View and edit masks.
|
|
2829
2852
|
]
|
|
2830
2853
|
type SpaceImageModeItems = typing.Literal[
|
|
2831
|
-
"IMAGE_EDITOR", # Image Editor.
|
|
2832
|
-
"UV", # UV Editor.
|
|
2854
|
+
"IMAGE_EDITOR", # Image Editor.Inspect images or render results.
|
|
2855
|
+
"UV", # UV Editor.View and edit UVs.
|
|
2833
2856
|
]
|
|
2834
2857
|
type SpaceSequencerViewTypeItems = typing.Literal[
|
|
2835
2858
|
"SEQUENCER", # Sequencer.
|
|
@@ -2841,7 +2864,7 @@ type SpaceTypeItems = typing.Literal[
|
|
|
2841
2864
|
"VIEW_3D", # 3D Viewport.Manipulate objects in a 3D environment.
|
|
2842
2865
|
"IMAGE_EDITOR", # UV/Image Editor.View and edit images and UV Maps.
|
|
2843
2866
|
"NODE_EDITOR", # Node Editor.Editor for node-based shading and compositing tools.
|
|
2844
|
-
"SEQUENCE_EDITOR", # Video Sequencer.
|
|
2867
|
+
"SEQUENCE_EDITOR", # Video Sequencer.Non-linear editor for arranging and mixing scenes, video, audio, and effects.
|
|
2845
2868
|
"CLIP_EDITOR", # Movie Clip Editor.Motion tracking tools.
|
|
2846
2869
|
"DOPESHEET_EDITOR", # Dope Sheet.Adjust timing of keyframes.
|
|
2847
2870
|
"GRAPH_EDITOR", # Graph Editor.Edit drivers and keyframe interpolation.
|
|
@@ -2889,19 +2912,31 @@ type StripColorItems = typing.Literal[
|
|
|
2889
2912
|
type StripModifierTypeItems = typing.Literal[
|
|
2890
2913
|
"BRIGHT_CONTRAST", # Brightness/Contrast.
|
|
2891
2914
|
"COLOR_BALANCE", # Color Balance.
|
|
2915
|
+
"COMPOSITOR", # Compositor.
|
|
2892
2916
|
"CURVES", # Curves.
|
|
2893
2917
|
"HUE_CORRECT", # Hue Correct.
|
|
2894
2918
|
"MASK", # Mask.
|
|
2895
2919
|
"TONEMAP", # Tone Map.
|
|
2896
2920
|
"WHITE_BALANCE", # White Balance.
|
|
2897
2921
|
"SOUND_EQUALIZER", # Sound Equalizer.
|
|
2922
|
+
"PITCH", # Pitch.
|
|
2923
|
+
"ECHO", # Echo.
|
|
2924
|
+
]
|
|
2925
|
+
type StripScaleMethodItems = typing.Literal[
|
|
2926
|
+
"FIT", # Scale to Fit.Fits the image bounds inside the canvas, avoiding crops while maintaining aspect ratio.
|
|
2927
|
+
"FILL", # Scale to Fill.Fills the canvas edge-to-edge, cropping if needed, while maintaining aspect ratio.
|
|
2928
|
+
"STRETCH", # Stretch to Fill.Stretches image bounds to the canvas without preserving aspect ratio.
|
|
2929
|
+
"ORIGINAL", # Use Original Size.Display image at its original size.
|
|
2898
2930
|
]
|
|
2899
2931
|
type StripSoundModifierTypeItems = typing.Literal[
|
|
2900
2932
|
"SOUND_EQUALIZER", # Sound Equalizer.
|
|
2933
|
+
"PITCH", # Pitch.
|
|
2934
|
+
"ECHO", # Echo.
|
|
2901
2935
|
]
|
|
2902
2936
|
type StripVideoModifierTypeItems = typing.Literal[
|
|
2903
2937
|
"BRIGHT_CONTRAST", # Brightness/Contrast.
|
|
2904
2938
|
"COLOR_BALANCE", # Color Balance.
|
|
2939
|
+
"COMPOSITOR", # Compositor.
|
|
2905
2940
|
"CURVES", # Curves.
|
|
2906
2941
|
"HUE_CORRECT", # Hue Correct.
|
|
2907
2942
|
"MASK", # Mask.
|
|
@@ -2999,7 +3034,6 @@ type TransformPivotFullItems = typing.Literal[
|
|
|
2999
3034
|
type UilistLayoutTypeItems = typing.Literal[
|
|
3000
3035
|
"DEFAULT", # Default Layout.Use the default, multi-rows layout.
|
|
3001
3036
|
"COMPACT", # Compact Layout.Use the compact, single-row layout.
|
|
3002
|
-
"GRID", # Grid Layout.Use the grid-based layout.
|
|
3003
3037
|
]
|
|
3004
3038
|
type UnpackMethodItems = typing.Literal[
|
|
3005
3039
|
"REMOVE", # Remove Pack.
|
|
@@ -3032,7 +3066,7 @@ type VolumeGridDataTypeItems = typing.Literal[
|
|
|
3032
3066
|
"INT", # Integer.32-bit integer.
|
|
3033
3067
|
"INT64", # Integer 64-bit.64-bit integer.
|
|
3034
3068
|
"MASK", # Mask.No data, boolean mask of active voxels.
|
|
3035
|
-
"VECTOR_FLOAT", #
|
|
3069
|
+
"VECTOR_FLOAT", # Vector.3D float vector.
|
|
3036
3070
|
"VECTOR_DOUBLE", # Double Vector.3D double vector.
|
|
3037
3071
|
"VECTOR_INT", # Integer Vector.3D integer vector.
|
|
3038
3072
|
"POINTS", # Points (Unsupported).Points grid, currently unsupported by volume objects.
|