fake-bpy-module 20240524__py3-none-any.whl → 20240529__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.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_console_utils/autocomplete/complete_calltip/__init__.pyi +3 -3
- bl_operators/__init__.pyi +3 -0
- bl_operators/connect_to_output/__init__.pyi +325 -0
- bl_operators/image_as_planes/__init__.pyi +463 -0
- bl_operators/node_editor/__init__.pyi +6 -0
- bl_operators/node_editor/node_functions/__init__.pyi +23 -0
- bl_operators/presets/__init__.pyi +12 -12
- bl_operators/userpref/__init__.pyi +0 -214
- bl_operators/wm/__init__.pyi +24 -24
- bl_ui/__init__.pyi +12 -12
- bl_ui/anim/__init__.pyi +6 -6
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu/__init__.pyi +6 -6
- bl_ui/node_add_menu_compositor/__init__.pyi +108 -108
- bl_ui/node_add_menu_geometry/__init__.pyi +288 -288
- bl_ui/node_add_menu_shader/__init__.pyi +60 -60
- bl_ui/node_add_menu_texture/__init__.pyi +54 -54
- bl_ui/properties_collection/__init__.pyi +6 -6
- bl_ui/properties_data_armature/__init__.pyi +12 -12
- bl_ui/properties_data_camera/__init__.pyi +12 -12
- bl_ui/properties_data_curves/__init__.pyi +6 -6
- bl_ui/properties_data_gpencil/__init__.pyi +12 -12
- bl_ui/properties_data_grease_pencil/__init__.pyi +18 -18
- bl_ui/properties_data_mesh/__init__.pyi +24 -24
- bl_ui/properties_data_modifier/__init__.pyi +42 -42
- bl_ui/properties_data_pointcloud/__init__.pyi +6 -6
- bl_ui/properties_freestyle/__init__.pyi +6 -6
- bl_ui/properties_grease_pencil_common/__init__.pyi +72 -72
- bl_ui/properties_mask_common/__init__.pyi +36 -36
- bl_ui/properties_material/__init__.pyi +6 -6
- bl_ui/properties_material_gpencil/__init__.pyi +12 -12
- bl_ui/properties_object/__init__.pyi +6 -6
- bl_ui/properties_output/__init__.pyi +18 -18
- bl_ui/properties_paint_common/__init__.pyi +6 -6
- bl_ui/properties_particle/__init__.pyi +12 -12
- bl_ui/properties_physics_cloth/__init__.pyi +6 -6
- bl_ui/properties_physics_fluid/__init__.pyi +6 -6
- bl_ui/properties_render/__init__.pyi +7 -7
- bl_ui/properties_texture/__init__.pyi +6 -6
- bl_ui/properties_view_layer/__init__.pyi +6 -6
- bl_ui/space_clip/__init__.pyi +186 -186
- bl_ui/space_console/__init__.pyi +30 -30
- bl_ui/space_dopesheet/__init__.pyi +84 -84
- bl_ui/space_filebrowser/__init__.pyi +78 -78
- bl_ui/space_graph/__init__.pyi +96 -96
- bl_ui/space_image/__init__.pyi +138 -138
- bl_ui/space_info/__init__.pyi +30 -30
- bl_ui/space_nla/__init__.pyi +78 -78
- bl_ui/space_node/__init__.pyi +72 -72
- bl_ui/space_outliner/__init__.pyi +72 -72
- bl_ui/space_sequencer/__init__.pyi +204 -204
- bl_ui/space_text/__init__.pyi +72 -72
- bl_ui/space_time/__init__.pyi +24 -24
- bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -0
- bl_ui/space_topbar/__init__.pyi +114 -114
- bl_ui/space_userpref/__init__.pyi +36 -36
- bl_ui/space_view3d/__init__.pyi +1446 -1176
- bl_ui/space_view3d_toolbar/__init__.pyi +30 -30
- bl_ui/utils/__init__.pyi +6 -6
- bmesh/geometry/__init__.pyi +2 -2
- bmesh/ops/__init__.pyi +55 -54
- bmesh/types/__init__.pyi +43 -33
- bmesh/utils/__init__.pyi +2 -2
- bpy/app/__init__.pyi +5 -1
- bpy/app/handlers/__init__.pyi +37 -37
- bpy/app/icons/__init__.pyi +4 -4
- bpy/app/timers/__init__.pyi +6 -6
- bpy/ops/action/__init__.pyi +21 -0
- bpy/ops/anim/__init__.pyi +34 -0
- bpy/ops/armature/__init__.pyi +31 -0
- bpy/ops/asset/__init__.pyi +5 -0
- bpy/ops/bl_pkg/__init__.pyi +32 -21
- bpy/ops/boid/__init__.pyi +1 -0
- bpy/ops/brush/__init__.pyi +6 -0
- bpy/ops/buttons/__init__.pyi +2 -0
- bpy/ops/cachefile/__init__.pyi +3 -0
- bpy/ops/camera/__init__.pyi +2 -0
- bpy/ops/clip/__init__.pyi +49 -0
- bpy/ops/cloth/__init__.pyi +1 -0
- bpy/ops/collection/__init__.pyi +7 -0
- bpy/ops/console/__init__.pyi +11 -0
- bpy/ops/constraint/__init__.pyi +15 -0
- bpy/ops/curve/__init__.pyi +28 -0
- bpy/ops/curves/__init__.pyi +14 -0
- bpy/ops/cycles/__init__.pyi +2 -0
- bpy/ops/dpaint/__init__.pyi +2 -0
- bpy/ops/ed/__init__.pyi +3 -0
- bpy/ops/export_anim/__init__.pyi +1 -0
- bpy/ops/export_scene/__init__.pyi +20 -3
- bpy/ops/file/__init__.pyi +14 -0
- bpy/ops/fluid/__init__.pyi +1 -0
- bpy/ops/font/__init__.pyi +13 -0
- bpy/ops/geometry/__init__.pyi +7 -0
- bpy/ops/gizmogroup/__init__.pyi +1 -0
- bpy/ops/gpencil/__init__.pyi +106 -0
- bpy/ops/graph/__init__.pyi +47 -0
- bpy/ops/grease_pencil/__init__.pyi +52 -0
- bpy/ops/image/__init__.pyi +308 -0
- bpy/ops/import_anim/__init__.pyi +1 -0
- bpy/ops/import_curve/__init__.pyi +1 -0
- bpy/ops/import_scene/__init__.pyi +2 -0
- bpy/ops/info/__init__.pyi +3 -0
- bpy/ops/lattice/__init__.pyi +5 -0
- bpy/ops/marker/__init__.pyi +9 -0
- bpy/ops/mask/__init__.pyi +22 -0
- bpy/ops/mball/__init__.pyi +7 -0
- bpy/ops/mesh/__init__.pyi +134 -0
- bpy/ops/nla/__init__.pyi +20 -0
- bpy/ops/node/__init__.pyi +65 -0
- bpy/ops/object/__init__.pyi +174 -0
- bpy/ops/outliner/__init__.pyi +25 -0
- bpy/ops/paint/__init__.pyi +105 -0
- bpy/ops/paintcurve/__init__.pyi +4 -0
- bpy/ops/palette/__init__.pyi +4 -0
- bpy/ops/particle/__init__.pyi +17 -0
- bpy/ops/pose/__init__.pyi +24 -0
- bpy/ops/poselib/__init__.pyi +4 -0
- bpy/ops/preferences/__init__.pyi +28 -16
- bpy/ops/ptcache/__init__.pyi +2 -0
- bpy/ops/render/__init__.pyi +9 -0
- bpy/ops/rigidbody/__init__.pyi +7 -0
- bpy/ops/scene/__init__.pyi +16 -0
- bpy/ops/screen/__init__.pyi +21 -0
- bpy/ops/script/__init__.pyi +2 -0
- bpy/ops/sculpt/__init__.pyi +151 -0
- bpy/ops/sculpt_curves/__init__.pyi +3 -0
- bpy/ops/sequencer/__init__.pyi +57 -0
- bpy/ops/sound/__init__.pyi +4 -0
- bpy/ops/spreadsheet/__init__.pyi +2 -0
- bpy/ops/surface/__init__.pyi +6 -0
- bpy/ops/text/__init__.pyi +18 -0
- bpy/ops/text_editor/__init__.pyi +1 -0
- bpy/ops/texture/__init__.pyi +1 -0
- bpy/ops/transform/__init__.pyi +25 -0
- bpy/ops/ui/__init__.pyi +13 -0
- bpy/ops/uilist/__init__.pyi +3 -0
- bpy/ops/uv/__init__.pyi +40 -0
- bpy/ops/view2d/__init__.pyi +11 -0
- bpy/ops/view3d/__init__.pyi +30 -0
- bpy/ops/wm/__init__.pyi +114 -0
- bpy/ops/workspace/__init__.pyi +1 -0
- bpy/path/__init__.pyi +6 -6
- bpy/props/__init__.pyi +27 -15
- bpy/types/__init__.pyi +662 -388
- bpy/utils/__init__.pyi +12 -10
- bpy_extras/anim_utils/__init__.pyi +7 -7
- bpy_extras/io_utils/__init__.pyi +4 -4
- bpy_extras/mesh_utils/__init__.pyi +4 -4
- bpy_extras/object_utils/__init__.pyi +8 -8
- bpy_extras/view3d_utils/__init__.pyi +2 -0
- bpy_types/__init__.pyi +12 -12
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/RECORD +167 -163
- freestyle/shaders/__init__.pyi +2 -2
- freestyle/types/__init__.pyi +64 -56
- gpu/matrix/__init__.pyi +6 -6
- gpu/types/__init__.pyi +14 -10
- gpu_extras/batch/__init__.pyi +1 -1
- gpu_extras/presets/__init__.pyi +1 -1
- imbuf/__init__.pyi +2 -2
- mathutils/__init__.pyi +176 -137
- mathutils/bvhtree/__init__.pyi +4 -4
- mathutils/geometry/__init__.pyi +139 -139
- mathutils/kdtree/__init__.pyi +14 -10
- mathutils/noise/__init__.pyi +26 -26
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/top_level.txt +0 -0
bpy/types/__init__.pyi
CHANGED
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
* NodeTreeInterfaceSocket.hide_value
|
|
16
16
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
17
17
|
* NodeTreeInterfaceSocket.force_non_field
|
|
18
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
18
19
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
19
20
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
20
21
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -9904,6 +9905,7 @@
|
|
|
9904
9905
|
* NodeTreeInterfaceSocket.hide_value
|
|
9905
9906
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
9906
9907
|
* NodeTreeInterfaceSocket.force_non_field
|
|
9908
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
9907
9909
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
9908
9910
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
9909
9911
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -16914,6 +16916,7 @@
|
|
|
16914
16916
|
* NodeTreeInterfaceSocket.hide_value
|
|
16915
16917
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
16916
16918
|
* NodeTreeInterfaceSocket.force_non_field
|
|
16919
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
16917
16920
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
16918
16921
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
16919
16922
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -18694,6 +18697,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
18694
18697
|
* NodeTreeInterfaceSocket.hide_value
|
|
18695
18698
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
18696
18699
|
* NodeTreeInterfaceSocket.force_non_field
|
|
18700
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
18697
18701
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
18698
18702
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
18699
18703
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -23344,6 +23348,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
23344
23348
|
* NodeTreeInterfaceSocket.hide_value
|
|
23345
23349
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
23346
23350
|
* NodeTreeInterfaceSocket.force_non_field
|
|
23351
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
23347
23352
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
23348
23353
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
23349
23354
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -26314,6 +26319,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
26314
26319
|
* NodeTreeInterfaceSocket.hide_value
|
|
26315
26320
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
26316
26321
|
* NodeTreeInterfaceSocket.force_non_field
|
|
26322
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
26317
26323
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
26318
26324
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
26319
26325
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -27051,6 +27057,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
27051
27057
|
* NodeTreeInterfaceSocket.hide_value
|
|
27052
27058
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
27053
27059
|
* NodeTreeInterfaceSocket.force_non_field
|
|
27060
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
27054
27061
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
27055
27062
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
27056
27063
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -28124,6 +28131,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
28124
28131
|
* NodeTreeInterfaceSocket.hide_value
|
|
28125
28132
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
28126
28133
|
* NodeTreeInterfaceSocket.force_non_field
|
|
28134
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
28127
28135
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
28128
28136
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
28129
28137
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -34712,6 +34720,7 @@ Property types used in class declarations are all in bpy.props
|
|
|
34712
34720
|
* NodeTreeInterfaceSocket.hide_value
|
|
34713
34721
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
34714
34722
|
* NodeTreeInterfaceSocket.force_non_field
|
|
34723
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
34715
34724
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
34716
34725
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
34717
34726
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -35780,6 +35789,96 @@ Property types used in class declarations are all in bpy.props
|
|
|
35780
35789
|
:columns: 2
|
|
35781
35790
|
|
|
35782
35791
|
|
|
35792
|
+
--------------------
|
|
35793
|
+
|
|
35794
|
+
* bpy_struct.id_data
|
|
35795
|
+
* Node.type
|
|
35796
|
+
* Node.location
|
|
35797
|
+
* Node.width
|
|
35798
|
+
* Node.height
|
|
35799
|
+
* Node.dimensions
|
|
35800
|
+
* Node.name
|
|
35801
|
+
* Node.label
|
|
35802
|
+
* Node.inputs
|
|
35803
|
+
* Node.outputs
|
|
35804
|
+
* Node.internal_links
|
|
35805
|
+
* Node.parent
|
|
35806
|
+
* Node.use_custom_color
|
|
35807
|
+
* Node.color
|
|
35808
|
+
* Node.select
|
|
35809
|
+
* Node.show_options
|
|
35810
|
+
* Node.show_preview
|
|
35811
|
+
* Node.hide
|
|
35812
|
+
* Node.mute
|
|
35813
|
+
* Node.show_texture
|
|
35814
|
+
* Node.bl_idname
|
|
35815
|
+
* Node.bl_label
|
|
35816
|
+
* Node.bl_description
|
|
35817
|
+
* Node.bl_icon
|
|
35818
|
+
* Node.bl_static_type
|
|
35819
|
+
* Node.bl_width_default
|
|
35820
|
+
* Node.bl_width_min
|
|
35821
|
+
* Node.bl_width_max
|
|
35822
|
+
* Node.bl_height_default
|
|
35823
|
+
* Node.bl_height_min
|
|
35824
|
+
* Node.bl_height_max
|
|
35825
|
+
|
|
35826
|
+
:columns: 2
|
|
35827
|
+
|
|
35828
|
+
|
|
35829
|
+
--------------------
|
|
35830
|
+
|
|
35831
|
+
* bpy_struct.as_pointer
|
|
35832
|
+
* bpy_struct.driver_add
|
|
35833
|
+
* bpy_struct.driver_remove
|
|
35834
|
+
* bpy_struct.get
|
|
35835
|
+
* bpy_struct.id_properties_clear
|
|
35836
|
+
* bpy_struct.id_properties_ensure
|
|
35837
|
+
* bpy_struct.id_properties_ui
|
|
35838
|
+
* bpy_struct.is_property_hidden
|
|
35839
|
+
* bpy_struct.is_property_overridable_library
|
|
35840
|
+
* bpy_struct.is_property_readonly
|
|
35841
|
+
* bpy_struct.is_property_set
|
|
35842
|
+
* bpy_struct.items
|
|
35843
|
+
* bpy_struct.keyframe_delete
|
|
35844
|
+
* bpy_struct.keyframe_insert
|
|
35845
|
+
* bpy_struct.keys
|
|
35846
|
+
* bpy_struct.path_from_id
|
|
35847
|
+
* bpy_struct.path_resolve
|
|
35848
|
+
* bpy_struct.pop
|
|
35849
|
+
* bpy_struct.property_overridable_library_set
|
|
35850
|
+
* bpy_struct.property_unset
|
|
35851
|
+
* bpy_struct.type_recast
|
|
35852
|
+
* bpy_struct.values
|
|
35853
|
+
* Node.socket_value_update
|
|
35854
|
+
* Node.is_registered_node_type
|
|
35855
|
+
* Node.poll
|
|
35856
|
+
* Node.poll_instance
|
|
35857
|
+
* Node.update
|
|
35858
|
+
* Node.insert_link
|
|
35859
|
+
* Node.init
|
|
35860
|
+
* Node.copy
|
|
35861
|
+
* Node.free
|
|
35862
|
+
* Node.draw_buttons
|
|
35863
|
+
* Node.draw_buttons_ext
|
|
35864
|
+
* Node.draw_label
|
|
35865
|
+
* Node.poll
|
|
35866
|
+
* Node.bl_rna_get_subclass
|
|
35867
|
+
* Node.bl_rna_get_subclass_py
|
|
35868
|
+
* NodeInternal.poll
|
|
35869
|
+
* NodeInternal.poll_instance
|
|
35870
|
+
* NodeInternal.update
|
|
35871
|
+
* NodeInternal.draw_buttons
|
|
35872
|
+
* NodeInternal.draw_buttons_ext
|
|
35873
|
+
* NodeInternal.bl_rna_get_subclass
|
|
35874
|
+
* NodeInternal.bl_rna_get_subclass_py
|
|
35875
|
+
* GeometryNode.poll
|
|
35876
|
+
* GeometryNode.bl_rna_get_subclass
|
|
35877
|
+
* GeometryNode.bl_rna_get_subclass_py
|
|
35878
|
+
|
|
35879
|
+
:columns: 2
|
|
35880
|
+
|
|
35881
|
+
|
|
35783
35882
|
--------------------
|
|
35784
35883
|
|
|
35785
35884
|
* bpy_struct.id_data
|
|
@@ -36649,6 +36748,8 @@ Property types used in class declarations are all in bpy.props
|
|
|
36649
36748
|
* GeometryNodeSetCurveTilt.output_template
|
|
36650
36749
|
* GeometryNodeSetID.input_template
|
|
36651
36750
|
* GeometryNodeSetID.output_template
|
|
36751
|
+
* GeometryNodeSetInstanceTransform.input_template
|
|
36752
|
+
* GeometryNodeSetInstanceTransform.output_template
|
|
36652
36753
|
* GeometryNodeSetMaterial.input_template
|
|
36653
36754
|
* GeometryNodeSetMaterial.output_template
|
|
36654
36755
|
* GeometryNodeSetMaterialIndex.input_template
|
|
@@ -38505,6 +38606,7 @@ Property types used in class declarations are all in bpy.props
|
|
|
38505
38606
|
* NodeTreeInterfaceSocket.hide_value
|
|
38506
38607
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
38507
38608
|
* NodeTreeInterfaceSocket.force_non_field
|
|
38609
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
38508
38610
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
38509
38611
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
38510
38612
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -41443,6 +41545,7 @@ Executing the operator will then print all values.
|
|
|
41443
41545
|
* NodeTreeInterfaceSocket.hide_value
|
|
41444
41546
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
41445
41547
|
* NodeTreeInterfaceSocket.force_non_field
|
|
41548
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
41446
41549
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
41447
41550
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
41448
41551
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -48564,6 +48667,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
48564
48667
|
* NodeTreeInterfaceSocket.hide_value
|
|
48565
48668
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
48566
48669
|
* NodeTreeInterfaceSocket.force_non_field
|
|
48670
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
48567
48671
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
48568
48672
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
48569
48673
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -50059,6 +50163,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
50059
50163
|
* NodeTreeInterfaceSocket.hide_value
|
|
50060
50164
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
50061
50165
|
* NodeTreeInterfaceSocket.force_non_field
|
|
50166
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
50062
50167
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
50063
50168
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
50064
50169
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -52034,6 +52139,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
52034
52139
|
* NodeTreeInterfaceSocket.hide_value
|
|
52035
52140
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
52036
52141
|
* NodeTreeInterfaceSocket.force_non_field
|
|
52142
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
52037
52143
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
52038
52144
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
52039
52145
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -52795,6 +52901,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
52795
52901
|
* NodeTreeInterfaceSocket.hide_value
|
|
52796
52902
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
52797
52903
|
* NodeTreeInterfaceSocket.force_non_field
|
|
52904
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
52798
52905
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
52799
52906
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
52800
52907
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -53608,6 +53715,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
53608
53715
|
* NodeTreeInterfaceSocket.hide_value
|
|
53609
53716
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
53610
53717
|
* NodeTreeInterfaceSocket.force_non_field
|
|
53718
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
53611
53719
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
53612
53720
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
53613
53721
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -54441,6 +54549,7 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
54441
54549
|
* NodeTreeInterfaceSocket.hide_value
|
|
54442
54550
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
54443
54551
|
* NodeTreeInterfaceSocket.force_non_field
|
|
54552
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
54444
54553
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
54445
54554
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
54446
54555
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -55811,6 +55920,7 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
55811
55920
|
* NodeTreeInterfaceSocket.hide_value
|
|
55812
55921
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
55813
55922
|
* NodeTreeInterfaceSocket.force_non_field
|
|
55923
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
55814
55924
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
55815
55925
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
55816
55926
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -56862,6 +56972,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
56862
56972
|
* NodeTreeInterfaceSocket.hide_value
|
|
56863
56973
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
56864
56974
|
* NodeTreeInterfaceSocket.force_non_field
|
|
56975
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
56865
56976
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
56866
56977
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
56867
56978
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -59157,6 +59268,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
59157
59268
|
* NodeTreeInterfaceSocket.hide_value
|
|
59158
59269
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
59159
59270
|
* NodeTreeInterfaceSocket.force_non_field
|
|
59271
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
59160
59272
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
59161
59273
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
59162
59274
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -59887,6 +59999,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
59887
59999
|
* NodeTreeInterfaceSocket.hide_value
|
|
59888
60000
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
59889
60001
|
* NodeTreeInterfaceSocket.force_non_field
|
|
60002
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
59890
60003
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
59891
60004
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
59892
60005
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -62229,6 +62342,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
62229
62342
|
* NodeTreeInterfaceSocket.hide_value
|
|
62230
62343
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
62231
62344
|
* NodeTreeInterfaceSocket.force_non_field
|
|
62345
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
62232
62346
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
62233
62347
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
62234
62348
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -63129,6 +63243,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
63129
63243
|
* NodeTreeInterfaceSocket.hide_value
|
|
63130
63244
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
63131
63245
|
* NodeTreeInterfaceSocket.force_non_field
|
|
63246
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
63132
63247
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
63133
63248
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
63134
63249
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -64516,6 +64631,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
64516
64631
|
* NodeTreeInterfaceSocket.hide_value
|
|
64517
64632
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
64518
64633
|
* NodeTreeInterfaceSocket.force_non_field
|
|
64634
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
64519
64635
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
64520
64636
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
64521
64637
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -68943,6 +69059,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
68943
69059
|
* NodeTreeInterfaceSocket.hide_value
|
|
68944
69060
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
68945
69061
|
* NodeTreeInterfaceSocket.force_non_field
|
|
69062
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
68946
69063
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
68947
69064
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
68948
69065
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -75739,6 +75856,7 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
75739
75856
|
* bpy.context.active_operator
|
|
75740
75857
|
* SpaceFileBrowser.active_operator
|
|
75741
75858
|
* SpaceFileBrowser.operator
|
|
75859
|
+
* Window.modal_operators
|
|
75742
75860
|
* WindowManager.fileselect_add
|
|
75743
75861
|
* WindowManager.invoke_confirm
|
|
75744
75862
|
* WindowManager.invoke_popup
|
|
@@ -78848,6 +78966,7 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
78848
78966
|
* NodeTreeInterfaceSocket.hide_value
|
|
78849
78967
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
78850
78968
|
* NodeTreeInterfaceSocket.force_non_field
|
|
78969
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
78851
78970
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
78852
78971
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
78853
78972
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -79734,6 +79853,7 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
79734
79853
|
* NodeTreeInterfaceSocket.hide_value
|
|
79735
79854
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
79736
79855
|
* NodeTreeInterfaceSocket.force_non_field
|
|
79856
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
79737
79857
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
79738
79858
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
79739
79859
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -86576,6 +86696,7 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
86576
86696
|
* NodeTreeInterfaceSocket.hide_value
|
|
86577
86697
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
86578
86698
|
* NodeTreeInterfaceSocket.force_non_field
|
|
86699
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
86579
86700
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
86580
86701
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
86581
86702
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -87115,6 +87236,7 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
87115
87236
|
* NodeTreeInterfaceSocket.hide_value
|
|
87116
87237
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
87117
87238
|
* NodeTreeInterfaceSocket.force_non_field
|
|
87239
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
87118
87240
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
87119
87241
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
87120
87242
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -87456,6 +87578,7 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
87456
87578
|
* NodeTreeInterfaceSocket.hide_value
|
|
87457
87579
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
87458
87580
|
* NodeTreeInterfaceSocket.force_non_field
|
|
87581
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
87459
87582
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
87460
87583
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
87461
87584
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -92372,6 +92495,7 @@ database.
|
|
|
92372
92495
|
* NodeTreeInterfaceSocket.hide_value
|
|
92373
92496
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
92374
92497
|
* NodeTreeInterfaceSocket.force_non_field
|
|
92498
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
92375
92499
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
92376
92500
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
92377
92501
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -94657,6 +94781,7 @@ The USDHookExample
|
|
|
94657
94781
|
* NodeTreeInterfaceSocket.hide_value
|
|
94658
94782
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
94659
94783
|
* NodeTreeInterfaceSocket.force_non_field
|
|
94784
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
94660
94785
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
94661
94786
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
94662
94787
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -96067,6 +96192,7 @@ The USDHookExample
|
|
|
96067
96192
|
* NodeTreeInterfaceSocket.hide_value
|
|
96068
96193
|
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
96069
96194
|
* NodeTreeInterfaceSocket.force_non_field
|
|
96195
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
96070
96196
|
* NodeTreeInterfaceSocket.layer_selection_field
|
|
96071
96197
|
* NodeTreeInterfaceSocket.attribute_domain
|
|
96072
96198
|
* NodeTreeInterfaceSocket.default_attribute_name
|
|
@@ -97865,10 +97991,12 @@ import collections.abc
|
|
|
97865
97991
|
import bl_operators.anim
|
|
97866
97992
|
import bl_operators.assets
|
|
97867
97993
|
import bl_operators.clip
|
|
97994
|
+
import bl_operators.connect_to_output
|
|
97868
97995
|
import bl_operators.constraint
|
|
97869
97996
|
import bl_operators.file
|
|
97870
97997
|
import bl_operators.freestyle
|
|
97871
97998
|
import bl_operators.image
|
|
97999
|
+
import bl_operators.image_as_planes
|
|
97872
98000
|
import bl_operators.node
|
|
97873
98001
|
import bl_operators.object
|
|
97874
98002
|
import bl_operators.presets
|
|
@@ -97993,7 +98121,9 @@ class bpy_prop_collection(typing.Generic[GenericType1]):
|
|
|
97993
98121
|
def foreach_set(
|
|
97994
98122
|
self,
|
|
97995
98123
|
attr: str,
|
|
97996
|
-
seq:
|
|
98124
|
+
seq: collections.abc.Sequence[bool]
|
|
98125
|
+
| collections.abc.Sequence[int]
|
|
98126
|
+
| collections.abc.Sequence[float],
|
|
97997
98127
|
):
|
|
97998
98128
|
"""This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
|
|
97999
98129
|
seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
|
|
@@ -98001,7 +98131,7 @@ class bpy_prop_collection(typing.Generic[GenericType1]):
|
|
|
98001
98131
|
:param attr:
|
|
98002
98132
|
:type attr: str
|
|
98003
98133
|
:param seq:
|
|
98004
|
-
:type seq:
|
|
98134
|
+
:type seq: collections.abc.Sequence[bool] | collections.abc.Sequence[int] | collections.abc.Sequence[float]
|
|
98005
98135
|
"""
|
|
98006
98136
|
...
|
|
98007
98137
|
|
|
@@ -98021,10 +98151,12 @@ class bpy_prop_collection(typing.Generic[GenericType1]):
|
|
|
98021
98151
|
"""
|
|
98022
98152
|
...
|
|
98023
98153
|
|
|
98024
|
-
def items(self):
|
|
98154
|
+
def items(self) -> list[tuple[str, GenericType1]]:
|
|
98025
98155
|
"""Return the identifiers of collection members
|
|
98026
98156
|
(matching Python's dict.items() functionality).
|
|
98027
98157
|
|
|
98158
|
+
:return:
|
|
98159
|
+
:rtype: list[tuple[str, GenericType1]]
|
|
98028
98160
|
"""
|
|
98029
98161
|
...
|
|
98030
98162
|
|
|
@@ -98066,21 +98198,19 @@ class bpy_prop_collection(typing.Generic[GenericType1]):
|
|
|
98066
98198
|
"""
|
|
98067
98199
|
...
|
|
98068
98200
|
|
|
98069
|
-
def __delitem__(self, key: int | str)
|
|
98201
|
+
def __delitem__(self, key: int | str):
|
|
98070
98202
|
"""
|
|
98071
98203
|
|
|
98072
98204
|
:param key:
|
|
98073
98205
|
:type key: int | str
|
|
98074
|
-
:return:
|
|
98075
|
-
:rtype: GenericType1
|
|
98076
98206
|
"""
|
|
98077
98207
|
...
|
|
98078
98208
|
|
|
98079
|
-
def __iter__(self) ->
|
|
98209
|
+
def __iter__(self) -> collections.abc.Iterator[GenericType1]:
|
|
98080
98210
|
"""
|
|
98081
98211
|
|
|
98082
98212
|
:return:
|
|
98083
|
-
:rtype:
|
|
98213
|
+
:rtype: collections.abc.Iterator[GenericType1]
|
|
98084
98214
|
"""
|
|
98085
98215
|
...
|
|
98086
98216
|
|
|
@@ -98100,6 +98230,16 @@ class bpy_prop_collection(typing.Generic[GenericType1]):
|
|
|
98100
98230
|
"""
|
|
98101
98231
|
...
|
|
98102
98232
|
|
|
98233
|
+
def __contains__(self, key: str | tuple[str, ...]) -> bool:
|
|
98234
|
+
"""
|
|
98235
|
+
|
|
98236
|
+
:param key:
|
|
98237
|
+
:type key: str | tuple[str, ...]
|
|
98238
|
+
:return:
|
|
98239
|
+
:rtype: bool
|
|
98240
|
+
"""
|
|
98241
|
+
...
|
|
98242
|
+
|
|
98103
98243
|
class bpy_struct(typing.Generic[GenericType1]):
|
|
98104
98244
|
"""built-in base class for all classes in bpy.types."""
|
|
98105
98245
|
|
|
@@ -98380,30 +98520,28 @@ class bpy_struct(typing.Generic[GenericType1]):
|
|
|
98380
98520
|
"""
|
|
98381
98521
|
...
|
|
98382
98522
|
|
|
98383
|
-
def __delitem__(self, key: int | str)
|
|
98523
|
+
def __delitem__(self, key: int | str):
|
|
98384
98524
|
"""
|
|
98385
98525
|
|
|
98386
98526
|
:param key:
|
|
98387
98527
|
:type key: int | str
|
|
98388
|
-
:return:
|
|
98389
|
-
:rtype: typing.Any
|
|
98390
98528
|
"""
|
|
98391
98529
|
...
|
|
98392
98530
|
|
|
98393
98531
|
class bpy_prop_array(typing.Generic[GenericType1]):
|
|
98394
|
-
def foreach_get(self,
|
|
98532
|
+
def foreach_get(self, seq: collections.abc.MutableSequence[GenericType1]):
|
|
98395
98533
|
"""
|
|
98396
98534
|
|
|
98397
|
-
:param attr:
|
|
98398
98535
|
:param seq:
|
|
98536
|
+
:type seq: collections.abc.MutableSequence[GenericType1]
|
|
98399
98537
|
"""
|
|
98400
98538
|
...
|
|
98401
98539
|
|
|
98402
|
-
def foreach_set(self,
|
|
98540
|
+
def foreach_set(self, seq: typing.Sequence[GenericType1]):
|
|
98403
98541
|
"""
|
|
98404
98542
|
|
|
98405
|
-
:param attr:
|
|
98406
98543
|
:param seq:
|
|
98544
|
+
:type seq: typing.Sequence[GenericType1]
|
|
98407
98545
|
"""
|
|
98408
98546
|
...
|
|
98409
98547
|
|
|
@@ -98427,21 +98565,19 @@ class bpy_prop_array(typing.Generic[GenericType1]):
|
|
|
98427
98565
|
"""
|
|
98428
98566
|
...
|
|
98429
98567
|
|
|
98430
|
-
def __delitem__(self, key: int | str)
|
|
98568
|
+
def __delitem__(self, key: int | str):
|
|
98431
98569
|
"""
|
|
98432
98570
|
|
|
98433
98571
|
:param key:
|
|
98434
98572
|
:type key: int | str
|
|
98435
|
-
:return:
|
|
98436
|
-
:rtype: GenericType1
|
|
98437
98573
|
"""
|
|
98438
98574
|
...
|
|
98439
98575
|
|
|
98440
|
-
def __iter__(self) ->
|
|
98576
|
+
def __iter__(self) -> collections.abc.Iterator[GenericType1]:
|
|
98441
98577
|
"""
|
|
98442
98578
|
|
|
98443
98579
|
:return:
|
|
98444
|
-
:rtype:
|
|
98580
|
+
:rtype: collections.abc.Iterator[GenericType1]
|
|
98445
98581
|
"""
|
|
98446
98582
|
...
|
|
98447
98583
|
|
|
@@ -99027,16 +99163,16 @@ class ActionLayers(bpy_struct, bpy_prop_collection[ActionLayer]):
|
|
|
99027
99163
|
class ActionPoseMarkers(bpy_struct, bpy_prop_collection[TimelineMarker]):
|
|
99028
99164
|
"""Collection of timeline markers"""
|
|
99029
99165
|
|
|
99030
|
-
active: TimelineMarker
|
|
99166
|
+
active: TimelineMarker | None
|
|
99031
99167
|
""" Active pose marker for this action
|
|
99032
99168
|
|
|
99033
|
-
:type: TimelineMarker
|
|
99169
|
+
:type: TimelineMarker | None
|
|
99034
99170
|
"""
|
|
99035
99171
|
|
|
99036
|
-
active_index:
|
|
99172
|
+
active_index: int | None
|
|
99037
99173
|
""" Index of active pose marker
|
|
99038
99174
|
|
|
99039
|
-
:type:
|
|
99175
|
+
:type: int | None
|
|
99040
99176
|
"""
|
|
99041
99177
|
|
|
99042
99178
|
def new(self, name: str | typing.Any) -> TimelineMarker:
|
|
@@ -99769,10 +99905,10 @@ class AreaSpaces(bpy_struct, bpy_prop_collection[Space]):
|
|
|
99769
99905
|
class ArmatureBones(bpy_struct, bpy_prop_collection[Bone]):
|
|
99770
99906
|
"""Collection of armature bones"""
|
|
99771
99907
|
|
|
99772
|
-
active: Bone
|
|
99908
|
+
active: Bone | None
|
|
99773
99909
|
""" Armature's active bone
|
|
99774
99910
|
|
|
99775
|
-
:type: Bone
|
|
99911
|
+
:type: Bone | None
|
|
99776
99912
|
"""
|
|
99777
99913
|
|
|
99778
99914
|
@classmethod
|
|
@@ -99849,10 +99985,10 @@ class ArmatureConstraintTargets(bpy_struct, bpy_prop_collection[ConstraintTarget
|
|
|
99849
99985
|
class ArmatureEditBones(bpy_struct, bpy_prop_collection[EditBone]):
|
|
99850
99986
|
"""Collection of armature edit bones"""
|
|
99851
99987
|
|
|
99852
|
-
active: EditBone
|
|
99988
|
+
active: EditBone | None
|
|
99853
99989
|
""" Armatures active edit bone
|
|
99854
99990
|
|
|
99855
|
-
:type: EditBone
|
|
99991
|
+
:type: EditBone | None
|
|
99856
99992
|
"""
|
|
99857
99993
|
|
|
99858
99994
|
def new(self, name: str | typing.Any) -> EditBone:
|
|
@@ -100003,10 +100139,10 @@ class AssetLibraryReference(bpy_struct):
|
|
|
100003
100139
|
class AssetMetaData(bpy_struct):
|
|
100004
100140
|
"""Additional data stored for an asset data-block"""
|
|
100005
100141
|
|
|
100006
|
-
active_tag:
|
|
100142
|
+
active_tag: int | None
|
|
100007
100143
|
""" Index of the tag set for editing
|
|
100008
100144
|
|
|
100009
|
-
:type:
|
|
100145
|
+
:type: int | None
|
|
100010
100146
|
"""
|
|
100011
100147
|
|
|
100012
100148
|
author: str
|
|
@@ -100455,22 +100591,22 @@ class Attribute(bpy_struct):
|
|
|
100455
100591
|
class AttributeGroup(bpy_struct, bpy_prop_collection[Attribute]):
|
|
100456
100592
|
"""Group of geometry attributes"""
|
|
100457
100593
|
|
|
100458
|
-
active: Attribute
|
|
100594
|
+
active: Attribute | None
|
|
100459
100595
|
""" Active attribute
|
|
100460
100596
|
|
|
100461
|
-
:type: Attribute
|
|
100597
|
+
:type: Attribute | None
|
|
100462
100598
|
"""
|
|
100463
100599
|
|
|
100464
|
-
active_color:
|
|
100600
|
+
active_color: Attribute | None
|
|
100465
100601
|
""" Active color attribute for display and editing
|
|
100466
100602
|
|
|
100467
|
-
:type:
|
|
100603
|
+
:type: Attribute | None
|
|
100468
100604
|
"""
|
|
100469
100605
|
|
|
100470
|
-
active_color_index:
|
|
100606
|
+
active_color_index: int | None
|
|
100471
100607
|
""" Active color attribute index
|
|
100472
100608
|
|
|
100473
|
-
:type:
|
|
100609
|
+
:type: int | None
|
|
100474
100610
|
"""
|
|
100475
100611
|
|
|
100476
100612
|
active_color_name: str
|
|
@@ -100479,10 +100615,10 @@ class AttributeGroup(bpy_struct, bpy_prop_collection[Attribute]):
|
|
|
100479
100615
|
:type: str
|
|
100480
100616
|
"""
|
|
100481
100617
|
|
|
100482
|
-
active_index:
|
|
100618
|
+
active_index: int | None
|
|
100483
100619
|
""" Active attribute index
|
|
100484
100620
|
|
|
100485
|
-
:type:
|
|
100621
|
+
:type: int | None
|
|
100486
100622
|
"""
|
|
100487
100623
|
|
|
100488
100624
|
default_color_name: str
|
|
@@ -101163,14 +101299,14 @@ class BlendData(bpy_struct):
|
|
|
101163
101299
|
|
|
101164
101300
|
def user_map(
|
|
101165
101301
|
self,
|
|
101166
|
-
subset:
|
|
101302
|
+
subset: collections.abc.Sequence | None,
|
|
101167
101303
|
key_types: set[str] | None,
|
|
101168
101304
|
value_types: set[str] | None,
|
|
101169
101305
|
) -> dict:
|
|
101170
101306
|
"""Returns a mapping of all ID data-blocks in current bpy.data to a set of all datablocks using them.For list of valid set members for key_types & value_types, see: `bpy.types.KeyingSetPath.id_type`.
|
|
101171
101307
|
|
|
101172
101308
|
:param subset: When passed, only these data-blocks and their users will be included as keys/values in the map.
|
|
101173
|
-
:type subset:
|
|
101309
|
+
:type subset: collections.abc.Sequence | None
|
|
101174
101310
|
:param key_types: Filter the keys mapped by ID types.
|
|
101175
101311
|
:type key_types: set[str] | None
|
|
101176
101312
|
:param value_types: Filter the values in the set by ID types.
|
|
@@ -103732,10 +103868,10 @@ class BoidSettings(bpy_struct):
|
|
|
103732
103868
|
:type: BoidRule
|
|
103733
103869
|
"""
|
|
103734
103870
|
|
|
103735
|
-
active_boid_state_index:
|
|
103871
|
+
active_boid_state_index: int | None
|
|
103736
103872
|
"""
|
|
103737
103873
|
|
|
103738
|
-
:type:
|
|
103874
|
+
:type: int | None
|
|
103739
103875
|
"""
|
|
103740
103876
|
|
|
103741
103877
|
aggression: float
|
|
@@ -103909,10 +104045,10 @@ class BoidState(bpy_struct):
|
|
|
103909
104045
|
:type: BoidRule
|
|
103910
104046
|
"""
|
|
103911
104047
|
|
|
103912
|
-
active_boid_rule_index:
|
|
104048
|
+
active_boid_rule_index: int | None
|
|
103913
104049
|
"""
|
|
103914
104050
|
|
|
103915
|
-
:type:
|
|
104051
|
+
:type: int | None
|
|
103916
104052
|
"""
|
|
103917
104053
|
|
|
103918
104054
|
falloff: float
|
|
@@ -104656,16 +104792,16 @@ class BoneCollectionMemberships(bpy_struct, bpy_prop_collection[BoneCollection])
|
|
|
104656
104792
|
class BoneCollections(bpy_struct):
|
|
104657
104793
|
"""The Bone Collections of this Armature"""
|
|
104658
104794
|
|
|
104659
|
-
active: BoneCollection
|
|
104795
|
+
active: BoneCollection | None
|
|
104660
104796
|
""" Armature's active bone collection
|
|
104661
104797
|
|
|
104662
|
-
:type: BoneCollection
|
|
104798
|
+
:type: BoneCollection | None
|
|
104663
104799
|
"""
|
|
104664
104800
|
|
|
104665
|
-
active_index:
|
|
104801
|
+
active_index: int | None
|
|
104666
104802
|
""" The index of the Armature's active bone collection; -1 when there is no active collection. Note that this is indexing the underlying array of bone collections, which may not be in the order you expect. Root collections are listed first, and siblings are always sequential. Apart from that, bone collections can be in any order, and thus incrementing or decrementing this index can make the active bone collection jump around in unexpected ways. For a more predictable interface, use active or active_name
|
|
104667
104803
|
|
|
104668
|
-
:type:
|
|
104804
|
+
:type: int | None
|
|
104669
104805
|
"""
|
|
104670
104806
|
|
|
104671
104807
|
active_name: str
|
|
@@ -105241,10 +105377,10 @@ class BrushCurvesSculptSettings(bpy_struct):
|
|
|
105241
105377
|
class BrushGpencilSettings(bpy_struct):
|
|
105242
105378
|
"""Settings for grease pencil brush"""
|
|
105243
105379
|
|
|
105244
|
-
active_smooth_factor:
|
|
105380
|
+
active_smooth_factor: float | None
|
|
105245
105381
|
""" Amount of smoothing while drawing
|
|
105246
105382
|
|
|
105247
|
-
:type:
|
|
105383
|
+
:type: float | None
|
|
105248
105384
|
"""
|
|
105249
105385
|
|
|
105250
105386
|
angle: float
|
|
@@ -105895,10 +106031,10 @@ class CacheFileLayer(bpy_struct):
|
|
|
105895
106031
|
class CacheFileLayers(bpy_struct, bpy_prop_collection[CacheFileLayer]):
|
|
105896
106032
|
"""Collection of cache layers"""
|
|
105897
106033
|
|
|
105898
|
-
active: CacheFileLayer
|
|
106034
|
+
active: CacheFileLayer | None
|
|
105899
106035
|
""" Active layer of the CacheFile
|
|
105900
106036
|
|
|
105901
|
-
:type: CacheFileLayer
|
|
106037
|
+
:type: CacheFileLayer | None
|
|
105902
106038
|
"""
|
|
105903
106039
|
|
|
105904
106040
|
def new(self, filepath: str | typing.Any) -> CacheFileLayer:
|
|
@@ -107863,10 +107999,10 @@ class ConsoleLine(bpy_struct):
|
|
|
107863
107999
|
class Constraint(bpy_struct):
|
|
107864
108000
|
"""Constraint modifying the transformation of objects and bones"""
|
|
107865
108001
|
|
|
107866
|
-
active: bool
|
|
108002
|
+
active: bool | None
|
|
107867
108003
|
""" Constraint is the one being edited
|
|
107868
108004
|
|
|
107869
|
-
:type: bool
|
|
108005
|
+
:type: bool | None
|
|
107870
108006
|
"""
|
|
107871
108007
|
|
|
107872
108008
|
enabled: bool
|
|
@@ -108534,10 +108670,10 @@ class Context(bpy_struct):
|
|
|
108534
108670
|
:type: Mask
|
|
108535
108671
|
"""
|
|
108536
108672
|
|
|
108537
|
-
active_file:
|
|
108673
|
+
active_file: FileSelectEntry | None
|
|
108538
108674
|
"""
|
|
108539
108675
|
|
|
108540
|
-
:type:
|
|
108676
|
+
:type: FileSelectEntry | None
|
|
108541
108677
|
"""
|
|
108542
108678
|
|
|
108543
108679
|
selected_files: typing.Any
|
|
@@ -108568,10 +108704,10 @@ class Context(bpy_struct):
|
|
|
108568
108704
|
"""
|
|
108569
108705
|
|
|
108570
108706
|
selected_nodes: typing.Any
|
|
108571
|
-
active_node:
|
|
108707
|
+
active_node: Node | None
|
|
108572
108708
|
"""
|
|
108573
108709
|
|
|
108574
|
-
:type:
|
|
108710
|
+
:type: Node | None
|
|
108575
108711
|
"""
|
|
108576
108712
|
|
|
108577
108713
|
light: Light
|
|
@@ -108618,22 +108754,22 @@ class Context(bpy_struct):
|
|
|
108618
108754
|
visible_pose_bones: typing.Any
|
|
108619
108755
|
selected_pose_bones: typing.Any
|
|
108620
108756
|
selected_pose_bones_from_active_object: typing.Any
|
|
108621
|
-
active_bone:
|
|
108757
|
+
active_bone: EditBone | None
|
|
108622
108758
|
"""
|
|
108623
108759
|
|
|
108624
|
-
:type:
|
|
108760
|
+
:type: EditBone | None
|
|
108625
108761
|
"""
|
|
108626
108762
|
|
|
108627
|
-
active_pose_bone:
|
|
108763
|
+
active_pose_bone: PoseBone | None
|
|
108628
108764
|
"""
|
|
108629
108765
|
|
|
108630
|
-
:type:
|
|
108766
|
+
:type: PoseBone | None
|
|
108631
108767
|
"""
|
|
108632
108768
|
|
|
108633
|
-
active_object:
|
|
108769
|
+
active_object: Object | None
|
|
108634
108770
|
"""
|
|
108635
108771
|
|
|
108636
|
-
:type:
|
|
108772
|
+
:type: Object | None
|
|
108637
108773
|
"""
|
|
108638
108774
|
|
|
108639
108775
|
object: Object
|
|
@@ -108684,25 +108820,25 @@ class Context(bpy_struct):
|
|
|
108684
108820
|
:type: Object
|
|
108685
108821
|
"""
|
|
108686
108822
|
|
|
108687
|
-
active_sequence_strip:
|
|
108823
|
+
active_sequence_strip: Sequence | None
|
|
108688
108824
|
"""
|
|
108689
108825
|
|
|
108690
|
-
:type:
|
|
108826
|
+
:type: Sequence | None
|
|
108691
108827
|
"""
|
|
108692
108828
|
|
|
108693
108829
|
sequences: typing.Any
|
|
108694
108830
|
selected_sequences: typing.Any
|
|
108695
108831
|
selected_editable_sequences: typing.Any
|
|
108696
|
-
active_nla_track:
|
|
108832
|
+
active_nla_track: NlaTrack | None
|
|
108697
108833
|
"""
|
|
108698
108834
|
|
|
108699
|
-
:type:
|
|
108835
|
+
:type: NlaTrack | None
|
|
108700
108836
|
"""
|
|
108701
108837
|
|
|
108702
|
-
active_nla_strip:
|
|
108838
|
+
active_nla_strip: NlaStrip | None
|
|
108703
108839
|
"""
|
|
108704
108840
|
|
|
108705
|
-
:type:
|
|
108841
|
+
:type: NlaStrip | None
|
|
108706
108842
|
"""
|
|
108707
108843
|
|
|
108708
108844
|
selected_nla_strips: typing.Any
|
|
@@ -108736,22 +108872,22 @@ class Context(bpy_struct):
|
|
|
108736
108872
|
editable_gpencil_strokes: typing.Any
|
|
108737
108873
|
active_gpencil_layer: typing.Any
|
|
108738
108874
|
active_gpencil_frame: typing.Any
|
|
108739
|
-
active_annotation_layer:
|
|
108875
|
+
active_annotation_layer: GPencilLayer | None
|
|
108740
108876
|
"""
|
|
108741
108877
|
|
|
108742
|
-
:type:
|
|
108878
|
+
:type: GPencilLayer | None
|
|
108743
108879
|
"""
|
|
108744
108880
|
|
|
108745
|
-
active_operator:
|
|
108881
|
+
active_operator: Operator | None
|
|
108746
108882
|
"""
|
|
108747
108883
|
|
|
108748
|
-
:type:
|
|
108884
|
+
:type: Operator | None
|
|
108749
108885
|
"""
|
|
108750
108886
|
|
|
108751
|
-
active_action:
|
|
108887
|
+
active_action: Action | None
|
|
108752
108888
|
"""
|
|
108753
108889
|
|
|
108754
|
-
:type:
|
|
108890
|
+
:type: Action | None
|
|
108755
108891
|
"""
|
|
108756
108892
|
|
|
108757
108893
|
selected_visible_actions: typing.Any
|
|
@@ -108760,10 +108896,10 @@ class Context(bpy_struct):
|
|
|
108760
108896
|
editable_fcurves: typing.Any
|
|
108761
108897
|
selected_visible_fcurves: typing.Any
|
|
108762
108898
|
selected_editable_fcurves: typing.Any
|
|
108763
|
-
active_editable_fcurve:
|
|
108899
|
+
active_editable_fcurve: FCurve | None
|
|
108764
108900
|
"""
|
|
108765
108901
|
|
|
108766
|
-
:type:
|
|
108902
|
+
:type: FCurve | None
|
|
108767
108903
|
"""
|
|
108768
108904
|
|
|
108769
108905
|
selected_editable_keyframes: typing.Any
|
|
@@ -108798,10 +108934,10 @@ Returns a tuple of the data-block, data path to the property, and array index.
|
|
|
108798
108934
|
:type: Text
|
|
108799
108935
|
"""
|
|
108800
108936
|
|
|
108801
|
-
active_object:
|
|
108937
|
+
active_object: Object | None
|
|
108802
108938
|
"""
|
|
108803
108939
|
|
|
108804
|
-
:type:
|
|
108940
|
+
:type: Object | None
|
|
108805
108941
|
"""
|
|
108806
108942
|
|
|
108807
108943
|
selected_ids: typing.Any
|
|
@@ -108850,7 +108986,11 @@ Returns a tuple of the data-block, data path to the property, and array index.
|
|
|
108850
108986
|
...
|
|
108851
108987
|
|
|
108852
108988
|
def temp_override(
|
|
108853
|
-
self,
|
|
108989
|
+
self,
|
|
108990
|
+
window: Window | None,
|
|
108991
|
+
area: Area | None,
|
|
108992
|
+
region: Region | None,
|
|
108993
|
+
**keywords,
|
|
108854
108994
|
):
|
|
108855
108995
|
"""Context manager to temporarily override members in the context.Overriding the context can be used to temporarily activate another window / area & region,
|
|
108856
108996
|
as well as other members such as the active_object or bone.Notes:Overriding the context can be useful to set the context after loading files
|
|
@@ -109225,6 +109365,12 @@ class CurvePaintSettings(bpy_struct):
|
|
|
109225
109365
|
:type: bool
|
|
109226
109366
|
"""
|
|
109227
109367
|
|
|
109368
|
+
use_project_only_selected: bool
|
|
109369
|
+
""" Project the strokes only onto selected objects
|
|
109370
|
+
|
|
109371
|
+
:type: bool
|
|
109372
|
+
"""
|
|
109373
|
+
|
|
109228
109374
|
use_stroke_endpoints: bool
|
|
109229
109375
|
""" Use the start of the stroke for the depth
|
|
109230
109376
|
|
|
@@ -109543,10 +109689,10 @@ class CurveSlice(bpy_struct):
|
|
|
109543
109689
|
class CurveSplines(bpy_struct, bpy_prop_collection[Spline]):
|
|
109544
109690
|
"""Collection of curve splines"""
|
|
109545
109691
|
|
|
109546
|
-
active: Spline
|
|
109692
|
+
active: Spline | None
|
|
109547
109693
|
""" Active curve spline
|
|
109548
109694
|
|
|
109549
|
-
:type: Spline
|
|
109695
|
+
:type: Spline | None
|
|
109550
109696
|
"""
|
|
109551
109697
|
|
|
109552
109698
|
def new(self, type: str | None) -> Spline:
|
|
@@ -111068,10 +111214,10 @@ class DynamicPaintSurfaces(bpy_struct, bpy_prop_collection[DynamicPaintSurface])
|
|
|
111068
111214
|
:type: DynamicPaintSurface
|
|
111069
111215
|
"""
|
|
111070
111216
|
|
|
111071
|
-
active_index:
|
|
111217
|
+
active_index: int | None
|
|
111072
111218
|
"""
|
|
111073
111219
|
|
|
111074
|
-
:type:
|
|
111220
|
+
:type: int | None
|
|
111075
111221
|
"""
|
|
111076
111222
|
|
|
111077
111223
|
@classmethod
|
|
@@ -111513,7 +111659,8 @@ Utility function for (tail - head)(readonly)"""
|
|
|
111513
111659
|
|
|
111514
111660
|
def transform(
|
|
111515
111661
|
self,
|
|
111516
|
-
matrix:
|
|
111662
|
+
matrix: collections.abc.Sequence[float] | mathutils.Matrix | None,
|
|
111663
|
+
*,
|
|
111517
111664
|
scale: bool | None = True,
|
|
111518
111665
|
roll: bool | None = True,
|
|
111519
111666
|
):
|
|
@@ -111521,7 +111668,7 @@ Utility function for (tail - head)(readonly)"""
|
|
|
111521
111668
|
(when the matrix has a scale component).
|
|
111522
111669
|
|
|
111523
111670
|
:param matrix: 3x3 or 4x4 transformation matrix.
|
|
111524
|
-
:type matrix:
|
|
111671
|
+
:type matrix: collections.abc.Sequence[float] | mathutils.Matrix | None
|
|
111525
111672
|
:param scale: Scale the bone envelope by the matrix.
|
|
111526
111673
|
:type scale: bool | None
|
|
111527
111674
|
:param roll: Correct the roll to point in the same relative
|
|
@@ -112236,10 +112383,10 @@ class FCurveKeyframePoints(bpy_struct, bpy_prop_collection[Keyframe]):
|
|
|
112236
112383
|
class FCurveModifiers(bpy_struct, bpy_prop_collection[FModifier]):
|
|
112237
112384
|
"""Collection of F-Curve Modifiers"""
|
|
112238
112385
|
|
|
112239
|
-
active: FModifier
|
|
112386
|
+
active: FModifier | None
|
|
112240
112387
|
""" Active F-Curve Modifier
|
|
112241
112388
|
|
|
112242
|
-
:type: FModifier
|
|
112389
|
+
:type: FModifier | None
|
|
112243
112390
|
"""
|
|
112244
112391
|
|
|
112245
112392
|
def new(self, type: str | None) -> FModifier:
|
|
@@ -112473,10 +112620,10 @@ class FFmpegSettings(bpy_struct):
|
|
|
112473
112620
|
class FModifier(bpy_struct):
|
|
112474
112621
|
"""Modifier for values of F-Curve"""
|
|
112475
112622
|
|
|
112476
|
-
active: bool
|
|
112623
|
+
active: bool | None
|
|
112477
112624
|
""" F-Curve modifier will show settings in the editor
|
|
112478
112625
|
|
|
112479
|
-
:type: bool
|
|
112626
|
+
:type: bool | None
|
|
112480
112627
|
"""
|
|
112481
112628
|
|
|
112482
112629
|
blend_in: float
|
|
@@ -117500,14 +117647,15 @@ class Gizmo(bpy_struct):
|
|
|
117500
117647
|
def draw_custom_shape(
|
|
117501
117648
|
self,
|
|
117502
117649
|
shape,
|
|
117503
|
-
|
|
117650
|
+
*,
|
|
117651
|
+
matrix: collections.abc.Sequence[float] | mathutils.Matrix | None = None,
|
|
117504
117652
|
select_id=None,
|
|
117505
117653
|
):
|
|
117506
117654
|
"""Draw a shape created form `Gizmo.draw_custom_shape`.
|
|
117507
117655
|
|
|
117508
117656
|
:param shape: The cached shape to draw.
|
|
117509
117657
|
:param matrix: 4x4 matrix, when not given `Gizmo.matrix_world` is used.
|
|
117510
|
-
:type matrix:
|
|
117658
|
+
:type matrix: collections.abc.Sequence[float] | mathutils.Matrix | None
|
|
117511
117659
|
:param select_id: The selection id.
|
|
117512
117660
|
Only use when drawing within `Gizmo.draw_select`.
|
|
117513
117661
|
"""
|
|
@@ -117568,20 +117716,20 @@ class Gizmo(bpy_struct):
|
|
|
117568
117716
|
def target_set_handler(
|
|
117569
117717
|
self,
|
|
117570
117718
|
target: str | None,
|
|
117571
|
-
get:
|
|
117572
|
-
set:
|
|
117573
|
-
range:
|
|
117719
|
+
get: collections.abc.Callable | None,
|
|
117720
|
+
set: collections.abc.Callable | None,
|
|
117721
|
+
range: collections.abc.Callable | None = None,
|
|
117574
117722
|
):
|
|
117575
117723
|
"""Assigns callbacks to a gizmos property.
|
|
117576
117724
|
|
|
117577
117725
|
:param target: Target property name.
|
|
117578
117726
|
:type target: str | None
|
|
117579
117727
|
:param get: Function that returns the value for this property (single value or sequence).
|
|
117580
|
-
:type get:
|
|
117728
|
+
:type get: collections.abc.Callable | None
|
|
117581
117729
|
:param set: Function that takes a single value argument and applies it.
|
|
117582
|
-
:type set:
|
|
117730
|
+
:type set: collections.abc.Callable | None
|
|
117583
117731
|
:param range: Function that returns a (min, max) tuple for gizmos that use a range.
|
|
117584
|
-
:type range:
|
|
117732
|
+
:type range: collections.abc.Callable | None
|
|
117585
117733
|
"""
|
|
117586
117734
|
...
|
|
117587
117735
|
|
|
@@ -118329,10 +118477,10 @@ class GreasePencilLayerMask(bpy_struct):
|
|
|
118329
118477
|
class GreasePencilLayerMasks(bpy_struct, bpy_prop_collection[GreasePencilLayerMask]):
|
|
118330
118478
|
"""Collection of grease pencil masking layers"""
|
|
118331
118479
|
|
|
118332
|
-
active_mask_index:
|
|
118480
|
+
active_mask_index: int | None
|
|
118333
118481
|
""" Active index in layer mask array
|
|
118334
118482
|
|
|
118335
|
-
:type:
|
|
118483
|
+
:type: int | None
|
|
118336
118484
|
"""
|
|
118337
118485
|
|
|
118338
118486
|
@classmethod
|
|
@@ -118362,22 +118510,22 @@ class GreasePencilLayerMasks(bpy_struct, bpy_prop_collection[GreasePencilLayerMa
|
|
|
118362
118510
|
class GreasePencilLayers(bpy_struct, bpy_prop_collection[GPencilLayer]):
|
|
118363
118511
|
"""Collection of grease pencil layers"""
|
|
118364
118512
|
|
|
118365
|
-
active: GPencilLayer
|
|
118513
|
+
active: GPencilLayer | None
|
|
118366
118514
|
""" Active grease pencil layer
|
|
118367
118515
|
|
|
118368
|
-
:type: GPencilLayer
|
|
118516
|
+
:type: GPencilLayer | None
|
|
118369
118517
|
"""
|
|
118370
118518
|
|
|
118371
|
-
active_index:
|
|
118519
|
+
active_index: int | None
|
|
118372
118520
|
""" Index of active grease pencil layer
|
|
118373
118521
|
|
|
118374
|
-
:type:
|
|
118522
|
+
:type: int | None
|
|
118375
118523
|
"""
|
|
118376
118524
|
|
|
118377
|
-
active_note:
|
|
118525
|
+
active_note: str | None
|
|
118378
118526
|
""" Note/Layer to add annotation strokes to
|
|
118379
118527
|
|
|
118380
|
-
:type:
|
|
118528
|
+
:type: str | None
|
|
118381
118529
|
"""
|
|
118382
118530
|
|
|
118383
118531
|
def new(
|
|
@@ -118439,10 +118587,10 @@ class GreasePencilLayers(bpy_struct, bpy_prop_collection[GPencilLayer]):
|
|
|
118439
118587
|
class GreasePencilMaskLayers(bpy_struct, bpy_prop_collection[GPencilLayerMask]):
|
|
118440
118588
|
"""Collection of grease pencil masking layers"""
|
|
118441
118589
|
|
|
118442
|
-
active_mask_index:
|
|
118590
|
+
active_mask_index: int | None
|
|
118443
118591
|
""" Active index in layer mask array
|
|
118444
118592
|
|
|
118445
|
-
:type:
|
|
118593
|
+
:type: int | None
|
|
118446
118594
|
"""
|
|
118447
118595
|
|
|
118448
118596
|
def add(self, layer: GPencilLayer):
|
|
@@ -118545,10 +118693,10 @@ class GreasePencilTimeModifierSegment(bpy_struct):
|
|
|
118545
118693
|
class GreasePencilv3LayerGroup(bpy_struct, bpy_prop_collection[GreasePencilLayerGroup]):
|
|
118546
118694
|
"""Collection of Grease Pencil layers"""
|
|
118547
118695
|
|
|
118548
|
-
active_group:
|
|
118696
|
+
active_group: GreasePencilLayerGroup | None
|
|
118549
118697
|
""" Active Grease Pencil layer group
|
|
118550
118698
|
|
|
118551
|
-
:type:
|
|
118699
|
+
:type: GreasePencilLayerGroup | None
|
|
118552
118700
|
"""
|
|
118553
118701
|
|
|
118554
118702
|
def new(
|
|
@@ -118646,10 +118794,10 @@ class GreasePencilv3LayerGroup(bpy_struct, bpy_prop_collection[GreasePencilLayer
|
|
|
118646
118794
|
class GreasePencilv3Layers(bpy_struct, bpy_prop_collection[GreasePencilLayer]):
|
|
118647
118795
|
"""Collection of Grease Pencil layers"""
|
|
118648
118796
|
|
|
118649
|
-
active_layer:
|
|
118797
|
+
active_layer: GreasePencilLayer | None
|
|
118650
118798
|
""" Active Grease Pencil layer
|
|
118651
118799
|
|
|
118652
|
-
:type:
|
|
118800
|
+
:type: GreasePencilLayer | None
|
|
118653
118801
|
"""
|
|
118654
118802
|
|
|
118655
118803
|
def new(
|
|
@@ -120162,10 +120310,10 @@ class KeyConfigPreferences(bpy_struct):
|
|
|
120162
120310
|
class KeyConfigurations(bpy_struct, bpy_prop_collection[KeyConfig]):
|
|
120163
120311
|
"""Collection of KeyConfigs"""
|
|
120164
120312
|
|
|
120165
|
-
active: KeyConfig
|
|
120313
|
+
active: KeyConfig | None
|
|
120166
120314
|
""" Active key configuration (preset)
|
|
120167
120315
|
|
|
120168
|
-
:type: KeyConfig
|
|
120316
|
+
:type: KeyConfig | None
|
|
120169
120317
|
"""
|
|
120170
120318
|
|
|
120171
120319
|
addon: KeyConfig
|
|
@@ -120372,10 +120520,10 @@ class KeyMap(bpy_struct):
|
|
|
120372
120520
|
class KeyMapItem(bpy_struct):
|
|
120373
120521
|
"""Item in a Key Map"""
|
|
120374
120522
|
|
|
120375
|
-
active: bool
|
|
120523
|
+
active: bool | None
|
|
120376
120524
|
""" Activate or deactivate item
|
|
120377
120525
|
|
|
120378
|
-
:type: bool
|
|
120526
|
+
:type: bool | None
|
|
120379
120527
|
"""
|
|
120380
120528
|
|
|
120381
120529
|
alt: int
|
|
@@ -121217,16 +121365,16 @@ class KeyingSetPath(bpy_struct):
|
|
|
121217
121365
|
class KeyingSetPaths(bpy_struct, bpy_prop_collection[KeyingSetPath]):
|
|
121218
121366
|
"""Collection of keying set paths"""
|
|
121219
121367
|
|
|
121220
|
-
active: KeyingSetPath
|
|
121368
|
+
active: KeyingSetPath | None
|
|
121221
121369
|
""" Active Keying Set used to insert/delete keyframes
|
|
121222
121370
|
|
|
121223
|
-
:type: KeyingSetPath
|
|
121371
|
+
:type: KeyingSetPath | None
|
|
121224
121372
|
"""
|
|
121225
121373
|
|
|
121226
|
-
active_index:
|
|
121374
|
+
active_index: int | None
|
|
121227
121375
|
""" Current Keying Set index
|
|
121228
121376
|
|
|
121229
|
-
:type:
|
|
121377
|
+
:type: int | None
|
|
121230
121378
|
"""
|
|
121231
121379
|
|
|
121232
121380
|
def add(
|
|
@@ -121293,16 +121441,16 @@ class KeyingSetPaths(bpy_struct, bpy_prop_collection[KeyingSetPath]):
|
|
|
121293
121441
|
class KeyingSets(bpy_struct, bpy_prop_collection[KeyingSet]):
|
|
121294
121442
|
"""Scene keying sets"""
|
|
121295
121443
|
|
|
121296
|
-
active: KeyingSet
|
|
121444
|
+
active: KeyingSet | None
|
|
121297
121445
|
""" Active Keying Set used to insert/delete keyframes
|
|
121298
121446
|
|
|
121299
|
-
:type: KeyingSet
|
|
121447
|
+
:type: KeyingSet | None
|
|
121300
121448
|
"""
|
|
121301
121449
|
|
|
121302
|
-
active_index:
|
|
121450
|
+
active_index: int | None
|
|
121303
121451
|
""" Current Keying Set index (negative for 'builtin' and positive for 'absolute')
|
|
121304
121452
|
|
|
121305
|
-
:type:
|
|
121453
|
+
:type: int | None
|
|
121306
121454
|
"""
|
|
121307
121455
|
|
|
121308
121456
|
def new(
|
|
@@ -121348,16 +121496,16 @@ class KeyingSets(bpy_struct, bpy_prop_collection[KeyingSet]):
|
|
|
121348
121496
|
class KeyingSetsAll(bpy_struct, bpy_prop_collection[KeyingSet]):
|
|
121349
121497
|
"""All available keying sets"""
|
|
121350
121498
|
|
|
121351
|
-
active: KeyingSet
|
|
121499
|
+
active: KeyingSet | None
|
|
121352
121500
|
""" Active Keying Set used to insert/delete keyframes
|
|
121353
121501
|
|
|
121354
|
-
:type: KeyingSet
|
|
121502
|
+
:type: KeyingSet | None
|
|
121355
121503
|
"""
|
|
121356
121504
|
|
|
121357
|
-
active_index:
|
|
121505
|
+
active_index: int | None
|
|
121358
121506
|
""" Current Keying Set index (negative for 'builtin' and positive for 'absolute')
|
|
121359
121507
|
|
|
121360
|
-
:type:
|
|
121508
|
+
:type: int | None
|
|
121361
121509
|
"""
|
|
121362
121510
|
|
|
121363
121511
|
@classmethod
|
|
@@ -121545,10 +121693,10 @@ class LayerCollection(bpy_struct):
|
|
|
121545
121693
|
class LayerObjects(bpy_struct, bpy_prop_collection[Object]):
|
|
121546
121694
|
"""Collections of objects"""
|
|
121547
121695
|
|
|
121548
|
-
active: Object
|
|
121696
|
+
active: Object | None
|
|
121549
121697
|
""" Active object for this layer
|
|
121550
121698
|
|
|
121551
|
-
:type: Object
|
|
121699
|
+
:type: Object | None
|
|
121552
121700
|
"""
|
|
121553
121701
|
|
|
121554
121702
|
selected: bpy_prop_collection[Object]
|
|
@@ -122007,10 +122155,10 @@ class Linesets(bpy_struct, bpy_prop_collection[FreestyleLineSet]):
|
|
|
122007
122155
|
:type: FreestyleLineSet
|
|
122008
122156
|
"""
|
|
122009
122157
|
|
|
122010
|
-
active_index:
|
|
122158
|
+
active_index: int | None
|
|
122011
122159
|
""" Index of active line set slot
|
|
122012
122160
|
|
|
122013
|
-
:type:
|
|
122161
|
+
:type: int | None
|
|
122014
122162
|
"""
|
|
122015
122163
|
|
|
122016
122164
|
def new(self, name: str | typing.Any) -> FreestyleLineSet:
|
|
@@ -122058,16 +122206,16 @@ class Linesets(bpy_struct, bpy_prop_collection[FreestyleLineSet]):
|
|
|
122058
122206
|
class LoopColors(bpy_struct, bpy_prop_collection[MeshLoopColorLayer]):
|
|
122059
122207
|
"""Collection of vertex colors"""
|
|
122060
122208
|
|
|
122061
|
-
active: MeshLoopColorLayer
|
|
122209
|
+
active: MeshLoopColorLayer | None
|
|
122062
122210
|
""" Active vertex color layer
|
|
122063
122211
|
|
|
122064
|
-
:type: MeshLoopColorLayer
|
|
122212
|
+
:type: MeshLoopColorLayer | None
|
|
122065
122213
|
"""
|
|
122066
122214
|
|
|
122067
|
-
active_index:
|
|
122215
|
+
active_index: int | None
|
|
122068
122216
|
""" Active vertex color index
|
|
122069
122217
|
|
|
122070
|
-
:type:
|
|
122218
|
+
:type: int | None
|
|
122071
122219
|
"""
|
|
122072
122220
|
|
|
122073
122221
|
def new(
|
|
@@ -122330,10 +122478,10 @@ class MaskLayer(bpy_struct):
|
|
|
122330
122478
|
class MaskLayers(bpy_struct, bpy_prop_collection[MaskLayer]):
|
|
122331
122479
|
"""Collection of layers used by mask"""
|
|
122332
122480
|
|
|
122333
|
-
active: MaskLayer
|
|
122481
|
+
active: MaskLayer | None
|
|
122334
122482
|
""" Active layer in this mask
|
|
122335
122483
|
|
|
122336
|
-
:type: MaskLayer
|
|
122484
|
+
:type: MaskLayer | None
|
|
122337
122485
|
"""
|
|
122338
122486
|
|
|
122339
122487
|
def new(self, name: str | typing.Any = "") -> MaskLayer:
|
|
@@ -122680,16 +122828,16 @@ class MaskSplinePoints(bpy_struct, bpy_prop_collection[MaskSplinePoint]):
|
|
|
122680
122828
|
class MaskSplines(bpy_struct, bpy_prop_collection[MaskSpline]):
|
|
122681
122829
|
"""Collection of masking splines"""
|
|
122682
122830
|
|
|
122683
|
-
active: MaskSpline
|
|
122831
|
+
active: MaskSpline | None
|
|
122684
122832
|
""" Active spline of masking layer
|
|
122685
122833
|
|
|
122686
|
-
:type: MaskSpline
|
|
122834
|
+
:type: MaskSpline | None
|
|
122687
122835
|
"""
|
|
122688
122836
|
|
|
122689
|
-
active_point:
|
|
122837
|
+
active_point: MaskSplinePoint | None
|
|
122690
122838
|
""" Active point of masking layer
|
|
122691
122839
|
|
|
122692
|
-
:type:
|
|
122840
|
+
:type: MaskSplinePoint | None
|
|
122693
122841
|
"""
|
|
122694
122842
|
|
|
122695
122843
|
def new(self) -> MaskSpline:
|
|
@@ -123123,11 +123271,12 @@ class Menu(bpy_struct):
|
|
|
123123
123271
|
self,
|
|
123124
123272
|
searchpaths: list[str] | None,
|
|
123125
123273
|
operator: str | None,
|
|
123274
|
+
*,
|
|
123126
123275
|
props_default: dict | None = None,
|
|
123127
123276
|
prop_filepath: str | None = "filepath",
|
|
123128
|
-
filter_ext:
|
|
123277
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
123129
123278
|
filter_path=None,
|
|
123130
|
-
display_name:
|
|
123279
|
+
display_name: collections.abc.Callable | None = None,
|
|
123131
123280
|
add_operator=None,
|
|
123132
123281
|
add_operator_props=None,
|
|
123133
123282
|
):
|
|
@@ -123144,10 +123293,10 @@ class Menu(bpy_struct):
|
|
|
123144
123293
|
:param filter_ext: Optional callback that takes the file extensions.
|
|
123145
123294
|
|
|
123146
123295
|
Returning false excludes the file from the list.
|
|
123147
|
-
:type filter_ext:
|
|
123296
|
+
:type filter_ext: collections.abc.Callable | None
|
|
123148
123297
|
:param filter_path:
|
|
123149
123298
|
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
123150
|
-
:type display_name:
|
|
123299
|
+
:type display_name: collections.abc.Callable | None
|
|
123151
123300
|
:param add_operator:
|
|
123152
123301
|
:param add_operator_props:
|
|
123153
123302
|
"""
|
|
@@ -123419,16 +123568,16 @@ class MeshLoopColor(bpy_struct):
|
|
|
123419
123568
|
class MeshLoopColorLayer(bpy_struct):
|
|
123420
123569
|
"""Layer of vertex colors in a Mesh data-block"""
|
|
123421
123570
|
|
|
123422
|
-
active: bool
|
|
123571
|
+
active: bool | None
|
|
123423
123572
|
""" Sets the layer as active for display and editing
|
|
123424
123573
|
|
|
123425
|
-
:type: bool
|
|
123574
|
+
:type: bool | None
|
|
123426
123575
|
"""
|
|
123427
123576
|
|
|
123428
|
-
active_render:
|
|
123577
|
+
active_render: bool | None
|
|
123429
123578
|
""" Sets the layer as active for rendering
|
|
123430
123579
|
|
|
123431
|
-
:type:
|
|
123580
|
+
:type: bool | None
|
|
123432
123581
|
"""
|
|
123433
123582
|
|
|
123434
123583
|
data: bpy_prop_collection[MeshLoopColor]
|
|
@@ -123765,10 +123914,10 @@ class MeshPolygon(bpy_struct):
|
|
|
123765
123914
|
class MeshPolygons(bpy_struct, bpy_prop_collection[MeshPolygon]):
|
|
123766
123915
|
"""Collection of mesh polygons"""
|
|
123767
123916
|
|
|
123768
|
-
active: int
|
|
123917
|
+
active: int | None
|
|
123769
123918
|
""" The active face for this mesh
|
|
123770
123919
|
|
|
123771
|
-
:type: int
|
|
123920
|
+
:type: int | None
|
|
123772
123921
|
"""
|
|
123773
123922
|
|
|
123774
123923
|
def add(self, count: int | None):
|
|
@@ -124030,22 +124179,22 @@ class MeshUVLoop(bpy_struct):
|
|
|
124030
124179
|
...
|
|
124031
124180
|
|
|
124032
124181
|
class MeshUVLoopLayer(bpy_struct):
|
|
124033
|
-
active: bool
|
|
124182
|
+
active: bool | None
|
|
124034
124183
|
""" Set the map as active for display and editing
|
|
124035
124184
|
|
|
124036
|
-
:type: bool
|
|
124185
|
+
:type: bool | None
|
|
124037
124186
|
"""
|
|
124038
124187
|
|
|
124039
|
-
active_clone:
|
|
124188
|
+
active_clone: bool | None
|
|
124040
124189
|
""" Set the map as active for cloning
|
|
124041
124190
|
|
|
124042
|
-
:type:
|
|
124191
|
+
:type: bool | None
|
|
124043
124192
|
"""
|
|
124044
124193
|
|
|
124045
|
-
active_render:
|
|
124194
|
+
active_render: bool | None
|
|
124046
124195
|
""" Set the UV map as active for rendering
|
|
124047
124196
|
|
|
124048
|
-
:type:
|
|
124197
|
+
:type: bool | None
|
|
124049
124198
|
"""
|
|
124050
124199
|
|
|
124051
124200
|
data: bpy_prop_collection[MeshUVLoop]
|
|
@@ -124827,10 +124976,10 @@ class MovieReconstructedCamera(bpy_struct):
|
|
|
124827
124976
|
class MovieTracking(bpy_struct):
|
|
124828
124977
|
"""Match-moving data for tracking"""
|
|
124829
124978
|
|
|
124830
|
-
active_object_index:
|
|
124979
|
+
active_object_index: int | None
|
|
124831
124980
|
""" Index of active object
|
|
124832
124981
|
|
|
124833
|
-
:type:
|
|
124982
|
+
:type: int | None
|
|
124834
124983
|
"""
|
|
124835
124984
|
|
|
124836
124985
|
camera: MovieTrackingCamera
|
|
@@ -125331,10 +125480,10 @@ class MovieTrackingObjectPlaneTracks(
|
|
|
125331
125480
|
):
|
|
125332
125481
|
"""Collection of tracking plane tracks"""
|
|
125333
125482
|
|
|
125334
|
-
active: MovieTrackingTrack
|
|
125483
|
+
active: MovieTrackingTrack | None
|
|
125335
125484
|
""" Active track in this tracking data object
|
|
125336
125485
|
|
|
125337
|
-
:type: MovieTrackingTrack
|
|
125486
|
+
:type: MovieTrackingTrack | None
|
|
125338
125487
|
"""
|
|
125339
125488
|
|
|
125340
125489
|
@classmethod
|
|
@@ -125364,10 +125513,10 @@ class MovieTrackingObjectPlaneTracks(
|
|
|
125364
125513
|
class MovieTrackingObjectTracks(bpy_struct, bpy_prop_collection[MovieTrackingTrack]):
|
|
125365
125514
|
"""Collection of movie tracking tracks"""
|
|
125366
125515
|
|
|
125367
|
-
active: MovieTrackingTrack
|
|
125516
|
+
active: MovieTrackingTrack | None
|
|
125368
125517
|
""" Active track in this tracking data object
|
|
125369
125518
|
|
|
125370
|
-
:type: MovieTrackingTrack
|
|
125519
|
+
:type: MovieTrackingTrack | None
|
|
125371
125520
|
"""
|
|
125372
125521
|
|
|
125373
125522
|
def new(
|
|
@@ -125411,10 +125560,10 @@ class MovieTrackingObjectTracks(bpy_struct, bpy_prop_collection[MovieTrackingTra
|
|
|
125411
125560
|
class MovieTrackingObjects(bpy_struct, bpy_prop_collection[MovieTrackingObject]):
|
|
125412
125561
|
"""Collection of movie tracking objects"""
|
|
125413
125562
|
|
|
125414
|
-
active: MovieTrackingObject
|
|
125563
|
+
active: MovieTrackingObject | None
|
|
125415
125564
|
""" Active object in this tracking data object
|
|
125416
125565
|
|
|
125417
|
-
:type: MovieTrackingObject
|
|
125566
|
+
:type: MovieTrackingObject | None
|
|
125418
125567
|
"""
|
|
125419
125568
|
|
|
125420
125569
|
def new(self, name: str | typing.Any) -> MovieTrackingObject:
|
|
@@ -125635,10 +125784,10 @@ class MovieTrackingPlaneTracks(
|
|
|
125635
125784
|
):
|
|
125636
125785
|
"""Collection of movie tracking plane tracks"""
|
|
125637
125786
|
|
|
125638
|
-
active: MovieTrackingPlaneTrack
|
|
125787
|
+
active: MovieTrackingPlaneTrack | None
|
|
125639
125788
|
""" Active plane track in this tracking data object. Deprecated, use objects[name].plane_tracks.active
|
|
125640
125789
|
|
|
125641
|
-
:type: MovieTrackingPlaneTrack
|
|
125790
|
+
:type: MovieTrackingPlaneTrack | None
|
|
125642
125791
|
"""
|
|
125643
125792
|
|
|
125644
125793
|
@classmethod
|
|
@@ -125956,16 +126105,16 @@ class MovieTrackingSettings(bpy_struct):
|
|
|
125956
126105
|
class MovieTrackingStabilization(bpy_struct):
|
|
125957
126106
|
"""2D stabilization based on tracking markers"""
|
|
125958
126107
|
|
|
125959
|
-
active_rotation_track_index:
|
|
126108
|
+
active_rotation_track_index: int | None
|
|
125960
126109
|
""" Index of active track in rotation stabilization tracks list
|
|
125961
126110
|
|
|
125962
|
-
:type:
|
|
126111
|
+
:type: int | None
|
|
125963
126112
|
"""
|
|
125964
126113
|
|
|
125965
|
-
active_track_index:
|
|
126114
|
+
active_track_index: int | None
|
|
125966
126115
|
""" Index of active track in translation stabilization tracks list
|
|
125967
126116
|
|
|
125968
|
-
:type:
|
|
126117
|
+
:type: int | None
|
|
125969
126118
|
"""
|
|
125970
126119
|
|
|
125971
126120
|
anchor_frame: int
|
|
@@ -126298,10 +126447,10 @@ class MovieTrackingTrack(bpy_struct):
|
|
|
126298
126447
|
class MovieTrackingTracks(bpy_struct, bpy_prop_collection[MovieTrackingTrack]):
|
|
126299
126448
|
"""Collection of movie tracking tracks"""
|
|
126300
126449
|
|
|
126301
|
-
active: MovieTrackingTrack
|
|
126450
|
+
active: MovieTrackingTrack | None
|
|
126302
126451
|
""" Active track in this tracking data object. Deprecated, use objects[name].tracks.active
|
|
126303
126452
|
|
|
126304
|
-
:type: MovieTrackingTrack
|
|
126453
|
+
:type: MovieTrackingTrack | None
|
|
126305
126454
|
"""
|
|
126306
126455
|
|
|
126307
126456
|
def new(
|
|
@@ -126723,10 +126872,10 @@ class NlaTrack(bpy_struct):
|
|
|
126723
126872
|
class NlaTracks(bpy_struct, bpy_prop_collection[NlaTrack]):
|
|
126724
126873
|
"""Collection of NLA Tracks"""
|
|
126725
126874
|
|
|
126726
|
-
active: NlaTrack
|
|
126875
|
+
active: NlaTrack | None
|
|
126727
126876
|
""" Active NLA Track
|
|
126728
126877
|
|
|
126729
|
-
:type: NlaTrack
|
|
126878
|
+
:type: NlaTrack | None
|
|
126730
126879
|
"""
|
|
126731
126880
|
|
|
126732
126881
|
def new(self, prev: NlaTrack | None = None) -> NlaTrack:
|
|
@@ -128096,16 +128245,16 @@ class NodeSocket(bpy_struct):
|
|
|
128096
128245
|
class NodeTreeInterface(bpy_struct):
|
|
128097
128246
|
"""Declaration of sockets and ui panels of a node group"""
|
|
128098
128247
|
|
|
128099
|
-
active: NodeTreeInterfaceItem
|
|
128248
|
+
active: NodeTreeInterfaceItem | None
|
|
128100
128249
|
""" Active item
|
|
128101
128250
|
|
|
128102
|
-
:type: NodeTreeInterfaceItem
|
|
128251
|
+
:type: NodeTreeInterfaceItem | None
|
|
128103
128252
|
"""
|
|
128104
128253
|
|
|
128105
|
-
active_index:
|
|
128254
|
+
active_index: int | None
|
|
128106
128255
|
""" Index of the active item
|
|
128107
128256
|
|
|
128108
|
-
:type:
|
|
128257
|
+
:type: int | None
|
|
128109
128258
|
"""
|
|
128110
128259
|
|
|
128111
128260
|
items_tree: bpy_prop_collection[NodeTreeInterfaceItem]
|
|
@@ -128330,10 +128479,10 @@ class NodeTreePath(bpy_struct):
|
|
|
128330
128479
|
class Nodes(bpy_struct, bpy_prop_collection[Node]):
|
|
128331
128480
|
"""Collection of Nodes"""
|
|
128332
128481
|
|
|
128333
|
-
active: Node
|
|
128482
|
+
active: Node | None
|
|
128334
128483
|
""" Active node in this tree
|
|
128335
128484
|
|
|
128336
|
-
:type: Node
|
|
128485
|
+
:type: Node | None
|
|
128337
128486
|
"""
|
|
128338
128487
|
|
|
128339
128488
|
def new(self, type: str | typing.Any) -> Node:
|
|
@@ -128466,10 +128615,10 @@ class NodesModifierBakeDataBlocks(
|
|
|
128466
128615
|
):
|
|
128467
128616
|
"""Collection of data-blocks that can be referenced by baked data"""
|
|
128468
128617
|
|
|
128469
|
-
active_index:
|
|
128618
|
+
active_index: int | None
|
|
128470
128619
|
"""
|
|
128471
128620
|
|
|
128472
|
-
:type:
|
|
128621
|
+
:type: int | None
|
|
128473
128622
|
"""
|
|
128474
128623
|
|
|
128475
128624
|
@classmethod
|
|
@@ -128678,10 +128827,10 @@ class ObjectBase(bpy_struct):
|
|
|
128678
128827
|
class ObjectConstraints(bpy_struct, bpy_prop_collection[Constraint]):
|
|
128679
128828
|
"""Collection of object constraints"""
|
|
128680
128829
|
|
|
128681
|
-
active: Constraint
|
|
128830
|
+
active: Constraint | None
|
|
128682
128831
|
""" Active Object constraint
|
|
128683
128832
|
|
|
128684
|
-
:type: Constraint
|
|
128833
|
+
:type: Constraint | None
|
|
128685
128834
|
"""
|
|
128686
128835
|
|
|
128687
128836
|
def new(self, type: str | None) -> Constraint:
|
|
@@ -128931,10 +129080,10 @@ class ObjectLineArt(bpy_struct):
|
|
|
128931
129080
|
class ObjectModifiers(bpy_struct, bpy_prop_collection[Modifier]):
|
|
128932
129081
|
"""Collection of object modifiers"""
|
|
128933
129082
|
|
|
128934
|
-
active: Modifier
|
|
129083
|
+
active: Modifier | None
|
|
128935
129084
|
""" The active modifier in the list
|
|
128936
129085
|
|
|
128937
|
-
:type: Modifier
|
|
129086
|
+
:type: Modifier | None
|
|
128938
129087
|
"""
|
|
128939
129088
|
|
|
128940
129089
|
def new(self, name: str | typing.Any, type: str | None) -> Modifier:
|
|
@@ -129234,7 +129383,7 @@ expanding an operator into a menu.
|
|
|
129234
129383
|
"""
|
|
129235
129384
|
...
|
|
129236
129385
|
|
|
129237
|
-
def as_keywords(self, ignore=()):
|
|
129386
|
+
def as_keywords(self, *, ignore=()):
|
|
129238
129387
|
"""Return a copy of the properties as a dictionary
|
|
129239
129388
|
|
|
129240
129389
|
:param ignore:
|
|
@@ -129266,7 +129415,7 @@ expanding an operator into a menu.
|
|
|
129266
129415
|
...
|
|
129267
129416
|
|
|
129268
129417
|
@classmethod
|
|
129269
|
-
def poll_message_set(cls, message: str | None, args):
|
|
129418
|
+
def poll_message_set(cls, message: str | None, *args):
|
|
129270
129419
|
"""Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function.
|
|
129271
129420
|
|
|
129272
129421
|
:param message: The message or a function that returns the message.
|
|
@@ -129674,10 +129823,10 @@ class PaletteColor(bpy_struct):
|
|
|
129674
129823
|
class PaletteColors(bpy_struct, bpy_prop_collection[PaletteColor]):
|
|
129675
129824
|
"""Collection of palette colors"""
|
|
129676
129825
|
|
|
129677
|
-
active: PaletteColor
|
|
129826
|
+
active: PaletteColor | None
|
|
129678
129827
|
"""
|
|
129679
129828
|
|
|
129680
|
-
:type: PaletteColor
|
|
129829
|
+
:type: PaletteColor | None
|
|
129681
129830
|
"""
|
|
129682
129831
|
|
|
129683
129832
|
def new(self) -> PaletteColor:
|
|
@@ -130509,10 +130658,10 @@ class ParticleSystem(bpy_struct):
|
|
|
130509
130658
|
:type: ParticleTarget
|
|
130510
130659
|
"""
|
|
130511
130660
|
|
|
130512
|
-
active_particle_target_index:
|
|
130661
|
+
active_particle_target_index: int | None
|
|
130513
130662
|
"""
|
|
130514
130663
|
|
|
130515
|
-
:type:
|
|
130664
|
+
:type: int | None
|
|
130516
130665
|
"""
|
|
130517
130666
|
|
|
130518
130667
|
child_particles: bpy_prop_collection[ChildParticle]
|
|
@@ -130881,10 +131030,10 @@ class ParticleSystems(bpy_struct, bpy_prop_collection[ParticleSystem]):
|
|
|
130881
131030
|
:type: ParticleSystem
|
|
130882
131031
|
"""
|
|
130883
131032
|
|
|
130884
|
-
active_index:
|
|
131033
|
+
active_index: int | None
|
|
130885
131034
|
""" Index of active particle system slot
|
|
130886
131035
|
|
|
130887
|
-
:type:
|
|
131036
|
+
:type: int | None
|
|
130888
131037
|
"""
|
|
130889
131038
|
|
|
130890
131039
|
@classmethod
|
|
@@ -131352,10 +131501,10 @@ class PointCacheItem(bpy_struct):
|
|
|
131352
131501
|
class PointCaches(bpy_struct, bpy_prop_collection[PointCacheItem]):
|
|
131353
131502
|
"""Collection of point caches"""
|
|
131354
131503
|
|
|
131355
|
-
active_index:
|
|
131504
|
+
active_index: int | None
|
|
131356
131505
|
"""
|
|
131357
131506
|
|
|
131358
|
-
:type:
|
|
131507
|
+
:type: int | None
|
|
131359
131508
|
"""
|
|
131360
131509
|
|
|
131361
131510
|
@classmethod
|
|
@@ -132057,10 +132206,10 @@ Utility function for (tail - head)(readonly)"""
|
|
|
132057
132206
|
class PoseBoneConstraints(bpy_struct, bpy_prop_collection[Constraint]):
|
|
132058
132207
|
"""Collection of pose bone constraints"""
|
|
132059
132208
|
|
|
132060
|
-
active: Constraint
|
|
132209
|
+
active: Constraint | None
|
|
132061
132210
|
""" Active PoseChannel constraint
|
|
132062
132211
|
|
|
132063
|
-
:type: Constraint
|
|
132212
|
+
:type: Constraint | None
|
|
132064
132213
|
"""
|
|
132065
132214
|
|
|
132066
132215
|
def new(self, type: str | None) -> Constraint:
|
|
@@ -132128,10 +132277,10 @@ class PoseBoneConstraints(bpy_struct, bpy_prop_collection[Constraint]):
|
|
|
132128
132277
|
class Preferences(bpy_struct):
|
|
132129
132278
|
"""Global preferences"""
|
|
132130
132279
|
|
|
132131
|
-
active_section:
|
|
132280
|
+
active_section: str | None
|
|
132132
132281
|
""" Active section of the preferences shown in the user interface
|
|
132133
132282
|
|
|
132134
|
-
:type:
|
|
132283
|
+
:type: str | None
|
|
132135
132284
|
"""
|
|
132136
132285
|
|
|
132137
132286
|
addons: Addons
|
|
@@ -132820,10 +132969,10 @@ class PreferencesExperimental(bpy_struct):
|
|
|
132820
132969
|
class PreferencesExtensions(bpy_struct):
|
|
132821
132970
|
"""Settings for extensions"""
|
|
132822
132971
|
|
|
132823
|
-
active_repo:
|
|
132972
|
+
active_repo: int | None
|
|
132824
132973
|
""" Index of the extensions repository being edited in the Preferences UI
|
|
132825
132974
|
|
|
132826
|
-
:type:
|
|
132975
|
+
:type: int | None
|
|
132827
132976
|
"""
|
|
132828
132977
|
|
|
132829
132978
|
repos: UserExtensionRepoCollection
|
|
@@ -132865,10 +133014,10 @@ class PreferencesExtensions(bpy_struct):
|
|
|
132865
133014
|
class PreferencesFilePaths(bpy_struct):
|
|
132866
133015
|
"""Default paths for external files"""
|
|
132867
133016
|
|
|
132868
|
-
active_asset_library:
|
|
133017
|
+
active_asset_library: int | None
|
|
132869
133018
|
""" Index of the asset library being edited in the Preferences UI
|
|
132870
133019
|
|
|
132871
|
-
:type:
|
|
133020
|
+
:type: int | None
|
|
132872
133021
|
"""
|
|
132873
133022
|
|
|
132874
133023
|
animation_player: str
|
|
@@ -134592,7 +134741,7 @@ class RaytraceEEVEE(bpy_struct):
|
|
|
134592
134741
|
"""
|
|
134593
134742
|
|
|
134594
134743
|
trace_max_roughness: float
|
|
134595
|
-
""" Maximum roughness to use the tracing pipeline for. Higher roughness surfaces will use
|
|
134744
|
+
""" Maximum roughness to use the tracing pipeline for. Higher roughness surfaces will use fast GI approximation. A value of 1 will disable fast GI approximation
|
|
134596
134745
|
|
|
134597
134746
|
:type: float
|
|
134598
134747
|
"""
|
|
@@ -134661,10 +134810,10 @@ class ReadOnlyInteger(bpy_struct):
|
|
|
134661
134810
|
class Region(bpy_struct):
|
|
134662
134811
|
"""Region in a subdivided screen area"""
|
|
134663
134812
|
|
|
134664
|
-
active_panel_category:
|
|
134813
|
+
active_panel_category: str | None
|
|
134665
134814
|
""" The current active panel category, may be Null if the region does not support this feature (NOTE: these categories are generated at runtime, so list may be empty at initialization, before any drawing took place)
|
|
134666
134815
|
|
|
134667
|
-
:type:
|
|
134816
|
+
:type: str | None
|
|
134668
134817
|
"""
|
|
134669
134818
|
|
|
134670
134819
|
alignment: str
|
|
@@ -136611,16 +136760,16 @@ class RenderSlot(bpy_struct):
|
|
|
136611
136760
|
class RenderSlots(bpy_struct, bpy_prop_collection[RenderSlot]):
|
|
136612
136761
|
"""Collection of render layers"""
|
|
136613
136762
|
|
|
136614
|
-
active: RenderSlot
|
|
136763
|
+
active: RenderSlot | None
|
|
136615
136764
|
""" Active render slot of the image
|
|
136616
136765
|
|
|
136617
|
-
:type: RenderSlot
|
|
136766
|
+
:type: RenderSlot | None
|
|
136618
136767
|
"""
|
|
136619
136768
|
|
|
136620
|
-
active_index:
|
|
136769
|
+
active_index: int | None
|
|
136621
136770
|
""" Active render slot of the image
|
|
136622
136771
|
|
|
136623
|
-
:type:
|
|
136772
|
+
:type: int | None
|
|
136624
136773
|
"""
|
|
136625
136774
|
|
|
136626
136775
|
def new(self, name: str | typing.Any = "") -> RenderSlot:
|
|
@@ -136697,10 +136846,10 @@ class RenderViews(bpy_struct, bpy_prop_collection[SceneRenderView]):
|
|
|
136697
136846
|
:type: SceneRenderView
|
|
136698
136847
|
"""
|
|
136699
136848
|
|
|
136700
|
-
active_index:
|
|
136849
|
+
active_index: int | None
|
|
136701
136850
|
""" Active index in render view array
|
|
136702
136851
|
|
|
136703
|
-
:type:
|
|
136852
|
+
:type: int | None
|
|
136704
136853
|
"""
|
|
136705
136854
|
|
|
136706
136855
|
def new(self, name: str | typing.Any) -> SceneRenderView:
|
|
@@ -137766,6 +137915,60 @@ class SceneEEVEE(bpy_struct):
|
|
|
137766
137915
|
:type: float
|
|
137767
137916
|
"""
|
|
137768
137917
|
|
|
137918
|
+
fast_gi_bias: float
|
|
137919
|
+
""" Bias the shading normal to reduce self intersection artifacts
|
|
137920
|
+
|
|
137921
|
+
:type: float
|
|
137922
|
+
"""
|
|
137923
|
+
|
|
137924
|
+
fast_gi_distance: float
|
|
137925
|
+
""" If non-zero, the maximum distance at which other surfaces will contribute to the fast GI approximation
|
|
137926
|
+
|
|
137927
|
+
:type: float
|
|
137928
|
+
"""
|
|
137929
|
+
|
|
137930
|
+
fast_gi_method: str
|
|
137931
|
+
""" Fast GI approximation method
|
|
137932
|
+
|
|
137933
|
+
:type: str
|
|
137934
|
+
"""
|
|
137935
|
+
|
|
137936
|
+
fast_gi_quality: float
|
|
137937
|
+
""" Precision of the fast GI ray marching
|
|
137938
|
+
|
|
137939
|
+
:type: float
|
|
137940
|
+
"""
|
|
137941
|
+
|
|
137942
|
+
fast_gi_ray_count: int
|
|
137943
|
+
""" Amount of GI ray to trace for each pixel
|
|
137944
|
+
|
|
137945
|
+
:type: int
|
|
137946
|
+
"""
|
|
137947
|
+
|
|
137948
|
+
fast_gi_resolution: str
|
|
137949
|
+
""" Control the quality of the fast GI lighting. Higher resolution uses more memory
|
|
137950
|
+
|
|
137951
|
+
:type: str
|
|
137952
|
+
"""
|
|
137953
|
+
|
|
137954
|
+
fast_gi_step_count: int
|
|
137955
|
+
""" Amount of screen sample per GI ray
|
|
137956
|
+
|
|
137957
|
+
:type: int
|
|
137958
|
+
"""
|
|
137959
|
+
|
|
137960
|
+
fast_gi_thickness_far: float
|
|
137961
|
+
""" Angular thickness of the surfaces when computing fast GI and ambient occlusion. Reduces energy loss and missing occlusion of far geometry
|
|
137962
|
+
|
|
137963
|
+
:type: float
|
|
137964
|
+
"""
|
|
137965
|
+
|
|
137966
|
+
fast_gi_thickness_near: float
|
|
137967
|
+
""" Geometric thickness of the surfaces when computing fast GI and ambient occlusion. Reduces light leaking and missing contact occlusion
|
|
137968
|
+
|
|
137969
|
+
:type: float
|
|
137970
|
+
"""
|
|
137971
|
+
|
|
137769
137972
|
gi_auto_bake: bool
|
|
137770
137973
|
""" Auto bake indirect lighting when editing probes
|
|
137771
137974
|
|
|
@@ -137862,30 +138065,6 @@ class SceneEEVEE(bpy_struct):
|
|
|
137862
138065
|
:type: float
|
|
137863
138066
|
"""
|
|
137864
138067
|
|
|
137865
|
-
horizon_bias: float
|
|
137866
|
-
""" Bias the horizon angles to reduce self intersection artifacts
|
|
137867
|
-
|
|
137868
|
-
:type: float
|
|
137869
|
-
"""
|
|
137870
|
-
|
|
137871
|
-
horizon_quality: float
|
|
137872
|
-
""" Precision of the horizon scan
|
|
137873
|
-
|
|
137874
|
-
:type: float
|
|
137875
|
-
"""
|
|
137876
|
-
|
|
137877
|
-
horizon_resolution: str
|
|
137878
|
-
""" Control the quality of the horizon scan lighting. Higher resolution uses more memory
|
|
137879
|
-
|
|
137880
|
-
:type: str
|
|
137881
|
-
"""
|
|
137882
|
-
|
|
137883
|
-
horizon_thickness: float
|
|
137884
|
-
""" Constant thickness of the surfaces considered when doing horizon scan and by extension ambient occlusion
|
|
137885
|
-
|
|
137886
|
-
:type: float
|
|
137887
|
-
"""
|
|
137888
|
-
|
|
137889
138068
|
light_threshold: float
|
|
137890
138069
|
""" Minimum light intensity for a light to contribute to the lighting
|
|
137891
138070
|
|
|
@@ -138899,10 +139078,10 @@ class SequenceCrop(bpy_struct):
|
|
|
138899
139078
|
class SequenceEditor(bpy_struct):
|
|
138900
139079
|
"""Sequence editing data for a Scene data-block"""
|
|
138901
139080
|
|
|
138902
|
-
active_strip:
|
|
139081
|
+
active_strip: Sequence | None
|
|
138903
139082
|
""" Sequencer's active strip
|
|
138904
139083
|
|
|
138905
|
-
:type:
|
|
139084
|
+
:type: Sequence | None
|
|
138906
139085
|
"""
|
|
138907
139086
|
|
|
138908
139087
|
channels: bpy_prop_collection[SequenceTimelineChannel]
|
|
@@ -142759,10 +142938,10 @@ class ThemeAssetShelf(bpy_struct):
|
|
|
142759
142938
|
class ThemeBoneColorSet(bpy_struct):
|
|
142760
142939
|
"""Theme settings for bone color sets"""
|
|
142761
142940
|
|
|
142762
|
-
active: list[float] | tuple[float, float, float] | mathutils.Color
|
|
142941
|
+
active: list[float] | tuple[float, float, float] | mathutils.Color | None
|
|
142763
142942
|
""" Color used for active bones
|
|
142764
142943
|
|
|
142765
|
-
:type: list[float] | tuple[float, float, float] | mathutils.Color
|
|
142944
|
+
:type: list[float] | tuple[float, float, float] | mathutils.Color | None
|
|
142766
142945
|
"""
|
|
142767
142946
|
|
|
142768
142947
|
normal: list[float] | tuple[float, float, float] | mathutils.Color
|
|
@@ -142810,12 +142989,10 @@ class ThemeBoneColorSet(bpy_struct):
|
|
|
142810
142989
|
class ThemeClipEditor(bpy_struct):
|
|
142811
142990
|
"""Theme settings for the Movie Clip Editor"""
|
|
142812
142991
|
|
|
142813
|
-
active_marker:
|
|
142814
|
-
list[float] | tuple[float, float, float] | mathutils.Color
|
|
142815
|
-
]
|
|
142992
|
+
active_marker: list[float] | tuple[float, float, float] | mathutils.Color | None
|
|
142816
142993
|
""" Color of active marker
|
|
142817
142994
|
|
|
142818
|
-
:type:
|
|
142995
|
+
:type: list[float] | tuple[float, float, float] | mathutils.Color | None
|
|
142819
142996
|
"""
|
|
142820
142997
|
|
|
142821
142998
|
disabled_marker: list[float] | tuple[float, float, float] | mathutils.Color
|
|
@@ -143133,10 +143310,10 @@ class ThemeConsole(bpy_struct):
|
|
|
143133
143310
|
class ThemeDopeSheet(bpy_struct):
|
|
143134
143311
|
"""Theme settings for the Dope Sheet"""
|
|
143135
143312
|
|
|
143136
|
-
active_channels_group:
|
|
143313
|
+
active_channels_group: bpy_prop_array[float] | None
|
|
143137
143314
|
"""
|
|
143138
143315
|
|
|
143139
|
-
:type:
|
|
143316
|
+
:type: bpy_prop_array[float] | None
|
|
143140
143317
|
"""
|
|
143141
143318
|
|
|
143142
143319
|
channel_group: bpy_prop_array[float]
|
|
@@ -143543,12 +143720,12 @@ class ThemeGradientColors(bpy_struct):
|
|
|
143543
143720
|
class ThemeGraphEditor(bpy_struct):
|
|
143544
143721
|
"""Theme settings for the graph editor"""
|
|
143545
143722
|
|
|
143546
|
-
active_channels_group:
|
|
143547
|
-
|
|
143548
|
-
]
|
|
143723
|
+
active_channels_group: list[float] | tuple[
|
|
143724
|
+
float, float, float
|
|
143725
|
+
] | mathutils.Color | None
|
|
143549
143726
|
"""
|
|
143550
143727
|
|
|
143551
|
-
:type:
|
|
143728
|
+
:type: list[float] | tuple[float, float, float] | mathutils.Color | None
|
|
143552
143729
|
"""
|
|
143553
143730
|
|
|
143554
143731
|
channel_group: list[float] | tuple[float, float, float] | mathutils.Color
|
|
@@ -144190,16 +144367,16 @@ class ThemeInfo(bpy_struct):
|
|
|
144190
144367
|
class ThemeNLAEditor(bpy_struct):
|
|
144191
144368
|
"""Theme settings for the NLA Editor"""
|
|
144192
144369
|
|
|
144193
|
-
active_action:
|
|
144370
|
+
active_action: bpy_prop_array[float] | None
|
|
144194
144371
|
""" Animation data-block has active action
|
|
144195
144372
|
|
|
144196
|
-
:type:
|
|
144373
|
+
:type: bpy_prop_array[float] | None
|
|
144197
144374
|
"""
|
|
144198
144375
|
|
|
144199
|
-
active_action_unset:
|
|
144376
|
+
active_action_unset: bpy_prop_array[float] | None
|
|
144200
144377
|
""" Animation data-block doesn't have active action
|
|
144201
144378
|
|
|
144202
|
-
:type:
|
|
144379
|
+
:type: bpy_prop_array[float] | None
|
|
144203
144380
|
"""
|
|
144204
144381
|
|
|
144205
144382
|
dopesheet_channel: list[float] | tuple[float, float, float] | mathutils.Color
|
|
@@ -144600,18 +144777,16 @@ class ThemeNodeEditor(bpy_struct):
|
|
|
144600
144777
|
class ThemeOutliner(bpy_struct):
|
|
144601
144778
|
"""Theme settings for the Outliner"""
|
|
144602
144779
|
|
|
144603
|
-
active: list[float] | tuple[float, float, float] | mathutils.Color
|
|
144780
|
+
active: list[float] | tuple[float, float, float] | mathutils.Color | None
|
|
144604
144781
|
"""
|
|
144605
144782
|
|
|
144606
|
-
:type: list[float] | tuple[float, float, float] | mathutils.Color
|
|
144783
|
+
:type: list[float] | tuple[float, float, float] | mathutils.Color | None
|
|
144607
144784
|
"""
|
|
144608
144785
|
|
|
144609
|
-
active_object:
|
|
144610
|
-
list[float] | tuple[float, float, float] | mathutils.Color
|
|
144611
|
-
]
|
|
144786
|
+
active_object: list[float] | tuple[float, float, float] | mathutils.Color | None
|
|
144612
144787
|
"""
|
|
144613
144788
|
|
|
144614
|
-
:type:
|
|
144789
|
+
:type: list[float] | tuple[float, float, float] | mathutils.Color | None
|
|
144615
144790
|
"""
|
|
144616
144791
|
|
|
144617
144792
|
edited_object: bpy_prop_array[float]
|
|
@@ -144755,10 +144930,10 @@ class ThemePreferences(bpy_struct):
|
|
|
144755
144930
|
class ThemeProperties(bpy_struct):
|
|
144756
144931
|
"""Theme settings for the Properties"""
|
|
144757
144932
|
|
|
144758
|
-
active_modifier:
|
|
144933
|
+
active_modifier: bpy_prop_array[float] | None
|
|
144759
144934
|
"""
|
|
144760
144935
|
|
|
144761
|
-
:type:
|
|
144936
|
+
:type: bpy_prop_array[float] | None
|
|
144762
144937
|
"""
|
|
144763
144938
|
|
|
144764
144939
|
match: list[float] | tuple[float, float, float] | mathutils.Color
|
|
@@ -144800,12 +144975,10 @@ class ThemeProperties(bpy_struct):
|
|
|
144800
144975
|
class ThemeSequenceEditor(bpy_struct):
|
|
144801
144976
|
"""Theme settings for the Sequence Editor"""
|
|
144802
144977
|
|
|
144803
|
-
active_strip:
|
|
144804
|
-
list[float] | tuple[float, float, float] | mathutils.Color
|
|
144805
|
-
]
|
|
144978
|
+
active_strip: list[float] | tuple[float, float, float] | mathutils.Color | None
|
|
144806
144979
|
"""
|
|
144807
144980
|
|
|
144808
|
-
:type:
|
|
144981
|
+
:type: list[float] | tuple[float, float, float] | mathutils.Color | None
|
|
144809
144982
|
"""
|
|
144810
144983
|
|
|
144811
144984
|
audio_strip: list[float] | tuple[float, float, float] | mathutils.Color
|
|
@@ -147173,6 +147346,18 @@ class ToolSettings(bpy_struct):
|
|
|
147173
147346
|
:type: UnifiedPaintSettings
|
|
147174
147347
|
"""
|
|
147175
147348
|
|
|
147349
|
+
use_annotation_project_only_selected: bool
|
|
147350
|
+
""" Project the strokes only onto selected objects
|
|
147351
|
+
|
|
147352
|
+
:type: bool
|
|
147353
|
+
"""
|
|
147354
|
+
|
|
147355
|
+
use_annotation_stroke_endpoints: bool
|
|
147356
|
+
""" Only use the first and last parts of the stroke for snapping
|
|
147357
|
+
|
|
147358
|
+
:type: bool
|
|
147359
|
+
"""
|
|
147360
|
+
|
|
147176
147361
|
use_auto_normalize: bool
|
|
147177
147362
|
""" Ensure all bone-deforming vertex groups add up to 1.0 while weight painting
|
|
147178
147363
|
|
|
@@ -147203,6 +147388,12 @@ class ToolSettings(bpy_struct):
|
|
|
147203
147388
|
:type: bool
|
|
147204
147389
|
"""
|
|
147205
147390
|
|
|
147391
|
+
use_gpencil_project_only_selected: bool
|
|
147392
|
+
""" Project the strokes only onto selected objects
|
|
147393
|
+
|
|
147394
|
+
:type: bool
|
|
147395
|
+
"""
|
|
147396
|
+
|
|
147206
147397
|
use_gpencil_select_mask_point: bool
|
|
147207
147398
|
""" Only sculpt selected stroke points
|
|
147208
147399
|
|
|
@@ -147221,12 +147412,6 @@ class ToolSettings(bpy_struct):
|
|
|
147221
147412
|
:type: bool
|
|
147222
147413
|
"""
|
|
147223
147414
|
|
|
147224
|
-
use_gpencil_stroke_endpoints: bool
|
|
147225
|
-
""" Only use the first and last parts of the stroke for snapping
|
|
147226
|
-
|
|
147227
|
-
:type: bool
|
|
147228
|
-
"""
|
|
147229
|
-
|
|
147230
147415
|
use_gpencil_thumbnail_list: bool
|
|
147231
147416
|
""" Show compact list of colors instead of thumbnails
|
|
147232
147417
|
|
|
@@ -147755,10 +147940,10 @@ class UDIMTiles(bpy_struct, bpy_prop_collection[UDIMTile]):
|
|
|
147755
147940
|
:type: UDIMTile
|
|
147756
147941
|
"""
|
|
147757
147942
|
|
|
147758
|
-
active_index:
|
|
147943
|
+
active_index: int | None
|
|
147759
147944
|
""" Active index in tiles array
|
|
147760
147945
|
|
|
147761
|
-
:type:
|
|
147946
|
+
:type: int | None
|
|
147762
147947
|
"""
|
|
147763
147948
|
|
|
147764
147949
|
def new(self, tile_number: int | None, label: str | typing.Any = "") -> UDIMTile:
|
|
@@ -147824,16 +148009,16 @@ class UILayout(bpy_struct):
|
|
|
147824
148009
|
:type: bool
|
|
147825
148010
|
"""
|
|
147826
148011
|
|
|
147827
|
-
active: bool
|
|
148012
|
+
active: bool | None
|
|
147828
148013
|
"""
|
|
147829
148014
|
|
|
147830
|
-
:type: bool
|
|
148015
|
+
:type: bool | None
|
|
147831
148016
|
"""
|
|
147832
148017
|
|
|
147833
|
-
active_default:
|
|
148018
|
+
active_default: bool | None
|
|
147834
148019
|
""" When true, an operator button defined after this will be activated when pressing return(use with popup dialogs)
|
|
147835
148020
|
|
|
147836
|
-
:type:
|
|
148021
|
+
:type: bool | None
|
|
147837
148022
|
"""
|
|
147838
148023
|
|
|
147839
148024
|
alert: bool
|
|
@@ -148652,6 +148837,16 @@ class UILayout(bpy_struct):
|
|
|
148652
148837
|
"""
|
|
148653
148838
|
...
|
|
148654
148839
|
|
|
148840
|
+
def context_string_set(self, name: str | typing.Any, value: str | typing.Any):
|
|
148841
|
+
"""context_string_set
|
|
148842
|
+
|
|
148843
|
+
:param name: Name, Name of entry in the context
|
|
148844
|
+
:type name: str | typing.Any
|
|
148845
|
+
:param value: Value, String to put in context
|
|
148846
|
+
:type value: str | typing.Any
|
|
148847
|
+
"""
|
|
148848
|
+
...
|
|
148849
|
+
|
|
148655
148850
|
def template_header(self):
|
|
148656
148851
|
"""Inserts common Space header UI (editor type selector)"""
|
|
148657
148852
|
...
|
|
@@ -149978,16 +150173,16 @@ class USDHook(bpy_struct):
|
|
|
149978
150173
|
class UVLoopLayers(bpy_struct, bpy_prop_collection[MeshUVLoopLayer]):
|
|
149979
150174
|
"""Collection of UV map layers"""
|
|
149980
150175
|
|
|
149981
|
-
active: MeshUVLoopLayer
|
|
150176
|
+
active: MeshUVLoopLayer | None
|
|
149982
150177
|
""" Active UV Map layer
|
|
149983
150178
|
|
|
149984
|
-
:type: MeshUVLoopLayer
|
|
150179
|
+
:type: MeshUVLoopLayer | None
|
|
149985
150180
|
"""
|
|
149986
150181
|
|
|
149987
|
-
active_index:
|
|
150182
|
+
active_index: int | None
|
|
149988
150183
|
""" Active UV map index
|
|
149989
150184
|
|
|
149990
|
-
:type:
|
|
150185
|
+
:type: int | None
|
|
149991
150186
|
"""
|
|
149992
150187
|
|
|
149993
150188
|
def new(
|
|
@@ -150562,12 +150757,15 @@ class VertexGroup(bpy_struct):
|
|
|
150562
150757
|
"""
|
|
150563
150758
|
|
|
150564
150759
|
def add(
|
|
150565
|
-
self,
|
|
150760
|
+
self,
|
|
150761
|
+
index: collections.abc.Iterable[int] | None,
|
|
150762
|
+
weight: float | None,
|
|
150763
|
+
type: str | None,
|
|
150566
150764
|
):
|
|
150567
150765
|
"""Add vertices to the group
|
|
150568
150766
|
|
|
150569
150767
|
:param index: List of indices
|
|
150570
|
-
:type index:
|
|
150768
|
+
:type index: collections.abc.Iterable[int] | None
|
|
150571
150769
|
:param weight: Vertex weight
|
|
150572
150770
|
:type weight: float | None
|
|
150573
150771
|
:param type: Vertex assign mode
|
|
@@ -150584,11 +150782,11 @@ class VertexGroup(bpy_struct):
|
|
|
150584
150782
|
"""
|
|
150585
150783
|
...
|
|
150586
150784
|
|
|
150587
|
-
def remove(self, index:
|
|
150785
|
+
def remove(self, index: collections.abc.Iterable[int] | None):
|
|
150588
150786
|
"""Remove vertices from the group
|
|
150589
150787
|
|
|
150590
150788
|
:param index: List of indices
|
|
150591
|
-
:type index:
|
|
150789
|
+
:type index: collections.abc.Iterable[int] | None
|
|
150592
150790
|
"""
|
|
150593
150791
|
...
|
|
150594
150792
|
|
|
@@ -150668,16 +150866,16 @@ class VertexGroupElement(bpy_struct):
|
|
|
150668
150866
|
class VertexGroups(bpy_struct, bpy_prop_collection[VertexGroup]):
|
|
150669
150867
|
"""Collection of vertex groups"""
|
|
150670
150868
|
|
|
150671
|
-
active: VertexGroup
|
|
150869
|
+
active: VertexGroup | None
|
|
150672
150870
|
""" Vertex groups of the object
|
|
150673
150871
|
|
|
150674
|
-
:type: VertexGroup
|
|
150872
|
+
:type: VertexGroup | None
|
|
150675
150873
|
"""
|
|
150676
150874
|
|
|
150677
|
-
active_index:
|
|
150875
|
+
active_index: int | None
|
|
150678
150876
|
""" Active index in vertex group array
|
|
150679
150877
|
|
|
150680
|
-
:type:
|
|
150878
|
+
:type: int | None
|
|
150681
150879
|
"""
|
|
150682
150880
|
|
|
150683
150881
|
def new(self, name: str | typing.Any = "Group") -> VertexGroup:
|
|
@@ -150984,6 +151182,12 @@ class View3DOverlay(bpy_struct):
|
|
|
150984
151182
|
:type: bool
|
|
150985
151183
|
"""
|
|
150986
151184
|
|
|
151185
|
+
show_camera_guides: bool
|
|
151186
|
+
""" Show camera composition guides
|
|
151187
|
+
|
|
151188
|
+
:type: bool
|
|
151189
|
+
"""
|
|
151190
|
+
|
|
150987
151191
|
show_cursor: bool
|
|
150988
151192
|
""" Display 3D Cursor Overlay
|
|
150989
151193
|
|
|
@@ -151680,10 +151884,10 @@ class ViewLayer(bpy_struct):
|
|
|
151680
151884
|
:type: AOV
|
|
151681
151885
|
"""
|
|
151682
151886
|
|
|
151683
|
-
active_aov_index:
|
|
151887
|
+
active_aov_index: int | None
|
|
151684
151888
|
""" Index of active AOV
|
|
151685
151889
|
|
|
151686
|
-
:type:
|
|
151890
|
+
:type: int | None
|
|
151687
151891
|
"""
|
|
151688
151892
|
|
|
151689
151893
|
active_layer_collection: LayerCollection
|
|
@@ -151698,10 +151902,10 @@ class ViewLayer(bpy_struct):
|
|
|
151698
151902
|
:type: Lightgroup
|
|
151699
151903
|
"""
|
|
151700
151904
|
|
|
151701
|
-
active_lightgroup_index:
|
|
151905
|
+
active_lightgroup_index: int | None
|
|
151702
151906
|
""" Index of active lightgroup
|
|
151703
151907
|
|
|
151704
|
-
:type:
|
|
151908
|
+
:type: int | None
|
|
151705
151909
|
"""
|
|
151706
151910
|
|
|
151707
151911
|
aovs: AOVs
|
|
@@ -152367,10 +152571,10 @@ class VolumeGrid(bpy_struct):
|
|
|
152367
152571
|
class VolumeGrids(bpy_struct, bpy_prop_collection[VolumeGrid]):
|
|
152368
152572
|
"""3D volume grids"""
|
|
152369
152573
|
|
|
152370
|
-
active_index:
|
|
152574
|
+
active_index: int | None
|
|
152371
152575
|
""" Index of active volume grid
|
|
152372
152576
|
|
|
152373
|
-
:type:
|
|
152577
|
+
:type: int | None
|
|
152374
152578
|
"""
|
|
152375
152579
|
|
|
152376
152580
|
error_message: str
|
|
@@ -152578,6 +152782,12 @@ class Window(bpy_struct):
|
|
|
152578
152782
|
:type: int
|
|
152579
152783
|
"""
|
|
152580
152784
|
|
|
152785
|
+
modal_operators: bpy_prop_collection[Operator]
|
|
152786
|
+
""" A list of currently running modal operators
|
|
152787
|
+
|
|
152788
|
+
:type: bpy_prop_collection[Operator]
|
|
152789
|
+
"""
|
|
152790
|
+
|
|
152581
152791
|
parent: Window
|
|
152582
152792
|
""" Active workspace and scene follow this window
|
|
152583
152793
|
|
|
@@ -153968,10 +154178,10 @@ class XrSessionState(bpy_struct):
|
|
|
153968
154178
|
:type: XrActionMaps
|
|
153969
154179
|
"""
|
|
153970
154180
|
|
|
153971
|
-
active_actionmap:
|
|
154181
|
+
active_actionmap: int | None
|
|
153972
154182
|
"""
|
|
153973
154183
|
|
|
153974
|
-
:type:
|
|
154184
|
+
:type: int | None
|
|
153975
154185
|
"""
|
|
153976
154186
|
|
|
153977
154187
|
navigation_location: list[float] | tuple[float, float, float] | mathutils.Vector
|
|
@@ -163613,10 +163823,10 @@ class Brush(ID, bpy_struct):
|
|
|
163613
163823
|
...
|
|
163614
163824
|
|
|
163615
163825
|
class CacheFile(ID, bpy_struct):
|
|
163616
|
-
active_index:
|
|
163826
|
+
active_index: int | None
|
|
163617
163827
|
"""
|
|
163618
163828
|
|
|
163619
|
-
:type:
|
|
163829
|
+
:type: int | None
|
|
163620
163830
|
"""
|
|
163621
163831
|
|
|
163622
163832
|
animation_data: AnimData
|
|
@@ -164072,10 +164282,10 @@ class Camera(ID, bpy_struct):
|
|
|
164072
164282
|
class Collection(ID, bpy_struct):
|
|
164073
164283
|
"""Collection of Object data-blocks"""
|
|
164074
164284
|
|
|
164075
|
-
active_exporter_index:
|
|
164285
|
+
active_exporter_index: int | None
|
|
164076
164286
|
""" Active index in the exporters list
|
|
164077
164287
|
|
|
164078
|
-
:type:
|
|
164288
|
+
:type: int | None
|
|
164079
164289
|
"""
|
|
164080
164290
|
|
|
164081
164291
|
all_objects: bpy_prop_collection[Object]
|
|
@@ -164604,11 +164814,11 @@ class Curves(ID, bpy_struct):
|
|
|
164604
164814
|
:type: bool
|
|
164605
164815
|
"""
|
|
164606
164816
|
|
|
164607
|
-
def add_curves(self, sizes:
|
|
164817
|
+
def add_curves(self, sizes: collections.abc.Iterable[int] | None):
|
|
164608
164818
|
"""add_curves
|
|
164609
164819
|
|
|
164610
164820
|
:param sizes: Sizes, The number of points in each curve
|
|
164611
|
-
:type sizes:
|
|
164821
|
+
:type sizes: collections.abc.Iterable[int] | None
|
|
164612
164822
|
"""
|
|
164613
164823
|
...
|
|
164614
164824
|
|
|
@@ -164639,16 +164849,16 @@ class Curves(ID, bpy_struct):
|
|
|
164639
164849
|
class FreestyleLineStyle(ID, bpy_struct):
|
|
164640
164850
|
"""Freestyle line style, reusable by multiple line sets"""
|
|
164641
164851
|
|
|
164642
|
-
active_texture:
|
|
164852
|
+
active_texture: Texture | None
|
|
164643
164853
|
""" Active texture slot being displayed
|
|
164644
164854
|
|
|
164645
|
-
:type:
|
|
164855
|
+
:type: Texture | None
|
|
164646
164856
|
"""
|
|
164647
164857
|
|
|
164648
|
-
active_texture_index:
|
|
164858
|
+
active_texture_index: int | None
|
|
164649
164859
|
""" Index of active texture slot
|
|
164650
164860
|
|
|
164651
|
-
:type:
|
|
164861
|
+
:type: int | None
|
|
164652
164862
|
"""
|
|
164653
164863
|
|
|
164654
164864
|
alpha: float
|
|
@@ -166370,10 +166580,10 @@ class LightProbe(ID, bpy_struct):
|
|
|
166370
166580
|
class Mask(ID, bpy_struct):
|
|
166371
166581
|
"""Mask data-block defining mask for compositing"""
|
|
166372
166582
|
|
|
166373
|
-
active_layer_index:
|
|
166583
|
+
active_layer_index: int | None
|
|
166374
166584
|
""" Index of active layer in list of all mask's layers
|
|
166375
166585
|
|
|
166376
|
-
:type:
|
|
166586
|
+
:type: int | None
|
|
166377
166587
|
"""
|
|
166378
166588
|
|
|
166379
166589
|
animation_data: AnimData
|
|
@@ -167623,16 +167833,16 @@ class NodeTree(ID, bpy_struct):
|
|
|
167623
167833
|
class Object(ID, bpy_struct):
|
|
167624
167834
|
"""Object data-block defining an object in a scene"""
|
|
167625
167835
|
|
|
167626
|
-
active_material:
|
|
167836
|
+
active_material: Material | None
|
|
167627
167837
|
""" Active material being displayed
|
|
167628
167838
|
|
|
167629
|
-
:type:
|
|
167839
|
+
:type: Material | None
|
|
167630
167840
|
"""
|
|
167631
167841
|
|
|
167632
|
-
active_material_index:
|
|
167842
|
+
active_material_index: int | None
|
|
167633
167843
|
""" Index of active material slot
|
|
167634
167844
|
|
|
167635
|
-
:type:
|
|
167845
|
+
:type: int | None
|
|
167636
167846
|
"""
|
|
167637
167847
|
|
|
167638
167848
|
active_shape_key: ShapeKey
|
|
@@ -167641,10 +167851,10 @@ class Object(ID, bpy_struct):
|
|
|
167641
167851
|
:type: ShapeKey
|
|
167642
167852
|
"""
|
|
167643
167853
|
|
|
167644
|
-
active_shape_key_index:
|
|
167854
|
+
active_shape_key_index: int | None
|
|
167645
167855
|
""" Current shape key index
|
|
167646
167856
|
|
|
167647
|
-
:type:
|
|
167857
|
+
:type: int | None
|
|
167648
167858
|
"""
|
|
167649
167859
|
|
|
167650
167860
|
add_rest_position_attribute: bool
|
|
@@ -168884,22 +169094,22 @@ class ParticleSettings(ID, bpy_struct):
|
|
|
168884
169094
|
:type: ParticleDupliWeight
|
|
168885
169095
|
"""
|
|
168886
169096
|
|
|
168887
|
-
active_instanceweight_index:
|
|
169097
|
+
active_instanceweight_index: int | None
|
|
168888
169098
|
"""
|
|
168889
169099
|
|
|
168890
|
-
:type:
|
|
169100
|
+
:type: int | None
|
|
168891
169101
|
"""
|
|
168892
169102
|
|
|
168893
|
-
active_texture:
|
|
169103
|
+
active_texture: Texture | None
|
|
168894
169104
|
""" Active texture slot being displayed
|
|
168895
169105
|
|
|
168896
|
-
:type:
|
|
169106
|
+
:type: Texture | None
|
|
168897
169107
|
"""
|
|
168898
169108
|
|
|
168899
|
-
active_texture_index:
|
|
169109
|
+
active_texture_index: int | None
|
|
168900
169110
|
""" Index of active texture slot
|
|
168901
169111
|
|
|
168902
|
-
:type:
|
|
169112
|
+
:type: int | None
|
|
168903
169113
|
"""
|
|
168904
169114
|
|
|
168905
169115
|
adaptive_angle: int
|
|
@@ -169964,10 +170174,10 @@ class PointCloud(ID, bpy_struct):
|
|
|
169964
170174
|
class Scene(ID, bpy_struct):
|
|
169965
170175
|
"""Scene data-block, consisting in objects and defining time and render related settings"""
|
|
169966
170176
|
|
|
169967
|
-
active_clip:
|
|
170177
|
+
active_clip: MovieClip | None
|
|
169968
170178
|
""" Active Movie Clip that can be used by motion tracking constraints or as a camera's background image
|
|
169969
170179
|
|
|
169970
|
-
:type:
|
|
170180
|
+
:type: MovieClip | None
|
|
169971
170181
|
"""
|
|
169972
170182
|
|
|
169973
170183
|
animation_data: AnimData
|
|
@@ -171727,7 +171937,9 @@ class WindowManager(ID, bpy_struct):
|
|
|
171727
171937
|
"""Tag for refreshing the interface after scripts have been reloaded"""
|
|
171728
171938
|
...
|
|
171729
171939
|
|
|
171730
|
-
def popover(
|
|
171940
|
+
def popover(
|
|
171941
|
+
self, draw_func, *, ui_units_x=0, keymap=None, from_active_button=False
|
|
171942
|
+
):
|
|
171731
171943
|
"""
|
|
171732
171944
|
|
|
171733
171945
|
:param draw_func:
|
|
@@ -171737,7 +171949,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
171737
171949
|
"""
|
|
171738
171950
|
...
|
|
171739
171951
|
|
|
171740
|
-
def popup_menu(self, draw_func, title="", icon="NONE"):
|
|
171952
|
+
def popup_menu(self, draw_func, *, title="", icon="NONE"):
|
|
171741
171953
|
"""Popup menus can be useful for creating menus without having to register menu classes.Note that they will not block the scripts execution, so the caller can't wait for user input.
|
|
171742
171954
|
|
|
171743
171955
|
:param draw_func:
|
|
@@ -171746,7 +171958,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
171746
171958
|
"""
|
|
171747
171959
|
...
|
|
171748
171960
|
|
|
171749
|
-
def popup_menu_pie(self, event, draw_func, title="", icon="NONE"):
|
|
171961
|
+
def popup_menu_pie(self, event, draw_func, *, title="", icon="NONE"):
|
|
171750
171962
|
"""
|
|
171751
171963
|
|
|
171752
171964
|
:param event:
|
|
@@ -171818,16 +172030,16 @@ class WindowManager(ID, bpy_struct):
|
|
|
171818
172030
|
class WorkSpace(ID, bpy_struct):
|
|
171819
172031
|
"""Workspace data-block, defining the working environment for the user"""
|
|
171820
172032
|
|
|
171821
|
-
active_addon:
|
|
172033
|
+
active_addon: int | None
|
|
171822
172034
|
""" Active Add-on in the Workspace Add-ons filter
|
|
171823
172035
|
|
|
171824
|
-
:type:
|
|
172036
|
+
:type: int | None
|
|
171825
172037
|
"""
|
|
171826
172038
|
|
|
171827
|
-
active_pose_asset_index:
|
|
172039
|
+
active_pose_asset_index: int | None
|
|
171828
172040
|
""" Per workspace index of the active pose asset
|
|
171829
172041
|
|
|
171830
|
-
:type:
|
|
172042
|
+
:type: int | None
|
|
171831
172043
|
"""
|
|
171832
172044
|
|
|
171833
172045
|
asset_library_reference: str
|
|
@@ -171976,6 +172188,18 @@ class World(ID, bpy_struct):
|
|
|
171976
172188
|
:type: float
|
|
171977
172189
|
"""
|
|
171978
172190
|
|
|
172191
|
+
sun_shadow_filter_radius: float
|
|
172192
|
+
""" Blur shadow aliasing using Percentage Closer Filtering
|
|
172193
|
+
|
|
172194
|
+
:type: float
|
|
172195
|
+
"""
|
|
172196
|
+
|
|
172197
|
+
sun_shadow_jitter_overblur: float
|
|
172198
|
+
""" Apply shadow tracing to each jittered sample to reduce under-sampling artifacts
|
|
172199
|
+
|
|
172200
|
+
:type: float
|
|
172201
|
+
"""
|
|
172202
|
+
|
|
171979
172203
|
sun_shadow_maximum_resolution: float
|
|
171980
172204
|
""" Maximum size of a shadow map pixel. Higher values use less memory at the cost of shadow quality
|
|
171981
172205
|
|
|
@@ -172006,6 +172230,12 @@ class World(ID, bpy_struct):
|
|
|
172006
172230
|
:type: bool
|
|
172007
172231
|
"""
|
|
172008
172232
|
|
|
172233
|
+
use_sun_shadow_jitter: bool
|
|
172234
|
+
""" Enable jittered soft shadows to increase shadow precision (disabled in viewport unless enabled in the render settings). Has a high performance impact
|
|
172235
|
+
|
|
172236
|
+
:type: bool
|
|
172237
|
+
"""
|
|
172238
|
+
|
|
172009
172239
|
@classmethod
|
|
172010
172240
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
172011
172241
|
"""
|
|
@@ -177968,11 +178198,11 @@ class HookModifier(Modifier, bpy_struct):
|
|
|
177968
178198
|
:type: bpy_prop_array[int]
|
|
177969
178199
|
"""
|
|
177970
178200
|
|
|
177971
|
-
def vertex_indices_set(self, indices:
|
|
178201
|
+
def vertex_indices_set(self, indices: collections.abc.Iterable[int] | None):
|
|
177972
178202
|
"""Validates and assigns the array of vertex indices bound to the modifier
|
|
177973
178203
|
|
|
177974
178204
|
:param indices: Vertex Indices
|
|
177975
|
-
:type indices:
|
|
178205
|
+
:type indices: collections.abc.Iterable[int] | None
|
|
177976
178206
|
"""
|
|
177977
178207
|
...
|
|
177978
178208
|
|
|
@@ -181874,6 +182104,12 @@ class NodeTreeInterfaceSocket(NodeTreeInterfaceItem, bpy_struct):
|
|
|
181874
182104
|
:type: str
|
|
181875
182105
|
"""
|
|
181876
182106
|
|
|
182107
|
+
is_inspect_output: bool
|
|
182108
|
+
""" Take link out of node group to connect to root tree output node
|
|
182109
|
+
|
|
182110
|
+
:type: bool
|
|
182111
|
+
"""
|
|
182112
|
+
|
|
181877
182113
|
layer_selection_field: bool
|
|
181878
182114
|
""" Take Grease Pencil Layer or Layer Group as selection field
|
|
181879
182115
|
|
|
@@ -190931,10 +191167,10 @@ class SurfaceCurve(Curve, ID, bpy_struct):
|
|
|
190931
191167
|
class TextCurve(Curve, ID, bpy_struct):
|
|
190932
191168
|
"""Curve data-block used for storing text"""
|
|
190933
191169
|
|
|
190934
|
-
active_textbox:
|
|
191170
|
+
active_textbox: int | None
|
|
190935
191171
|
"""
|
|
190936
191172
|
|
|
190937
|
-
:type:
|
|
191173
|
+
:type: int | None
|
|
190938
191174
|
"""
|
|
190939
191175
|
|
|
190940
191176
|
align_x: str
|
|
@@ -191193,13 +191429,7 @@ class AreaLight(Light, ID, bpy_struct):
|
|
|
191193
191429
|
"""
|
|
191194
191430
|
|
|
191195
191431
|
shadow_maximum_resolution: float
|
|
191196
|
-
"""
|
|
191197
|
-
|
|
191198
|
-
:type: float
|
|
191199
|
-
"""
|
|
191200
|
-
|
|
191201
|
-
shadow_resolution_scale: float
|
|
191202
|
-
""" Scale the Shadow Map target resolution, where 1.0 tries to match shadow map and screen pixel density. (The scale is applied on top of the scene Simplify Shadow Resolution)
|
|
191432
|
+
""" Minimum size of a shadow map pixel. Higher values use less memory at the cost of shadow quality
|
|
191203
191433
|
|
|
191204
191434
|
:type: float
|
|
191205
191435
|
"""
|
|
@@ -191334,13 +191564,7 @@ class PointLight(Light, ID, bpy_struct):
|
|
|
191334
191564
|
"""
|
|
191335
191565
|
|
|
191336
191566
|
shadow_maximum_resolution: float
|
|
191337
|
-
"""
|
|
191338
|
-
|
|
191339
|
-
:type: float
|
|
191340
|
-
"""
|
|
191341
|
-
|
|
191342
|
-
shadow_resolution_scale: float
|
|
191343
|
-
""" Scale the Shadow Map target resolution, where 1.0 tries to match shadow map and screen pixel density. (The scale is applied on top of the scene Simplify Shadow Resolution)
|
|
191567
|
+
""" Minimum size of a shadow map pixel. Higher values use less memory at the cost of shadow quality
|
|
191344
191568
|
|
|
191345
191569
|
:type: float
|
|
191346
191570
|
"""
|
|
@@ -191457,13 +191681,7 @@ class SpotLight(Light, ID, bpy_struct):
|
|
|
191457
191681
|
"""
|
|
191458
191682
|
|
|
191459
191683
|
shadow_maximum_resolution: float
|
|
191460
|
-
"""
|
|
191461
|
-
|
|
191462
|
-
:type: float
|
|
191463
|
-
"""
|
|
191464
|
-
|
|
191465
|
-
shadow_resolution_scale: float
|
|
191466
|
-
""" Scale the Shadow Map target resolution, where 1.0 tries to match shadow map and screen pixel density. (The scale is applied on top of the scene Simplify Shadow Resolution)
|
|
191684
|
+
""" Minimum size of a shadow map pixel. Higher values use less memory at the cost of shadow quality
|
|
191467
191685
|
|
|
191468
191686
|
:type: float
|
|
191469
191687
|
"""
|
|
@@ -191634,13 +191852,7 @@ class SunLight(Light, ID, bpy_struct):
|
|
|
191634
191852
|
"""
|
|
191635
191853
|
|
|
191636
191854
|
shadow_maximum_resolution: float
|
|
191637
|
-
"""
|
|
191638
|
-
|
|
191639
|
-
:type: float
|
|
191640
|
-
"""
|
|
191641
|
-
|
|
191642
|
-
shadow_resolution_scale: float
|
|
191643
|
-
""" Scale the Shadow Map target resolution, where 1.0 tries to match shadow map and screen pixel density. (The scale is applied on top of the scene Simplify Shadow Resolution)
|
|
191855
|
+
""" Minimum size of a shadow map pixel. Higher values use less memory at the cost of shadow quality
|
|
191644
191856
|
|
|
191645
191857
|
:type: float
|
|
191646
191858
|
"""
|
|
@@ -206460,10 +206672,10 @@ class CompositorNodeNormalize(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
206460
206672
|
class CompositorNodeOutputFile(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
206461
206673
|
"""Write image file to disk"""
|
|
206462
206674
|
|
|
206463
|
-
active_input_index:
|
|
206675
|
+
active_input_index: int | None
|
|
206464
206676
|
""" Active input index in details view list
|
|
206465
206677
|
|
|
206466
|
-
:type:
|
|
206678
|
+
:type: int | None
|
|
206467
206679
|
"""
|
|
206468
206680
|
|
|
206469
206681
|
base_path: str
|
|
@@ -211434,16 +211646,16 @@ class GeometryNodeAttributeStatistic(GeometryNode, NodeInternal, Node, bpy_struc
|
|
|
211434
211646
|
class GeometryNodeBake(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
211435
211647
|
"""Cache the incoming data so that it can be used without recomputation"""
|
|
211436
211648
|
|
|
211437
|
-
active_index:
|
|
211649
|
+
active_index: int | None
|
|
211438
211650
|
""" Index of the active item
|
|
211439
211651
|
|
|
211440
|
-
:type:
|
|
211652
|
+
:type: int | None
|
|
211441
211653
|
"""
|
|
211442
211654
|
|
|
211443
|
-
active_item:
|
|
211655
|
+
active_item: RepeatItem | None
|
|
211444
211656
|
""" Index of the active item
|
|
211445
211657
|
|
|
211446
|
-
:type:
|
|
211658
|
+
:type: RepeatItem | None
|
|
211447
211659
|
"""
|
|
211448
211660
|
|
|
211449
211661
|
bake_items: NodeGeometryBakeItems
|
|
@@ -216825,16 +217037,16 @@ class GeometryNodeMaterialSelection(GeometryNode, NodeInternal, Node, bpy_struct
|
|
|
216825
217037
|
class GeometryNodeMenuSwitch(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
216826
217038
|
"""Select from multiple inputs by name"""
|
|
216827
217039
|
|
|
216828
|
-
active_index:
|
|
217040
|
+
active_index: int | None
|
|
216829
217041
|
""" Index of the active item
|
|
216830
217042
|
|
|
216831
|
-
:type:
|
|
217043
|
+
:type: int | None
|
|
216832
217044
|
"""
|
|
216833
217045
|
|
|
216834
|
-
active_item:
|
|
217046
|
+
active_item: NodeEnumItem | None
|
|
216835
217047
|
""" Active item
|
|
216836
217048
|
|
|
216837
|
-
:type:
|
|
217049
|
+
:type: NodeEnumItem | None
|
|
216838
217050
|
"""
|
|
216839
217051
|
|
|
216840
217052
|
data_type: str
|
|
@@ -218761,16 +218973,16 @@ class GeometryNodeRepeatInput(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
218761
218973
|
...
|
|
218762
218974
|
|
|
218763
218975
|
class GeometryNodeRepeatOutput(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
218764
|
-
active_index:
|
|
218976
|
+
active_index: int | None
|
|
218765
218977
|
""" Index of the active item
|
|
218766
218978
|
|
|
218767
|
-
:type:
|
|
218979
|
+
:type: int | None
|
|
218768
218980
|
"""
|
|
218769
218981
|
|
|
218770
|
-
active_item:
|
|
218982
|
+
active_item: RepeatItem | None
|
|
218771
218983
|
""" Index of the active item
|
|
218772
218984
|
|
|
218773
|
-
:type:
|
|
218985
|
+
:type: RepeatItem | None
|
|
218774
218986
|
"""
|
|
218775
218987
|
|
|
218776
218988
|
inspection_index: int
|
|
@@ -220228,6 +220440,64 @@ class GeometryNodeSetID(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
220228
220440
|
"""
|
|
220229
220441
|
...
|
|
220230
220442
|
|
|
220443
|
+
class GeometryNodeSetInstanceTransform(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
220444
|
+
"""Set the transformation matrix of every instance"""
|
|
220445
|
+
|
|
220446
|
+
@classmethod
|
|
220447
|
+
def is_registered_node_type(cls) -> bool:
|
|
220448
|
+
"""True if a registered node type
|
|
220449
|
+
|
|
220450
|
+
:return: Result
|
|
220451
|
+
:rtype: bool
|
|
220452
|
+
"""
|
|
220453
|
+
...
|
|
220454
|
+
|
|
220455
|
+
@classmethod
|
|
220456
|
+
def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
220457
|
+
"""Input socket template
|
|
220458
|
+
|
|
220459
|
+
:param index: Index
|
|
220460
|
+
:type index: int | None
|
|
220461
|
+
:return: result
|
|
220462
|
+
:rtype: NodeInternalSocketTemplate
|
|
220463
|
+
"""
|
|
220464
|
+
...
|
|
220465
|
+
|
|
220466
|
+
@classmethod
|
|
220467
|
+
def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
220468
|
+
"""Output socket template
|
|
220469
|
+
|
|
220470
|
+
:param index: Index
|
|
220471
|
+
:type index: int | None
|
|
220472
|
+
:return: result
|
|
220473
|
+
:rtype: NodeInternalSocketTemplate
|
|
220474
|
+
"""
|
|
220475
|
+
...
|
|
220476
|
+
|
|
220477
|
+
@classmethod
|
|
220478
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
220479
|
+
"""
|
|
220480
|
+
|
|
220481
|
+
:param id: The RNA type identifier.
|
|
220482
|
+
:type id: str | None
|
|
220483
|
+
:param default:
|
|
220484
|
+
:return: The RNA type or default when not found.
|
|
220485
|
+
:rtype: Struct
|
|
220486
|
+
"""
|
|
220487
|
+
...
|
|
220488
|
+
|
|
220489
|
+
@classmethod
|
|
220490
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
220491
|
+
"""
|
|
220492
|
+
|
|
220493
|
+
:param id: The RNA type identifier.
|
|
220494
|
+
:type id: str | None
|
|
220495
|
+
:param default:
|
|
220496
|
+
:return: The class or default when not found.
|
|
220497
|
+
:rtype: typing.Any
|
|
220498
|
+
"""
|
|
220499
|
+
...
|
|
220500
|
+
|
|
220231
220501
|
class GeometryNodeSetMaterial(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
220232
220502
|
"""Assign a material to geometry elements"""
|
|
220233
220503
|
|
|
@@ -220717,16 +220987,16 @@ class GeometryNodeSimulationInput(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
220717
220987
|
class GeometryNodeSimulationOutput(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
220718
220988
|
"""Output data from the simulation zone"""
|
|
220719
220989
|
|
|
220720
|
-
active_index:
|
|
220990
|
+
active_index: int | None
|
|
220721
220991
|
""" Index of the active item
|
|
220722
220992
|
|
|
220723
|
-
:type:
|
|
220993
|
+
:type: int | None
|
|
220724
220994
|
"""
|
|
220725
220995
|
|
|
220726
|
-
active_item:
|
|
220996
|
+
active_item: SimulationStateItem | None
|
|
220727
220997
|
""" Index of the active item
|
|
220728
220998
|
|
|
220729
|
-
:type:
|
|
220999
|
+
:type: SimulationStateItem | None
|
|
220730
221000
|
"""
|
|
220731
221001
|
|
|
220732
221002
|
state_items: NodeGeometrySimulationOutputItems
|
|
@@ -232496,6 +232766,8 @@ IMAGE_MT_view_pie: bl_ui.space_image.IMAGE_MT_view_pie
|
|
|
232496
232766
|
|
|
232497
232767
|
IMAGE_MT_view_zoom: bl_ui.space_image.IMAGE_MT_view_zoom
|
|
232498
232768
|
|
|
232769
|
+
IMAGE_OT_import_as_mesh_planes: bl_operators.image_as_planes.IMAGE_OT_import_as_mesh_planes
|
|
232770
|
+
|
|
232499
232771
|
IMAGE_OT_open_images: bl_operators.image.IMAGE_OT_open_images
|
|
232500
232772
|
|
|
232501
232773
|
IMAGE_PT_active_mask_point: bl_ui.space_image.IMAGE_PT_active_mask_point
|
|
@@ -232902,6 +233174,8 @@ NODE_OT_add_simulation_zone: bl_operators.node.NODE_OT_add_simulation_zone
|
|
|
232902
233174
|
|
|
232903
233175
|
NODE_OT_collapse_hide_unused_toggle: bl_operators.node.NODE_OT_collapse_hide_unused_toggle
|
|
232904
233176
|
|
|
233177
|
+
NODE_OT_connect_to_output: bl_operators.connect_to_output.NODE_OT_connect_to_output
|
|
233178
|
+
|
|
232905
233179
|
NODE_OT_interface_item_duplicate: bl_operators.node.NODE_OT_interface_item_duplicate
|
|
232906
233180
|
|
|
232907
233181
|
NODE_OT_interface_item_new: bl_operators.node.NODE_OT_interface_item_new
|
|
@@ -233462,8 +233736,6 @@ PREFERENCES_OT_studiolight_install: bl_operators.userpref.PREFERENCES_OT_studiol
|
|
|
233462
233736
|
|
|
233463
233737
|
PREFERENCES_OT_studiolight_new: bl_operators.userpref.PREFERENCES_OT_studiolight_new
|
|
233464
233738
|
|
|
233465
|
-
PREFERENCES_OT_studiolight_show: bl_operators.userpref.PREFERENCES_OT_studiolight_show
|
|
233466
|
-
|
|
233467
233739
|
PREFERENCES_OT_studiolight_uninstall: bl_operators.userpref.PREFERENCES_OT_studiolight_uninstall
|
|
233468
233740
|
|
|
233469
233741
|
PREFERENCES_OT_theme_install: bl_operators.userpref.PREFERENCES_OT_theme_install
|
|
@@ -233514,7 +233786,7 @@ RENDER_PT_eevee_next_depth_of_field: bl_ui.properties_render.RENDER_PT_eevee_nex
|
|
|
233514
233786
|
|
|
233515
233787
|
RENDER_PT_eevee_next_film: bl_ui.properties_render.RENDER_PT_eevee_next_film
|
|
233516
233788
|
|
|
233517
|
-
|
|
233789
|
+
RENDER_PT_eevee_next_gi_approximation: bl_ui.properties_render.RENDER_PT_eevee_next_gi_approximation
|
|
233518
233790
|
|
|
233519
233791
|
RENDER_PT_eevee_next_motion_blur: bl_ui.properties_render.RENDER_PT_eevee_next_motion_blur
|
|
233520
233792
|
|
|
@@ -234236,6 +234508,8 @@ VIEW3D_MT_edit_curves: bl_ui.space_view3d.VIEW3D_MT_edit_curves
|
|
|
234236
234508
|
|
|
234237
234509
|
VIEW3D_MT_edit_curves_add: bl_ui.space_view3d.VIEW3D_MT_edit_curves_add
|
|
234238
234510
|
|
|
234511
|
+
VIEW3D_MT_edit_curves_context_menu: bl_ui.space_view3d.VIEW3D_MT_edit_curves_context_menu
|
|
234512
|
+
|
|
234239
234513
|
VIEW3D_MT_edit_curves_control_points: bl_ui.space_view3d.VIEW3D_MT_edit_curves_control_points
|
|
234240
234514
|
|
|
234241
234515
|
VIEW3D_MT_edit_curves_segments: bl_ui.space_view3d.VIEW3D_MT_edit_curves_segments
|