fake-bpy-module 20240707__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 (118) 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. bmesh/types/__init__.pyi +48 -0
  101. bpy/ops/brush/__init__.pyi +185 -11
  102. bpy/ops/gpencil/__init__.pyi +0 -28
  103. bpy/ops/paint/__init__.pyi +0 -48
  104. bpy/ops/pose/__init__.pyi +176 -0
  105. bpy/ops/wm/__init__.pyi +18 -0
  106. bpy/path/__init__.pyi +6 -6
  107. bpy/types/__init__.pyi +2544 -1063
  108. bpy/utils/__init__.pyi +14 -12
  109. bpy_extras/anim_utils/__init__.pyi +3 -3
  110. bpy_extras/view3d_utils/__init__.pyi +2 -0
  111. {fake_bpy_module-20240707.dist-info → fake_bpy_module-20240709.dist-info}/METADATA +4 -4
  112. {fake_bpy_module-20240707.dist-info → fake_bpy_module-20240709.dist-info}/RECORD +118 -115
  113. mathutils/__init__.pyi +0 -44
  114. rna_info/__init__.pyi +1 -0
  115. rna_prop_ui/__init__.pyi +2 -1
  116. rna_xml/__init__.pyi +2 -2
  117. {fake_bpy_module-20240707.dist-info → fake_bpy_module-20240709.dist-info}/WHEEL +0 -0
  118. {fake_bpy_module-20240707.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
@@ -99089,18 +99846,6 @@ class bpy_prop_collection(typing.Generic[GenericType1]):
99089
99846
  """
99090
99847
  ...
99091
99848
 
99092
- def __getitem__(
99093
- self, key: int | str | slice
99094
- ) -> GenericType1 | tuple[GenericType1, ...]:
99095
- """
99096
-
99097
- :param key:
99098
- :type key: int | str | slice
99099
- :return:
99100
- :rtype: GenericType1 | tuple[GenericType1, ...]
99101
- """
99102
- ...
99103
-
99104
99849
  def __setitem__(self, key: int, value: GenericType1):
99105
99850
  """
99106
99851
 
@@ -99503,16 +100248,6 @@ class bpy_prop_array(typing.Generic[GenericType1]):
99503
100248
  """
99504
100249
  ...
99505
100250
 
99506
- def __getitem__(self, key: int | slice) -> GenericType1 | tuple[GenericType1, ...]:
99507
- """
99508
-
99509
- :param key:
99510
- :type key: int | slice
99511
- :return:
99512
- :rtype: GenericType1 | tuple[GenericType1, ...]
99513
- """
99514
- ...
99515
-
99516
100251
  @typing.overload
99517
100252
  def __setitem__(self, key: int, value: GenericType1):
99518
100253
  """
@@ -99535,20 +100270,6 @@ class bpy_prop_array(typing.Generic[GenericType1]):
99535
100270
  """
99536
100271
  ...
99537
100272
 
99538
- def __setitem__(
99539
- self,
99540
- key: int | slice,
99541
- value: GenericType1 | collections.abc.Iterable[GenericType1],
99542
- ):
99543
- """
99544
-
99545
- :param key:
99546
- :type key: int | slice
99547
- :param value:
99548
- :type value: GenericType1 | collections.abc.Iterable[GenericType1]
99549
- """
99550
- ...
99551
-
99552
100273
  def __delitem__(self, key: int):
99553
100274
  """
99554
100275
 
@@ -100351,7 +101072,129 @@ class AssetTags(bpy_prop_collection[AssetTag], bpy_struct):
100351
101072
  """
100352
101073
  ...
100353
101074
 
100354
- class AttributeGroup(bpy_prop_collection[Attribute], bpy_struct):
101075
+ class AttributeGroupCurves(bpy_prop_collection[Attribute], bpy_struct):
101076
+ """Group of geometry attributes"""
101077
+
101078
+ active: Attribute | None
101079
+ """ Active attribute
101080
+
101081
+ :type: Attribute | None
101082
+ """
101083
+
101084
+ active_index: int | None
101085
+ """ Active attribute index
101086
+
101087
+ :type: int | None
101088
+ """
101089
+
101090
+ def new(self, name: str, type: str | None, domain: str | None) -> Attribute:
101091
+ """Add attribute to geometry
101092
+
101093
+ :param name: Name, Name of geometry attribute
101094
+ :type name: str
101095
+ :param type: Type, Attribute type
101096
+ :type type: str | None
101097
+ :param domain: Domain, Type of element that attribute is stored on
101098
+ :type domain: str | None
101099
+ :return: New geometry attribute
101100
+ :rtype: Attribute
101101
+ """
101102
+ ...
101103
+
101104
+ def remove(self, attribute: Attribute):
101105
+ """Remove attribute from geometry
101106
+
101107
+ :param attribute: Geometry Attribute
101108
+ :type attribute: Attribute
101109
+ """
101110
+ ...
101111
+
101112
+ @classmethod
101113
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
101114
+ """
101115
+
101116
+ :param id: The RNA type identifier.
101117
+ :type id: str | None
101118
+ :param default:
101119
+ :return: The RNA type or default when not found.
101120
+ :rtype: Struct
101121
+ """
101122
+ ...
101123
+
101124
+ @classmethod
101125
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
101126
+ """
101127
+
101128
+ :param id: The RNA type identifier.
101129
+ :type id: str | None
101130
+ :param default:
101131
+ :return: The class or default when not found.
101132
+ :rtype: typing.Any
101133
+ """
101134
+ ...
101135
+
101136
+ class AttributeGroupGreasePencil(bpy_prop_collection[Attribute], bpy_struct):
101137
+ """Group of geometry attributes"""
101138
+
101139
+ active: Attribute | None
101140
+ """ Active attribute
101141
+
101142
+ :type: Attribute | None
101143
+ """
101144
+
101145
+ active_index: int | None
101146
+ """ Active attribute index
101147
+
101148
+ :type: int | None
101149
+ """
101150
+
101151
+ def new(self, name: str, type: str | None, domain: str | None) -> Attribute:
101152
+ """Add attribute to geometry
101153
+
101154
+ :param name: Name, Name of geometry attribute
101155
+ :type name: str
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
101162
+ """
101163
+ ...
101164
+
101165
+ def remove(self, attribute: Attribute):
101166
+ """Remove attribute from geometry
101167
+
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):
100355
101198
  """Group of geometry attributes"""
100356
101199
 
100357
101200
  active: Attribute | None
@@ -100442,6 +101285,67 @@ class AttributeGroup(bpy_prop_collection[Attribute], bpy_struct):
100442
101285
  """
100443
101286
  ...
100444
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
+
100445
101349
  class BlendDataActions(bpy_prop_collection[Action], bpy_struct):
100446
101350
  """Collection of actions"""
100447
101351
 
@@ -116258,30 +117162,6 @@ class BrushGpencilSettings(bpy_struct):
116258
117162
  :type: float
116259
117163
  """
116260
117164
 
116261
- gpencil_paint_icon: str
116262
- """
116263
-
116264
- :type: str
116265
- """
116266
-
116267
- gpencil_sculpt_icon: str
116268
- """
116269
-
116270
- :type: str
116271
- """
116272
-
116273
- gpencil_vertex_icon: str
116274
- """
116275
-
116276
- :type: str
116277
- """
116278
-
116279
- gpencil_weight_icon: str
116280
- """
116281
-
116282
- :type: str
116283
- """
116284
-
116285
117165
  hardness: float
116286
117166
  """ Gradient from the center of Dot and Box strokes (set to 1 for a solid stroke)
116287
117167
 
@@ -116426,12 +117306,6 @@ class BrushGpencilSettings(bpy_struct):
116426
117306
  :type: bool
116427
117307
  """
116428
117308
 
116429
- use_default_eraser: bool
116430
- """ Use this brush when enable eraser with fast switch key
116431
-
116432
- :type: bool
116433
- """
116434
-
116435
117309
  use_edit_position: bool
116436
117310
  """ The brush affects the position of the point
116437
117311
 
@@ -130383,16 +131257,16 @@ class Curves(ID, bpy_struct):
130383
131257
  :type: AnimData
130384
131258
  """
130385
131259
 
130386
- attributes: AttributeGroup
131260
+ attributes: AttributeGroupCurves
130387
131261
  """ Geometry attributes
130388
131262
 
130389
- :type: AttributeGroup
131263
+ :type: AttributeGroupCurves
130390
131264
  """
130391
131265
 
130392
- color_attributes: AttributeGroup
131266
+ color_attributes: AttributeGroupCurves
130393
131267
  """ Geometry color attributes
130394
131268
 
130395
- :type: AttributeGroup
131269
+ :type: AttributeGroupCurves
130396
131270
  """
130397
131271
 
130398
131272
  curve_offset_data: bpy_prop_collection[IntAttributeValue]
@@ -135334,12 +136208,6 @@ class FileAssetSelectIDFilter(bpy_struct):
135334
136208
  :type: bool
135335
136209
  """
135336
136210
 
135337
- experimental_filter_brush: bool
135338
- """ Show Brushes data-blocks
135339
-
135340
- :type: bool
135341
- """
135342
-
135343
136211
  experimental_filter_cachefile: bool
135344
136212
  """ Show Cache File data-blocks
135345
136213
 
@@ -135502,6 +136370,12 @@ class FileAssetSelectIDFilter(bpy_struct):
135502
136370
  :type: bool
135503
136371
  """
135504
136372
 
136373
+ filter_brush: bool
136374
+ """ Show Brushes data-blocks
136375
+
136376
+ :type: bool
136377
+ """
136378
+
135505
136379
  filter_group: bool
135506
136380
  """ Show Collection data-blocks
135507
136381
 
@@ -146304,8 +147178,8 @@ class GeometryNodeImageTexture(GeometryNode, NodeInternal, Node, bpy_struct):
146304
147178
  """
146305
147179
  ...
146306
147180
 
146307
- class GeometryNodeImportSTL(GeometryNode, NodeInternal, Node, bpy_struct):
146308
- """Import a mesh from an STL file"""
147181
+ class GeometryNodeImportOBJ(GeometryNode, NodeInternal, Node, bpy_struct):
147182
+ """Import geometry from an OBJ file"""
146309
147183
 
146310
147184
  @classmethod
146311
147185
  def is_registered_node_type(cls) -> bool:
@@ -146362,8 +147236,8 @@ class GeometryNodeImportSTL(GeometryNode, NodeInternal, Node, bpy_struct):
146362
147236
  """
146363
147237
  ...
146364
147238
 
146365
- class GeometryNodeIndexOfNearest(GeometryNode, NodeInternal, Node, bpy_struct):
146366
- """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"""
146367
147241
 
146368
147242
  @classmethod
146369
147243
  def is_registered_node_type(cls) -> bool:
@@ -146420,20 +147294,8 @@ class GeometryNodeIndexOfNearest(GeometryNode, NodeInternal, Node, bpy_struct):
146420
147294
  """
146421
147295
  ...
146422
147296
 
146423
- class GeometryNodeIndexSwitch(GeometryNode, NodeInternal, Node, bpy_struct):
146424
- """Choose between an arbitrary number of values with an index"""
146425
-
146426
- data_type: str
146427
- """
146428
-
146429
- :type: str
146430
- """
146431
-
146432
- index_switch_items: NodeIndexSwitchItems
146433
- """
146434
-
146435
- :type: NodeIndexSwitchItems
146436
- """
147297
+ class GeometryNodeIndexOfNearest(GeometryNode, NodeInternal, Node, bpy_struct):
147298
+ """Find the nearest element in a group. Similar to the "Sample Nearest" node"""
146437
147299
 
146438
147300
  @classmethod
146439
147301
  def is_registered_node_type(cls) -> bool:
@@ -146490,68 +147352,20 @@ class GeometryNodeIndexSwitch(GeometryNode, NodeInternal, Node, bpy_struct):
146490
147352
  """
146491
147353
  ...
146492
147354
 
146493
- class GeometryNodeInputActiveCamera(GeometryNode, NodeInternal, Node, bpy_struct):
146494
- """Retrieve the scene's active camera"""
146495
-
146496
- @classmethod
146497
- def is_registered_node_type(cls) -> bool:
146498
- """True if a registered node type
146499
-
146500
- :return: Result
146501
- :rtype: bool
146502
- """
146503
- ...
146504
-
146505
- @classmethod
146506
- def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
146507
- """Input socket template
146508
-
146509
- :param index: Index
146510
- :type index: int | None
146511
- :return: result
146512
- :rtype: NodeInternalSocketTemplate
146513
- """
146514
- ...
146515
-
146516
- @classmethod
146517
- def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
146518
- """Output socket template
146519
-
146520
- :param index: Index
146521
- :type index: int | None
146522
- :return: result
146523
- :rtype: NodeInternalSocketTemplate
146524
- """
146525
- ...
146526
-
146527
- @classmethod
146528
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
146529
- """
147355
+ class GeometryNodeIndexSwitch(GeometryNode, NodeInternal, Node, bpy_struct):
147356
+ """Choose between an arbitrary number of values with an index"""
146530
147357
 
146531
- :param id: The RNA type identifier.
146532
- :type id: str | None
146533
- :param default:
146534
- :return: The RNA type or default when not found.
146535
- :rtype: Struct
146536
- """
146537
- ...
147358
+ data_type: str
147359
+ """
146538
147360
 
146539
- @classmethod
146540
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
146541
- """
147361
+ :type: str
147362
+ """
146542
147363
 
146543
- :param id: The RNA type identifier.
146544
- :type id: str | None
146545
- :param default:
146546
- :return: The class or default when not found.
146547
- :rtype: typing.Any
146548
- """
146549
- ...
147364
+ index_switch_items: NodeIndexSwitchItems
147365
+ """
146550
147366
 
146551
- class GeometryNodeInputCurveHandlePositions(
146552
- GeometryNode, NodeInternal, Node, bpy_struct
146553
- ):
146554
- """Retrieve the position of each Bézier control point's handles"""
147367
+ :type: NodeIndexSwitchItems
147368
+ """
146555
147369
 
146556
147370
  @classmethod
146557
147371
  def is_registered_node_type(cls) -> bool:
@@ -146608,8 +147422,8 @@ class GeometryNodeInputCurveHandlePositions(
146608
147422
  """
146609
147423
  ...
146610
147424
 
146611
- class GeometryNodeInputCurveTilt(GeometryNode, NodeInternal, Node, bpy_struct):
146612
- """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"""
146613
147427
 
146614
147428
  @classmethod
146615
147429
  def is_registered_node_type(cls) -> bool:
@@ -146666,8 +147480,10 @@ class GeometryNodeInputCurveTilt(GeometryNode, NodeInternal, Node, bpy_struct):
146666
147480
  """
146667
147481
  ...
146668
147482
 
146669
- class GeometryNodeInputEdgeSmooth(GeometryNode, NodeInternal, Node, bpy_struct):
146670
- """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"""
146671
147487
 
146672
147488
  @classmethod
146673
147489
  def is_registered_node_type(cls) -> bool:
@@ -146724,8 +147540,8 @@ class GeometryNodeInputEdgeSmooth(GeometryNode, NodeInternal, Node, bpy_struct):
146724
147540
  """
146725
147541
  ...
146726
147542
 
146727
- class GeometryNodeInputID(GeometryNode, NodeInternal, Node, bpy_struct):
146728
- """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"""
146729
147545
 
146730
147546
  @classmethod
146731
147547
  def is_registered_node_type(cls) -> bool:
@@ -146782,14 +147598,8 @@ class GeometryNodeInputID(GeometryNode, NodeInternal, Node, bpy_struct):
146782
147598
  """
146783
147599
  ...
146784
147600
 
146785
- class GeometryNodeInputImage(GeometryNode, NodeInternal, Node, bpy_struct):
146786
- """Input image"""
146787
-
146788
- image: Image | None
146789
- """
146790
-
146791
- :type: Image | None
146792
- """
147601
+ class GeometryNodeInputEdgeSmooth(GeometryNode, NodeInternal, Node, bpy_struct):
147602
+ """Retrieve whether each edge is marked for smooth or split normals"""
146793
147603
 
146794
147604
  @classmethod
146795
147605
  def is_registered_node_type(cls) -> bool:
@@ -146846,8 +147656,8 @@ class GeometryNodeInputImage(GeometryNode, NodeInternal, Node, bpy_struct):
146846
147656
  """
146847
147657
  ...
146848
147658
 
146849
- class GeometryNodeInputIndex(GeometryNode, NodeInternal, Node, bpy_struct):
146850
- """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"""
146851
147661
 
146852
147662
  @classmethod
146853
147663
  def is_registered_node_type(cls) -> bool:
@@ -146904,8 +147714,14 @@ class GeometryNodeInputIndex(GeometryNode, NodeInternal, Node, bpy_struct):
146904
147714
  """
146905
147715
  ...
146906
147716
 
146907
- class GeometryNodeInputInstanceRotation(GeometryNode, NodeInternal, Node, bpy_struct):
146908
- """Retrieve the rotation of each instance in the geometry"""
147717
+ class GeometryNodeInputImage(GeometryNode, NodeInternal, Node, bpy_struct):
147718
+ """Input image"""
147719
+
147720
+ image: Image | None
147721
+ """
147722
+
147723
+ :type: Image | None
147724
+ """
146909
147725
 
146910
147726
  @classmethod
146911
147727
  def is_registered_node_type(cls) -> bool:
@@ -146962,8 +147778,8 @@ class GeometryNodeInputInstanceRotation(GeometryNode, NodeInternal, Node, bpy_st
146962
147778
  """
146963
147779
  ...
146964
147780
 
146965
- class GeometryNodeInputInstanceScale(GeometryNode, NodeInternal, Node, bpy_struct):
146966
- """Retrieve the scale of each instance in the geometry"""
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"""
146967
147783
 
146968
147784
  @classmethod
146969
147785
  def is_registered_node_type(cls) -> bool:
@@ -147020,14 +147836,8 @@ class GeometryNodeInputInstanceScale(GeometryNode, NodeInternal, Node, bpy_struc
147020
147836
  """
147021
147837
  ...
147022
147838
 
147023
- class GeometryNodeInputMaterial(GeometryNode, NodeInternal, Node, bpy_struct):
147024
- """Output a single material"""
147025
-
147026
- material: Material | None
147027
- """
147028
-
147029
- :type: Material | None
147030
- """
147839
+ class GeometryNodeInputInstanceRotation(GeometryNode, NodeInternal, Node, bpy_struct):
147840
+ """Retrieve the rotation of each instance in the geometry"""
147031
147841
 
147032
147842
  @classmethod
147033
147843
  def is_registered_node_type(cls) -> bool:
@@ -147084,8 +147894,8 @@ class GeometryNodeInputMaterial(GeometryNode, NodeInternal, Node, bpy_struct):
147084
147894
  """
147085
147895
  ...
147086
147896
 
147087
- class GeometryNodeInputMaterialIndex(GeometryNode, NodeInternal, Node, bpy_struct):
147088
- """Retrieve the index of the material used for each element in the geometry's list of materials"""
147897
+ class GeometryNodeInputInstanceScale(GeometryNode, NodeInternal, Node, bpy_struct):
147898
+ """Retrieve the scale of each instance in the geometry"""
147089
147899
 
147090
147900
  @classmethod
147091
147901
  def is_registered_node_type(cls) -> bool:
@@ -147142,8 +147952,14 @@ class GeometryNodeInputMaterialIndex(GeometryNode, NodeInternal, Node, bpy_struc
147142
147952
  """
147143
147953
  ...
147144
147954
 
147145
- class GeometryNodeInputMeshEdgeAngle(GeometryNode, NodeInternal, Node, bpy_struct):
147146
- """Calculate the surface area of each face in a mesh"""
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
+ """
147147
147963
 
147148
147964
  @classmethod
147149
147965
  def is_registered_node_type(cls) -> bool:
@@ -147200,8 +148016,8 @@ class GeometryNodeInputMeshEdgeAngle(GeometryNode, NodeInternal, Node, bpy_struc
147200
148016
  """
147201
148017
  ...
147202
148018
 
147203
- class GeometryNodeInputMeshEdgeNeighbors(GeometryNode, NodeInternal, Node, bpy_struct):
147204
- """Retrieve the number of faces that use each edge as one of their sides"""
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"""
147205
148021
 
147206
148022
  @classmethod
147207
148023
  def is_registered_node_type(cls) -> bool:
@@ -147258,8 +148074,124 @@ class GeometryNodeInputMeshEdgeNeighbors(GeometryNode, NodeInternal, Node, bpy_s
147258
148074
  """
147259
148075
  ...
147260
148076
 
147261
- class GeometryNodeInputMeshEdgeVertices(GeometryNode, NodeInternal, Node, bpy_struct):
147262
- """Retrieve topology information relating to each edge of a mesh"""
148077
+ class GeometryNodeInputMeshEdgeAngle(GeometryNode, NodeInternal, Node, bpy_struct):
148078
+ """Calculate the surface area of each face in a mesh"""
148079
+
148080
+ @classmethod
148081
+ def is_registered_node_type(cls) -> bool:
148082
+ """True if a registered node type
148083
+
148084
+ :return: Result
148085
+ :rtype: bool
148086
+ """
148087
+ ...
148088
+
148089
+ @classmethod
148090
+ def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
148091
+ """Input socket template
148092
+
148093
+ :param index: Index
148094
+ :type index: int | None
148095
+ :return: result
148096
+ :rtype: NodeInternalSocketTemplate
148097
+ """
148098
+ ...
148099
+
148100
+ @classmethod
148101
+ def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
148102
+ """Output socket template
148103
+
148104
+ :param index: Index
148105
+ :type index: int | None
148106
+ :return: result
148107
+ :rtype: NodeInternalSocketTemplate
148108
+ """
148109
+ ...
148110
+
148111
+ @classmethod
148112
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
148113
+ """
148114
+
148115
+ :param id: The RNA type identifier.
148116
+ :type id: str | None
148117
+ :param default:
148118
+ :return: The RNA type or default when not found.
148119
+ :rtype: Struct
148120
+ """
148121
+ ...
148122
+
148123
+ @classmethod
148124
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
148125
+ """
148126
+
148127
+ :param id: The RNA type identifier.
148128
+ :type id: str | None
148129
+ :param default:
148130
+ :return: The class or default when not found.
148131
+ :rtype: typing.Any
148132
+ """
148133
+ ...
148134
+
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"""
147263
148195
 
147264
148196
  @classmethod
147265
148197
  def is_registered_node_type(cls) -> bool:
@@ -160455,10 +161387,10 @@ class GreasePencilv3(ID, bpy_struct):
160455
161387
  :type: AnimData
160456
161388
  """
160457
161389
 
160458
- attributes: AttributeGroup
161390
+ attributes: AttributeGroupGreasePencil
160459
161391
  """ Geometry attributes
160460
161392
 
160461
- :type: AttributeGroup
161393
+ :type: AttributeGroupGreasePencil
160462
161394
  """
160463
161395
 
160464
161396
  before_color: mathutils.Color
@@ -160467,10 +161399,10 @@ class GreasePencilv3(ID, bpy_struct):
160467
161399
  :type: mathutils.Color
160468
161400
  """
160469
161401
 
160470
- color_attributes: AttributeGroup
161402
+ color_attributes: AttributeGroupGreasePencil
160471
161403
  """ Geometry color attributes
160472
161404
 
160473
- :type: AttributeGroup
161405
+ :type: AttributeGroupGreasePencil
160474
161406
  """
160475
161407
 
160476
161408
  ghost_after_range: int
@@ -161668,155 +162600,199 @@ class IKParam(bpy_struct):
161668
162600
  """
161669
162601
  ...
161670
162602
 
161671
- class IMAGE_FH_drop_handler(FileHandler, bpy_struct):
161672
- @classmethod
161673
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
161674
- """
161675
-
161676
- :param id: The RNA type identifier.
161677
- :type id: str | None
161678
- :param default:
161679
- :return: The RNA type or default when not found.
161680
- :rtype: Struct
161681
- """
161682
- ...
161683
-
161684
- @classmethod
161685
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
161686
- """
161687
-
161688
- :param id: The RNA type identifier.
161689
- :type id: str | None
161690
- :param default:
161691
- :return: The class or default when not found.
161692
- :rtype: typing.Any
161693
- """
161694
- ...
161695
-
161696
- class IMAGE_UL_render_slots(UIList, bpy_struct):
161697
- def draw_item(
161698
- self,
161699
- _context,
161700
- layout,
161701
- _data,
161702
- item,
161703
- _icon,
161704
- _active_data,
161705
- _active_propname,
161706
- _index,
161707
- ):
161708
- """
161709
-
161710
- :param _context:
161711
- :param layout:
161712
- :param _data:
161713
- :param item:
161714
- :param _icon:
161715
- :param _active_data:
161716
- :param _active_propname:
161717
- :param _index:
161718
- """
161719
- ...
161720
-
161721
- @classmethod
161722
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
161723
- """
161724
-
161725
- :param id: The RNA type identifier.
161726
- :type id: str | None
161727
- :param default:
161728
- :return: The RNA type or default when not found.
161729
- :rtype: Struct
161730
- """
161731
- ...
161732
-
161733
- @classmethod
161734
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
161735
- """
161736
-
161737
- :param id: The RNA type identifier.
161738
- :type id: str | None
161739
- :param default:
161740
- :return: The class or default when not found.
161741
- :rtype: typing.Any
161742
- """
161743
- ...
161744
-
161745
- class IMAGE_UL_udim_tiles(UIList, bpy_struct):
161746
- def draw_item(
161747
- self,
161748
- _context,
161749
- layout,
161750
- _data,
161751
- item,
161752
- _icon,
161753
- _active_data,
161754
- _active_propname,
161755
- _index,
161756
- ):
162603
+ class IMAGE_AST_brush_paint(AssetShelf, bpy_struct):
162604
+ @staticmethod
162605
+ def draw_popup_selector(layout, context, brush, show_name=True):
161757
162606
  """
161758
162607
 
161759
- :param _context:
161760
162608
  :param layout:
161761
- :param _data:
161762
- :param item:
161763
- :param _icon:
161764
- :param _active_data:
161765
- :param _active_propname:
161766
- :param _index:
161767
- """
161768
- ...
161769
-
161770
- @classmethod
161771
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
161772
- """
161773
-
161774
- :param id: The RNA type identifier.
161775
- :type id: str | None
161776
- :param default:
161777
- :return: The RNA type or default when not found.
161778
- :rtype: Struct
161779
- """
161780
- ...
161781
-
161782
- @classmethod
161783
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
161784
- """
161785
-
161786
- :param id: The RNA type identifier.
161787
- :type id: str | None
161788
- :param default:
161789
- :return: The class or default when not found.
161790
- :rtype: typing.Any
161791
- """
161792
- ...
161793
-
161794
- class IO_FH_fbx(FileHandler, bpy_struct):
161795
- @classmethod
161796
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
161797
- """
161798
-
161799
- :param id: The RNA type identifier.
161800
- :type id: str | None
161801
- :param default:
161802
- :return: The RNA type or default when not found.
161803
- :rtype: Struct
162609
+ :param context:
162610
+ :param brush:
162611
+ :param show_name:
161804
162612
  """
161805
162613
  ...
161806
162614
 
161807
- @classmethod
161808
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
162615
+ @staticmethod
162616
+ def get_shelf_name_from_context(context):
161809
162617
  """
161810
162618
 
161811
- :param id: The RNA type identifier.
161812
- :type id: str | None
161813
- :param default:
161814
- :return: The class or default when not found.
161815
- :rtype: typing.Any
162619
+ :param context:
161816
162620
  """
161817
162621
  ...
161818
162622
 
161819
- class IO_FH_gltf2(FileHandler, bpy_struct):
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
+
162647
+ class IMAGE_FH_drop_handler(FileHandler, bpy_struct):
162648
+ @classmethod
162649
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
162650
+ """
162651
+
162652
+ :param id: The RNA type identifier.
162653
+ :type id: str | None
162654
+ :param default:
162655
+ :return: The RNA type or default when not found.
162656
+ :rtype: Struct
162657
+ """
162658
+ ...
162659
+
162660
+ @classmethod
162661
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
162662
+ """
162663
+
162664
+ :param id: The RNA type identifier.
162665
+ :type id: str | None
162666
+ :param default:
162667
+ :return: The class or default when not found.
162668
+ :rtype: typing.Any
162669
+ """
162670
+ ...
162671
+
162672
+ class IMAGE_UL_render_slots(UIList, bpy_struct):
162673
+ def draw_item(
162674
+ self,
162675
+ _context,
162676
+ layout,
162677
+ _data,
162678
+ item,
162679
+ _icon,
162680
+ _active_data,
162681
+ _active_propname,
162682
+ _index,
162683
+ ):
162684
+ """
162685
+
162686
+ :param _context:
162687
+ :param layout:
162688
+ :param _data:
162689
+ :param item:
162690
+ :param _icon:
162691
+ :param _active_data:
162692
+ :param _active_propname:
162693
+ :param _index:
162694
+ """
162695
+ ...
162696
+
162697
+ @classmethod
162698
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
162699
+ """
162700
+
162701
+ :param id: The RNA type identifier.
162702
+ :type id: str | None
162703
+ :param default:
162704
+ :return: The RNA type or default when not found.
162705
+ :rtype: Struct
162706
+ """
162707
+ ...
162708
+
162709
+ @classmethod
162710
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
162711
+ """
162712
+
162713
+ :param id: The RNA type identifier.
162714
+ :type id: str | None
162715
+ :param default:
162716
+ :return: The class or default when not found.
162717
+ :rtype: typing.Any
162718
+ """
162719
+ ...
162720
+
162721
+ class IMAGE_UL_udim_tiles(UIList, bpy_struct):
162722
+ def draw_item(
162723
+ self,
162724
+ _context,
162725
+ layout,
162726
+ _data,
162727
+ item,
162728
+ _icon,
162729
+ _active_data,
162730
+ _active_propname,
162731
+ _index,
162732
+ ):
162733
+ """
162734
+
162735
+ :param _context:
162736
+ :param layout:
162737
+ :param _data:
162738
+ :param item:
162739
+ :param _icon:
162740
+ :param _active_data:
162741
+ :param _active_propname:
162742
+ :param _index:
162743
+ """
162744
+ ...
162745
+
162746
+ @classmethod
162747
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
162748
+ """
162749
+
162750
+ :param id: The RNA type identifier.
162751
+ :type id: str | None
162752
+ :param default:
162753
+ :return: The RNA type or default when not found.
162754
+ :rtype: Struct
162755
+ """
162756
+ ...
162757
+
162758
+ @classmethod
162759
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
162760
+ """
162761
+
162762
+ :param id: The RNA type identifier.
162763
+ :type id: str | None
162764
+ :param default:
162765
+ :return: The class or default when not found.
162766
+ :rtype: typing.Any
162767
+ """
162768
+ ...
162769
+
162770
+ class IO_FH_fbx(FileHandler, bpy_struct):
162771
+ @classmethod
162772
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
162773
+ """
162774
+
162775
+ :param id: The RNA type identifier.
162776
+ :type id: str | None
162777
+ :param default:
162778
+ :return: The RNA type or default when not found.
162779
+ :rtype: Struct
162780
+ """
162781
+ ...
162782
+
162783
+ @classmethod
162784
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
162785
+ """
162786
+
162787
+ :param id: The RNA type identifier.
162788
+ :type id: str | None
162789
+ :param default:
162790
+ :return: The class or default when not found.
162791
+ :rtype: typing.Any
162792
+ """
162793
+ ...
162794
+
162795
+ class IO_FH_gltf2(FileHandler, bpy_struct):
161820
162796
  @classmethod
161821
162797
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
161822
162798
  """
@@ -172099,10 +173075,10 @@ class Mesh(ID, bpy_struct):
172099
173075
  :type: AnimData
172100
173076
  """
172101
173077
 
172102
- attributes: AttributeGroup
173078
+ attributes: AttributeGroupMesh
172103
173079
  """ Geometry attributes
172104
173080
 
172105
- :type: AttributeGroup
173081
+ :type: AttributeGroupMesh
172106
173082
  """
172107
173083
 
172108
173084
  auto_texspace: bool
@@ -172111,10 +173087,10 @@ class Mesh(ID, bpy_struct):
172111
173087
  :type: bool
172112
173088
  """
172113
173089
 
172114
- color_attributes: AttributeGroup
173090
+ color_attributes: AttributeGroupMesh
172115
173091
  """ Geometry color attributes
172116
173092
 
172117
- :type: AttributeGroup
173093
+ :type: AttributeGroupMesh
172118
173094
  """
172119
173095
 
172120
173096
  corner_normals: bpy_prop_collection[MeshNormalValue]
@@ -183576,6 +184552,12 @@ class Object(ID, bpy_struct):
183576
184552
  :type: int | None
183577
184553
  """
183578
184554
 
184555
+ active_selection_set: int | None
184556
+ """ Index of the currently active selection set
184557
+
184558
+ :type: int | None
184559
+ """
184560
+
183579
184561
  active_shape_key: ShapeKey | None
183580
184562
  """ Current shape key
183581
184563
 
@@ -184014,6 +184996,12 @@ Warning: Only takes into account object parenting, so e.g. in case of bone paren
184014
184996
  :type: mathutils.Vector
184015
184997
  """
184016
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
+
184017
185005
  shader_effects: ObjectShaderFx
184018
185006
  """ Effects affecting display of object
184019
185007
 
@@ -186280,6 +187268,47 @@ class POINTCLOUD_UL_attributes(UIList, bpy_struct):
186280
187268
  """
186281
187269
  ...
186282
187270
 
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
+
186283
187312
  class PackedFile(bpy_struct):
186284
187313
  """External file packed into the .blend file"""
186285
187314
 
@@ -186321,17 +187350,35 @@ class PackedFile(bpy_struct):
186321
187350
 
186322
187351
  class Paint(bpy_struct):
186323
187352
  brush: Brush | None
186324
- """ Active Brush
187353
+ """ Active brush
186325
187354
 
186326
187355
  :type: Brush | None
186327
187356
  """
186328
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
+
186329
187364
  cavity_curve: CurveMapping
186330
187365
  """ Editable cavity curve
186331
187366
 
186332
187367
  :type: CurveMapping
186333
187368
  """
186334
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
+
186335
187382
  palette: Palette | None
186336
187383
  """ Active Palette
186337
187384
 
@@ -186380,12 +187427,6 @@ class Paint(bpy_struct):
186380
187427
  :type: bool
186381
187428
  """
186382
187429
 
186383
- tool_slots: bpy_prop_collection[PaintToolSlot]
186384
- """
186385
-
186386
- :type: bpy_prop_collection[PaintToolSlot]
186387
- """
186388
-
186389
187430
  use_cavity: bool
186390
187431
  """ Mask painting according to mesh geometry cavity
186391
187432
 
@@ -186510,11 +187551,11 @@ class PaintModeSettings(bpy_struct):
186510
187551
  """
186511
187552
  ...
186512
187553
 
186513
- class PaintToolSlot(bpy_struct):
186514
- brush: Brush | None
187554
+ class Palette(ID, bpy_struct):
187555
+ colors: PaletteColors
186515
187556
  """
186516
187557
 
186517
- :type: Brush | None
187558
+ :type: PaletteColors
186518
187559
  """
186519
187560
 
186520
187561
  @classmethod
@@ -186541,54 +187582,23 @@ class PaintToolSlot(bpy_struct):
186541
187582
  """
186542
187583
  ...
186543
187584
 
186544
- class Palette(ID, bpy_struct):
186545
- colors: PaletteColors
187585
+ class PaletteColor(bpy_struct):
187586
+ color: mathutils.Color
186546
187587
  """
186547
187588
 
186548
- :type: PaletteColors
186549
- """
186550
-
186551
- @classmethod
186552
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
186553
- """
186554
-
186555
- :param id: The RNA type identifier.
186556
- :type id: str | None
186557
- :param default:
186558
- :return: The RNA type or default when not found.
186559
- :rtype: Struct
186560
- """
186561
- ...
186562
-
186563
- @classmethod
186564
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
186565
- """
186566
-
186567
- :param id: The RNA type identifier.
186568
- :type id: str | None
186569
- :param default:
186570
- :return: The class or default when not found.
186571
- :rtype: typing.Any
186572
- """
186573
- ...
186574
-
186575
- class PaletteColor(bpy_struct):
186576
- color: mathutils.Color
186577
- """
186578
-
186579
- :type: mathutils.Color
186580
- """
186581
-
186582
- strength: float
186583
- """
186584
-
186585
- :type: float
186586
- """
186587
-
186588
- weight: float
186589
- """
186590
-
186591
- :type: float
187589
+ :type: mathutils.Color
187590
+ """
187591
+
187592
+ strength: float
187593
+ """
187594
+
187595
+ :type: float
187596
+ """
187597
+
187598
+ weight: float
187599
+ """
187600
+
187601
+ :type: float
186592
187602
  """
186593
187603
 
186594
187604
  @classmethod
@@ -189649,16 +190659,16 @@ class PointCloud(ID, bpy_struct):
189649
190659
  :type: AnimData
189650
190660
  """
189651
190661
 
189652
- attributes: AttributeGroup
190662
+ attributes: AttributeGroupPointCloud
189653
190663
  """ Geometry attributes
189654
190664
 
189655
- :type: AttributeGroup
190665
+ :type: AttributeGroupPointCloud
189656
190666
  """
189657
190667
 
189658
- color_attributes: AttributeGroup
190668
+ color_attributes: AttributeGroupPointCloud
189659
190669
  """ Geometry color attributes
189660
190670
 
189661
- :type: AttributeGroup
190671
+ :type: AttributeGroupPointCloud
189662
190672
  """
189663
190673
 
189664
190674
  materials: IDMaterials
@@ -200887,7 +201897,7 @@ class ShaderNodeBsdfHairPrincipled(ShaderNode, NodeInternal, Node, bpy_struct):
200887
201897
  ...
200888
201898
 
200889
201899
  class ShaderNodeBsdfPrincipled(ShaderNode, NodeInternal, Node, bpy_struct):
200890
- """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"""
200891
201901
 
200892
201902
  distribution: str
200893
201903
  """ Light scattering distribution on rough surface
@@ -226781,8 +227791,490 @@ class UnitSettings(bpy_struct):
226781
227791
  """
226782
227792
  ...
226783
227793
 
226784
- class UnknownType(bpy_struct):
226785
- """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
+ ...
226786
228278
 
226787
228279
  @classmethod
226788
228280
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -226808,32 +228300,25 @@ class UnknownType(bpy_struct):
226808
228300
  """
226809
228301
  ...
226810
228302
 
226811
- class UserAssetLibrary(bpy_struct):
226812
- """Settings to define a reusable library for Asset Browsers to use"""
226813
-
226814
- import_method: str
226815
- """ Determine how the asset will be imported, unless overridden by the Asset Browser
226816
-
226817
- :type: str
226818
- """
226819
-
226820
- name: str
226821
- """ Identifier (not necessarily unique) for the asset library
226822
-
226823
- :type: str
226824
- """
226825
-
226826
- path: str
226827
- """ 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
+ """
226828
228307
 
226829
- :type: str
226830
- """
228308
+ :param layout:
228309
+ :param context:
228310
+ :param brush:
228311
+ :param show_name:
228312
+ """
228313
+ ...
226831
228314
 
226832
- use_relative_path: bool
226833
- """ Use relative path when linking assets from this asset library
228315
+ @staticmethod
228316
+ def get_shelf_name_from_context(context):
228317
+ """
226834
228318
 
226835
- :type: bool
226836
- """
228319
+ :param context:
228320
+ """
228321
+ ...
226837
228322
 
226838
228323
  @classmethod
226839
228324
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -226859,86 +228344,25 @@ class UserAssetLibrary(bpy_struct):
226859
228344
  """
226860
228345
  ...
226861
228346
 
226862
- class UserExtensionRepo(bpy_struct):
226863
- """Settings to define an extension repository"""
226864
-
226865
- access_token: str
226866
- """ Personal access token, may be required by some repositories
226867
-
226868
- :type: str
226869
- """
226870
-
226871
- custom_directory: str
226872
- """ The local directory containing extensions
226873
-
226874
- :type: str
226875
- """
226876
-
226877
- directory: str
226878
- """ The local directory containing extensions
226879
-
226880
- :type: str
226881
- """
226882
-
226883
- enabled: bool
226884
- """ Enable the repository
226885
-
226886
- :type: bool
226887
- """
226888
-
226889
- module: str
226890
- """ Unique module identifier
226891
-
226892
- :type: str
226893
- """
226894
-
226895
- name: str
226896
- """ Unique repository name
226897
-
226898
- :type: str
226899
- """
226900
-
226901
- remote_url: str
226902
- """ Remote URL to the extension repository, the file-system may be referenced using the file URI scheme: "file://"
226903
-
226904
- :type: str
226905
- """
226906
-
226907
- source: str
226908
- """ Select if the repository is in a user managed or system provided directory
226909
-
226910
- :type: str
226911
- """
226912
-
226913
- use_access_token: bool
226914
- """ Repository requires an access token
226915
-
226916
- :type: bool
226917
- """
226918
-
226919
- use_cache: bool
226920
- """ Downloaded package files are deleted after installation
226921
-
226922
- :type: bool
226923
- """
226924
-
226925
- use_custom_directory: bool
226926
- """ Manually set the path for extensions to be stored. When disabled a user's extensions directory is created
226927
-
226928
- :type: bool
226929
- """
226930
-
226931
- use_remote_url: bool
226932
- """ 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
+ """
226933
228351
 
226934
- :type: bool
226935
- """
228352
+ :param layout:
228353
+ :param context:
228354
+ :param brush:
228355
+ :param show_name:
228356
+ """
228357
+ ...
226936
228358
 
226937
- use_sync_on_startup: bool
226938
- """ Allow Blender to check for updates upon launch
228359
+ @staticmethod
228360
+ def get_shelf_name_from_context(context):
228361
+ """
226939
228362
 
226940
- :type: bool
226941
- """
228363
+ :param context:
228364
+ """
228365
+ ...
226942
228366
 
226943
228367
  @classmethod
226944
228368
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -226964,38 +228388,25 @@ class UserExtensionRepo(bpy_struct):
226964
228388
  """
226965
228389
  ...
226966
228390
 
226967
- class UserSolidLight(bpy_struct):
226968
- """Light used for Studio lighting in solid shading mode"""
226969
-
226970
- diffuse_color: mathutils.Color
226971
- """ Color of the light's diffuse highlight
226972
-
226973
- :type: mathutils.Color
226974
- """
226975
-
226976
- direction: mathutils.Vector
226977
- """ Direction that the light is shining
226978
-
226979
- :type: mathutils.Vector
226980
- """
226981
-
226982
- smooth: float
226983
- """ Smooth the lighting from this light
226984
-
226985
- :type: float
226986
- """
226987
-
226988
- specular_color: mathutils.Color
226989
- """ 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
+ """
226990
228395
 
226991
- :type: mathutils.Color
226992
- """
228396
+ :param layout:
228397
+ :param context:
228398
+ :param brush:
228399
+ :param show_name:
228400
+ """
228401
+ ...
226993
228402
 
226994
- use: bool
226995
- """ Enable this light in solid shading mode
228403
+ @staticmethod
228404
+ def get_shelf_name_from_context(context):
228405
+ """
226996
228406
 
226997
- :type: bool
226998
- """
228407
+ :param context:
228408
+ """
228409
+ ...
226999
228410
 
227000
228411
  @classmethod
227001
228412
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -227021,30 +228432,25 @@ class UserSolidLight(bpy_struct):
227021
228432
  """
227022
228433
  ...
227023
228434
 
227024
- class UvSculpt(Paint, bpy_struct):
227025
- curve_preset: str
227026
- """
227027
-
227028
- :type: str
227029
- """
227030
-
227031
- size: int
227032
- """
227033
-
227034
- :type: int
227035
- """
227036
-
227037
- strength: float
227038
- """
228435
+ class VIEW3D_AST_brush_vertex_paint(AssetShelf, bpy_struct):
228436
+ @staticmethod
228437
+ def draw_popup_selector(layout, context, brush, show_name=True):
228438
+ """
227039
228439
 
227040
- :type: float
227041
- """
228440
+ :param layout:
228441
+ :param context:
228442
+ :param brush:
228443
+ :param show_name:
228444
+ """
228445
+ ...
227042
228446
 
227043
- strength_curve: CurveMapping
227044
- """
228447
+ @staticmethod
228448
+ def get_shelf_name_from_context(context):
228449
+ """
227045
228450
 
227046
- :type: CurveMapping
227047
- """
228451
+ :param context:
228452
+ """
228453
+ ...
227048
228454
 
227049
228455
  @classmethod
227050
228456
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -227070,7 +228476,26 @@ class UvSculpt(Paint, bpy_struct):
227070
228476
  """
227071
228477
  ...
227072
228478
 
227073
- 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
+
227074
228499
  @classmethod
227075
228500
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
227076
228501
  """
@@ -227095,7 +228520,7 @@ class VIEW3D_AST_pose_library(AssetShelf, bpy_struct):
227095
228520
  """
227096
228521
  ...
227097
228522
 
227098
- class VIEW3D_AST_sculpt_brushes(AssetShelf, bpy_struct):
228523
+ class VIEW3D_AST_pose_library(AssetShelf, bpy_struct):
227099
228524
  @classmethod
227100
228525
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
227101
228526
  """
@@ -234116,6 +235541,8 @@ GREASE_PENCIL_MT_snap_pie: bl_ui.properties_grease_pencil_common.GREASE_PENCIL_M
234116
235541
 
234117
235542
  GREASE_PENCIL_UL_masks: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_UL_masks
234118
235543
 
235544
+ IMAGE_AST_brush_paint: bl_ui.space_image.IMAGE_AST_brush_paint
235545
+
234119
235546
  IMAGE_FH_drop_handler: bl_operators.image.IMAGE_FH_drop_handler
234120
235547
 
234121
235548
  IMAGE_HT_header: bl_ui.space_image.IMAGE_HT_header
@@ -235098,6 +236525,40 @@ POINTCLOUD_MT_add_attribute: bl_ui.properties_data_pointcloud.POINTCLOUD_MT_add_
235098
236525
 
235099
236526
  POINTCLOUD_UL_attributes: bl_ui.properties_data_pointcloud.POINTCLOUD_UL_attributes
235100
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
+
235101
236562
  PREFERENCES_OT_addon_disable: bl_operators.userpref.PREFERENCES_OT_addon_disable
235102
236563
 
235103
236564
  PREFERENCES_OT_addon_enable: bl_operators.userpref.PREFERENCES_OT_addon_enable
@@ -235866,7 +237327,25 @@ USERPREF_UL_asset_libraries: bl_ui.space_userpref.USERPREF_UL_asset_libraries
235866
237327
 
235867
237328
  USERPREF_UL_extension_repos: bl_ui.space_userpref.USERPREF_UL_extension_repos
235868
237329
 
235869
- 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
235870
237349
 
235871
237350
  VIEW3D_FH_camera_background_image: bl_operators.view3d.VIEW3D_FH_camera_background_image
235872
237351
 
@@ -235898,8 +237377,6 @@ VIEW3D_MT_brush_context_menu: bl_ui.space_view3d_toolbar.VIEW3D_MT_brush_context
235898
237377
 
235899
237378
  VIEW3D_MT_brush_gpencil_context_menu: bl_ui.space_view3d_toolbar.VIEW3D_MT_brush_gpencil_context_menu
235900
237379
 
235901
- VIEW3D_MT_brush_paint_modes: bl_ui.space_view3d.VIEW3D_MT_brush_paint_modes
235902
-
235903
237380
  VIEW3D_MT_camera_add: bl_ui.space_view3d.VIEW3D_MT_camera_add
235904
237381
 
235905
237382
  VIEW3D_MT_curve_add: bl_ui.space_view3d.VIEW3D_MT_curve_add
@@ -236472,6 +237949,8 @@ VIEW3D_PT_tools_brush_texture: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_brush_
236472
237949
 
236473
237950
  VIEW3D_PT_tools_grease_pencil_brush_advanced: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_brush_advanced
236474
237951
 
237952
+ VIEW3D_PT_tools_grease_pencil_brush_eraser: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_brush_eraser
237953
+
236475
237954
  VIEW3D_PT_tools_grease_pencil_brush_gap_closure: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_brush_gap_closure
236476
237955
 
236477
237956
  VIEW3D_PT_tools_grease_pencil_brush_mix_palette: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_brush_mix_palette
@@ -236516,6 +237995,8 @@ VIEW3D_PT_tools_grease_pencil_sculpt_settings: bl_ui.space_view3d_toolbar.VIEW3D
236516
237995
 
236517
237996
  VIEW3D_PT_tools_grease_pencil_v3_brush_advanced: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_v3_brush_advanced
236518
237997
 
237998
+ VIEW3D_PT_tools_grease_pencil_v3_brush_eraser: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_v3_brush_eraser
237999
+
236519
238000
  VIEW3D_PT_tools_grease_pencil_v3_brush_mix_palette: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_v3_brush_mix_palette
236520
238001
 
236521
238002
  VIEW3D_PT_tools_grease_pencil_v3_brush_mixcolor: bl_ui.space_view3d_toolbar.VIEW3D_PT_tools_grease_pencil_v3_brush_mixcolor