fake-bpy-module 20240708__py3-none-any.whl → 20240709__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.

Files changed (116) hide show
  1. _bpy_internal/__init__.pyi +1 -0
  2. _bpy_internal/addons/__init__.pyi +7 -0
  3. _bpy_internal/addons/cli/__init__.pyi +8 -0
  4. _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
  5. _bpy_internal/freedesktop/__init__.pyi +1 -1
  6. addon_utils/__init__.pyi +6 -5
  7. bl_app_override/__init__.pyi +2 -1
  8. bl_app_template_utils/__init__.pyi +4 -4
  9. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +1 -1
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -2
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +3 -1
  12. bl_keymap_utils/io/__init__.pyi +4 -2
  13. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +1 -1
  14. bl_keymap_utils/platform_helpers/__init__.pyi +1 -1
  15. bl_operators/__init__.pyi +1 -0
  16. bl_operators/add_mesh_torus/__init__.pyi +1 -1
  17. bl_operators/anim/__init__.pyi +8 -8
  18. bl_operators/assets/__init__.pyi +3 -3
  19. bl_operators/bone_selection_sets/__init__.pyi +2986 -0
  20. bl_operators/clip/__init__.pyi +11 -11
  21. bl_operators/connect_to_output/__init__.pyi +1 -1
  22. bl_operators/console/__init__.pyi +5 -5
  23. bl_operators/constraint/__init__.pyi +4 -4
  24. bl_operators/file/__init__.pyi +3 -3
  25. bl_operators/freestyle/__init__.pyi +4 -4
  26. bl_operators/geometry_nodes/__init__.pyi +4 -4
  27. bl_operators/image/__init__.pyi +4 -4
  28. bl_operators/image_as_planes/__init__.pyi +2 -2
  29. bl_operators/mesh/__init__.pyi +3 -3
  30. bl_operators/node/__init__.pyi +8 -8
  31. bl_operators/object/__init__.pyi +15 -15
  32. bl_operators/object_align/__init__.pyi +1 -1
  33. bl_operators/object_quick_effects/__init__.pyi +4 -4
  34. bl_operators/object_randomize_transform/__init__.pyi +1 -1
  35. bl_operators/presets/__init__.pyi +25 -23
  36. bl_operators/rigidbody/__init__.pyi +3 -3
  37. bl_operators/screen_play_rendered_anim/__init__.pyi +1 -1
  38. bl_operators/sequencer/__init__.pyi +5 -5
  39. bl_operators/spreadsheet/__init__.pyi +1 -1
  40. bl_operators/userpref/__init__.pyi +25 -25
  41. bl_operators/uvcalc_follow_active/__init__.pyi +1 -1
  42. bl_operators/uvcalc_lightmap/__init__.pyi +2 -2
  43. bl_operators/uvcalc_transform/__init__.pyi +2 -2
  44. bl_operators/vertexpaint_dirt/__init__.pyi +1 -1
  45. bl_operators/view3d/__init__.pyi +5 -5
  46. bl_operators/wm/__init__.pyi +46 -42
  47. bl_operators/world/__init__.pyi +1 -1
  48. bl_ui/__init__.pyi +2 -0
  49. bl_ui/anim/__init__.pyi +1 -0
  50. bl_ui/generic_ui_list/__init__.pyi +5 -4
  51. bl_ui/node_add_menu/__init__.pyi +2 -1
  52. bl_ui/node_add_menu_compositor/__init__.pyi +18 -0
  53. bl_ui/node_add_menu_geometry/__init__.pyi +49 -0
  54. bl_ui/node_add_menu_shader/__init__.pyi +10 -0
  55. bl_ui/node_add_menu_texture/__init__.pyi +9 -0
  56. bl_ui/properties_collection/__init__.pyi +1 -0
  57. bl_ui/properties_data_armature/__init__.pyi +1273 -0
  58. bl_ui/properties_data_camera/__init__.pyi +2 -0
  59. bl_ui/properties_data_curves/__init__.pyi +1 -0
  60. bl_ui/properties_data_gpencil/__init__.pyi +2 -0
  61. bl_ui/properties_data_grease_pencil/__init__.pyi +3 -0
  62. bl_ui/properties_data_mesh/__init__.pyi +4 -0
  63. bl_ui/properties_data_modifier/__init__.pyi +8 -1
  64. bl_ui/properties_data_pointcloud/__init__.pyi +1 -0
  65. bl_ui/properties_freestyle/__init__.pyi +1 -0
  66. bl_ui/properties_grease_pencil_common/__init__.pyi +13 -1
  67. bl_ui/properties_mask_common/__init__.pyi +6 -0
  68. bl_ui/properties_material/__init__.pyi +1 -0
  69. bl_ui/properties_material_gpencil/__init__.pyi +2 -0
  70. bl_ui/properties_object/__init__.pyi +1 -0
  71. bl_ui/properties_output/__init__.pyi +3 -0
  72. bl_ui/properties_paint_common/__init__.pyi +48 -17
  73. bl_ui/properties_particle/__init__.pyi +2 -0
  74. bl_ui/properties_physics_cloth/__init__.pyi +1 -0
  75. bl_ui/properties_physics_fluid/__init__.pyi +1 -0
  76. bl_ui/properties_render/__init__.pyi +2 -0
  77. bl_ui/properties_texture/__init__.pyi +1 -0
  78. bl_ui/properties_view_layer/__init__.pyi +1 -0
  79. bl_ui/space_clip/__init__.pyi +31 -0
  80. bl_ui/space_console/__init__.pyi +5 -0
  81. bl_ui/space_dopesheet/__init__.pyi +14 -0
  82. bl_ui/space_filebrowser/__init__.pyi +13 -0
  83. bl_ui/space_graph/__init__.pyi +16 -0
  84. bl_ui/space_image/__init__.pyi +313 -11
  85. bl_ui/space_info/__init__.pyi +5 -0
  86. bl_ui/space_nla/__init__.pyi +13 -0
  87. bl_ui/space_node/__init__.pyi +12 -0
  88. bl_ui/space_outliner/__init__.pyi +12 -0
  89. bl_ui/space_sequencer/__init__.pyi +34 -0
  90. bl_ui/space_text/__init__.pyi +12 -0
  91. bl_ui/space_time/__init__.pyi +4 -0
  92. bl_ui/space_toolsystem_common/__init__.pyi +7 -6
  93. bl_ui/space_toolsystem_toolbar/__init__.pyi +18 -13
  94. bl_ui/space_topbar/__init__.pyi +20 -1
  95. bl_ui/space_userpref/__init__.pyi +8 -0
  96. bl_ui/space_view3d/__init__.pyi +3477 -1372
  97. bl_ui/space_view3d_toolbar/__init__.pyi +1706 -880
  98. bl_ui/utils/__init__.pyi +1 -0
  99. bl_ui_utils/bug_report_url/__init__.pyi +1 -1
  100. bpy/ops/brush/__init__.pyi +185 -11
  101. bpy/ops/gpencil/__init__.pyi +0 -28
  102. bpy/ops/paint/__init__.pyi +0 -48
  103. bpy/ops/pose/__init__.pyi +176 -0
  104. bpy/ops/wm/__init__.pyi +18 -0
  105. bpy/path/__init__.pyi +6 -6
  106. bpy/types/__init__.pyi +2607 -1090
  107. bpy/utils/__init__.pyi +14 -12
  108. bpy_extras/anim_utils/__init__.pyi +3 -3
  109. bpy_extras/view3d_utils/__init__.pyi +2 -0
  110. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240709.dist-info}/METADATA +1 -1
  111. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240709.dist-info}/RECORD +116 -113
  112. rna_info/__init__.pyi +1 -0
  113. rna_prop_ui/__init__.pyi +2 -1
  114. rna_xml/__init__.pyi +2 -2
  115. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240709.dist-info}/WHEEL +0 -0
  116. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240709.dist-info}/top_level.txt +0 -0
bpy/types/__init__.pyi CHANGED
@@ -414,55 +414,6 @@
414
414
  :columns: 2
415
415
 
416
416
 
417
- --------------------
418
-
419
- * bpy_struct.id_data
420
-
421
- :columns: 2
422
-
423
-
424
- --------------------
425
-
426
- * bpy_struct.as_pointer
427
- * bpy_struct.driver_add
428
- * bpy_struct.driver_remove
429
- * bpy_struct.get
430
- * bpy_struct.id_properties_clear
431
- * bpy_struct.id_properties_ensure
432
- * bpy_struct.id_properties_ui
433
- * bpy_struct.is_property_hidden
434
- * bpy_struct.is_property_overridable_library
435
- * bpy_struct.is_property_readonly
436
- * bpy_struct.is_property_set
437
- * bpy_struct.items
438
- * bpy_struct.keyframe_delete
439
- * bpy_struct.keyframe_insert
440
- * bpy_struct.keys
441
- * bpy_struct.path_from_id
442
- * bpy_struct.path_resolve
443
- * bpy_struct.pop
444
- * bpy_struct.property_overridable_library_set
445
- * bpy_struct.property_unset
446
- * bpy_struct.type_recast
447
- * bpy_struct.values
448
-
449
- :columns: 2
450
-
451
-
452
- --------------------
453
-
454
- * Curves.attributes
455
- * Curves.color_attributes
456
- * GreasePencilv3.attributes
457
- * GreasePencilv3.color_attributes
458
- * Mesh.attributes
459
- * Mesh.color_attributes
460
- * PointCloud.attributes
461
- * PointCloud.color_attributes
462
-
463
- :columns: 2
464
-
465
-
466
417
  --------------------
467
418
 
468
419
  * bpy_struct.id_data
@@ -2628,6 +2579,96 @@
2628
2579
  :columns: 2
2629
2580
 
2630
2581
 
2582
+ --------------------
2583
+
2584
+ * bpy_struct.id_data
2585
+ * Node.type
2586
+ * Node.location
2587
+ * Node.width
2588
+ * Node.height
2589
+ * Node.dimensions
2590
+ * Node.name
2591
+ * Node.label
2592
+ * Node.inputs
2593
+ * Node.outputs
2594
+ * Node.internal_links
2595
+ * Node.parent
2596
+ * Node.use_custom_color
2597
+ * Node.color
2598
+ * Node.select
2599
+ * Node.show_options
2600
+ * Node.show_preview
2601
+ * Node.hide
2602
+ * Node.mute
2603
+ * Node.show_texture
2604
+ * Node.bl_idname
2605
+ * Node.bl_label
2606
+ * Node.bl_description
2607
+ * Node.bl_icon
2608
+ * Node.bl_static_type
2609
+ * Node.bl_width_default
2610
+ * Node.bl_width_min
2611
+ * Node.bl_width_max
2612
+ * Node.bl_height_default
2613
+ * Node.bl_height_min
2614
+ * Node.bl_height_max
2615
+
2616
+ :columns: 2
2617
+
2618
+
2619
+ --------------------
2620
+
2621
+ * bpy_struct.as_pointer
2622
+ * bpy_struct.driver_add
2623
+ * bpy_struct.driver_remove
2624
+ * bpy_struct.get
2625
+ * bpy_struct.id_properties_clear
2626
+ * bpy_struct.id_properties_ensure
2627
+ * bpy_struct.id_properties_ui
2628
+ * bpy_struct.is_property_hidden
2629
+ * bpy_struct.is_property_overridable_library
2630
+ * bpy_struct.is_property_readonly
2631
+ * bpy_struct.is_property_set
2632
+ * bpy_struct.items
2633
+ * bpy_struct.keyframe_delete
2634
+ * bpy_struct.keyframe_insert
2635
+ * bpy_struct.keys
2636
+ * bpy_struct.path_from_id
2637
+ * bpy_struct.path_resolve
2638
+ * bpy_struct.pop
2639
+ * bpy_struct.property_overridable_library_set
2640
+ * bpy_struct.property_unset
2641
+ * bpy_struct.type_recast
2642
+ * bpy_struct.values
2643
+ * Node.socket_value_update
2644
+ * Node.is_registered_node_type
2645
+ * Node.poll
2646
+ * Node.poll_instance
2647
+ * Node.update
2648
+ * Node.insert_link
2649
+ * Node.init
2650
+ * Node.copy
2651
+ * Node.free
2652
+ * Node.draw_buttons
2653
+ * Node.draw_buttons_ext
2654
+ * Node.draw_label
2655
+ * Node.poll
2656
+ * Node.bl_rna_get_subclass
2657
+ * Node.bl_rna_get_subclass_py
2658
+ * NodeInternal.poll
2659
+ * NodeInternal.poll_instance
2660
+ * NodeInternal.update
2661
+ * NodeInternal.draw_buttons
2662
+ * NodeInternal.draw_buttons_ext
2663
+ * NodeInternal.bl_rna_get_subclass
2664
+ * NodeInternal.bl_rna_get_subclass_py
2665
+ * GeometryNode.poll
2666
+ * GeometryNode.bl_rna_get_subclass
2667
+ * GeometryNode.bl_rna_get_subclass_py
2668
+
2669
+ :columns: 2
2670
+
2671
+
2631
2672
  --------------------
2632
2673
 
2633
2674
  * bpy_struct.id_data
@@ -3319,6 +3360,56 @@
3319
3360
  :columns: 2
3320
3361
 
3321
3362
 
3363
+ --------------------
3364
+
3365
+ * bpy_struct.id_data
3366
+ * AssetShelf.bl_idname
3367
+ * AssetShelf.bl_space_type
3368
+ * AssetShelf.bl_options
3369
+ * AssetShelf.bl_activate_operator
3370
+ * AssetShelf.bl_default_preview_size
3371
+ * AssetShelf.asset_library_reference
3372
+ * AssetShelf.show_names
3373
+ * AssetShelf.preview_size
3374
+ * AssetShelf.search_filter
3375
+
3376
+ :columns: 2
3377
+
3378
+
3379
+ --------------------
3380
+
3381
+ * bpy_struct.as_pointer
3382
+ * bpy_struct.driver_add
3383
+ * bpy_struct.driver_remove
3384
+ * bpy_struct.get
3385
+ * bpy_struct.id_properties_clear
3386
+ * bpy_struct.id_properties_ensure
3387
+ * bpy_struct.id_properties_ui
3388
+ * bpy_struct.is_property_hidden
3389
+ * bpy_struct.is_property_overridable_library
3390
+ * bpy_struct.is_property_readonly
3391
+ * bpy_struct.is_property_set
3392
+ * bpy_struct.items
3393
+ * bpy_struct.keyframe_delete
3394
+ * bpy_struct.keyframe_insert
3395
+ * bpy_struct.keys
3396
+ * bpy_struct.path_from_id
3397
+ * bpy_struct.path_resolve
3398
+ * bpy_struct.pop
3399
+ * bpy_struct.property_overridable_library_set
3400
+ * bpy_struct.property_unset
3401
+ * bpy_struct.type_recast
3402
+ * bpy_struct.values
3403
+ * AssetShelf.poll
3404
+ * AssetShelf.asset_poll
3405
+ * AssetShelf.get_active_asset
3406
+ * AssetShelf.draw_context_menu
3407
+ * AssetShelf.bl_rna_get_subclass
3408
+ * AssetShelf.bl_rna_get_subclass_py
3409
+
3410
+ :columns: 2
3411
+
3412
+
3322
3413
  --------------------
3323
3414
 
3324
3415
  * bpy_struct.id_data
@@ -6149,6 +6240,56 @@
6149
6240
  :columns: 2
6150
6241
 
6151
6242
 
6243
+ --------------------
6244
+
6245
+ * bpy_struct.id_data
6246
+ * AssetShelf.bl_idname
6247
+ * AssetShelf.bl_space_type
6248
+ * AssetShelf.bl_options
6249
+ * AssetShelf.bl_activate_operator
6250
+ * AssetShelf.bl_default_preview_size
6251
+ * AssetShelf.asset_library_reference
6252
+ * AssetShelf.show_names
6253
+ * AssetShelf.preview_size
6254
+ * AssetShelf.search_filter
6255
+
6256
+ :columns: 2
6257
+
6258
+
6259
+ --------------------
6260
+
6261
+ * bpy_struct.as_pointer
6262
+ * bpy_struct.driver_add
6263
+ * bpy_struct.driver_remove
6264
+ * bpy_struct.get
6265
+ * bpy_struct.id_properties_clear
6266
+ * bpy_struct.id_properties_ensure
6267
+ * bpy_struct.id_properties_ui
6268
+ * bpy_struct.is_property_hidden
6269
+ * bpy_struct.is_property_overridable_library
6270
+ * bpy_struct.is_property_readonly
6271
+ * bpy_struct.is_property_set
6272
+ * bpy_struct.items
6273
+ * bpy_struct.keyframe_delete
6274
+ * bpy_struct.keyframe_insert
6275
+ * bpy_struct.keys
6276
+ * bpy_struct.path_from_id
6277
+ * bpy_struct.path_resolve
6278
+ * bpy_struct.pop
6279
+ * bpy_struct.property_overridable_library_set
6280
+ * bpy_struct.property_unset
6281
+ * bpy_struct.type_recast
6282
+ * bpy_struct.values
6283
+ * AssetShelf.poll
6284
+ * AssetShelf.asset_poll
6285
+ * AssetShelf.get_active_asset
6286
+ * AssetShelf.draw_context_menu
6287
+ * AssetShelf.bl_rna_get_subclass
6288
+ * AssetShelf.bl_rna_get_subclass_py
6289
+
6290
+ :columns: 2
6291
+
6292
+
6152
6293
  --------------------
6153
6294
 
6154
6295
  * bpy_struct.id_data
@@ -7551,7 +7692,9 @@
7551
7692
 
7552
7693
  * bpy_struct.id_data
7553
7694
  * Paint.brush
7554
- * Paint.tool_slots
7695
+ * Paint.brush_asset_reference
7696
+ * Paint.eraser_brush
7697
+ * Paint.eraser_brush_asset_reference
7555
7698
  * Paint.palette
7556
7699
  * Paint.show_brush
7557
7700
  * Paint.show_brush_on_surface
@@ -12849,6 +12992,15 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
12849
12992
  --------------------
12850
12993
 
12851
12994
  * bpy_struct.id_data
12995
+ * AssetShelf.bl_idname
12996
+ * AssetShelf.bl_space_type
12997
+ * AssetShelf.bl_options
12998
+ * AssetShelf.bl_activate_operator
12999
+ * AssetShelf.bl_default_preview_size
13000
+ * AssetShelf.asset_library_reference
13001
+ * AssetShelf.show_names
13002
+ * AssetShelf.preview_size
13003
+ * AssetShelf.search_filter
12852
13004
 
12853
13005
  :columns: 2
12854
13006
 
@@ -12877,13 +13029,12 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
12877
13029
  * bpy_struct.property_unset
12878
13030
  * bpy_struct.type_recast
12879
13031
  * bpy_struct.values
12880
-
12881
- :columns: 2
12882
-
12883
-
12884
- --------------------
12885
-
12886
- * Mesh.loop_triangles
13032
+ * AssetShelf.poll
13033
+ * AssetShelf.asset_poll
13034
+ * AssetShelf.get_active_asset
13035
+ * AssetShelf.draw_context_menu
13036
+ * AssetShelf.bl_rna_get_subclass
13037
+ * AssetShelf.bl_rna_get_subclass_py
12887
13038
 
12888
13039
  :columns: 2
12889
13040
 
@@ -12891,9 +13042,51 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
12891
13042
  --------------------
12892
13043
 
12893
13044
  * bpy_struct.id_data
12894
- * Space.type
12895
- * Space.show_locked_time
12896
- * Space.show_region_header
13045
+
13046
+ :columns: 2
13047
+
13048
+
13049
+ --------------------
13050
+
13051
+ * bpy_struct.as_pointer
13052
+ * bpy_struct.driver_add
13053
+ * bpy_struct.driver_remove
13054
+ * bpy_struct.get
13055
+ * bpy_struct.id_properties_clear
13056
+ * bpy_struct.id_properties_ensure
13057
+ * bpy_struct.id_properties_ui
13058
+ * bpy_struct.is_property_hidden
13059
+ * bpy_struct.is_property_overridable_library
13060
+ * bpy_struct.is_property_readonly
13061
+ * bpy_struct.is_property_set
13062
+ * bpy_struct.items
13063
+ * bpy_struct.keyframe_delete
13064
+ * bpy_struct.keyframe_insert
13065
+ * bpy_struct.keys
13066
+ * bpy_struct.path_from_id
13067
+ * bpy_struct.path_resolve
13068
+ * bpy_struct.pop
13069
+ * bpy_struct.property_overridable_library_set
13070
+ * bpy_struct.property_unset
13071
+ * bpy_struct.type_recast
13072
+ * bpy_struct.values
13073
+
13074
+ :columns: 2
13075
+
13076
+
13077
+ --------------------
13078
+
13079
+ * Mesh.loop_triangles
13080
+
13081
+ :columns: 2
13082
+
13083
+
13084
+ --------------------
13085
+
13086
+ * bpy_struct.id_data
13087
+ * Space.type
13088
+ * Space.show_locked_time
13089
+ * Space.show_region_header
12897
13090
 
12898
13091
  :columns: 2
12899
13092
 
@@ -15897,6 +16090,56 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
15897
16090
  :columns: 2
15898
16091
 
15899
16092
 
16093
+ --------------------
16094
+
16095
+ * bpy_struct.id_data
16096
+ * AssetShelf.bl_idname
16097
+ * AssetShelf.bl_space_type
16098
+ * AssetShelf.bl_options
16099
+ * AssetShelf.bl_activate_operator
16100
+ * AssetShelf.bl_default_preview_size
16101
+ * AssetShelf.asset_library_reference
16102
+ * AssetShelf.show_names
16103
+ * AssetShelf.preview_size
16104
+ * AssetShelf.search_filter
16105
+
16106
+ :columns: 2
16107
+
16108
+
16109
+ --------------------
16110
+
16111
+ * bpy_struct.as_pointer
16112
+ * bpy_struct.driver_add
16113
+ * bpy_struct.driver_remove
16114
+ * bpy_struct.get
16115
+ * bpy_struct.id_properties_clear
16116
+ * bpy_struct.id_properties_ensure
16117
+ * bpy_struct.id_properties_ui
16118
+ * bpy_struct.is_property_hidden
16119
+ * bpy_struct.is_property_overridable_library
16120
+ * bpy_struct.is_property_readonly
16121
+ * bpy_struct.is_property_set
16122
+ * bpy_struct.items
16123
+ * bpy_struct.keyframe_delete
16124
+ * bpy_struct.keyframe_insert
16125
+ * bpy_struct.keys
16126
+ * bpy_struct.path_from_id
16127
+ * bpy_struct.path_resolve
16128
+ * bpy_struct.pop
16129
+ * bpy_struct.property_overridable_library_set
16130
+ * bpy_struct.property_unset
16131
+ * bpy_struct.type_recast
16132
+ * bpy_struct.values
16133
+ * AssetShelf.poll
16134
+ * AssetShelf.asset_poll
16135
+ * AssetShelf.get_active_asset
16136
+ * AssetShelf.draw_context_menu
16137
+ * AssetShelf.bl_rna_get_subclass
16138
+ * AssetShelf.bl_rna_get_subclass_py
16139
+
16140
+ :columns: 2
16141
+
16142
+
15900
16143
  --------------------
15901
16144
 
15902
16145
  * bpy_struct.id_data
@@ -16093,6 +16336,60 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
16093
16336
  :columns: 2
16094
16337
 
16095
16338
 
16339
+ --------------------
16340
+
16341
+ * bpy_struct.id_data
16342
+ * UIList.bl_idname
16343
+ * UIList.list_id
16344
+ * UIList.layout_type
16345
+ * UIList.use_filter_show
16346
+ * UIList.filter_name
16347
+ * UIList.use_filter_invert
16348
+ * UIList.use_filter_sort_alpha
16349
+ * UIList.use_filter_sort_reverse
16350
+ * UIList.use_filter_sort_lock
16351
+ * UIList.bitflag_filter_item
16352
+
16353
+ :columns: 2
16354
+
16355
+
16356
+ --------------------
16357
+
16358
+ * bpy_struct.as_pointer
16359
+ * bpy_struct.driver_add
16360
+ * bpy_struct.driver_remove
16361
+ * bpy_struct.get
16362
+ * bpy_struct.id_properties_clear
16363
+ * bpy_struct.id_properties_ensure
16364
+ * bpy_struct.id_properties_ui
16365
+ * bpy_struct.is_property_hidden
16366
+ * bpy_struct.is_property_overridable_library
16367
+ * bpy_struct.is_property_readonly
16368
+ * bpy_struct.is_property_set
16369
+ * bpy_struct.items
16370
+ * bpy_struct.keyframe_delete
16371
+ * bpy_struct.keyframe_insert
16372
+ * bpy_struct.keys
16373
+ * bpy_struct.path_from_id
16374
+ * bpy_struct.path_resolve
16375
+ * bpy_struct.pop
16376
+ * bpy_struct.property_overridable_library_set
16377
+ * bpy_struct.property_unset
16378
+ * bpy_struct.type_recast
16379
+ * bpy_struct.values
16380
+ * UIList.draw_item
16381
+ * UIList.draw_filter
16382
+ * UIList.filter_items
16383
+ * UIList.append
16384
+ * UIList.is_extended
16385
+ * UIList.prepend
16386
+ * UIList.remove
16387
+ * UIList.bl_rna_get_subclass
16388
+ * UIList.bl_rna_get_subclass_py
16389
+
16390
+ :columns: 2
16391
+
16392
+
16096
16393
  --------------------
16097
16394
 
16098
16395
  * bpy_struct.id_data
@@ -22515,6 +22812,56 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
22515
22812
  :columns: 2
22516
22813
 
22517
22814
 
22815
+ --------------------
22816
+
22817
+ * bpy_struct.id_data
22818
+ * AssetShelf.bl_idname
22819
+ * AssetShelf.bl_space_type
22820
+ * AssetShelf.bl_options
22821
+ * AssetShelf.bl_activate_operator
22822
+ * AssetShelf.bl_default_preview_size
22823
+ * AssetShelf.asset_library_reference
22824
+ * AssetShelf.show_names
22825
+ * AssetShelf.preview_size
22826
+ * AssetShelf.search_filter
22827
+
22828
+ :columns: 2
22829
+
22830
+
22831
+ --------------------
22832
+
22833
+ * bpy_struct.as_pointer
22834
+ * bpy_struct.driver_add
22835
+ * bpy_struct.driver_remove
22836
+ * bpy_struct.get
22837
+ * bpy_struct.id_properties_clear
22838
+ * bpy_struct.id_properties_ensure
22839
+ * bpy_struct.id_properties_ui
22840
+ * bpy_struct.is_property_hidden
22841
+ * bpy_struct.is_property_overridable_library
22842
+ * bpy_struct.is_property_readonly
22843
+ * bpy_struct.is_property_set
22844
+ * bpy_struct.items
22845
+ * bpy_struct.keyframe_delete
22846
+ * bpy_struct.keyframe_insert
22847
+ * bpy_struct.keys
22848
+ * bpy_struct.path_from_id
22849
+ * bpy_struct.path_resolve
22850
+ * bpy_struct.pop
22851
+ * bpy_struct.property_overridable_library_set
22852
+ * bpy_struct.property_unset
22853
+ * bpy_struct.type_recast
22854
+ * bpy_struct.values
22855
+ * AssetShelf.poll
22856
+ * AssetShelf.asset_poll
22857
+ * AssetShelf.get_active_asset
22858
+ * AssetShelf.draw_context_menu
22859
+ * AssetShelf.bl_rna_get_subclass
22860
+ * AssetShelf.bl_rna_get_subclass_py
22861
+
22862
+ :columns: 2
22863
+
22864
+
22518
22865
  --------------------
22519
22866
 
22520
22867
  * bpy_struct.id_data
@@ -23181,7 +23528,9 @@ of the scene and only show nodes of the renderer they are designed for.
23181
23528
 
23182
23529
  * bpy_struct.id_data
23183
23530
  * Paint.brush
23184
- * Paint.tool_slots
23531
+ * Paint.brush_asset_reference
23532
+ * Paint.eraser_brush
23533
+ * Paint.eraser_brush_asset_reference
23185
23534
  * Paint.palette
23186
23535
  * Paint.show_brush
23187
23536
  * Paint.show_brush_on_surface
@@ -26759,7 +27108,9 @@ of the scene and only show nodes of the renderer they are designed for.
26759
27108
 
26760
27109
  * bpy_struct.id_data
26761
27110
  * Paint.brush
26762
- * Paint.tool_slots
27111
+ * Paint.brush_asset_reference
27112
+ * Paint.eraser_brush
27113
+ * Paint.eraser_brush_asset_reference
26763
27114
  * Paint.palette
26764
27115
  * Paint.show_brush
26765
27116
  * Paint.show_brush_on_surface
@@ -35918,7 +36269,9 @@ FileHandler
35918
36269
 
35919
36270
  * bpy_struct.id_data
35920
36271
  * Paint.brush
35921
- * Paint.tool_slots
36272
+ * Paint.brush_asset_reference
36273
+ * Paint.eraser_brush
36274
+ * Paint.eraser_brush_asset_reference
35922
36275
  * Paint.palette
35923
36276
  * Paint.show_brush
35924
36277
  * Paint.show_brush_on_surface
@@ -40848,56 +41201,106 @@ The USDHookExample
40848
41201
  --------------------
40849
41202
 
40850
41203
  * bpy_struct.id_data
40851
- * Modifier.name
40852
- * Modifier.type
40853
- * Modifier.show_viewport
40854
- * Modifier.show_render
40855
- * Modifier.show_in_editmode
40856
- * Modifier.show_on_cage
40857
- * Modifier.show_expanded
40858
- * Modifier.is_active
40859
- * Modifier.use_pin_to_last
40860
- * Modifier.is_override_data
40861
- * Modifier.use_apply_on_spline
40862
- * Modifier.execution_time
40863
- * Modifier.persistent_uid
40864
-
40865
- :columns: 2
40866
-
40867
-
40868
- --------------------
40869
-
40870
- * bpy_struct.as_pointer
40871
- * bpy_struct.driver_add
40872
- * bpy_struct.driver_remove
40873
- * bpy_struct.get
40874
- * bpy_struct.id_properties_clear
40875
- * bpy_struct.id_properties_ensure
40876
- * bpy_struct.id_properties_ui
40877
- * bpy_struct.is_property_hidden
40878
- * bpy_struct.is_property_overridable_library
40879
- * bpy_struct.is_property_readonly
40880
- * bpy_struct.is_property_set
40881
- * bpy_struct.items
40882
- * bpy_struct.keyframe_delete
40883
- * bpy_struct.keyframe_insert
40884
- * bpy_struct.keys
40885
- * bpy_struct.path_from_id
40886
- * bpy_struct.path_resolve
40887
- * bpy_struct.pop
40888
- * bpy_struct.property_overridable_library_set
40889
- * bpy_struct.property_unset
40890
- * bpy_struct.type_recast
40891
- * bpy_struct.values
40892
- * Modifier.bl_rna_get_subclass
40893
- * Modifier.bl_rna_get_subclass_py
40894
-
40895
- :columns: 2
40896
-
40897
-
40898
- --------------------
40899
-
40900
- * bpy_struct.id_data
41204
+ * AssetShelf.bl_idname
41205
+ * AssetShelf.bl_space_type
41206
+ * AssetShelf.bl_options
41207
+ * AssetShelf.bl_activate_operator
41208
+ * AssetShelf.bl_default_preview_size
41209
+ * AssetShelf.asset_library_reference
41210
+ * AssetShelf.show_names
41211
+ * AssetShelf.preview_size
41212
+ * AssetShelf.search_filter
41213
+
41214
+ :columns: 2
41215
+
41216
+
41217
+ --------------------
41218
+
41219
+ * bpy_struct.as_pointer
41220
+ * bpy_struct.driver_add
41221
+ * bpy_struct.driver_remove
41222
+ * bpy_struct.get
41223
+ * bpy_struct.id_properties_clear
41224
+ * bpy_struct.id_properties_ensure
41225
+ * bpy_struct.id_properties_ui
41226
+ * bpy_struct.is_property_hidden
41227
+ * bpy_struct.is_property_overridable_library
41228
+ * bpy_struct.is_property_readonly
41229
+ * bpy_struct.is_property_set
41230
+ * bpy_struct.items
41231
+ * bpy_struct.keyframe_delete
41232
+ * bpy_struct.keyframe_insert
41233
+ * bpy_struct.keys
41234
+ * bpy_struct.path_from_id
41235
+ * bpy_struct.path_resolve
41236
+ * bpy_struct.pop
41237
+ * bpy_struct.property_overridable_library_set
41238
+ * bpy_struct.property_unset
41239
+ * bpy_struct.type_recast
41240
+ * bpy_struct.values
41241
+ * AssetShelf.poll
41242
+ * AssetShelf.asset_poll
41243
+ * AssetShelf.get_active_asset
41244
+ * AssetShelf.draw_context_menu
41245
+ * AssetShelf.bl_rna_get_subclass
41246
+ * AssetShelf.bl_rna_get_subclass_py
41247
+
41248
+ :columns: 2
41249
+
41250
+
41251
+ --------------------
41252
+
41253
+ * bpy_struct.id_data
41254
+ * Modifier.name
41255
+ * Modifier.type
41256
+ * Modifier.show_viewport
41257
+ * Modifier.show_render
41258
+ * Modifier.show_in_editmode
41259
+ * Modifier.show_on_cage
41260
+ * Modifier.show_expanded
41261
+ * Modifier.is_active
41262
+ * Modifier.use_pin_to_last
41263
+ * Modifier.is_override_data
41264
+ * Modifier.use_apply_on_spline
41265
+ * Modifier.execution_time
41266
+ * Modifier.persistent_uid
41267
+
41268
+ :columns: 2
41269
+
41270
+
41271
+ --------------------
41272
+
41273
+ * bpy_struct.as_pointer
41274
+ * bpy_struct.driver_add
41275
+ * bpy_struct.driver_remove
41276
+ * bpy_struct.get
41277
+ * bpy_struct.id_properties_clear
41278
+ * bpy_struct.id_properties_ensure
41279
+ * bpy_struct.id_properties_ui
41280
+ * bpy_struct.is_property_hidden
41281
+ * bpy_struct.is_property_overridable_library
41282
+ * bpy_struct.is_property_readonly
41283
+ * bpy_struct.is_property_set
41284
+ * bpy_struct.items
41285
+ * bpy_struct.keyframe_delete
41286
+ * bpy_struct.keyframe_insert
41287
+ * bpy_struct.keys
41288
+ * bpy_struct.path_from_id
41289
+ * bpy_struct.path_resolve
41290
+ * bpy_struct.pop
41291
+ * bpy_struct.property_overridable_library_set
41292
+ * bpy_struct.property_unset
41293
+ * bpy_struct.type_recast
41294
+ * bpy_struct.values
41295
+ * Modifier.bl_rna_get_subclass
41296
+ * Modifier.bl_rna_get_subclass_py
41297
+
41298
+ :columns: 2
41299
+
41300
+
41301
+ --------------------
41302
+
41303
+ * bpy_struct.id_data
40901
41304
 
40902
41305
  :columns: 2
40903
41306
 
@@ -43416,6 +43819,8 @@ Menu.poll function.
43416
43819
  * GeometryNodeImageInfo.output_template
43417
43820
  * GeometryNodeImageTexture.input_template
43418
43821
  * GeometryNodeImageTexture.output_template
43822
+ * GeometryNodeImportOBJ.input_template
43823
+ * GeometryNodeImportOBJ.output_template
43419
43824
  * GeometryNodeImportSTL.input_template
43420
43825
  * GeometryNodeImportSTL.output_template
43421
43826
  * GeometryNodeIndexOfNearest.input_template
@@ -47037,6 +47442,56 @@ Menu.poll function.
47037
47442
  :columns: 2
47038
47443
 
47039
47444
 
47445
+ --------------------
47446
+
47447
+ * bpy_struct.id_data
47448
+ * AssetShelf.bl_idname
47449
+ * AssetShelf.bl_space_type
47450
+ * AssetShelf.bl_options
47451
+ * AssetShelf.bl_activate_operator
47452
+ * AssetShelf.bl_default_preview_size
47453
+ * AssetShelf.asset_library_reference
47454
+ * AssetShelf.show_names
47455
+ * AssetShelf.preview_size
47456
+ * AssetShelf.search_filter
47457
+
47458
+ :columns: 2
47459
+
47460
+
47461
+ --------------------
47462
+
47463
+ * bpy_struct.as_pointer
47464
+ * bpy_struct.driver_add
47465
+ * bpy_struct.driver_remove
47466
+ * bpy_struct.get
47467
+ * bpy_struct.id_properties_clear
47468
+ * bpy_struct.id_properties_ensure
47469
+ * bpy_struct.id_properties_ui
47470
+ * bpy_struct.is_property_hidden
47471
+ * bpy_struct.is_property_overridable_library
47472
+ * bpy_struct.is_property_readonly
47473
+ * bpy_struct.is_property_set
47474
+ * bpy_struct.items
47475
+ * bpy_struct.keyframe_delete
47476
+ * bpy_struct.keyframe_insert
47477
+ * bpy_struct.keys
47478
+ * bpy_struct.path_from_id
47479
+ * bpy_struct.path_resolve
47480
+ * bpy_struct.pop
47481
+ * bpy_struct.property_overridable_library_set
47482
+ * bpy_struct.property_unset
47483
+ * bpy_struct.type_recast
47484
+ * bpy_struct.values
47485
+ * AssetShelf.poll
47486
+ * AssetShelf.asset_poll
47487
+ * AssetShelf.get_active_asset
47488
+ * AssetShelf.draw_context_menu
47489
+ * AssetShelf.bl_rna_get_subclass
47490
+ * AssetShelf.bl_rna_get_subclass_py
47491
+
47492
+ :columns: 2
47493
+
47494
+
47040
47495
  --------------------
47041
47496
 
47042
47497
  * bpy_struct.id_data
@@ -48744,7 +49199,9 @@ object, placing it into a view layer, selecting it and making it active.
48744
49199
 
48745
49200
  * bpy_struct.id_data
48746
49201
  * Paint.brush
48747
- * Paint.tool_slots
49202
+ * Paint.brush_asset_reference
49203
+ * Paint.eraser_brush
49204
+ * Paint.eraser_brush_asset_reference
48748
49205
  * Paint.palette
48749
49206
  * Paint.show_brush
48750
49207
  * Paint.show_brush_on_surface
@@ -51334,7 +51791,9 @@ example of how to create/use filtering/reordering callbacks.
51334
51791
 
51335
51792
  * bpy_struct.id_data
51336
51793
  * Paint.brush
51337
- * Paint.tool_slots
51794
+ * Paint.brush_asset_reference
51795
+ * Paint.eraser_brush
51796
+ * Paint.eraser_brush_asset_reference
51338
51797
  * Paint.palette
51339
51798
  * Paint.show_brush
51340
51799
  * Paint.show_brush_on_surface
@@ -53703,36 +54162,6 @@ Base class for integrating USD Hydra based renderers.
53703
54162
  --------------------
53704
54163
 
53705
54164
  * bpy_struct.id_data
53706
- * Node.type
53707
- * Node.location
53708
- * Node.width
53709
- * Node.height
53710
- * Node.dimensions
53711
- * Node.name
53712
- * Node.label
53713
- * Node.inputs
53714
- * Node.outputs
53715
- * Node.internal_links
53716
- * Node.parent
53717
- * Node.use_custom_color
53718
- * Node.color
53719
- * Node.select
53720
- * Node.show_options
53721
- * Node.show_preview
53722
- * Node.hide
53723
- * Node.mute
53724
- * Node.show_texture
53725
- * Node.bl_idname
53726
- * Node.bl_label
53727
- * Node.bl_description
53728
- * Node.bl_icon
53729
- * Node.bl_static_type
53730
- * Node.bl_width_default
53731
- * Node.bl_width_min
53732
- * Node.bl_width_max
53733
- * Node.bl_height_default
53734
- * Node.bl_height_min
53735
- * Node.bl_height_max
53736
54165
 
53737
54166
  :columns: 2
53738
54167
 
@@ -53761,81 +54190,14 @@ Base class for integrating USD Hydra based renderers.
53761
54190
  * bpy_struct.property_unset
53762
54191
  * bpy_struct.type_recast
53763
54192
  * bpy_struct.values
53764
- * Node.socket_value_update
53765
- * Node.is_registered_node_type
53766
- * Node.poll
53767
- * Node.poll_instance
53768
- * Node.update
53769
- * Node.insert_link
53770
- * Node.init
53771
- * Node.copy
53772
- * Node.free
53773
- * Node.draw_buttons
53774
- * Node.draw_buttons_ext
53775
- * Node.draw_label
53776
- * Node.poll
53777
- * Node.bl_rna_get_subclass
53778
- * Node.bl_rna_get_subclass_py
53779
- * NodeInternal.poll
53780
- * NodeInternal.poll_instance
53781
- * NodeInternal.update
53782
- * NodeInternal.draw_buttons
53783
- * NodeInternal.draw_buttons_ext
53784
- * NodeInternal.bl_rna_get_subclass
53785
- * NodeInternal.bl_rna_get_subclass_py
53786
- * GeometryNode.poll
53787
- * GeometryNode.bl_rna_get_subclass
53788
- * GeometryNode.bl_rna_get_subclass_py
53789
-
53790
- :columns: 2
53791
-
53792
-
53793
- --------------------
53794
-
53795
- * bpy_struct.id_data
53796
- * FModifier.name
53797
- * FModifier.type
53798
- * FModifier.show_expanded
53799
- * FModifier.mute
53800
- * FModifier.is_valid
53801
- * FModifier.active
53802
- * FModifier.use_restricted_range
53803
- * FModifier.frame_start
53804
- * FModifier.frame_end
53805
- * FModifier.blend_in
53806
- * FModifier.blend_out
53807
- * FModifier.use_influence
53808
- * FModifier.influence
53809
54193
 
53810
54194
  :columns: 2
53811
54195
 
53812
54196
 
53813
54197
  --------------------
53814
54198
 
53815
- * bpy_struct.as_pointer
53816
- * bpy_struct.driver_add
53817
- * bpy_struct.driver_remove
53818
- * bpy_struct.get
53819
- * bpy_struct.id_properties_clear
53820
- * bpy_struct.id_properties_ensure
53821
- * bpy_struct.id_properties_ui
53822
- * bpy_struct.is_property_hidden
53823
- * bpy_struct.is_property_overridable_library
53824
- * bpy_struct.is_property_readonly
53825
- * bpy_struct.is_property_set
53826
- * bpy_struct.items
53827
- * bpy_struct.keyframe_delete
53828
- * bpy_struct.keyframe_insert
53829
- * bpy_struct.keys
53830
- * bpy_struct.path_from_id
53831
- * bpy_struct.path_resolve
53832
- * bpy_struct.pop
53833
- * bpy_struct.property_overridable_library_set
53834
- * bpy_struct.property_unset
53835
- * bpy_struct.type_recast
53836
- * bpy_struct.values
53837
- * FModifier.bl_rna_get_subclass
53838
- * FModifier.bl_rna_get_subclass_py
54199
+ * Mesh.attributes
54200
+ * Mesh.color_attributes
53839
54201
 
53840
54202
  :columns: 2
53841
54203
 
@@ -53923,11 +54285,9 @@ Base class for integrating USD Hydra based renderers.
53923
54285
  * NodeInternal.draw_buttons_ext
53924
54286
  * NodeInternal.bl_rna_get_subclass
53925
54287
  * NodeInternal.bl_rna_get_subclass_py
53926
- * CompositorNode.tag_need_exec
53927
- * CompositorNode.poll
53928
- * CompositorNode.update
53929
- * CompositorNode.bl_rna_get_subclass
53930
- * CompositorNode.bl_rna_get_subclass_py
54288
+ * GeometryNode.poll
54289
+ * GeometryNode.bl_rna_get_subclass
54290
+ * GeometryNode.bl_rna_get_subclass_py
53931
54291
 
53932
54292
  :columns: 2
53933
54293
 
@@ -53935,19 +54295,161 @@ Base class for integrating USD Hydra based renderers.
53935
54295
  --------------------
53936
54296
 
53937
54297
  * bpy_struct.id_data
53938
- * Modifier.name
53939
- * Modifier.type
53940
- * Modifier.show_viewport
53941
- * Modifier.show_render
53942
- * Modifier.show_in_editmode
53943
- * Modifier.show_on_cage
53944
- * Modifier.show_expanded
53945
- * Modifier.is_active
53946
- * Modifier.use_pin_to_last
53947
- * Modifier.is_override_data
53948
- * Modifier.use_apply_on_spline
53949
- * Modifier.execution_time
53950
- * Modifier.persistent_uid
54298
+ * FModifier.name
54299
+ * FModifier.type
54300
+ * FModifier.show_expanded
54301
+ * FModifier.mute
54302
+ * FModifier.is_valid
54303
+ * FModifier.active
54304
+ * FModifier.use_restricted_range
54305
+ * FModifier.frame_start
54306
+ * FModifier.frame_end
54307
+ * FModifier.blend_in
54308
+ * FModifier.blend_out
54309
+ * FModifier.use_influence
54310
+ * FModifier.influence
54311
+
54312
+ :columns: 2
54313
+
54314
+
54315
+ --------------------
54316
+
54317
+ * bpy_struct.as_pointer
54318
+ * bpy_struct.driver_add
54319
+ * bpy_struct.driver_remove
54320
+ * bpy_struct.get
54321
+ * bpy_struct.id_properties_clear
54322
+ * bpy_struct.id_properties_ensure
54323
+ * bpy_struct.id_properties_ui
54324
+ * bpy_struct.is_property_hidden
54325
+ * bpy_struct.is_property_overridable_library
54326
+ * bpy_struct.is_property_readonly
54327
+ * bpy_struct.is_property_set
54328
+ * bpy_struct.items
54329
+ * bpy_struct.keyframe_delete
54330
+ * bpy_struct.keyframe_insert
54331
+ * bpy_struct.keys
54332
+ * bpy_struct.path_from_id
54333
+ * bpy_struct.path_resolve
54334
+ * bpy_struct.pop
54335
+ * bpy_struct.property_overridable_library_set
54336
+ * bpy_struct.property_unset
54337
+ * bpy_struct.type_recast
54338
+ * bpy_struct.values
54339
+ * FModifier.bl_rna_get_subclass
54340
+ * FModifier.bl_rna_get_subclass_py
54341
+
54342
+ :columns: 2
54343
+
54344
+
54345
+ --------------------
54346
+
54347
+ * bpy_struct.id_data
54348
+ * Node.type
54349
+ * Node.location
54350
+ * Node.width
54351
+ * Node.height
54352
+ * Node.dimensions
54353
+ * Node.name
54354
+ * Node.label
54355
+ * Node.inputs
54356
+ * Node.outputs
54357
+ * Node.internal_links
54358
+ * Node.parent
54359
+ * Node.use_custom_color
54360
+ * Node.color
54361
+ * Node.select
54362
+ * Node.show_options
54363
+ * Node.show_preview
54364
+ * Node.hide
54365
+ * Node.mute
54366
+ * Node.show_texture
54367
+ * Node.bl_idname
54368
+ * Node.bl_label
54369
+ * Node.bl_description
54370
+ * Node.bl_icon
54371
+ * Node.bl_static_type
54372
+ * Node.bl_width_default
54373
+ * Node.bl_width_min
54374
+ * Node.bl_width_max
54375
+ * Node.bl_height_default
54376
+ * Node.bl_height_min
54377
+ * Node.bl_height_max
54378
+
54379
+ :columns: 2
54380
+
54381
+
54382
+ --------------------
54383
+
54384
+ * bpy_struct.as_pointer
54385
+ * bpy_struct.driver_add
54386
+ * bpy_struct.driver_remove
54387
+ * bpy_struct.get
54388
+ * bpy_struct.id_properties_clear
54389
+ * bpy_struct.id_properties_ensure
54390
+ * bpy_struct.id_properties_ui
54391
+ * bpy_struct.is_property_hidden
54392
+ * bpy_struct.is_property_overridable_library
54393
+ * bpy_struct.is_property_readonly
54394
+ * bpy_struct.is_property_set
54395
+ * bpy_struct.items
54396
+ * bpy_struct.keyframe_delete
54397
+ * bpy_struct.keyframe_insert
54398
+ * bpy_struct.keys
54399
+ * bpy_struct.path_from_id
54400
+ * bpy_struct.path_resolve
54401
+ * bpy_struct.pop
54402
+ * bpy_struct.property_overridable_library_set
54403
+ * bpy_struct.property_unset
54404
+ * bpy_struct.type_recast
54405
+ * bpy_struct.values
54406
+ * Node.socket_value_update
54407
+ * Node.is_registered_node_type
54408
+ * Node.poll
54409
+ * Node.poll_instance
54410
+ * Node.update
54411
+ * Node.insert_link
54412
+ * Node.init
54413
+ * Node.copy
54414
+ * Node.free
54415
+ * Node.draw_buttons
54416
+ * Node.draw_buttons_ext
54417
+ * Node.draw_label
54418
+ * Node.poll
54419
+ * Node.bl_rna_get_subclass
54420
+ * Node.bl_rna_get_subclass_py
54421
+ * NodeInternal.poll
54422
+ * NodeInternal.poll_instance
54423
+ * NodeInternal.update
54424
+ * NodeInternal.draw_buttons
54425
+ * NodeInternal.draw_buttons_ext
54426
+ * NodeInternal.bl_rna_get_subclass
54427
+ * NodeInternal.bl_rna_get_subclass_py
54428
+ * CompositorNode.tag_need_exec
54429
+ * CompositorNode.poll
54430
+ * CompositorNode.update
54431
+ * CompositorNode.bl_rna_get_subclass
54432
+ * CompositorNode.bl_rna_get_subclass_py
54433
+
54434
+ :columns: 2
54435
+
54436
+
54437
+ --------------------
54438
+
54439
+ * bpy_struct.id_data
54440
+ * Modifier.name
54441
+ * Modifier.type
54442
+ * Modifier.show_viewport
54443
+ * Modifier.show_render
54444
+ * Modifier.show_in_editmode
54445
+ * Modifier.show_on_cage
54446
+ * Modifier.show_expanded
54447
+ * Modifier.is_active
54448
+ * Modifier.use_pin_to_last
54449
+ * Modifier.is_override_data
54450
+ * Modifier.use_apply_on_spline
54451
+ * Modifier.execution_time
54452
+ * Modifier.persistent_uid
53951
54453
 
53952
54454
  :columns: 2
53953
54455
 
@@ -54994,6 +55496,56 @@ Base class for integrating USD Hydra based renderers.
54994
55496
  :columns: 2
54995
55497
 
54996
55498
 
55499
+ --------------------
55500
+
55501
+ * bpy_struct.id_data
55502
+ * AssetShelf.bl_idname
55503
+ * AssetShelf.bl_space_type
55504
+ * AssetShelf.bl_options
55505
+ * AssetShelf.bl_activate_operator
55506
+ * AssetShelf.bl_default_preview_size
55507
+ * AssetShelf.asset_library_reference
55508
+ * AssetShelf.show_names
55509
+ * AssetShelf.preview_size
55510
+ * AssetShelf.search_filter
55511
+
55512
+ :columns: 2
55513
+
55514
+
55515
+ --------------------
55516
+
55517
+ * bpy_struct.as_pointer
55518
+ * bpy_struct.driver_add
55519
+ * bpy_struct.driver_remove
55520
+ * bpy_struct.get
55521
+ * bpy_struct.id_properties_clear
55522
+ * bpy_struct.id_properties_ensure
55523
+ * bpy_struct.id_properties_ui
55524
+ * bpy_struct.is_property_hidden
55525
+ * bpy_struct.is_property_overridable_library
55526
+ * bpy_struct.is_property_readonly
55527
+ * bpy_struct.is_property_set
55528
+ * bpy_struct.items
55529
+ * bpy_struct.keyframe_delete
55530
+ * bpy_struct.keyframe_insert
55531
+ * bpy_struct.keys
55532
+ * bpy_struct.path_from_id
55533
+ * bpy_struct.path_resolve
55534
+ * bpy_struct.pop
55535
+ * bpy_struct.property_overridable_library_set
55536
+ * bpy_struct.property_unset
55537
+ * bpy_struct.type_recast
55538
+ * bpy_struct.values
55539
+ * AssetShelf.poll
55540
+ * AssetShelf.asset_poll
55541
+ * AssetShelf.get_active_asset
55542
+ * AssetShelf.draw_context_menu
55543
+ * AssetShelf.bl_rna_get_subclass
55544
+ * AssetShelf.bl_rna_get_subclass_py
55545
+
55546
+ :columns: 2
55547
+
55548
+
54997
55549
  --------------------
54998
55550
 
54999
55551
  * bpy_struct.id_data
@@ -57258,7 +57810,9 @@ Base class for integrating USD Hydra based renderers.
57258
57810
 
57259
57811
  * bpy_struct.id_data
57260
57812
  * Paint.brush
57261
- * Paint.tool_slots
57813
+ * Paint.brush_asset_reference
57814
+ * Paint.eraser_brush
57815
+ * Paint.eraser_brush_asset_reference
57262
57816
  * Paint.palette
57263
57817
  * Paint.show_brush
57264
57818
  * Paint.show_brush_on_surface
@@ -62174,10 +62728,19 @@ Shared Enum Types <bpy_types_enum_items/index>
62174
62728
 
62175
62729
  --------------------
62176
62730
 
62177
- * AttributeGroup.active
62178
- * AttributeGroup.active_color
62179
- * AttributeGroup.new
62180
- * AttributeGroup.remove
62731
+ * AttributeGroupCurves.active
62732
+ * AttributeGroupCurves.new
62733
+ * AttributeGroupCurves.remove
62734
+ * AttributeGroupGreasePencil.active
62735
+ * AttributeGroupGreasePencil.new
62736
+ * AttributeGroupGreasePencil.remove
62737
+ * AttributeGroupMesh.active
62738
+ * AttributeGroupMesh.active_color
62739
+ * AttributeGroupMesh.new
62740
+ * AttributeGroupMesh.remove
62741
+ * AttributeGroupPointCloud.active
62742
+ * AttributeGroupPointCloud.new
62743
+ * AttributeGroupPointCloud.remove
62181
62744
  * Curves.attributes
62182
62745
  * Curves.color_attributes
62183
62746
  * GreasePencilv3.attributes
@@ -64647,6 +65210,8 @@ Property types used in class declarations are all in bpy.props
64647
65210
  --------------------
64648
65211
 
64649
65212
  * AssetShelf.get_active_asset
65213
+ * Paint.brush_asset_reference
65214
+ * Paint.eraser_brush_asset_reference
64650
65215
 
64651
65216
  :columns: 2
64652
65217
 
@@ -65300,7 +65865,7 @@ Property types used in class declarations are all in bpy.props
65300
65865
  * BlendDataBrushes.new
65301
65866
  * BlendDataBrushes.remove
65302
65867
  * Paint.brush
65303
- * PaintToolSlot.brush
65868
+ * Paint.eraser_brush
65304
65869
 
65305
65870
  :columns: 2
65306
65871
 
@@ -66897,72 +67462,115 @@ Property types used in class declarations are all in bpy.props
66897
67462
  :columns: 2
66898
67463
 
66899
67464
 
66900
- --------------------
66901
-
66902
- * bpy_struct.id_data
66903
- * NodeSocket.name
66904
- * NodeSocket.label
66905
- * NodeSocket.identifier
66906
- * NodeSocket.description
66907
- * NodeSocket.is_output
66908
- * NodeSocket.hide
66909
- * NodeSocket.enabled
66910
- * NodeSocket.link_limit
66911
- * NodeSocket.is_linked
66912
- * NodeSocket.is_unavailable
66913
- * NodeSocket.is_multi_input
66914
- * NodeSocket.show_expanded
66915
- * NodeSocket.hide_value
66916
- * NodeSocket.node
66917
- * NodeSocket.type
66918
- * NodeSocket.display_shape
66919
- * NodeSocket.bl_idname
66920
- * NodeSocket.bl_label
66921
- * NodeSocket.bl_subtype_label
66922
- * NodeSocket.links
66923
- * NodeSocketStandard.links
66924
-
66925
- :columns: 2
66926
-
66927
-
66928
- --------------------
66929
-
66930
- * bpy_struct.as_pointer
66931
- * bpy_struct.driver_add
66932
- * bpy_struct.driver_remove
66933
- * bpy_struct.get
66934
- * bpy_struct.id_properties_clear
66935
- * bpy_struct.id_properties_ensure
66936
- * bpy_struct.id_properties_ui
66937
- * bpy_struct.is_property_hidden
66938
- * bpy_struct.is_property_overridable_library
66939
- * bpy_struct.is_property_readonly
66940
- * bpy_struct.is_property_set
66941
- * bpy_struct.items
66942
- * bpy_struct.keyframe_delete
66943
- * bpy_struct.keyframe_insert
66944
- * bpy_struct.keys
66945
- * bpy_struct.path_from_id
66946
- * bpy_struct.path_resolve
66947
- * bpy_struct.pop
66948
- * bpy_struct.property_overridable_library_set
66949
- * bpy_struct.property_unset
66950
- * bpy_struct.type_recast
66951
- * bpy_struct.values
66952
- * NodeSocket.draw
66953
- * NodeSocket.draw_color
66954
- * NodeSocket.draw_color_simple
66955
- * NodeSocket.bl_rna_get_subclass
66956
- * NodeSocket.bl_rna_get_subclass_py
66957
- * NodeSocketStandard.draw
66958
- * NodeSocketStandard.draw_color
66959
- * NodeSocketStandard.draw_color_simple
66960
- * NodeSocketStandard.bl_rna_get_subclass
66961
- * NodeSocketStandard.bl_rna_get_subclass_py
66962
-
66963
- :columns: 2
66964
-
66965
-
67465
+ --------------------
67466
+
67467
+ * bpy_struct.id_data
67468
+
67469
+ :columns: 2
67470
+
67471
+
67472
+ --------------------
67473
+
67474
+ * bpy_struct.as_pointer
67475
+ * bpy_struct.driver_add
67476
+ * bpy_struct.driver_remove
67477
+ * bpy_struct.get
67478
+ * bpy_struct.id_properties_clear
67479
+ * bpy_struct.id_properties_ensure
67480
+ * bpy_struct.id_properties_ui
67481
+ * bpy_struct.is_property_hidden
67482
+ * bpy_struct.is_property_overridable_library
67483
+ * bpy_struct.is_property_readonly
67484
+ * bpy_struct.is_property_set
67485
+ * bpy_struct.items
67486
+ * bpy_struct.keyframe_delete
67487
+ * bpy_struct.keyframe_insert
67488
+ * bpy_struct.keys
67489
+ * bpy_struct.path_from_id
67490
+ * bpy_struct.path_resolve
67491
+ * bpy_struct.pop
67492
+ * bpy_struct.property_overridable_library_set
67493
+ * bpy_struct.property_unset
67494
+ * bpy_struct.type_recast
67495
+ * bpy_struct.values
67496
+
67497
+ :columns: 2
67498
+
67499
+
67500
+ --------------------
67501
+
67502
+ * Curves.attributes
67503
+ * Curves.color_attributes
67504
+
67505
+ :columns: 2
67506
+
67507
+
67508
+ --------------------
67509
+
67510
+ * bpy_struct.id_data
67511
+ * NodeSocket.name
67512
+ * NodeSocket.label
67513
+ * NodeSocket.identifier
67514
+ * NodeSocket.description
67515
+ * NodeSocket.is_output
67516
+ * NodeSocket.hide
67517
+ * NodeSocket.enabled
67518
+ * NodeSocket.link_limit
67519
+ * NodeSocket.is_linked
67520
+ * NodeSocket.is_unavailable
67521
+ * NodeSocket.is_multi_input
67522
+ * NodeSocket.show_expanded
67523
+ * NodeSocket.hide_value
67524
+ * NodeSocket.node
67525
+ * NodeSocket.type
67526
+ * NodeSocket.display_shape
67527
+ * NodeSocket.bl_idname
67528
+ * NodeSocket.bl_label
67529
+ * NodeSocket.bl_subtype_label
67530
+ * NodeSocket.links
67531
+ * NodeSocketStandard.links
67532
+
67533
+ :columns: 2
67534
+
67535
+
67536
+ --------------------
67537
+
67538
+ * bpy_struct.as_pointer
67539
+ * bpy_struct.driver_add
67540
+ * bpy_struct.driver_remove
67541
+ * bpy_struct.get
67542
+ * bpy_struct.id_properties_clear
67543
+ * bpy_struct.id_properties_ensure
67544
+ * bpy_struct.id_properties_ui
67545
+ * bpy_struct.is_property_hidden
67546
+ * bpy_struct.is_property_overridable_library
67547
+ * bpy_struct.is_property_readonly
67548
+ * bpy_struct.is_property_set
67549
+ * bpy_struct.items
67550
+ * bpy_struct.keyframe_delete
67551
+ * bpy_struct.keyframe_insert
67552
+ * bpy_struct.keys
67553
+ * bpy_struct.path_from_id
67554
+ * bpy_struct.path_resolve
67555
+ * bpy_struct.pop
67556
+ * bpy_struct.property_overridable_library_set
67557
+ * bpy_struct.property_unset
67558
+ * bpy_struct.type_recast
67559
+ * bpy_struct.values
67560
+ * NodeSocket.draw
67561
+ * NodeSocket.draw_color
67562
+ * NodeSocket.draw_color_simple
67563
+ * NodeSocket.bl_rna_get_subclass
67564
+ * NodeSocket.bl_rna_get_subclass_py
67565
+ * NodeSocketStandard.draw
67566
+ * NodeSocketStandard.draw_color
67567
+ * NodeSocketStandard.draw_color_simple
67568
+ * NodeSocketStandard.bl_rna_get_subclass
67569
+ * NodeSocketStandard.bl_rna_get_subclass_py
67570
+
67571
+ :columns: 2
67572
+
67573
+
66966
67574
  --------------------
66967
67575
 
66968
67576
  * bpy_struct.id_data
@@ -71120,6 +71728,49 @@ Property types used in class declarations are all in bpy.props
71120
71728
  :columns: 2
71121
71729
 
71122
71730
 
71731
+ --------------------
71732
+
71733
+ * bpy_struct.id_data
71734
+
71735
+ :columns: 2
71736
+
71737
+
71738
+ --------------------
71739
+
71740
+ * bpy_struct.as_pointer
71741
+ * bpy_struct.driver_add
71742
+ * bpy_struct.driver_remove
71743
+ * bpy_struct.get
71744
+ * bpy_struct.id_properties_clear
71745
+ * bpy_struct.id_properties_ensure
71746
+ * bpy_struct.id_properties_ui
71747
+ * bpy_struct.is_property_hidden
71748
+ * bpy_struct.is_property_overridable_library
71749
+ * bpy_struct.is_property_readonly
71750
+ * bpy_struct.is_property_set
71751
+ * bpy_struct.items
71752
+ * bpy_struct.keyframe_delete
71753
+ * bpy_struct.keyframe_insert
71754
+ * bpy_struct.keys
71755
+ * bpy_struct.path_from_id
71756
+ * bpy_struct.path_resolve
71757
+ * bpy_struct.pop
71758
+ * bpy_struct.property_overridable_library_set
71759
+ * bpy_struct.property_unset
71760
+ * bpy_struct.type_recast
71761
+ * bpy_struct.values
71762
+
71763
+ :columns: 2
71764
+
71765
+
71766
+ --------------------
71767
+
71768
+ * GreasePencilv3.attributes
71769
+ * GreasePencilv3.color_attributes
71770
+
71771
+ :columns: 2
71772
+
71773
+
71123
71774
  --------------------
71124
71775
 
71125
71776
  * bpy_struct.id_data
@@ -73743,6 +74394,96 @@ Executing the operator will then print all values.
73743
74394
  :columns: 2
73744
74395
 
73745
74396
 
74397
+ --------------------
74398
+
74399
+ * bpy_struct.id_data
74400
+ * Node.type
74401
+ * Node.location
74402
+ * Node.width
74403
+ * Node.height
74404
+ * Node.dimensions
74405
+ * Node.name
74406
+ * Node.label
74407
+ * Node.inputs
74408
+ * Node.outputs
74409
+ * Node.internal_links
74410
+ * Node.parent
74411
+ * Node.use_custom_color
74412
+ * Node.color
74413
+ * Node.select
74414
+ * Node.show_options
74415
+ * Node.show_preview
74416
+ * Node.hide
74417
+ * Node.mute
74418
+ * Node.show_texture
74419
+ * Node.bl_idname
74420
+ * Node.bl_label
74421
+ * Node.bl_description
74422
+ * Node.bl_icon
74423
+ * Node.bl_static_type
74424
+ * Node.bl_width_default
74425
+ * Node.bl_width_min
74426
+ * Node.bl_width_max
74427
+ * Node.bl_height_default
74428
+ * Node.bl_height_min
74429
+ * Node.bl_height_max
74430
+
74431
+ :columns: 2
74432
+
74433
+
74434
+ --------------------
74435
+
74436
+ * bpy_struct.as_pointer
74437
+ * bpy_struct.driver_add
74438
+ * bpy_struct.driver_remove
74439
+ * bpy_struct.get
74440
+ * bpy_struct.id_properties_clear
74441
+ * bpy_struct.id_properties_ensure
74442
+ * bpy_struct.id_properties_ui
74443
+ * bpy_struct.is_property_hidden
74444
+ * bpy_struct.is_property_overridable_library
74445
+ * bpy_struct.is_property_readonly
74446
+ * bpy_struct.is_property_set
74447
+ * bpy_struct.items
74448
+ * bpy_struct.keyframe_delete
74449
+ * bpy_struct.keyframe_insert
74450
+ * bpy_struct.keys
74451
+ * bpy_struct.path_from_id
74452
+ * bpy_struct.path_resolve
74453
+ * bpy_struct.pop
74454
+ * bpy_struct.property_overridable_library_set
74455
+ * bpy_struct.property_unset
74456
+ * bpy_struct.type_recast
74457
+ * bpy_struct.values
74458
+ * Node.socket_value_update
74459
+ * Node.is_registered_node_type
74460
+ * Node.poll
74461
+ * Node.poll_instance
74462
+ * Node.update
74463
+ * Node.insert_link
74464
+ * Node.init
74465
+ * Node.copy
74466
+ * Node.free
74467
+ * Node.draw_buttons
74468
+ * Node.draw_buttons_ext
74469
+ * Node.draw_label
74470
+ * Node.poll
74471
+ * Node.bl_rna_get_subclass
74472
+ * Node.bl_rna_get_subclass_py
74473
+ * NodeInternal.poll
74474
+ * NodeInternal.poll_instance
74475
+ * NodeInternal.update
74476
+ * NodeInternal.draw_buttons
74477
+ * NodeInternal.draw_buttons_ext
74478
+ * NodeInternal.bl_rna_get_subclass
74479
+ * NodeInternal.bl_rna_get_subclass_py
74480
+ * GeometryNode.poll
74481
+ * GeometryNode.bl_rna_get_subclass
74482
+ * GeometryNode.bl_rna_get_subclass_py
74483
+
74484
+ :columns: 2
74485
+
74486
+
73746
74487
  --------------------
73747
74488
 
73748
74489
  * bpy_struct.id_data
@@ -73780,7 +74521,8 @@ Executing the operator will then print all values.
73780
74521
 
73781
74522
  --------------------
73782
74523
 
73783
- * Paint.tool_slots
74524
+ * ImageFormatSettings.view_settings
74525
+ * Scene.view_settings
73784
74526
 
73785
74527
  :columns: 2
73786
74528
 
@@ -73878,159 +74620,26 @@ Executing the operator will then print all values.
73878
74620
  --------------------
73879
74621
 
73880
74622
  * bpy_struct.id_data
73881
-
73882
- :columns: 2
73883
-
73884
-
73885
- --------------------
73886
-
73887
- * bpy_struct.as_pointer
73888
- * bpy_struct.driver_add
73889
- * bpy_struct.driver_remove
73890
- * bpy_struct.get
73891
- * bpy_struct.id_properties_clear
73892
- * bpy_struct.id_properties_ensure
73893
- * bpy_struct.id_properties_ui
73894
- * bpy_struct.is_property_hidden
73895
- * bpy_struct.is_property_overridable_library
73896
- * bpy_struct.is_property_readonly
73897
- * bpy_struct.is_property_set
73898
- * bpy_struct.items
73899
- * bpy_struct.keyframe_delete
73900
- * bpy_struct.keyframe_insert
73901
- * bpy_struct.keys
73902
- * bpy_struct.path_from_id
73903
- * bpy_struct.path_resolve
73904
- * bpy_struct.pop
73905
- * bpy_struct.property_overridable_library_set
73906
- * bpy_struct.property_unset
73907
- * bpy_struct.type_recast
73908
- * bpy_struct.values
73909
-
73910
- :columns: 2
73911
-
73912
-
73913
- --------------------
73914
-
73915
- * ImageFormatSettings.view_settings
73916
- * Scene.view_settings
73917
-
73918
- :columns: 2
73919
-
73920
-
73921
- --------------------
73922
-
73923
- * bpy_struct.id_data
73924
- * Node.type
73925
- * Node.location
73926
- * Node.width
73927
- * Node.height
73928
- * Node.dimensions
73929
- * Node.name
73930
- * Node.label
73931
- * Node.inputs
73932
- * Node.outputs
73933
- * Node.internal_links
73934
- * Node.parent
73935
- * Node.use_custom_color
73936
- * Node.color
73937
- * Node.select
73938
- * Node.show_options
73939
- * Node.show_preview
73940
- * Node.hide
73941
- * Node.mute
73942
- * Node.show_texture
73943
- * Node.bl_idname
73944
- * Node.bl_label
73945
- * Node.bl_description
73946
- * Node.bl_icon
73947
- * Node.bl_static_type
73948
- * Node.bl_width_default
73949
- * Node.bl_width_min
73950
- * Node.bl_width_max
73951
- * Node.bl_height_default
73952
- * Node.bl_height_min
73953
- * Node.bl_height_max
73954
-
73955
- :columns: 2
73956
-
73957
-
73958
- --------------------
73959
-
73960
- * bpy_struct.as_pointer
73961
- * bpy_struct.driver_add
73962
- * bpy_struct.driver_remove
73963
- * bpy_struct.get
73964
- * bpy_struct.id_properties_clear
73965
- * bpy_struct.id_properties_ensure
73966
- * bpy_struct.id_properties_ui
73967
- * bpy_struct.is_property_hidden
73968
- * bpy_struct.is_property_overridable_library
73969
- * bpy_struct.is_property_readonly
73970
- * bpy_struct.is_property_set
73971
- * bpy_struct.items
73972
- * bpy_struct.keyframe_delete
73973
- * bpy_struct.keyframe_insert
73974
- * bpy_struct.keys
73975
- * bpy_struct.path_from_id
73976
- * bpy_struct.path_resolve
73977
- * bpy_struct.pop
73978
- * bpy_struct.property_overridable_library_set
73979
- * bpy_struct.property_unset
73980
- * bpy_struct.type_recast
73981
- * bpy_struct.values
73982
- * Node.socket_value_update
73983
- * Node.is_registered_node_type
73984
- * Node.poll
73985
- * Node.poll_instance
73986
- * Node.update
73987
- * Node.insert_link
73988
- * Node.init
73989
- * Node.copy
73990
- * Node.free
73991
- * Node.draw_buttons
73992
- * Node.draw_buttons_ext
73993
- * Node.draw_label
73994
- * Node.poll
73995
- * Node.bl_rna_get_subclass
73996
- * Node.bl_rna_get_subclass_py
73997
- * NodeInternal.poll
73998
- * NodeInternal.poll_instance
73999
- * NodeInternal.update
74000
- * NodeInternal.draw_buttons
74001
- * NodeInternal.draw_buttons_ext
74002
- * NodeInternal.bl_rna_get_subclass
74003
- * NodeInternal.bl_rna_get_subclass_py
74004
- * GeometryNode.poll
74005
- * GeometryNode.bl_rna_get_subclass
74006
- * GeometryNode.bl_rna_get_subclass_py
74007
-
74008
- :columns: 2
74009
-
74010
-
74011
- --------------------
74012
-
74013
- * bpy_struct.id_data
74014
- * ID.name
74015
- * ID.name_full
74016
- * ID.id_type
74017
- * ID.session_uid
74018
- * ID.is_evaluated
74019
- * ID.original
74020
- * ID.users
74021
- * ID.use_fake_user
74022
- * ID.use_extra_user
74023
- * ID.is_embedded_data
74024
- * ID.is_missing
74025
- * ID.is_runtime_data
74026
- * ID.is_editable
74027
- * ID.tag
74028
- * ID.is_library_indirect
74029
- * ID.library
74030
- * ID.library_weak_reference
74031
- * ID.asset_data
74032
- * ID.override_library
74033
- * ID.preview
74623
+ * ID.name
74624
+ * ID.name_full
74625
+ * ID.id_type
74626
+ * ID.session_uid
74627
+ * ID.is_evaluated
74628
+ * ID.original
74629
+ * ID.users
74630
+ * ID.use_fake_user
74631
+ * ID.use_extra_user
74632
+ * ID.is_embedded_data
74633
+ * ID.is_missing
74634
+ * ID.is_runtime_data
74635
+ * ID.is_editable
74636
+ * ID.tag
74637
+ * ID.is_library_indirect
74638
+ * ID.library
74639
+ * ID.library_weak_reference
74640
+ * ID.asset_data
74641
+ * ID.override_library
74642
+ * ID.preview
74034
74643
 
74035
74644
  :columns: 2
74036
74645
 
@@ -77397,6 +78006,56 @@ Executing the operator will then print all values.
77397
78006
  :columns: 2
77398
78007
 
77399
78008
 
78009
+ --------------------
78010
+
78011
+ * bpy_struct.id_data
78012
+ * AssetShelf.bl_idname
78013
+ * AssetShelf.bl_space_type
78014
+ * AssetShelf.bl_options
78015
+ * AssetShelf.bl_activate_operator
78016
+ * AssetShelf.bl_default_preview_size
78017
+ * AssetShelf.asset_library_reference
78018
+ * AssetShelf.show_names
78019
+ * AssetShelf.preview_size
78020
+ * AssetShelf.search_filter
78021
+
78022
+ :columns: 2
78023
+
78024
+
78025
+ --------------------
78026
+
78027
+ * bpy_struct.as_pointer
78028
+ * bpy_struct.driver_add
78029
+ * bpy_struct.driver_remove
78030
+ * bpy_struct.get
78031
+ * bpy_struct.id_properties_clear
78032
+ * bpy_struct.id_properties_ensure
78033
+ * bpy_struct.id_properties_ui
78034
+ * bpy_struct.is_property_hidden
78035
+ * bpy_struct.is_property_overridable_library
78036
+ * bpy_struct.is_property_readonly
78037
+ * bpy_struct.is_property_set
78038
+ * bpy_struct.items
78039
+ * bpy_struct.keyframe_delete
78040
+ * bpy_struct.keyframe_insert
78041
+ * bpy_struct.keys
78042
+ * bpy_struct.path_from_id
78043
+ * bpy_struct.path_resolve
78044
+ * bpy_struct.pop
78045
+ * bpy_struct.property_overridable_library_set
78046
+ * bpy_struct.property_unset
78047
+ * bpy_struct.type_recast
78048
+ * bpy_struct.values
78049
+ * AssetShelf.poll
78050
+ * AssetShelf.asset_poll
78051
+ * AssetShelf.get_active_asset
78052
+ * AssetShelf.draw_context_menu
78053
+ * AssetShelf.bl_rna_get_subclass
78054
+ * AssetShelf.bl_rna_get_subclass_py
78055
+
78056
+ :columns: 2
78057
+
78058
+
77400
78059
  --------------------
77401
78060
 
77402
78061
  * bpy_struct.id_data
@@ -78159,56 +78818,6 @@ Executing the operator will then print all values.
78159
78818
  :columns: 2
78160
78819
 
78161
78820
 
78162
- --------------------
78163
-
78164
- * bpy_struct.id_data
78165
- * AssetShelf.bl_idname
78166
- * AssetShelf.bl_space_type
78167
- * AssetShelf.bl_options
78168
- * AssetShelf.bl_activate_operator
78169
- * AssetShelf.bl_default_preview_size
78170
- * AssetShelf.asset_library_reference
78171
- * AssetShelf.show_names
78172
- * AssetShelf.preview_size
78173
- * AssetShelf.search_filter
78174
-
78175
- :columns: 2
78176
-
78177
-
78178
- --------------------
78179
-
78180
- * bpy_struct.as_pointer
78181
- * bpy_struct.driver_add
78182
- * bpy_struct.driver_remove
78183
- * bpy_struct.get
78184
- * bpy_struct.id_properties_clear
78185
- * bpy_struct.id_properties_ensure
78186
- * bpy_struct.id_properties_ui
78187
- * bpy_struct.is_property_hidden
78188
- * bpy_struct.is_property_overridable_library
78189
- * bpy_struct.is_property_readonly
78190
- * bpy_struct.is_property_set
78191
- * bpy_struct.items
78192
- * bpy_struct.keyframe_delete
78193
- * bpy_struct.keyframe_insert
78194
- * bpy_struct.keys
78195
- * bpy_struct.path_from_id
78196
- * bpy_struct.path_resolve
78197
- * bpy_struct.pop
78198
- * bpy_struct.property_overridable_library_set
78199
- * bpy_struct.property_unset
78200
- * bpy_struct.type_recast
78201
- * bpy_struct.values
78202
- * AssetShelf.poll
78203
- * AssetShelf.asset_poll
78204
- * AssetShelf.get_active_asset
78205
- * AssetShelf.draw_context_menu
78206
- * AssetShelf.bl_rna_get_subclass
78207
- * AssetShelf.bl_rna_get_subclass_py
78208
-
78209
- :columns: 2
78210
-
78211
-
78212
78821
  --------------------
78213
78822
 
78214
78823
  * bpy_struct.id_data
@@ -78985,6 +79594,49 @@ Executing the operator will then print all values.
78985
79594
  :columns: 2
78986
79595
 
78987
79596
 
79597
+ --------------------
79598
+
79599
+ * PointCloud.attributes
79600
+ * PointCloud.color_attributes
79601
+
79602
+ :columns: 2
79603
+
79604
+
79605
+ --------------------
79606
+
79607
+ * bpy_struct.id_data
79608
+
79609
+ :columns: 2
79610
+
79611
+
79612
+ --------------------
79613
+
79614
+ * bpy_struct.as_pointer
79615
+ * bpy_struct.driver_add
79616
+ * bpy_struct.driver_remove
79617
+ * bpy_struct.get
79618
+ * bpy_struct.id_properties_clear
79619
+ * bpy_struct.id_properties_ensure
79620
+ * bpy_struct.id_properties_ui
79621
+ * bpy_struct.is_property_hidden
79622
+ * bpy_struct.is_property_overridable_library
79623
+ * bpy_struct.is_property_readonly
79624
+ * bpy_struct.is_property_set
79625
+ * bpy_struct.items
79626
+ * bpy_struct.keyframe_delete
79627
+ * bpy_struct.keyframe_insert
79628
+ * bpy_struct.keys
79629
+ * bpy_struct.path_from_id
79630
+ * bpy_struct.path_resolve
79631
+ * bpy_struct.pop
79632
+ * bpy_struct.property_overridable_library_set
79633
+ * bpy_struct.property_unset
79634
+ * bpy_struct.type_recast
79635
+ * bpy_struct.values
79636
+
79637
+ :columns: 2
79638
+
79639
+
78988
79640
  --------------------
78989
79641
 
78990
79642
  * bpy_struct.id_data
@@ -81356,6 +82008,56 @@ Executing the operator will then print all values.
81356
82008
  :columns: 2
81357
82009
 
81358
82010
 
82011
+ --------------------
82012
+
82013
+ * bpy_struct.id_data
82014
+ * AssetShelf.bl_idname
82015
+ * AssetShelf.bl_space_type
82016
+ * AssetShelf.bl_options
82017
+ * AssetShelf.bl_activate_operator
82018
+ * AssetShelf.bl_default_preview_size
82019
+ * AssetShelf.asset_library_reference
82020
+ * AssetShelf.show_names
82021
+ * AssetShelf.preview_size
82022
+ * AssetShelf.search_filter
82023
+
82024
+ :columns: 2
82025
+
82026
+
82027
+ --------------------
82028
+
82029
+ * bpy_struct.as_pointer
82030
+ * bpy_struct.driver_add
82031
+ * bpy_struct.driver_remove
82032
+ * bpy_struct.get
82033
+ * bpy_struct.id_properties_clear
82034
+ * bpy_struct.id_properties_ensure
82035
+ * bpy_struct.id_properties_ui
82036
+ * bpy_struct.is_property_hidden
82037
+ * bpy_struct.is_property_overridable_library
82038
+ * bpy_struct.is_property_readonly
82039
+ * bpy_struct.is_property_set
82040
+ * bpy_struct.items
82041
+ * bpy_struct.keyframe_delete
82042
+ * bpy_struct.keyframe_insert
82043
+ * bpy_struct.keys
82044
+ * bpy_struct.path_from_id
82045
+ * bpy_struct.path_resolve
82046
+ * bpy_struct.pop
82047
+ * bpy_struct.property_overridable_library_set
82048
+ * bpy_struct.property_unset
82049
+ * bpy_struct.type_recast
82050
+ * bpy_struct.values
82051
+ * AssetShelf.poll
82052
+ * AssetShelf.asset_poll
82053
+ * AssetShelf.get_active_asset
82054
+ * AssetShelf.draw_context_menu
82055
+ * AssetShelf.bl_rna_get_subclass
82056
+ * AssetShelf.bl_rna_get_subclass_py
82057
+
82058
+ :columns: 2
82059
+
82060
+
81359
82061
  --------------------
81360
82062
 
81361
82063
  * bpy_struct.id_data
@@ -81993,7 +82695,9 @@ Executing the operator will then print all values.
81993
82695
 
81994
82696
  * bpy_struct.id_data
81995
82697
  * Paint.brush
81996
- * Paint.tool_slots
82698
+ * Paint.brush_asset_reference
82699
+ * Paint.eraser_brush
82700
+ * Paint.eraser_brush_asset_reference
81997
82701
  * Paint.palette
81998
82702
  * Paint.show_brush
81999
82703
  * Paint.show_brush_on_surface
@@ -90178,7 +90882,9 @@ database.
90178
90882
 
90179
90883
  * bpy_struct.id_data
90180
90884
  * Paint.brush
90181
- * Paint.tool_slots
90885
+ * Paint.brush_asset_reference
90886
+ * Paint.eraser_brush
90887
+ * Paint.eraser_brush_asset_reference
90182
90888
  * Paint.palette
90183
90889
  * Paint.show_brush
90184
90890
  * Paint.show_brush_on_surface
@@ -96878,6 +97584,56 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
96878
97584
  :columns: 2
96879
97585
 
96880
97586
 
97587
+ --------------------
97588
+
97589
+ * bpy_struct.id_data
97590
+ * AssetShelf.bl_idname
97591
+ * AssetShelf.bl_space_type
97592
+ * AssetShelf.bl_options
97593
+ * AssetShelf.bl_activate_operator
97594
+ * AssetShelf.bl_default_preview_size
97595
+ * AssetShelf.asset_library_reference
97596
+ * AssetShelf.show_names
97597
+ * AssetShelf.preview_size
97598
+ * AssetShelf.search_filter
97599
+
97600
+ :columns: 2
97601
+
97602
+
97603
+ --------------------
97604
+
97605
+ * bpy_struct.as_pointer
97606
+ * bpy_struct.driver_add
97607
+ * bpy_struct.driver_remove
97608
+ * bpy_struct.get
97609
+ * bpy_struct.id_properties_clear
97610
+ * bpy_struct.id_properties_ensure
97611
+ * bpy_struct.id_properties_ui
97612
+ * bpy_struct.is_property_hidden
97613
+ * bpy_struct.is_property_overridable_library
97614
+ * bpy_struct.is_property_readonly
97615
+ * bpy_struct.is_property_set
97616
+ * bpy_struct.items
97617
+ * bpy_struct.keyframe_delete
97618
+ * bpy_struct.keyframe_insert
97619
+ * bpy_struct.keys
97620
+ * bpy_struct.path_from_id
97621
+ * bpy_struct.path_resolve
97622
+ * bpy_struct.pop
97623
+ * bpy_struct.property_overridable_library_set
97624
+ * bpy_struct.property_unset
97625
+ * bpy_struct.type_recast
97626
+ * bpy_struct.values
97627
+ * AssetShelf.poll
97628
+ * AssetShelf.asset_poll
97629
+ * AssetShelf.get_active_asset
97630
+ * AssetShelf.draw_context_menu
97631
+ * AssetShelf.bl_rna_get_subclass
97632
+ * AssetShelf.bl_rna_get_subclass_py
97633
+
97634
+ :columns: 2
97635
+
97636
+
96881
97637
  --------------------
96882
97638
 
96883
97639
  * bpy_struct.id_data
@@ -98877,6 +99633,7 @@ import collections.abc
98877
99633
  import typing_extensions
98878
99634
  import bl_operators.anim
98879
99635
  import bl_operators.assets
99636
+ import bl_operators.bone_selection_sets
98880
99637
  import bl_operators.clip
98881
99638
  import bl_operators.connect_to_output
98882
99639
  import bl_operators.constraint
@@ -100315,7 +101072,7 @@ class AssetTags(bpy_prop_collection[AssetTag], bpy_struct):
100315
101072
  """
100316
101073
  ...
100317
101074
 
100318
- class AttributeGroup(bpy_prop_collection[Attribute], bpy_struct):
101075
+ class AttributeGroupCurves(bpy_prop_collection[Attribute], bpy_struct):
100319
101076
  """Group of geometry attributes"""
100320
101077
 
100321
101078
  active: Attribute | None
@@ -100324,42 +101081,12 @@ class AttributeGroup(bpy_prop_collection[Attribute], bpy_struct):
100324
101081
  :type: Attribute | None
100325
101082
  """
100326
101083
 
100327
- active_color: Attribute | None
100328
- """ Active color attribute for display and editing
100329
-
100330
- :type: Attribute | None
100331
- """
100332
-
100333
- active_color_index: int | None
100334
- """ Active color attribute index
100335
-
100336
- :type: int | None
100337
- """
100338
-
100339
- active_color_name: str | None
100340
- """ The name of the active color attribute for display and editing
100341
-
100342
- :type: str | None
100343
- """
100344
-
100345
101084
  active_index: int | None
100346
101085
  """ Active attribute index
100347
101086
 
100348
101087
  :type: int | None
100349
101088
  """
100350
101089
 
100351
- default_color_name: str
100352
- """ The name of the default color attribute used as a fallback for rendering
100353
-
100354
- :type: str
100355
- """
100356
-
100357
- render_color_index: int
100358
- """ The index of the color attribute used as a fallback for rendering
100359
-
100360
- :type: int
100361
- """
100362
-
100363
101090
  def new(self, name: str, type: str | None, domain: str | None) -> Attribute:
100364
101091
  """Add attribute to geometry
100365
101092
 
@@ -100406,109 +101133,322 @@ class AttributeGroup(bpy_prop_collection[Attribute], bpy_struct):
100406
101133
  """
100407
101134
  ...
100408
101135
 
100409
- class BlendDataActions(bpy_prop_collection[Action], bpy_struct):
100410
- """Collection of actions"""
100411
-
100412
- def new(self, name: str) -> Action:
100413
- """Add a new action to the main database
100414
-
100415
- :param name: New name for the data-block
100416
- :type name: str
100417
- :return: New action data-block
100418
- :rtype: Action
100419
- """
100420
- ...
100421
-
100422
- def remove(
100423
- self,
100424
- action: Action,
100425
- do_unlink: bool | None = True,
100426
- do_id_user: bool | None = True,
100427
- do_ui_user: bool | None = True,
100428
- ):
100429
- """Remove an action from the current blendfile
100430
-
100431
- :param action: Action to remove
100432
- :type action: Action
100433
- :param do_unlink: Unlink all usages of this action before deleting it
100434
- :type do_unlink: bool | None
100435
- :param do_id_user: Decrement user counter of all datablocks used by this action
100436
- :type do_id_user: bool | None
100437
- :param do_ui_user: Make sure interface does not reference this action
100438
- :type do_ui_user: bool | None
100439
- """
100440
- ...
100441
-
100442
- def tag(self, value: bool | None):
100443
- """tag
100444
-
100445
- :param value: Value
100446
- :type value: bool | None
100447
- """
100448
- ...
100449
-
100450
- @classmethod
100451
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
100452
- """
101136
+ class AttributeGroupGreasePencil(bpy_prop_collection[Attribute], bpy_struct):
101137
+ """Group of geometry attributes"""
100453
101138
 
100454
- :param id: The RNA type identifier.
100455
- :type id: str | None
100456
- :param default:
100457
- :return: The RNA type or default when not found.
100458
- :rtype: Struct
100459
- """
100460
- ...
101139
+ active: Attribute | None
101140
+ """ Active attribute
100461
101141
 
100462
- @classmethod
100463
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
100464
- """
101142
+ :type: Attribute | None
101143
+ """
100465
101144
 
100466
- :param id: The RNA type identifier.
100467
- :type id: str | None
100468
- :param default:
100469
- :return: The class or default when not found.
100470
- :rtype: typing.Any
100471
- """
100472
- ...
101145
+ active_index: int | None
101146
+ """ Active attribute index
100473
101147
 
100474
- class BlendDataArmatures(bpy_prop_collection[Armature], bpy_struct):
100475
- """Collection of armatures"""
101148
+ :type: int | None
101149
+ """
100476
101150
 
100477
- def new(self, name: str) -> Armature:
100478
- """Add a new armature to the main database
101151
+ def new(self, name: str, type: str | None, domain: str | None) -> Attribute:
101152
+ """Add attribute to geometry
100479
101153
 
100480
- :param name: New name for the data-block
101154
+ :param name: Name, Name of geometry attribute
100481
101155
  :type name: str
100482
- :return: New armature data-block
100483
- :rtype: Armature
100484
- """
100485
- ...
100486
-
100487
- def remove(
100488
- self,
100489
- armature: Armature,
100490
- do_unlink: bool | None = True,
100491
- do_id_user: bool | None = True,
100492
- do_ui_user: bool | None = True,
100493
- ):
100494
- """Remove an armature from the current blendfile
100495
-
100496
- :param armature: Armature to remove
100497
- :type armature: Armature
100498
- :param do_unlink: Unlink all usages of this armature before deleting it (WARNING: will also delete objects instancing that armature data)
100499
- :type do_unlink: bool | None
100500
- :param do_id_user: Decrement user counter of all datablocks used by this armature data
100501
- :type do_id_user: bool | None
100502
- :param do_ui_user: Make sure interface does not reference this armature data
100503
- :type do_ui_user: bool | None
101156
+ :param type: Type, Attribute type
101157
+ :type type: str | None
101158
+ :param domain: Domain, Type of element that attribute is stored on
101159
+ :type domain: str | None
101160
+ :return: New geometry attribute
101161
+ :rtype: Attribute
100504
101162
  """
100505
101163
  ...
100506
101164
 
100507
- def tag(self, value: bool | None):
100508
- """tag
101165
+ def remove(self, attribute: Attribute):
101166
+ """Remove attribute from geometry
100509
101167
 
100510
- :param value: Value
100511
- :type value: bool | None
101168
+ :param attribute: Geometry Attribute
101169
+ :type attribute: Attribute
101170
+ """
101171
+ ...
101172
+
101173
+ @classmethod
101174
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
101175
+ """
101176
+
101177
+ :param id: The RNA type identifier.
101178
+ :type id: str | None
101179
+ :param default:
101180
+ :return: The RNA type or default when not found.
101181
+ :rtype: Struct
101182
+ """
101183
+ ...
101184
+
101185
+ @classmethod
101186
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
101187
+ """
101188
+
101189
+ :param id: The RNA type identifier.
101190
+ :type id: str | None
101191
+ :param default:
101192
+ :return: The class or default when not found.
101193
+ :rtype: typing.Any
101194
+ """
101195
+ ...
101196
+
101197
+ class AttributeGroupMesh(bpy_prop_collection[Attribute], bpy_struct):
101198
+ """Group of geometry attributes"""
101199
+
101200
+ active: Attribute | None
101201
+ """ Active attribute
101202
+
101203
+ :type: Attribute | None
101204
+ """
101205
+
101206
+ active_color: Attribute | None
101207
+ """ Active color attribute for display and editing
101208
+
101209
+ :type: Attribute | None
101210
+ """
101211
+
101212
+ active_color_index: int | None
101213
+ """ Active color attribute index
101214
+
101215
+ :type: int | None
101216
+ """
101217
+
101218
+ active_color_name: str | None
101219
+ """ The name of the active color attribute for display and editing
101220
+
101221
+ :type: str | None
101222
+ """
101223
+
101224
+ active_index: int | None
101225
+ """ Active attribute index
101226
+
101227
+ :type: int | None
101228
+ """
101229
+
101230
+ default_color_name: str
101231
+ """ The name of the default color attribute used as a fallback for rendering
101232
+
101233
+ :type: str
101234
+ """
101235
+
101236
+ render_color_index: int
101237
+ """ The index of the color attribute used as a fallback for rendering
101238
+
101239
+ :type: int
101240
+ """
101241
+
101242
+ def new(self, name: str, type: str | None, domain: str | None) -> Attribute:
101243
+ """Add attribute to geometry
101244
+
101245
+ :param name: Name, Name of geometry attribute
101246
+ :type name: str
101247
+ :param type: Type, Attribute type
101248
+ :type type: str | None
101249
+ :param domain: Domain, Type of element that attribute is stored on
101250
+ :type domain: str | None
101251
+ :return: New geometry attribute
101252
+ :rtype: Attribute
101253
+ """
101254
+ ...
101255
+
101256
+ def remove(self, attribute: Attribute):
101257
+ """Remove attribute from geometry
101258
+
101259
+ :param attribute: Geometry Attribute
101260
+ :type attribute: Attribute
101261
+ """
101262
+ ...
101263
+
101264
+ @classmethod
101265
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
101266
+ """
101267
+
101268
+ :param id: The RNA type identifier.
101269
+ :type id: str | None
101270
+ :param default:
101271
+ :return: The RNA type or default when not found.
101272
+ :rtype: Struct
101273
+ """
101274
+ ...
101275
+
101276
+ @classmethod
101277
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
101278
+ """
101279
+
101280
+ :param id: The RNA type identifier.
101281
+ :type id: str | None
101282
+ :param default:
101283
+ :return: The class or default when not found.
101284
+ :rtype: typing.Any
101285
+ """
101286
+ ...
101287
+
101288
+ class AttributeGroupPointCloud(bpy_prop_collection[Attribute], bpy_struct):
101289
+ """Group of geometry attributes"""
101290
+
101291
+ active: Attribute | None
101292
+ """ Active attribute
101293
+
101294
+ :type: Attribute | None
101295
+ """
101296
+
101297
+ active_index: int | None
101298
+ """ Active attribute index
101299
+
101300
+ :type: int | None
101301
+ """
101302
+
101303
+ def new(self, name: str, type: str | None, domain: str | None) -> Attribute:
101304
+ """Add attribute to geometry
101305
+
101306
+ :param name: Name, Name of geometry attribute
101307
+ :type name: str
101308
+ :param type: Type, Attribute type
101309
+ :type type: str | None
101310
+ :param domain: Domain, Type of element that attribute is stored on
101311
+ :type domain: str | None
101312
+ :return: New geometry attribute
101313
+ :rtype: Attribute
101314
+ """
101315
+ ...
101316
+
101317
+ def remove(self, attribute: Attribute):
101318
+ """Remove attribute from geometry
101319
+
101320
+ :param attribute: Geometry Attribute
101321
+ :type attribute: Attribute
101322
+ """
101323
+ ...
101324
+
101325
+ @classmethod
101326
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
101327
+ """
101328
+
101329
+ :param id: The RNA type identifier.
101330
+ :type id: str | None
101331
+ :param default:
101332
+ :return: The RNA type or default when not found.
101333
+ :rtype: Struct
101334
+ """
101335
+ ...
101336
+
101337
+ @classmethod
101338
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
101339
+ """
101340
+
101341
+ :param id: The RNA type identifier.
101342
+ :type id: str | None
101343
+ :param default:
101344
+ :return: The class or default when not found.
101345
+ :rtype: typing.Any
101346
+ """
101347
+ ...
101348
+
101349
+ class BlendDataActions(bpy_prop_collection[Action], bpy_struct):
101350
+ """Collection of actions"""
101351
+
101352
+ def new(self, name: str) -> Action:
101353
+ """Add a new action to the main database
101354
+
101355
+ :param name: New name for the data-block
101356
+ :type name: str
101357
+ :return: New action data-block
101358
+ :rtype: Action
101359
+ """
101360
+ ...
101361
+
101362
+ def remove(
101363
+ self,
101364
+ action: Action,
101365
+ do_unlink: bool | None = True,
101366
+ do_id_user: bool | None = True,
101367
+ do_ui_user: bool | None = True,
101368
+ ):
101369
+ """Remove an action from the current blendfile
101370
+
101371
+ :param action: Action to remove
101372
+ :type action: Action
101373
+ :param do_unlink: Unlink all usages of this action before deleting it
101374
+ :type do_unlink: bool | None
101375
+ :param do_id_user: Decrement user counter of all datablocks used by this action
101376
+ :type do_id_user: bool | None
101377
+ :param do_ui_user: Make sure interface does not reference this action
101378
+ :type do_ui_user: bool | None
101379
+ """
101380
+ ...
101381
+
101382
+ def tag(self, value: bool | None):
101383
+ """tag
101384
+
101385
+ :param value: Value
101386
+ :type value: bool | None
101387
+ """
101388
+ ...
101389
+
101390
+ @classmethod
101391
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
101392
+ """
101393
+
101394
+ :param id: The RNA type identifier.
101395
+ :type id: str | None
101396
+ :param default:
101397
+ :return: The RNA type or default when not found.
101398
+ :rtype: Struct
101399
+ """
101400
+ ...
101401
+
101402
+ @classmethod
101403
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
101404
+ """
101405
+
101406
+ :param id: The RNA type identifier.
101407
+ :type id: str | None
101408
+ :param default:
101409
+ :return: The class or default when not found.
101410
+ :rtype: typing.Any
101411
+ """
101412
+ ...
101413
+
101414
+ class BlendDataArmatures(bpy_prop_collection[Armature], bpy_struct):
101415
+ """Collection of armatures"""
101416
+
101417
+ def new(self, name: str) -> Armature:
101418
+ """Add a new armature to the main database
101419
+
101420
+ :param name: New name for the data-block
101421
+ :type name: str
101422
+ :return: New armature data-block
101423
+ :rtype: Armature
101424
+ """
101425
+ ...
101426
+
101427
+ def remove(
101428
+ self,
101429
+ armature: Armature,
101430
+ do_unlink: bool | None = True,
101431
+ do_id_user: bool | None = True,
101432
+ do_ui_user: bool | None = True,
101433
+ ):
101434
+ """Remove an armature from the current blendfile
101435
+
101436
+ :param armature: Armature to remove
101437
+ :type armature: Armature
101438
+ :param do_unlink: Unlink all usages of this armature before deleting it (WARNING: will also delete objects instancing that armature data)
101439
+ :type do_unlink: bool | None
101440
+ :param do_id_user: Decrement user counter of all datablocks used by this armature data
101441
+ :type do_id_user: bool | None
101442
+ :param do_ui_user: Make sure interface does not reference this armature data
101443
+ :type do_ui_user: bool | None
101444
+ """
101445
+ ...
101446
+
101447
+ def tag(self, value: bool | None):
101448
+ """tag
101449
+
101450
+ :param value: Value
101451
+ :type value: bool | None
100512
101452
  """
100513
101453
  ...
100514
101454
 
@@ -116222,30 +117162,6 @@ class BrushGpencilSettings(bpy_struct):
116222
117162
  :type: float
116223
117163
  """
116224
117164
 
116225
- gpencil_paint_icon: str
116226
- """
116227
-
116228
- :type: str
116229
- """
116230
-
116231
- gpencil_sculpt_icon: str
116232
- """
116233
-
116234
- :type: str
116235
- """
116236
-
116237
- gpencil_vertex_icon: str
116238
- """
116239
-
116240
- :type: str
116241
- """
116242
-
116243
- gpencil_weight_icon: str
116244
- """
116245
-
116246
- :type: str
116247
- """
116248
-
116249
117165
  hardness: float
116250
117166
  """ Gradient from the center of Dot and Box strokes (set to 1 for a solid stroke)
116251
117167
 
@@ -116390,12 +117306,6 @@ class BrushGpencilSettings(bpy_struct):
116390
117306
  :type: bool
116391
117307
  """
116392
117308
 
116393
- use_default_eraser: bool
116394
- """ Use this brush when enable eraser with fast switch key
116395
-
116396
- :type: bool
116397
- """
116398
-
116399
117309
  use_edit_position: bool
116400
117310
  """ The brush affects the position of the point
116401
117311
 
@@ -130347,16 +131257,16 @@ class Curves(ID, bpy_struct):
130347
131257
  :type: AnimData
130348
131258
  """
130349
131259
 
130350
- attributes: AttributeGroup
131260
+ attributes: AttributeGroupCurves
130351
131261
  """ Geometry attributes
130352
131262
 
130353
- :type: AttributeGroup
131263
+ :type: AttributeGroupCurves
130354
131264
  """
130355
131265
 
130356
- color_attributes: AttributeGroup
131266
+ color_attributes: AttributeGroupCurves
130357
131267
  """ Geometry color attributes
130358
131268
 
130359
- :type: AttributeGroup
131269
+ :type: AttributeGroupCurves
130360
131270
  """
130361
131271
 
130362
131272
  curve_offset_data: bpy_prop_collection[IntAttributeValue]
@@ -135298,12 +136208,6 @@ class FileAssetSelectIDFilter(bpy_struct):
135298
136208
  :type: bool
135299
136209
  """
135300
136210
 
135301
- experimental_filter_brush: bool
135302
- """ Show Brushes data-blocks
135303
-
135304
- :type: bool
135305
- """
135306
-
135307
136211
  experimental_filter_cachefile: bool
135308
136212
  """ Show Cache File data-blocks
135309
136213
 
@@ -135466,6 +136370,12 @@ class FileAssetSelectIDFilter(bpy_struct):
135466
136370
  :type: bool
135467
136371
  """
135468
136372
 
136373
+ filter_brush: bool
136374
+ """ Show Brushes data-blocks
136375
+
136376
+ :type: bool
136377
+ """
136378
+
135469
136379
  filter_group: bool
135470
136380
  """ Show Collection data-blocks
135471
136381
 
@@ -146268,8 +147178,8 @@ class GeometryNodeImageTexture(GeometryNode, NodeInternal, Node, bpy_struct):
146268
147178
  """
146269
147179
  ...
146270
147180
 
146271
- class GeometryNodeImportSTL(GeometryNode, NodeInternal, Node, bpy_struct):
146272
- """Import a mesh from an STL file"""
147181
+ class GeometryNodeImportOBJ(GeometryNode, NodeInternal, Node, bpy_struct):
147182
+ """Import geometry from an OBJ file"""
146273
147183
 
146274
147184
  @classmethod
146275
147185
  def is_registered_node_type(cls) -> bool:
@@ -146326,8 +147236,8 @@ class GeometryNodeImportSTL(GeometryNode, NodeInternal, Node, bpy_struct):
146326
147236
  """
146327
147237
  ...
146328
147238
 
146329
- class GeometryNodeIndexOfNearest(GeometryNode, NodeInternal, Node, bpy_struct):
146330
- """Find the nearest element in a group. Similar to the "Sample Nearest" node"""
147239
+ class GeometryNodeImportSTL(GeometryNode, NodeInternal, Node, bpy_struct):
147240
+ """Import a mesh from an STL file"""
146331
147241
 
146332
147242
  @classmethod
146333
147243
  def is_registered_node_type(cls) -> bool:
@@ -146384,20 +147294,8 @@ class GeometryNodeIndexOfNearest(GeometryNode, NodeInternal, Node, bpy_struct):
146384
147294
  """
146385
147295
  ...
146386
147296
 
146387
- class GeometryNodeIndexSwitch(GeometryNode, NodeInternal, Node, bpy_struct):
146388
- """Choose between an arbitrary number of values with an index"""
146389
-
146390
- data_type: str
146391
- """
146392
-
146393
- :type: str
146394
- """
146395
-
146396
- index_switch_items: NodeIndexSwitchItems
146397
- """
146398
-
146399
- :type: NodeIndexSwitchItems
146400
- """
147297
+ class GeometryNodeIndexOfNearest(GeometryNode, NodeInternal, Node, bpy_struct):
147298
+ """Find the nearest element in a group. Similar to the "Sample Nearest" node"""
146401
147299
 
146402
147300
  @classmethod
146403
147301
  def is_registered_node_type(cls) -> bool:
@@ -146454,68 +147352,20 @@ class GeometryNodeIndexSwitch(GeometryNode, NodeInternal, Node, bpy_struct):
146454
147352
  """
146455
147353
  ...
146456
147354
 
146457
- class GeometryNodeInputActiveCamera(GeometryNode, NodeInternal, Node, bpy_struct):
146458
- """Retrieve the scene's active camera"""
146459
-
146460
- @classmethod
146461
- def is_registered_node_type(cls) -> bool:
146462
- """True if a registered node type
146463
-
146464
- :return: Result
146465
- :rtype: bool
146466
- """
146467
- ...
146468
-
146469
- @classmethod
146470
- def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
146471
- """Input socket template
146472
-
146473
- :param index: Index
146474
- :type index: int | None
146475
- :return: result
146476
- :rtype: NodeInternalSocketTemplate
146477
- """
146478
- ...
146479
-
146480
- @classmethod
146481
- def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
146482
- """Output socket template
146483
-
146484
- :param index: Index
146485
- :type index: int | None
146486
- :return: result
146487
- :rtype: NodeInternalSocketTemplate
146488
- """
146489
- ...
146490
-
146491
- @classmethod
146492
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
146493
- """
147355
+ class GeometryNodeIndexSwitch(GeometryNode, NodeInternal, Node, bpy_struct):
147356
+ """Choose between an arbitrary number of values with an index"""
146494
147357
 
146495
- :param id: The RNA type identifier.
146496
- :type id: str | None
146497
- :param default:
146498
- :return: The RNA type or default when not found.
146499
- :rtype: Struct
146500
- """
146501
- ...
147358
+ data_type: str
147359
+ """
146502
147360
 
146503
- @classmethod
146504
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
146505
- """
147361
+ :type: str
147362
+ """
146506
147363
 
146507
- :param id: The RNA type identifier.
146508
- :type id: str | None
146509
- :param default:
146510
- :return: The class or default when not found.
146511
- :rtype: typing.Any
146512
- """
146513
- ...
147364
+ index_switch_items: NodeIndexSwitchItems
147365
+ """
146514
147366
 
146515
- class GeometryNodeInputCurveHandlePositions(
146516
- GeometryNode, NodeInternal, Node, bpy_struct
146517
- ):
146518
- """Retrieve the position of each Bézier control point's handles"""
147367
+ :type: NodeIndexSwitchItems
147368
+ """
146519
147369
 
146520
147370
  @classmethod
146521
147371
  def is_registered_node_type(cls) -> bool:
@@ -146572,8 +147422,8 @@ class GeometryNodeInputCurveHandlePositions(
146572
147422
  """
146573
147423
  ...
146574
147424
 
146575
- class GeometryNodeInputCurveTilt(GeometryNode, NodeInternal, Node, bpy_struct):
146576
- """Retrieve the angle at each control point used to twist the curve's normal around its tangent"""
147425
+ class GeometryNodeInputActiveCamera(GeometryNode, NodeInternal, Node, bpy_struct):
147426
+ """Retrieve the scene's active camera"""
146577
147427
 
146578
147428
  @classmethod
146579
147429
  def is_registered_node_type(cls) -> bool:
@@ -146630,8 +147480,10 @@ class GeometryNodeInputCurveTilt(GeometryNode, NodeInternal, Node, bpy_struct):
146630
147480
  """
146631
147481
  ...
146632
147482
 
146633
- class GeometryNodeInputEdgeSmooth(GeometryNode, NodeInternal, Node, bpy_struct):
146634
- """Retrieve whether each edge is marked for smooth or split normals"""
147483
+ class GeometryNodeInputCurveHandlePositions(
147484
+ GeometryNode, NodeInternal, Node, bpy_struct
147485
+ ):
147486
+ """Retrieve the position of each Bézier control point's handles"""
146635
147487
 
146636
147488
  @classmethod
146637
147489
  def is_registered_node_type(cls) -> bool:
@@ -146688,8 +147540,8 @@ class GeometryNodeInputEdgeSmooth(GeometryNode, NodeInternal, Node, bpy_struct):
146688
147540
  """
146689
147541
  ...
146690
147542
 
146691
- class GeometryNodeInputID(GeometryNode, NodeInternal, Node, bpy_struct):
146692
- """Retrieve a stable random identifier value from the "id" attribute on the point domain, or the index if the attribute does not exist"""
147543
+ class GeometryNodeInputCurveTilt(GeometryNode, NodeInternal, Node, bpy_struct):
147544
+ """Retrieve the angle at each control point used to twist the curve's normal around its tangent"""
146693
147545
 
146694
147546
  @classmethod
146695
147547
  def is_registered_node_type(cls) -> bool:
@@ -146746,14 +147598,8 @@ class GeometryNodeInputID(GeometryNode, NodeInternal, Node, bpy_struct):
146746
147598
  """
146747
147599
  ...
146748
147600
 
146749
- class GeometryNodeInputImage(GeometryNode, NodeInternal, Node, bpy_struct):
146750
- """Input image"""
146751
-
146752
- image: Image | None
146753
- """
146754
-
146755
- :type: Image | None
146756
- """
147601
+ class GeometryNodeInputEdgeSmooth(GeometryNode, NodeInternal, Node, bpy_struct):
147602
+ """Retrieve whether each edge is marked for smooth or split normals"""
146757
147603
 
146758
147604
  @classmethod
146759
147605
  def is_registered_node_type(cls) -> bool:
@@ -146810,8 +147656,8 @@ class GeometryNodeInputImage(GeometryNode, NodeInternal, Node, bpy_struct):
146810
147656
  """
146811
147657
  ...
146812
147658
 
146813
- class GeometryNodeInputIndex(GeometryNode, NodeInternal, Node, bpy_struct):
146814
- """Retrieve an integer value indicating the position of each element in the list, starting at zero"""
147659
+ class GeometryNodeInputID(GeometryNode, NodeInternal, Node, bpy_struct):
147660
+ """Retrieve a stable random identifier value from the "id" attribute on the point domain, or the index if the attribute does not exist"""
146815
147661
 
146816
147662
  @classmethod
146817
147663
  def is_registered_node_type(cls) -> bool:
@@ -146868,66 +147714,14 @@ class GeometryNodeInputIndex(GeometryNode, NodeInternal, Node, bpy_struct):
146868
147714
  """
146869
147715
  ...
146870
147716
 
146871
- class GeometryNodeInputInstanceRotation(GeometryNode, NodeInternal, Node, bpy_struct):
146872
- """Retrieve the rotation of each instance in the geometry"""
146873
-
146874
- @classmethod
146875
- def is_registered_node_type(cls) -> bool:
146876
- """True if a registered node type
146877
-
146878
- :return: Result
146879
- :rtype: bool
146880
- """
146881
- ...
146882
-
146883
- @classmethod
146884
- def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
146885
- """Input socket template
146886
-
146887
- :param index: Index
146888
- :type index: int | None
146889
- :return: result
146890
- :rtype: NodeInternalSocketTemplate
146891
- """
146892
- ...
146893
-
146894
- @classmethod
146895
- def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
146896
- """Output socket template
146897
-
146898
- :param index: Index
146899
- :type index: int | None
146900
- :return: result
146901
- :rtype: NodeInternalSocketTemplate
146902
- """
146903
- ...
146904
-
146905
- @classmethod
146906
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
146907
- """
146908
-
146909
- :param id: The RNA type identifier.
146910
- :type id: str | None
146911
- :param default:
146912
- :return: The RNA type or default when not found.
146913
- :rtype: Struct
146914
- """
146915
- ...
146916
-
146917
- @classmethod
146918
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
146919
- """
147717
+ class GeometryNodeInputImage(GeometryNode, NodeInternal, Node, bpy_struct):
147718
+ """Input image"""
146920
147719
 
146921
- :param id: The RNA type identifier.
146922
- :type id: str | None
146923
- :param default:
146924
- :return: The class or default when not found.
146925
- :rtype: typing.Any
146926
- """
146927
- ...
147720
+ image: Image | None
147721
+ """
146928
147722
 
146929
- class GeometryNodeInputInstanceScale(GeometryNode, NodeInternal, Node, bpy_struct):
146930
- """Retrieve the scale of each instance in the geometry"""
147723
+ :type: Image | None
147724
+ """
146931
147725
 
146932
147726
  @classmethod
146933
147727
  def is_registered_node_type(cls) -> bool:
@@ -146984,14 +147778,8 @@ class GeometryNodeInputInstanceScale(GeometryNode, NodeInternal, Node, bpy_struc
146984
147778
  """
146985
147779
  ...
146986
147780
 
146987
- class GeometryNodeInputMaterial(GeometryNode, NodeInternal, Node, bpy_struct):
146988
- """Output a single material"""
146989
-
146990
- material: Material | None
146991
- """
146992
-
146993
- :type: Material | None
146994
- """
147781
+ class GeometryNodeInputIndex(GeometryNode, NodeInternal, Node, bpy_struct):
147782
+ """Retrieve an integer value indicating the position of each element in the list, starting at zero"""
146995
147783
 
146996
147784
  @classmethod
146997
147785
  def is_registered_node_type(cls) -> bool:
@@ -147048,8 +147836,8 @@ class GeometryNodeInputMaterial(GeometryNode, NodeInternal, Node, bpy_struct):
147048
147836
  """
147049
147837
  ...
147050
147838
 
147051
- class GeometryNodeInputMaterialIndex(GeometryNode, NodeInternal, Node, bpy_struct):
147052
- """Retrieve the index of the material used for each element in the geometry's list of materials"""
147839
+ class GeometryNodeInputInstanceRotation(GeometryNode, NodeInternal, Node, bpy_struct):
147840
+ """Retrieve the rotation of each instance in the geometry"""
147053
147841
 
147054
147842
  @classmethod
147055
147843
  def is_registered_node_type(cls) -> bool:
@@ -147106,8 +147894,8 @@ class GeometryNodeInputMaterialIndex(GeometryNode, NodeInternal, Node, bpy_struc
147106
147894
  """
147107
147895
  ...
147108
147896
 
147109
- class GeometryNodeInputMeshEdgeAngle(GeometryNode, NodeInternal, Node, bpy_struct):
147110
- """Calculate the surface area of each face in a mesh"""
147897
+ class GeometryNodeInputInstanceScale(GeometryNode, NodeInternal, Node, bpy_struct):
147898
+ """Retrieve the scale of each instance in the geometry"""
147111
147899
 
147112
147900
  @classmethod
147113
147901
  def is_registered_node_type(cls) -> bool:
@@ -147164,8 +147952,14 @@ class GeometryNodeInputMeshEdgeAngle(GeometryNode, NodeInternal, Node, bpy_struc
147164
147952
  """
147165
147953
  ...
147166
147954
 
147167
- class GeometryNodeInputMeshEdgeNeighbors(GeometryNode, NodeInternal, Node, bpy_struct):
147168
- """Retrieve the number of faces that use each edge as one of their sides"""
147955
+ class GeometryNodeInputMaterial(GeometryNode, NodeInternal, Node, bpy_struct):
147956
+ """Output a single material"""
147957
+
147958
+ material: Material | None
147959
+ """
147960
+
147961
+ :type: Material | None
147962
+ """
147169
147963
 
147170
147964
  @classmethod
147171
147965
  def is_registered_node_type(cls) -> bool:
@@ -147222,8 +148016,8 @@ class GeometryNodeInputMeshEdgeNeighbors(GeometryNode, NodeInternal, Node, bpy_s
147222
148016
  """
147223
148017
  ...
147224
148018
 
147225
- class GeometryNodeInputMeshEdgeVertices(GeometryNode, NodeInternal, Node, bpy_struct):
147226
- """Retrieve topology information relating to each edge of a mesh"""
148019
+ class GeometryNodeInputMaterialIndex(GeometryNode, NodeInternal, Node, bpy_struct):
148020
+ """Retrieve the index of the material used for each element in the geometry's list of materials"""
147227
148021
 
147228
148022
  @classmethod
147229
148023
  def is_registered_node_type(cls) -> bool:
@@ -147280,8 +148074,8 @@ class GeometryNodeInputMeshEdgeVertices(GeometryNode, NodeInternal, Node, bpy_st
147280
148074
  """
147281
148075
  ...
147282
148076
 
147283
- class GeometryNodeInputMeshFaceArea(GeometryNode, NodeInternal, Node, bpy_struct):
147284
- """Calculate the surface area of a mesh's faces"""
148077
+ class GeometryNodeInputMeshEdgeAngle(GeometryNode, NodeInternal, Node, bpy_struct):
148078
+ """Calculate the surface area of each face in a mesh"""
147285
148079
 
147286
148080
  @classmethod
147287
148081
  def is_registered_node_type(cls) -> bool:
@@ -147338,8 +148132,182 @@ class GeometryNodeInputMeshFaceArea(GeometryNode, NodeInternal, Node, bpy_struct
147338
148132
  """
147339
148133
  ...
147340
148134
 
147341
- class GeometryNodeInputMeshFaceIsPlanar(GeometryNode, NodeInternal, Node, bpy_struct):
147342
- """Retrieve whether all triangles in a face are on the same plane, i.e. whether they have the same normal"""
148135
+ class GeometryNodeInputMeshEdgeNeighbors(GeometryNode, NodeInternal, Node, bpy_struct):
148136
+ """Retrieve the number of faces that use each edge as one of their sides"""
148137
+
148138
+ @classmethod
148139
+ def is_registered_node_type(cls) -> bool:
148140
+ """True if a registered node type
148141
+
148142
+ :return: Result
148143
+ :rtype: bool
148144
+ """
148145
+ ...
148146
+
148147
+ @classmethod
148148
+ def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
148149
+ """Input socket template
148150
+
148151
+ :param index: Index
148152
+ :type index: int | None
148153
+ :return: result
148154
+ :rtype: NodeInternalSocketTemplate
148155
+ """
148156
+ ...
148157
+
148158
+ @classmethod
148159
+ def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
148160
+ """Output socket template
148161
+
148162
+ :param index: Index
148163
+ :type index: int | None
148164
+ :return: result
148165
+ :rtype: NodeInternalSocketTemplate
148166
+ """
148167
+ ...
148168
+
148169
+ @classmethod
148170
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
148171
+ """
148172
+
148173
+ :param id: The RNA type identifier.
148174
+ :type id: str | None
148175
+ :param default:
148176
+ :return: The RNA type or default when not found.
148177
+ :rtype: Struct
148178
+ """
148179
+ ...
148180
+
148181
+ @classmethod
148182
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
148183
+ """
148184
+
148185
+ :param id: The RNA type identifier.
148186
+ :type id: str | None
148187
+ :param default:
148188
+ :return: The class or default when not found.
148189
+ :rtype: typing.Any
148190
+ """
148191
+ ...
148192
+
148193
+ class GeometryNodeInputMeshEdgeVertices(GeometryNode, NodeInternal, Node, bpy_struct):
148194
+ """Retrieve topology information relating to each edge of a mesh"""
148195
+
148196
+ @classmethod
148197
+ def is_registered_node_type(cls) -> bool:
148198
+ """True if a registered node type
148199
+
148200
+ :return: Result
148201
+ :rtype: bool
148202
+ """
148203
+ ...
148204
+
148205
+ @classmethod
148206
+ def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
148207
+ """Input socket template
148208
+
148209
+ :param index: Index
148210
+ :type index: int | None
148211
+ :return: result
148212
+ :rtype: NodeInternalSocketTemplate
148213
+ """
148214
+ ...
148215
+
148216
+ @classmethod
148217
+ def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
148218
+ """Output socket template
148219
+
148220
+ :param index: Index
148221
+ :type index: int | None
148222
+ :return: result
148223
+ :rtype: NodeInternalSocketTemplate
148224
+ """
148225
+ ...
148226
+
148227
+ @classmethod
148228
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
148229
+ """
148230
+
148231
+ :param id: The RNA type identifier.
148232
+ :type id: str | None
148233
+ :param default:
148234
+ :return: The RNA type or default when not found.
148235
+ :rtype: Struct
148236
+ """
148237
+ ...
148238
+
148239
+ @classmethod
148240
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
148241
+ """
148242
+
148243
+ :param id: The RNA type identifier.
148244
+ :type id: str | None
148245
+ :param default:
148246
+ :return: The class or default when not found.
148247
+ :rtype: typing.Any
148248
+ """
148249
+ ...
148250
+
148251
+ class GeometryNodeInputMeshFaceArea(GeometryNode, NodeInternal, Node, bpy_struct):
148252
+ """Calculate the surface area of a mesh's faces"""
148253
+
148254
+ @classmethod
148255
+ def is_registered_node_type(cls) -> bool:
148256
+ """True if a registered node type
148257
+
148258
+ :return: Result
148259
+ :rtype: bool
148260
+ """
148261
+ ...
148262
+
148263
+ @classmethod
148264
+ def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
148265
+ """Input socket template
148266
+
148267
+ :param index: Index
148268
+ :type index: int | None
148269
+ :return: result
148270
+ :rtype: NodeInternalSocketTemplate
148271
+ """
148272
+ ...
148273
+
148274
+ @classmethod
148275
+ def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
148276
+ """Output socket template
148277
+
148278
+ :param index: Index
148279
+ :type index: int | None
148280
+ :return: result
148281
+ :rtype: NodeInternalSocketTemplate
148282
+ """
148283
+ ...
148284
+
148285
+ @classmethod
148286
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
148287
+ """
148288
+
148289
+ :param id: The RNA type identifier.
148290
+ :type id: str | None
148291
+ :param default:
148292
+ :return: The RNA type or default when not found.
148293
+ :rtype: Struct
148294
+ """
148295
+ ...
148296
+
148297
+ @classmethod
148298
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
148299
+ """
148300
+
148301
+ :param id: The RNA type identifier.
148302
+ :type id: str | None
148303
+ :param default:
148304
+ :return: The class or default when not found.
148305
+ :rtype: typing.Any
148306
+ """
148307
+ ...
148308
+
148309
+ class GeometryNodeInputMeshFaceIsPlanar(GeometryNode, NodeInternal, Node, bpy_struct):
148310
+ """Retrieve whether all triangles in a face are on the same plane, i.e. whether they have the same normal"""
147343
148311
 
147344
148312
  @classmethod
147345
148313
  def is_registered_node_type(cls) -> bool:
@@ -160419,10 +161387,10 @@ class GreasePencilv3(ID, bpy_struct):
160419
161387
  :type: AnimData
160420
161388
  """
160421
161389
 
160422
- attributes: AttributeGroup
161390
+ attributes: AttributeGroupGreasePencil
160423
161391
  """ Geometry attributes
160424
161392
 
160425
- :type: AttributeGroup
161393
+ :type: AttributeGroupGreasePencil
160426
161394
  """
160427
161395
 
160428
161396
  before_color: mathutils.Color
@@ -160431,10 +161399,10 @@ class GreasePencilv3(ID, bpy_struct):
160431
161399
  :type: mathutils.Color
160432
161400
  """
160433
161401
 
160434
- color_attributes: AttributeGroup
161402
+ color_attributes: AttributeGroupGreasePencil
160435
161403
  """ Geometry color attributes
160436
161404
 
160437
- :type: AttributeGroup
161405
+ :type: AttributeGroupGreasePencil
160438
161406
  """
160439
161407
 
160440
161408
  ghost_after_range: int
@@ -161632,6 +162600,50 @@ class IKParam(bpy_struct):
161632
162600
  """
161633
162601
  ...
161634
162602
 
162603
+ class IMAGE_AST_brush_paint(AssetShelf, bpy_struct):
162604
+ @staticmethod
162605
+ def draw_popup_selector(layout, context, brush, show_name=True):
162606
+ """
162607
+
162608
+ :param layout:
162609
+ :param context:
162610
+ :param brush:
162611
+ :param show_name:
162612
+ """
162613
+ ...
162614
+
162615
+ @staticmethod
162616
+ def get_shelf_name_from_context(context):
162617
+ """
162618
+
162619
+ :param context:
162620
+ """
162621
+ ...
162622
+
162623
+ @classmethod
162624
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
162625
+ """
162626
+
162627
+ :param id: The RNA type identifier.
162628
+ :type id: str | None
162629
+ :param default:
162630
+ :return: The RNA type or default when not found.
162631
+ :rtype: Struct
162632
+ """
162633
+ ...
162634
+
162635
+ @classmethod
162636
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
162637
+ """
162638
+
162639
+ :param id: The RNA type identifier.
162640
+ :type id: str | None
162641
+ :param default:
162642
+ :return: The class or default when not found.
162643
+ :rtype: typing.Any
162644
+ """
162645
+ ...
162646
+
161635
162647
  class IMAGE_FH_drop_handler(FileHandler, bpy_struct):
161636
162648
  @classmethod
161637
162649
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -172063,10 +173075,10 @@ class Mesh(ID, bpy_struct):
172063
173075
  :type: AnimData
172064
173076
  """
172065
173077
 
172066
- attributes: AttributeGroup
173078
+ attributes: AttributeGroupMesh
172067
173079
  """ Geometry attributes
172068
173080
 
172069
- :type: AttributeGroup
173081
+ :type: AttributeGroupMesh
172070
173082
  """
172071
173083
 
172072
173084
  auto_texspace: bool
@@ -172075,10 +173087,10 @@ class Mesh(ID, bpy_struct):
172075
173087
  :type: bool
172076
173088
  """
172077
173089
 
172078
- color_attributes: AttributeGroup
173090
+ color_attributes: AttributeGroupMesh
172079
173091
  """ Geometry color attributes
172080
173092
 
172081
- :type: AttributeGroup
173093
+ :type: AttributeGroupMesh
172082
173094
  """
172083
173095
 
172084
173096
  corner_normals: bpy_prop_collection[MeshNormalValue]
@@ -183540,6 +184552,12 @@ class Object(ID, bpy_struct):
183540
184552
  :type: int | None
183541
184553
  """
183542
184554
 
184555
+ active_selection_set: int | None
184556
+ """ Index of the currently active selection set
184557
+
184558
+ :type: int | None
184559
+ """
184560
+
183543
184561
  active_shape_key: ShapeKey | None
183544
184562
  """ Current shape key
183545
184563
 
@@ -183978,6 +184996,12 @@ Warning: Only takes into account object parenting, so e.g. in case of bone paren
183978
184996
  :type: mathutils.Vector
183979
184997
  """
183980
184998
 
184999
+ selection_sets: bpy_prop_collection[bl_operators.bone_selection_sets.SelectionSet]
185000
+ """ List of groups of bones for easy selection
185001
+
185002
+ :type: bpy_prop_collection[bl_operators.bone_selection_sets.SelectionSet]
185003
+ """
185004
+
183981
185005
  shader_effects: ObjectShaderFx
183982
185006
  """ Effects affecting display of object
183983
185007
 
@@ -186244,58 +187268,117 @@ class POINTCLOUD_UL_attributes(UIList, bpy_struct):
186244
187268
  """
186245
187269
  ...
186246
187270
 
186247
- class PackedFile(bpy_struct):
186248
- """External file packed into the .blend file"""
186249
-
186250
- data: str
186251
- """ Raw data (bytes, exact content of the embedded file)
186252
-
186253
- :type: str
186254
- """
186255
-
186256
- size: int
186257
- """ Size of packed file in bytes
186258
-
186259
- :type: int
186260
- """
186261
-
186262
- @classmethod
186263
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
186264
- """
186265
-
186266
- :param id: The RNA type identifier.
186267
- :type id: str | None
186268
- :param default:
186269
- :return: The RNA type or default when not found.
186270
- :rtype: Struct
186271
- """
186272
- ...
186273
-
186274
- @classmethod
186275
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
186276
- """
186277
-
186278
- :param id: The RNA type identifier.
186279
- :type id: str | None
186280
- :param default:
186281
- :return: The class or default when not found.
186282
- :rtype: typing.Any
186283
- """
186284
- ...
186285
-
187271
+ class POSE_UL_selection_set(UIList, bpy_struct):
187272
+ def draw_item(
187273
+ self, context, layout, data, item, icon, active_data, active_propname, index
187274
+ ):
187275
+ """
187276
+
187277
+ :param context:
187278
+ :param layout:
187279
+ :param data:
187280
+ :param item:
187281
+ :param icon:
187282
+ :param active_data:
187283
+ :param active_propname:
187284
+ :param index:
187285
+ """
187286
+ ...
187287
+
187288
+ @classmethod
187289
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
187290
+ """
187291
+
187292
+ :param id: The RNA type identifier.
187293
+ :type id: str | None
187294
+ :param default:
187295
+ :return: The RNA type or default when not found.
187296
+ :rtype: Struct
187297
+ """
187298
+ ...
187299
+
187300
+ @classmethod
187301
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
187302
+ """
187303
+
187304
+ :param id: The RNA type identifier.
187305
+ :type id: str | None
187306
+ :param default:
187307
+ :return: The class or default when not found.
187308
+ :rtype: typing.Any
187309
+ """
187310
+ ...
187311
+
187312
+ class PackedFile(bpy_struct):
187313
+ """External file packed into the .blend file"""
187314
+
187315
+ data: str
187316
+ """ Raw data (bytes, exact content of the embedded file)
187317
+
187318
+ :type: str
187319
+ """
187320
+
187321
+ size: int
187322
+ """ Size of packed file in bytes
187323
+
187324
+ :type: int
187325
+ """
187326
+
187327
+ @classmethod
187328
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
187329
+ """
187330
+
187331
+ :param id: The RNA type identifier.
187332
+ :type id: str | None
187333
+ :param default:
187334
+ :return: The RNA type or default when not found.
187335
+ :rtype: Struct
187336
+ """
187337
+ ...
187338
+
187339
+ @classmethod
187340
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
187341
+ """
187342
+
187343
+ :param id: The RNA type identifier.
187344
+ :type id: str | None
187345
+ :param default:
187346
+ :return: The class or default when not found.
187347
+ :rtype: typing.Any
187348
+ """
187349
+ ...
187350
+
186286
187351
  class Paint(bpy_struct):
186287
187352
  brush: Brush | None
186288
- """ Active Brush
187353
+ """ Active brush
186289
187354
 
186290
187355
  :type: Brush | None
186291
187356
  """
186292
187357
 
187358
+ brush_asset_reference: AssetWeakReference
187359
+ """ A weak reference to the matching brush asset, used e.g. to restore the last used brush on file load
187360
+
187361
+ :type: AssetWeakReference
187362
+ """
187363
+
186293
187364
  cavity_curve: CurveMapping
186294
187365
  """ Editable cavity curve
186295
187366
 
186296
187367
  :type: CurveMapping
186297
187368
  """
186298
187369
 
187370
+ eraser_brush: Brush | None
187371
+ """ Default eraser brush for quickly alternating with the main brush
187372
+
187373
+ :type: Brush | None
187374
+ """
187375
+
187376
+ eraser_brush_asset_reference: AssetWeakReference
187377
+ """ A weak reference to the matching brush asset, used e.g. to restore the last used brush on file load
187378
+
187379
+ :type: AssetWeakReference
187380
+ """
187381
+
186299
187382
  palette: Palette | None
186300
187383
  """ Active Palette
186301
187384
 
@@ -186344,12 +187427,6 @@ class Paint(bpy_struct):
186344
187427
  :type: bool
186345
187428
  """
186346
187429
 
186347
- tool_slots: bpy_prop_collection[PaintToolSlot]
186348
- """
186349
-
186350
- :type: bpy_prop_collection[PaintToolSlot]
186351
- """
186352
-
186353
187430
  use_cavity: bool
186354
187431
  """ Mask painting according to mesh geometry cavity
186355
187432
 
@@ -186474,37 +187551,6 @@ class PaintModeSettings(bpy_struct):
186474
187551
  """
186475
187552
  ...
186476
187553
 
186477
- class PaintToolSlot(bpy_struct):
186478
- brush: Brush | None
186479
- """
186480
-
186481
- :type: Brush | None
186482
- """
186483
-
186484
- @classmethod
186485
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
186486
- """
186487
-
186488
- :param id: The RNA type identifier.
186489
- :type id: str | None
186490
- :param default:
186491
- :return: The RNA type or default when not found.
186492
- :rtype: Struct
186493
- """
186494
- ...
186495
-
186496
- @classmethod
186497
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
186498
- """
186499
-
186500
- :param id: The RNA type identifier.
186501
- :type id: str | None
186502
- :param default:
186503
- :return: The class or default when not found.
186504
- :rtype: typing.Any
186505
- """
186506
- ...
186507
-
186508
187554
  class Palette(ID, bpy_struct):
186509
187555
  colors: PaletteColors
186510
187556
  """
@@ -189613,16 +190659,16 @@ class PointCloud(ID, bpy_struct):
189613
190659
  :type: AnimData
189614
190660
  """
189615
190661
 
189616
- attributes: AttributeGroup
190662
+ attributes: AttributeGroupPointCloud
189617
190663
  """ Geometry attributes
189618
190664
 
189619
- :type: AttributeGroup
190665
+ :type: AttributeGroupPointCloud
189620
190666
  """
189621
190667
 
189622
- color_attributes: AttributeGroup
190668
+ color_attributes: AttributeGroupPointCloud
189623
190669
  """ Geometry color attributes
189624
190670
 
189625
- :type: AttributeGroup
190671
+ :type: AttributeGroupPointCloud
189626
190672
  """
189627
190673
 
189628
190674
  materials: IDMaterials
@@ -200851,7 +201897,7 @@ class ShaderNodeBsdfHairPrincipled(ShaderNode, NodeInternal, Node, bpy_struct):
200851
201897
  ...
200852
201898
 
200853
201899
  class ShaderNodeBsdfPrincipled(ShaderNode, NodeInternal, Node, bpy_struct):
200854
- """Physically-based, easy-to-use shader for rendering surface materials, based on the Disney principled model also known as the "PBR" shader"""
201900
+ """Physically-based, easy-to-use shader for rendering surface materials, based on the OpenPBR model"""
200855
201901
 
200856
201902
  distribution: str
200857
201903
  """ Light scattering distribution on rough surface
@@ -226745,8 +227791,490 @@ class UnitSettings(bpy_struct):
226745
227791
  """
226746
227792
  ...
226747
227793
 
226748
- class UnknownType(bpy_struct):
226749
- """Stub RNA type used for pointers to unknown or internal data"""
227794
+ class UnknownType(bpy_struct):
227795
+ """Stub RNA type used for pointers to unknown or internal data"""
227796
+
227797
+ @classmethod
227798
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
227799
+ """
227800
+
227801
+ :param id: The RNA type identifier.
227802
+ :type id: str | None
227803
+ :param default:
227804
+ :return: The RNA type or default when not found.
227805
+ :rtype: Struct
227806
+ """
227807
+ ...
227808
+
227809
+ @classmethod
227810
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
227811
+ """
227812
+
227813
+ :param id: The RNA type identifier.
227814
+ :type id: str | None
227815
+ :param default:
227816
+ :return: The class or default when not found.
227817
+ :rtype: typing.Any
227818
+ """
227819
+ ...
227820
+
227821
+ class UserAssetLibrary(bpy_struct):
227822
+ """Settings to define a reusable library for Asset Browsers to use"""
227823
+
227824
+ import_method: str
227825
+ """ Determine how the asset will be imported, unless overridden by the Asset Browser
227826
+
227827
+ :type: str
227828
+ """
227829
+
227830
+ name: str
227831
+ """ Identifier (not necessarily unique) for the asset library
227832
+
227833
+ :type: str
227834
+ """
227835
+
227836
+ path: str
227837
+ """ Path to a directory with .blend files to use as an asset library
227838
+
227839
+ :type: str
227840
+ """
227841
+
227842
+ use_relative_path: bool
227843
+ """ Use relative path when linking assets from this asset library
227844
+
227845
+ :type: bool
227846
+ """
227847
+
227848
+ @classmethod
227849
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
227850
+ """
227851
+
227852
+ :param id: The RNA type identifier.
227853
+ :type id: str | None
227854
+ :param default:
227855
+ :return: The RNA type or default when not found.
227856
+ :rtype: Struct
227857
+ """
227858
+ ...
227859
+
227860
+ @classmethod
227861
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
227862
+ """
227863
+
227864
+ :param id: The RNA type identifier.
227865
+ :type id: str | None
227866
+ :param default:
227867
+ :return: The class or default when not found.
227868
+ :rtype: typing.Any
227869
+ """
227870
+ ...
227871
+
227872
+ class UserExtensionRepo(bpy_struct):
227873
+ """Settings to define an extension repository"""
227874
+
227875
+ access_token: str
227876
+ """ Personal access token, may be required by some repositories
227877
+
227878
+ :type: str
227879
+ """
227880
+
227881
+ custom_directory: str
227882
+ """ The local directory containing extensions
227883
+
227884
+ :type: str
227885
+ """
227886
+
227887
+ directory: str
227888
+ """ The local directory containing extensions
227889
+
227890
+ :type: str
227891
+ """
227892
+
227893
+ enabled: bool
227894
+ """ Enable the repository
227895
+
227896
+ :type: bool
227897
+ """
227898
+
227899
+ module: str
227900
+ """ Unique module identifier
227901
+
227902
+ :type: str
227903
+ """
227904
+
227905
+ name: str
227906
+ """ Unique repository name
227907
+
227908
+ :type: str
227909
+ """
227910
+
227911
+ remote_url: str
227912
+ """ Remote URL to the extension repository, the file-system may be referenced using the file URI scheme: "file://"
227913
+
227914
+ :type: str
227915
+ """
227916
+
227917
+ source: str
227918
+ """ Select if the repository is in a user managed or system provided directory
227919
+
227920
+ :type: str
227921
+ """
227922
+
227923
+ use_access_token: bool
227924
+ """ Repository requires an access token
227925
+
227926
+ :type: bool
227927
+ """
227928
+
227929
+ use_cache: bool
227930
+ """ Downloaded package files are deleted after installation
227931
+
227932
+ :type: bool
227933
+ """
227934
+
227935
+ use_custom_directory: bool
227936
+ """ Manually set the path for extensions to be stored. When disabled a user's extensions directory is created
227937
+
227938
+ :type: bool
227939
+ """
227940
+
227941
+ use_remote_url: bool
227942
+ """ Synchronize the repository with a remote URL
227943
+
227944
+ :type: bool
227945
+ """
227946
+
227947
+ use_sync_on_startup: bool
227948
+ """ Allow Blender to check for updates upon launch
227949
+
227950
+ :type: bool
227951
+ """
227952
+
227953
+ @classmethod
227954
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
227955
+ """
227956
+
227957
+ :param id: The RNA type identifier.
227958
+ :type id: str | None
227959
+ :param default:
227960
+ :return: The RNA type or default when not found.
227961
+ :rtype: Struct
227962
+ """
227963
+ ...
227964
+
227965
+ @classmethod
227966
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
227967
+ """
227968
+
227969
+ :param id: The RNA type identifier.
227970
+ :type id: str | None
227971
+ :param default:
227972
+ :return: The class or default when not found.
227973
+ :rtype: typing.Any
227974
+ """
227975
+ ...
227976
+
227977
+ class UserSolidLight(bpy_struct):
227978
+ """Light used for Studio lighting in solid shading mode"""
227979
+
227980
+ diffuse_color: mathutils.Color
227981
+ """ Color of the light's diffuse highlight
227982
+
227983
+ :type: mathutils.Color
227984
+ """
227985
+
227986
+ direction: mathutils.Vector
227987
+ """ Direction that the light is shining
227988
+
227989
+ :type: mathutils.Vector
227990
+ """
227991
+
227992
+ smooth: float
227993
+ """ Smooth the lighting from this light
227994
+
227995
+ :type: float
227996
+ """
227997
+
227998
+ specular_color: mathutils.Color
227999
+ """ Color of the light's specular highlight
228000
+
228001
+ :type: mathutils.Color
228002
+ """
228003
+
228004
+ use: bool
228005
+ """ Enable this light in solid shading mode
228006
+
228007
+ :type: bool
228008
+ """
228009
+
228010
+ @classmethod
228011
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
228012
+ """
228013
+
228014
+ :param id: The RNA type identifier.
228015
+ :type id: str | None
228016
+ :param default:
228017
+ :return: The RNA type or default when not found.
228018
+ :rtype: Struct
228019
+ """
228020
+ ...
228021
+
228022
+ @classmethod
228023
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
228024
+ """
228025
+
228026
+ :param id: The RNA type identifier.
228027
+ :type id: str | None
228028
+ :param default:
228029
+ :return: The class or default when not found.
228030
+ :rtype: typing.Any
228031
+ """
228032
+ ...
228033
+
228034
+ class UvSculpt(Paint, bpy_struct):
228035
+ curve_preset: str
228036
+ """
228037
+
228038
+ :type: str
228039
+ """
228040
+
228041
+ size: int
228042
+ """
228043
+
228044
+ :type: int
228045
+ """
228046
+
228047
+ strength: float
228048
+ """
228049
+
228050
+ :type: float
228051
+ """
228052
+
228053
+ strength_curve: CurveMapping
228054
+ """
228055
+
228056
+ :type: CurveMapping
228057
+ """
228058
+
228059
+ @classmethod
228060
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
228061
+ """
228062
+
228063
+ :param id: The RNA type identifier.
228064
+ :type id: str | None
228065
+ :param default:
228066
+ :return: The RNA type or default when not found.
228067
+ :rtype: Struct
228068
+ """
228069
+ ...
228070
+
228071
+ @classmethod
228072
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
228073
+ """
228074
+
228075
+ :param id: The RNA type identifier.
228076
+ :type id: str | None
228077
+ :param default:
228078
+ :return: The class or default when not found.
228079
+ :rtype: typing.Any
228080
+ """
228081
+ ...
228082
+
228083
+ class VIEW3D_AST_brush_gpencil_paint(AssetShelf, bpy_struct):
228084
+ @staticmethod
228085
+ def draw_popup_selector(layout, context, brush, show_name=True):
228086
+ """
228087
+
228088
+ :param layout:
228089
+ :param context:
228090
+ :param brush:
228091
+ :param show_name:
228092
+ """
228093
+ ...
228094
+
228095
+ @staticmethod
228096
+ def get_shelf_name_from_context(context):
228097
+ """
228098
+
228099
+ :param context:
228100
+ """
228101
+ ...
228102
+
228103
+ @classmethod
228104
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
228105
+ """
228106
+
228107
+ :param id: The RNA type identifier.
228108
+ :type id: str | None
228109
+ :param default:
228110
+ :return: The RNA type or default when not found.
228111
+ :rtype: Struct
228112
+ """
228113
+ ...
228114
+
228115
+ @classmethod
228116
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
228117
+ """
228118
+
228119
+ :param id: The RNA type identifier.
228120
+ :type id: str | None
228121
+ :param default:
228122
+ :return: The class or default when not found.
228123
+ :rtype: typing.Any
228124
+ """
228125
+ ...
228126
+
228127
+ class VIEW3D_AST_brush_gpencil_sculpt(AssetShelf, bpy_struct):
228128
+ @staticmethod
228129
+ def draw_popup_selector(layout, context, brush, show_name=True):
228130
+ """
228131
+
228132
+ :param layout:
228133
+ :param context:
228134
+ :param brush:
228135
+ :param show_name:
228136
+ """
228137
+ ...
228138
+
228139
+ @staticmethod
228140
+ def get_shelf_name_from_context(context):
228141
+ """
228142
+
228143
+ :param context:
228144
+ """
228145
+ ...
228146
+
228147
+ @classmethod
228148
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
228149
+ """
228150
+
228151
+ :param id: The RNA type identifier.
228152
+ :type id: str | None
228153
+ :param default:
228154
+ :return: The RNA type or default when not found.
228155
+ :rtype: Struct
228156
+ """
228157
+ ...
228158
+
228159
+ @classmethod
228160
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
228161
+ """
228162
+
228163
+ :param id: The RNA type identifier.
228164
+ :type id: str | None
228165
+ :param default:
228166
+ :return: The class or default when not found.
228167
+ :rtype: typing.Any
228168
+ """
228169
+ ...
228170
+
228171
+ class VIEW3D_AST_brush_gpencil_vertex(AssetShelf, bpy_struct):
228172
+ @staticmethod
228173
+ def draw_popup_selector(layout, context, brush, show_name=True):
228174
+ """
228175
+
228176
+ :param layout:
228177
+ :param context:
228178
+ :param brush:
228179
+ :param show_name:
228180
+ """
228181
+ ...
228182
+
228183
+ @staticmethod
228184
+ def get_shelf_name_from_context(context):
228185
+ """
228186
+
228187
+ :param context:
228188
+ """
228189
+ ...
228190
+
228191
+ @classmethod
228192
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
228193
+ """
228194
+
228195
+ :param id: The RNA type identifier.
228196
+ :type id: str | None
228197
+ :param default:
228198
+ :return: The RNA type or default when not found.
228199
+ :rtype: Struct
228200
+ """
228201
+ ...
228202
+
228203
+ @classmethod
228204
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
228205
+ """
228206
+
228207
+ :param id: The RNA type identifier.
228208
+ :type id: str | None
228209
+ :param default:
228210
+ :return: The class or default when not found.
228211
+ :rtype: typing.Any
228212
+ """
228213
+ ...
228214
+
228215
+ class VIEW3D_AST_brush_gpencil_weight(AssetShelf, bpy_struct):
228216
+ @staticmethod
228217
+ def draw_popup_selector(layout, context, brush, show_name=True):
228218
+ """
228219
+
228220
+ :param layout:
228221
+ :param context:
228222
+ :param brush:
228223
+ :param show_name:
228224
+ """
228225
+ ...
228226
+
228227
+ @staticmethod
228228
+ def get_shelf_name_from_context(context):
228229
+ """
228230
+
228231
+ :param context:
228232
+ """
228233
+ ...
228234
+
228235
+ @classmethod
228236
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
228237
+ """
228238
+
228239
+ :param id: The RNA type identifier.
228240
+ :type id: str | None
228241
+ :param default:
228242
+ :return: The RNA type or default when not found.
228243
+ :rtype: Struct
228244
+ """
228245
+ ...
228246
+
228247
+ @classmethod
228248
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
228249
+ """
228250
+
228251
+ :param id: The RNA type identifier.
228252
+ :type id: str | None
228253
+ :param default:
228254
+ :return: The class or default when not found.
228255
+ :rtype: typing.Any
228256
+ """
228257
+ ...
228258
+
228259
+ class VIEW3D_AST_brush_grease_pencil_paint(AssetShelf, bpy_struct):
228260
+ @staticmethod
228261
+ def draw_popup_selector(layout, context, brush, show_name=True):
228262
+ """
228263
+
228264
+ :param layout:
228265
+ :param context:
228266
+ :param brush:
228267
+ :param show_name:
228268
+ """
228269
+ ...
228270
+
228271
+ @staticmethod
228272
+ def get_shelf_name_from_context(context):
228273
+ """
228274
+
228275
+ :param context:
228276
+ """
228277
+ ...
226750
228278
 
226751
228279
  @classmethod
226752
228280
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -226772,32 +228300,25 @@ class UnknownType(bpy_struct):
226772
228300
  """
226773
228301
  ...
226774
228302
 
226775
- class UserAssetLibrary(bpy_struct):
226776
- """Settings to define a reusable library for Asset Browsers to use"""
226777
-
226778
- import_method: str
226779
- """ Determine how the asset will be imported, unless overridden by the Asset Browser
226780
-
226781
- :type: str
226782
- """
226783
-
226784
- name: str
226785
- """ Identifier (not necessarily unique) for the asset library
226786
-
226787
- :type: str
226788
- """
226789
-
226790
- path: str
226791
- """ Path to a directory with .blend files to use as an asset library
228303
+ class VIEW3D_AST_brush_sculpt(AssetShelf, bpy_struct):
228304
+ @staticmethod
228305
+ def draw_popup_selector(layout, context, brush, show_name=True):
228306
+ """
226792
228307
 
226793
- :type: str
226794
- """
228308
+ :param layout:
228309
+ :param context:
228310
+ :param brush:
228311
+ :param show_name:
228312
+ """
228313
+ ...
226795
228314
 
226796
- use_relative_path: bool
226797
- """ Use relative path when linking assets from this asset library
228315
+ @staticmethod
228316
+ def get_shelf_name_from_context(context):
228317
+ """
226798
228318
 
226799
- :type: bool
226800
- """
228319
+ :param context:
228320
+ """
228321
+ ...
226801
228322
 
226802
228323
  @classmethod
226803
228324
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -226823,86 +228344,25 @@ class UserAssetLibrary(bpy_struct):
226823
228344
  """
226824
228345
  ...
226825
228346
 
226826
- class UserExtensionRepo(bpy_struct):
226827
- """Settings to define an extension repository"""
226828
-
226829
- access_token: str
226830
- """ Personal access token, may be required by some repositories
226831
-
226832
- :type: str
226833
- """
226834
-
226835
- custom_directory: str
226836
- """ The local directory containing extensions
226837
-
226838
- :type: str
226839
- """
226840
-
226841
- directory: str
226842
- """ The local directory containing extensions
226843
-
226844
- :type: str
226845
- """
226846
-
226847
- enabled: bool
226848
- """ Enable the repository
226849
-
226850
- :type: bool
226851
- """
226852
-
226853
- module: str
226854
- """ Unique module identifier
226855
-
226856
- :type: str
226857
- """
226858
-
226859
- name: str
226860
- """ Unique repository name
226861
-
226862
- :type: str
226863
- """
226864
-
226865
- remote_url: str
226866
- """ Remote URL to the extension repository, the file-system may be referenced using the file URI scheme: "file://"
226867
-
226868
- :type: str
226869
- """
226870
-
226871
- source: str
226872
- """ Select if the repository is in a user managed or system provided directory
226873
-
226874
- :type: str
226875
- """
226876
-
226877
- use_access_token: bool
226878
- """ Repository requires an access token
226879
-
226880
- :type: bool
226881
- """
226882
-
226883
- use_cache: bool
226884
- """ Downloaded package files are deleted after installation
226885
-
226886
- :type: bool
226887
- """
226888
-
226889
- use_custom_directory: bool
226890
- """ Manually set the path for extensions to be stored. When disabled a user's extensions directory is created
226891
-
226892
- :type: bool
226893
- """
226894
-
226895
- use_remote_url: bool
226896
- """ Synchronize the repository with a remote URL
228347
+ class VIEW3D_AST_brush_sculpt_curves(AssetShelf, bpy_struct):
228348
+ @staticmethod
228349
+ def draw_popup_selector(layout, context, brush, show_name=True):
228350
+ """
226897
228351
 
226898
- :type: bool
226899
- """
228352
+ :param layout:
228353
+ :param context:
228354
+ :param brush:
228355
+ :param show_name:
228356
+ """
228357
+ ...
226900
228358
 
226901
- use_sync_on_startup: bool
226902
- """ Allow Blender to check for updates upon launch
228359
+ @staticmethod
228360
+ def get_shelf_name_from_context(context):
228361
+ """
226903
228362
 
226904
- :type: bool
226905
- """
228363
+ :param context:
228364
+ """
228365
+ ...
226906
228366
 
226907
228367
  @classmethod
226908
228368
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -226928,38 +228388,25 @@ class UserExtensionRepo(bpy_struct):
226928
228388
  """
226929
228389
  ...
226930
228390
 
226931
- class UserSolidLight(bpy_struct):
226932
- """Light used for Studio lighting in solid shading mode"""
226933
-
226934
- diffuse_color: mathutils.Color
226935
- """ Color of the light's diffuse highlight
226936
-
226937
- :type: mathutils.Color
226938
- """
226939
-
226940
- direction: mathutils.Vector
226941
- """ Direction that the light is shining
226942
-
226943
- :type: mathutils.Vector
226944
- """
226945
-
226946
- smooth: float
226947
- """ Smooth the lighting from this light
226948
-
226949
- :type: float
226950
- """
226951
-
226952
- specular_color: mathutils.Color
226953
- """ Color of the light's specular highlight
228391
+ class VIEW3D_AST_brush_texture_paint(AssetShelf, bpy_struct):
228392
+ @staticmethod
228393
+ def draw_popup_selector(layout, context, brush, show_name=True):
228394
+ """
226954
228395
 
226955
- :type: mathutils.Color
226956
- """
228396
+ :param layout:
228397
+ :param context:
228398
+ :param brush:
228399
+ :param show_name:
228400
+ """
228401
+ ...
226957
228402
 
226958
- use: bool
226959
- """ Enable this light in solid shading mode
228403
+ @staticmethod
228404
+ def get_shelf_name_from_context(context):
228405
+ """
226960
228406
 
226961
- :type: bool
226962
- """
228407
+ :param context:
228408
+ """
228409
+ ...
226963
228410
 
226964
228411
  @classmethod
226965
228412
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -226985,30 +228432,25 @@ class UserSolidLight(bpy_struct):
226985
228432
  """
226986
228433
  ...
226987
228434
 
226988
- class UvSculpt(Paint, bpy_struct):
226989
- curve_preset: str
226990
- """
226991
-
226992
- :type: str
226993
- """
226994
-
226995
- size: int
226996
- """
226997
-
226998
- :type: int
226999
- """
227000
-
227001
- strength: float
227002
- """
228435
+ class VIEW3D_AST_brush_vertex_paint(AssetShelf, bpy_struct):
228436
+ @staticmethod
228437
+ def draw_popup_selector(layout, context, brush, show_name=True):
228438
+ """
227003
228439
 
227004
- :type: float
227005
- """
228440
+ :param layout:
228441
+ :param context:
228442
+ :param brush:
228443
+ :param show_name:
228444
+ """
228445
+ ...
227006
228446
 
227007
- strength_curve: CurveMapping
227008
- """
228447
+ @staticmethod
228448
+ def get_shelf_name_from_context(context):
228449
+ """
227009
228450
 
227010
- :type: CurveMapping
227011
- """
228451
+ :param context:
228452
+ """
228453
+ ...
227012
228454
 
227013
228455
  @classmethod
227014
228456
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -227034,7 +228476,26 @@ class UvSculpt(Paint, bpy_struct):
227034
228476
  """
227035
228477
  ...
227036
228478
 
227037
- class VIEW3D_AST_pose_library(AssetShelf, bpy_struct):
228479
+ class VIEW3D_AST_brush_weight_paint(AssetShelf, bpy_struct):
228480
+ @staticmethod
228481
+ def draw_popup_selector(layout, context, brush, show_name=True):
228482
+ """
228483
+
228484
+ :param layout:
228485
+ :param context:
228486
+ :param brush:
228487
+ :param show_name:
228488
+ """
228489
+ ...
228490
+
228491
+ @staticmethod
228492
+ def get_shelf_name_from_context(context):
228493
+ """
228494
+
228495
+ :param context:
228496
+ """
228497
+ ...
228498
+
227038
228499
  @classmethod
227039
228500
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
227040
228501
  """
@@ -227059,7 +228520,7 @@ class VIEW3D_AST_pose_library(AssetShelf, bpy_struct):
227059
228520
  """
227060
228521
  ...
227061
228522
 
227062
- class VIEW3D_AST_sculpt_brushes(AssetShelf, bpy_struct):
228523
+ class VIEW3D_AST_pose_library(AssetShelf, bpy_struct):
227063
228524
  @classmethod
227064
228525
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
227065
228526
  """
@@ -234080,6 +235541,8 @@ GREASE_PENCIL_MT_snap_pie: bl_ui.properties_grease_pencil_common.GREASE_PENCIL_M
234080
235541
 
234081
235542
  GREASE_PENCIL_UL_masks: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_UL_masks
234082
235543
 
235544
+ IMAGE_AST_brush_paint: bl_ui.space_image.IMAGE_AST_brush_paint
235545
+
234083
235546
  IMAGE_FH_drop_handler: bl_operators.image.IMAGE_FH_drop_handler
234084
235547
 
234085
235548
  IMAGE_HT_header: bl_ui.space_image.IMAGE_HT_header
@@ -235062,6 +236525,40 @@ POINTCLOUD_MT_add_attribute: bl_ui.properties_data_pointcloud.POINTCLOUD_MT_add_
235062
236525
 
235063
236526
  POINTCLOUD_UL_attributes: bl_ui.properties_data_pointcloud.POINTCLOUD_UL_attributes
235064
236527
 
236528
+ POSE_MT_selection_set_create: bl_ui.properties_data_armature.POSE_MT_selection_set_create
236529
+
236530
+ POSE_MT_selection_sets_context_menu: bl_ui.properties_data_armature.POSE_MT_selection_sets_context_menu
236531
+
236532
+ POSE_MT_selection_sets_select: bl_ui.properties_data_armature.POSE_MT_selection_sets_select
236533
+
236534
+ POSE_OT_selection_set_add: bl_operators.bone_selection_sets.POSE_OT_selection_set_add
236535
+
236536
+ POSE_OT_selection_set_add_and_assign: bl_operators.bone_selection_sets.POSE_OT_selection_set_add_and_assign
236537
+
236538
+ POSE_OT_selection_set_assign: bl_operators.bone_selection_sets.POSE_OT_selection_set_assign
236539
+
236540
+ POSE_OT_selection_set_copy: bl_operators.bone_selection_sets.POSE_OT_selection_set_copy
236541
+
236542
+ POSE_OT_selection_set_delete_all: bl_operators.bone_selection_sets.POSE_OT_selection_set_delete_all
236543
+
236544
+ POSE_OT_selection_set_deselect: bl_operators.bone_selection_sets.POSE_OT_selection_set_deselect
236545
+
236546
+ POSE_OT_selection_set_move: bl_operators.bone_selection_sets.POSE_OT_selection_set_move
236547
+
236548
+ POSE_OT_selection_set_paste: bl_operators.bone_selection_sets.POSE_OT_selection_set_paste
236549
+
236550
+ POSE_OT_selection_set_remove: bl_operators.bone_selection_sets.POSE_OT_selection_set_remove
236551
+
236552
+ POSE_OT_selection_set_remove_bones: bl_operators.bone_selection_sets.POSE_OT_selection_set_remove_bones
236553
+
236554
+ POSE_OT_selection_set_select: bl_operators.bone_selection_sets.POSE_OT_selection_set_select
236555
+
236556
+ POSE_OT_selection_set_unassign: bl_operators.bone_selection_sets.POSE_OT_selection_set_unassign
236557
+
236558
+ POSE_PT_selection_sets: bl_ui.properties_data_armature.POSE_PT_selection_sets
236559
+
236560
+ POSE_UL_selection_set: bl_ui.properties_data_armature.POSE_UL_selection_set
236561
+
235065
236562
  PREFERENCES_OT_addon_disable: bl_operators.userpref.PREFERENCES_OT_addon_disable
235066
236563
 
235067
236564
  PREFERENCES_OT_addon_enable: bl_operators.userpref.PREFERENCES_OT_addon_enable
@@ -235830,7 +237327,25 @@ USERPREF_UL_asset_libraries: bl_ui.space_userpref.USERPREF_UL_asset_libraries
235830
237327
 
235831
237328
  USERPREF_UL_extension_repos: bl_ui.space_userpref.USERPREF_UL_extension_repos
235832
237329
 
235833
- VIEW3D_AST_sculpt_brushes: bl_ui.space_view3d.VIEW3D_AST_sculpt_brushes
237330
+ VIEW3D_AST_brush_gpencil_paint: bl_ui.space_view3d.VIEW3D_AST_brush_gpencil_paint
237331
+
237332
+ VIEW3D_AST_brush_gpencil_sculpt: bl_ui.space_view3d.VIEW3D_AST_brush_gpencil_sculpt
237333
+
237334
+ VIEW3D_AST_brush_gpencil_vertex: bl_ui.space_view3d.VIEW3D_AST_brush_gpencil_vertex
237335
+
237336
+ VIEW3D_AST_brush_gpencil_weight: bl_ui.space_view3d.VIEW3D_AST_brush_gpencil_weight
237337
+
237338
+ VIEW3D_AST_brush_grease_pencil_paint: bl_ui.space_view3d.VIEW3D_AST_brush_grease_pencil_paint
237339
+
237340
+ VIEW3D_AST_brush_sculpt: bl_ui.space_view3d.VIEW3D_AST_brush_sculpt
237341
+
237342
+ VIEW3D_AST_brush_sculpt_curves: bl_ui.space_view3d.VIEW3D_AST_brush_sculpt_curves
237343
+
237344
+ VIEW3D_AST_brush_texture_paint: bl_ui.space_view3d.VIEW3D_AST_brush_texture_paint
237345
+
237346
+ VIEW3D_AST_brush_vertex_paint: bl_ui.space_view3d.VIEW3D_AST_brush_vertex_paint
237347
+
237348
+ VIEW3D_AST_brush_weight_paint: bl_ui.space_view3d.VIEW3D_AST_brush_weight_paint
235834
237349
 
235835
237350
  VIEW3D_FH_camera_background_image: bl_operators.view3d.VIEW3D_FH_camera_background_image
235836
237351
 
@@ -235862,8 +237377,6 @@ VIEW3D_MT_brush_context_menu: bl_ui.space_view3d_toolbar.VIEW3D_MT_brush_context
235862
237377
 
235863
237378
  VIEW3D_MT_brush_gpencil_context_menu: bl_ui.space_view3d_toolbar.VIEW3D_MT_brush_gpencil_context_menu
235864
237379
 
235865
- VIEW3D_MT_brush_paint_modes: bl_ui.space_view3d.VIEW3D_MT_brush_paint_modes
235866
-
235867
237380
  VIEW3D_MT_camera_add: bl_ui.space_view3d.VIEW3D_MT_camera_add
235868
237381
 
235869
237382
  VIEW3D_MT_curve_add: bl_ui.space_view3d.VIEW3D_MT_curve_add
@@ -236436,6 +237949,8 @@ VIEW3D_PT_tools_brush_texture: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_brush_
236436
237949
 
236437
237950
  VIEW3D_PT_tools_grease_pencil_brush_advanced: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_brush_advanced
236438
237951
 
237952
+ VIEW3D_PT_tools_grease_pencil_brush_eraser: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_brush_eraser
237953
+
236439
237954
  VIEW3D_PT_tools_grease_pencil_brush_gap_closure: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_brush_gap_closure
236440
237955
 
236441
237956
  VIEW3D_PT_tools_grease_pencil_brush_mix_palette: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_brush_mix_palette
@@ -236480,6 +237995,8 @@ VIEW3D_PT_tools_grease_pencil_sculpt_settings: bl_ui.space_view3d_toolbar.VIEW3D
236480
237995
 
236481
237996
  VIEW3D_PT_tools_grease_pencil_v3_brush_advanced: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_v3_brush_advanced
236482
237997
 
237998
+ VIEW3D_PT_tools_grease_pencil_v3_brush_eraser: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_v3_brush_eraser
237999
+
236483
238000
  VIEW3D_PT_tools_grease_pencil_v3_brush_mix_palette: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_v3_brush_mix_palette
236484
238001
 
236485
238002
  VIEW3D_PT_tools_grease_pencil_v3_brush_mixcolor: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_v3_brush_mixcolor