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

bpy/types/__init__.pyi CHANGED
@@ -4473,6 +4473,7 @@
4473
4473
  --------------------
4474
4474
 
4475
4475
  * GreasePencilFrames.copy
4476
+ * GreasePencilFrames.move
4476
4477
  * GreasePencilFrames.new
4477
4478
  * GreasePencilLayer.current_frame
4478
4479
  * GreasePencilLayer.frames
@@ -8301,7 +8302,6 @@
8301
8302
 
8302
8303
  * bpy.context.active_annotation_layer
8303
8304
  * bpy.context.active_gpencil_layer
8304
- * bpy.context.editable_gpencil_layers
8305
8305
  * bpy.context.visible_gpencil_layers
8306
8306
  * GreasePencil.layers
8307
8307
  * GreasePencilLayers.new
@@ -27789,7 +27789,6 @@ Property types used in class declarations are all in bpy.props
27789
27789
 
27790
27790
  --------------------
27791
27791
 
27792
- * bpy.context.editable_gpencil_strokes
27793
27792
  * GPencilFrame.strokes
27794
27793
 
27795
27794
  :columns: 2
@@ -54761,56 +54760,6 @@ print(positions_data)
54761
54760
  :columns: 2
54762
54761
 
54763
54762
 
54764
- --------------------
54765
-
54766
- * bpy_struct.id_data
54767
- * AssetShelf.bl_idname
54768
- * AssetShelf.bl_space_type
54769
- * AssetShelf.bl_options
54770
- * AssetShelf.bl_activate_operator
54771
- * AssetShelf.bl_default_preview_size
54772
- * AssetShelf.asset_library_reference
54773
- * AssetShelf.show_names
54774
- * AssetShelf.preview_size
54775
- * AssetShelf.search_filter
54776
-
54777
- :columns: 2
54778
-
54779
-
54780
- --------------------
54781
-
54782
- * bpy_struct.as_pointer
54783
- * bpy_struct.driver_add
54784
- * bpy_struct.driver_remove
54785
- * bpy_struct.get
54786
- * bpy_struct.id_properties_clear
54787
- * bpy_struct.id_properties_ensure
54788
- * bpy_struct.id_properties_ui
54789
- * bpy_struct.is_property_hidden
54790
- * bpy_struct.is_property_overridable_library
54791
- * bpy_struct.is_property_readonly
54792
- * bpy_struct.is_property_set
54793
- * bpy_struct.items
54794
- * bpy_struct.keyframe_delete
54795
- * bpy_struct.keyframe_insert
54796
- * bpy_struct.keys
54797
- * bpy_struct.path_from_id
54798
- * bpy_struct.path_resolve
54799
- * bpy_struct.pop
54800
- * bpy_struct.property_overridable_library_set
54801
- * bpy_struct.property_unset
54802
- * bpy_struct.type_recast
54803
- * bpy_struct.values
54804
- * AssetShelf.poll
54805
- * AssetShelf.asset_poll
54806
- * AssetShelf.get_active_asset
54807
- * AssetShelf.draw_context_menu
54808
- * AssetShelf.bl_rna_get_subclass
54809
- * AssetShelf.bl_rna_get_subclass_py
54810
-
54811
- :columns: 2
54812
-
54813
-
54814
54763
  --------------------
54815
54764
 
54816
54765
  * bpy_struct.id_data
@@ -107158,6 +107107,19 @@ class GreasePencilFrames(bpy_prop_collection[GreasePencilFrame], bpy_struct):
107158
107107
  :rtype: GreasePencilFrame
107159
107108
  """
107160
107109
 
107110
+ def move(
107111
+ self, from_frame_number: int | None, to_frame_number: int | None
107112
+ ) -> GreasePencilFrame:
107113
+ """Move a Grease Pencil frame
107114
+
107115
+ :param from_frame_number: Source Frame Number, The frame number of the source frame
107116
+ :type from_frame_number: int | None
107117
+ :param to_frame_number: Target Frame Number, The frame number to move the frame to
107118
+ :type to_frame_number: int | None
107119
+ :return: The moved frame
107120
+ :rtype: GreasePencilFrame
107121
+ """
107122
+
107161
107123
  @classmethod
107162
107124
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
107163
107125
  """
@@ -130960,18 +130922,6 @@ class Context(bpy_struct):
130960
130922
  :type: list[MovieTrackingTrack]
130961
130923
  """
130962
130924
 
130963
- gpencil_data: GreasePencil | None
130964
- """
130965
-
130966
- :type: GreasePencil | None
130967
- """
130968
-
130969
- gpencil_data_owner: ID | None
130970
- """
130971
-
130972
- :type: ID | None
130973
- """
130974
-
130975
130925
  annotation_data: GreasePencil | None
130976
130926
  """
130977
130927
 
@@ -130984,36 +130934,6 @@ class Context(bpy_struct):
130984
130934
  :type: ID | None
130985
130935
  """
130986
130936
 
130987
- visible_gpencil_layers: list[GPencilLayer]
130988
- """
130989
-
130990
- :type: list[GPencilLayer]
130991
- """
130992
-
130993
- editable_gpencil_layers: list[GPencilLayer]
130994
- """
130995
-
130996
- :type: list[GPencilLayer]
130997
- """
130998
-
130999
- editable_gpencil_strokes: list[GPencilStroke]
131000
- """
131001
-
131002
- :type: list[GPencilStroke]
131003
- """
131004
-
131005
- active_gpencil_layer: list[GPencilLayer] | None
131006
- """
131007
-
131008
- :type: list[GPencilLayer] | None
131009
- """
131010
-
131011
- active_gpencil_frame: list[GreasePencilLayer] | None
131012
- """
131013
-
131014
- :type: list[GreasePencilLayer] | None
131015
- """
131016
-
131017
130937
  active_annotation_layer: GPencilLayer | None
131018
130938
  """
131019
130939
 
@@ -162556,6 +162476,14 @@ class IMAGE_AST_brush_paint(AssetShelf, bpy_struct):
162556
162476
  :param context:
162557
162477
  """
162558
162478
 
162479
+ @classmethod
162480
+ def has_tool_with_brush_type(cls, context, brush_type):
162481
+ """
162482
+
162483
+ :param context:
162484
+ :param brush_type:
162485
+ """
162486
+
162559
162487
  @classmethod
162560
162488
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
162561
162489
  """
@@ -191422,6 +191350,12 @@ class PreferencesView(bpy_struct):
191422
191350
  :type: float
191423
191351
  """
191424
191352
 
191353
+ use_filter_brushes_by_tool: bool
191354
+ """ Only show brushes applicable for the currently active tool in the asset shelf. Stored in the Preferences, which may have to be saved manually if Auto-Save Preferences is disabled
191355
+
191356
+ :type: bool
191357
+ """
191358
+
191425
191359
  use_fresnel_edit: bool
191426
191360
  """ Enable a fresnel effect on edit mesh overlays.
191427
191361
  It improves shape readability of very dense meshes, but increases eye fatigue when modeling lower poly
@@ -213185,14 +213119,20 @@ class TextLine(bpy_struct):
213185
213119
  class TextSequence(EffectSequence, Sequence, bpy_struct):
213186
213120
  """Sequence strip creating text"""
213187
213121
 
213188
- align_x: typing.Literal["LEFT", "CENTER", "RIGHT"]
213189
- """ Align the text along the X axis, relative to the text bounds
213122
+ alignment_x: typing.Literal["LEFT", "CENTER", "RIGHT"]
213123
+ """ Horizontal text alignment
213124
+
213125
+ :type: typing.Literal['LEFT','CENTER','RIGHT']
213126
+ """
213127
+
213128
+ anchor_x: typing.Literal["LEFT", "CENTER", "RIGHT"]
213129
+ """ Horizontal position of the text box relative to Location
213190
213130
 
213191
213131
  :type: typing.Literal['LEFT','CENTER','RIGHT']
213192
213132
  """
213193
213133
 
213194
- align_y: typing.Literal["TOP", "CENTER", "BOTTOM"]
213195
- """ Align the text along the Y axis, relative to the text bounds
213134
+ anchor_y: typing.Literal["TOP", "CENTER", "BOTTOM"]
213135
+ """ Vertical position of the text box relative to Location
213196
213136
 
213197
213137
  :type: typing.Literal['TOP','CENTER','BOTTOM']
213198
213138
  """
@@ -224216,6 +224156,14 @@ class VIEW3D_AST_brush_gpencil_paint(AssetShelf, bpy_struct):
224216
224156
  :param context:
224217
224157
  """
224218
224158
 
224159
+ @classmethod
224160
+ def has_tool_with_brush_type(cls, context, brush_type):
224161
+ """
224162
+
224163
+ :param context:
224164
+ :param brush_type:
224165
+ """
224166
+
224219
224167
  @classmethod
224220
224168
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224221
224169
  """
@@ -224264,6 +224212,14 @@ class VIEW3D_AST_brush_gpencil_sculpt(AssetShelf, bpy_struct):
224264
224212
  :param context:
224265
224213
  """
224266
224214
 
224215
+ @classmethod
224216
+ def has_tool_with_brush_type(cls, context, brush_type):
224217
+ """
224218
+
224219
+ :param context:
224220
+ :param brush_type:
224221
+ """
224222
+
224267
224223
  @classmethod
224268
224224
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224269
224225
  """
@@ -224312,6 +224268,14 @@ class VIEW3D_AST_brush_gpencil_vertex(AssetShelf, bpy_struct):
224312
224268
  :param context:
224313
224269
  """
224314
224270
 
224271
+ @classmethod
224272
+ def has_tool_with_brush_type(cls, context, brush_type):
224273
+ """
224274
+
224275
+ :param context:
224276
+ :param brush_type:
224277
+ """
224278
+
224315
224279
  @classmethod
224316
224280
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224317
224281
  """
@@ -224361,51 +224325,11 @@ class VIEW3D_AST_brush_gpencil_weight(AssetShelf, bpy_struct):
224361
224325
  """
224362
224326
 
224363
224327
  @classmethod
224364
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224365
- """
224366
-
224367
- :param id: The RNA type identifier.
224368
- :type id: str | None
224369
- :param default:
224370
- :return: The RNA type or default when not found.
224371
- :rtype: Struct
224372
- """
224373
-
224374
- @classmethod
224375
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
224376
- """
224377
-
224378
- :param id: The RNA type identifier.
224379
- :type id: str | None
224380
- :param default:
224381
- :return: The class or default when not found.
224382
- :rtype: typing.Any
224383
- """
224384
-
224385
- class VIEW3D_AST_brush_grease_pencil_paint(AssetShelf, bpy_struct):
224386
- @classmethod
224387
- def brush_type_poll(cls, context, asset):
224388
- """
224389
-
224390
- :param context:
224391
- :param asset:
224392
- """
224393
-
224394
- @staticmethod
224395
- def draw_popup_selector(layout, context, brush, show_name=True):
224396
- """
224397
-
224398
- :param layout:
224399
- :param context:
224400
- :param brush:
224401
- :param show_name:
224402
- """
224403
-
224404
- @staticmethod
224405
- def get_shelf_name_from_context(context):
224328
+ def has_tool_with_brush_type(cls, context, brush_type):
224406
224329
  """
224407
224330
 
224408
224331
  :param context:
224332
+ :param brush_type:
224409
224333
  """
224410
224334
 
224411
224335
  @classmethod
@@ -224456,6 +224380,14 @@ class VIEW3D_AST_brush_sculpt(AssetShelf, bpy_struct):
224456
224380
  :param context:
224457
224381
  """
224458
224382
 
224383
+ @classmethod
224384
+ def has_tool_with_brush_type(cls, context, brush_type):
224385
+ """
224386
+
224387
+ :param context:
224388
+ :param brush_type:
224389
+ """
224390
+
224459
224391
  @classmethod
224460
224392
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224461
224393
  """
@@ -224504,6 +224436,14 @@ class VIEW3D_AST_brush_sculpt_curves(AssetShelf, bpy_struct):
224504
224436
  :param context:
224505
224437
  """
224506
224438
 
224439
+ @classmethod
224440
+ def has_tool_with_brush_type(cls, context, brush_type):
224441
+ """
224442
+
224443
+ :param context:
224444
+ :param brush_type:
224445
+ """
224446
+
224507
224447
  @classmethod
224508
224448
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224509
224449
  """
@@ -224552,6 +224492,14 @@ class VIEW3D_AST_brush_texture_paint(AssetShelf, bpy_struct):
224552
224492
  :param context:
224553
224493
  """
224554
224494
 
224495
+ @classmethod
224496
+ def has_tool_with_brush_type(cls, context, brush_type):
224497
+ """
224498
+
224499
+ :param context:
224500
+ :param brush_type:
224501
+ """
224502
+
224555
224503
  @classmethod
224556
224504
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224557
224505
  """
@@ -224600,6 +224548,14 @@ class VIEW3D_AST_brush_vertex_paint(AssetShelf, bpy_struct):
224600
224548
  :param context:
224601
224549
  """
224602
224550
 
224551
+ @classmethod
224552
+ def has_tool_with_brush_type(cls, context, brush_type):
224553
+ """
224554
+
224555
+ :param context:
224556
+ :param brush_type:
224557
+ """
224558
+
224603
224559
  @classmethod
224604
224560
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224605
224561
  """
@@ -224648,6 +224604,14 @@ class VIEW3D_AST_brush_weight_paint(AssetShelf, bpy_struct):
224648
224604
  :param context:
224649
224605
  """
224650
224606
 
224607
+ @classmethod
224608
+ def has_tool_with_brush_type(cls, context, brush_type):
224609
+ """
224610
+
224611
+ :param context:
224612
+ :param brush_type:
224613
+ """
224614
+
224651
224615
  @classmethod
224652
224616
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224653
224617
  """
@@ -231068,18 +231032,6 @@ DATA_PT_gpencil_canvas: bl_ui.properties_data_gpencil.DATA_PT_gpencil_canvas
231068
231032
 
231069
231033
  DATA_PT_gpencil_display: bl_ui.properties_data_gpencil.DATA_PT_gpencil_display
231070
231034
 
231071
- DATA_PT_gpencil_layer_adjustments: bl_ui.properties_data_gpencil.DATA_PT_gpencil_layer_adjustments
231072
-
231073
- DATA_PT_gpencil_layer_display: bl_ui.properties_data_gpencil.DATA_PT_gpencil_layer_display
231074
-
231075
- DATA_PT_gpencil_layer_masks: bl_ui.properties_data_gpencil.DATA_PT_gpencil_layer_masks
231076
-
231077
- DATA_PT_gpencil_layer_relations: bl_ui.properties_data_gpencil.DATA_PT_gpencil_layer_relations
231078
-
231079
- DATA_PT_gpencil_layer_transform: bl_ui.properties_data_gpencil.DATA_PT_gpencil_layer_transform
231080
-
231081
- DATA_PT_gpencil_layers: bl_ui.properties_data_gpencil.DATA_PT_gpencil_layers
231082
-
231083
231035
  DATA_PT_gpencil_modifiers: bl_ui.properties_data_modifier.DATA_PT_gpencil_modifiers
231084
231036
 
231085
231037
  DATA_PT_gpencil_onion_skinning: bl_ui.properties_data_gpencil.DATA_PT_gpencil_onion_skinning
@@ -231090,8 +231042,6 @@ DATA_PT_gpencil_onion_skinning_display: bl_ui.properties_data_gpencil.DATA_PT_gp
231090
231042
 
231091
231043
  DATA_PT_gpencil_strokes: bl_ui.properties_data_gpencil.DATA_PT_gpencil_strokes
231092
231044
 
231093
- DATA_PT_gpencil_vertex_groups: bl_ui.properties_data_gpencil.DATA_PT_gpencil_vertex_groups
231094
-
231095
231045
  DATA_PT_grease_pencil_animation: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_animation
231096
231046
 
231097
231047
  DATA_PT_grease_pencil_attributes: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_attributes
@@ -231240,8 +231190,6 @@ DOPESHEET_MT_editor_menus: bl_ui.space_dopesheet.DOPESHEET_MT_editor_menus
231240
231190
 
231241
231191
  DOPESHEET_MT_gpencil_channel: bl_ui.space_dopesheet.DOPESHEET_MT_gpencil_channel
231242
231192
 
231243
- DOPESHEET_MT_gpencil_key: bl_ui.space_dopesheet.DOPESHEET_MT_gpencil_key
231244
-
231245
231193
  DOPESHEET_MT_key: bl_ui.space_dopesheet.DOPESHEET_MT_key
231246
231194
 
231247
231195
  DOPESHEET_MT_key_transform: bl_ui.space_dopesheet.DOPESHEET_MT_key_transform
@@ -231264,18 +231212,6 @@ DOPESHEET_PT_custom_props_action: bl_ui.space_dopesheet.DOPESHEET_PT_custom_prop
231264
231212
 
231265
231213
  DOPESHEET_PT_filters: bl_ui.space_dopesheet.DOPESHEET_PT_filters
231266
231214
 
231267
- DOPESHEET_PT_gpencil_layer_adjustments: bl_ui.space_dopesheet.DOPESHEET_PT_gpencil_layer_adjustments
231268
-
231269
- DOPESHEET_PT_gpencil_layer_display: bl_ui.space_dopesheet.DOPESHEET_PT_gpencil_layer_display
231270
-
231271
- DOPESHEET_PT_gpencil_layer_masks: bl_ui.space_dopesheet.DOPESHEET_PT_gpencil_layer_masks
231272
-
231273
- DOPESHEET_PT_gpencil_layer_relations: bl_ui.space_dopesheet.DOPESHEET_PT_gpencil_layer_relations
231274
-
231275
- DOPESHEET_PT_gpencil_layer_transform: bl_ui.space_dopesheet.DOPESHEET_PT_gpencil_layer_transform
231276
-
231277
- DOPESHEET_PT_gpencil_mode: bl_ui.space_dopesheet.DOPESHEET_PT_gpencil_mode
231278
-
231279
231215
  DOPESHEET_PT_grease_pencil_layer_masks: bl_ui.space_dopesheet.DOPESHEET_PT_grease_pencil_layer_masks
231280
231216
 
231281
231217
  DOPESHEET_PT_grease_pencil_layer_relations: bl_ui.space_dopesheet.DOPESHEET_PT_grease_pencil_layer_relations
@@ -231358,28 +231294,8 @@ FILEBROWSER_UL_dir: bl_ui.space_filebrowser.FILEBROWSER_UL_dir
231358
231294
 
231359
231295
  FLUID_PT_presets: bl_ui.properties_physics_fluid.FLUID_PT_presets
231360
231296
 
231361
- GPENCIL_MT_cleanup: bl_ui.properties_grease_pencil_common.GPENCIL_MT_cleanup
231362
-
231363
- GPENCIL_MT_gpencil_draw_delete: bl_ui.properties_grease_pencil_common.GPENCIL_MT_gpencil_draw_delete
231364
-
231365
- GPENCIL_MT_gpencil_vertex_group: bl_ui.properties_data_gpencil.GPENCIL_MT_gpencil_vertex_group
231366
-
231367
- GPENCIL_MT_layer_active: bl_ui.properties_grease_pencil_common.GPENCIL_MT_layer_active
231368
-
231369
- GPENCIL_MT_layer_context_menu: bl_ui.properties_data_gpencil.GPENCIL_MT_layer_context_menu
231370
-
231371
- GPENCIL_MT_layer_mask_menu: bl_ui.properties_grease_pencil_common.GPENCIL_MT_layer_mask_menu
231372
-
231373
- GPENCIL_MT_material_active: bl_ui.properties_grease_pencil_common.GPENCIL_MT_material_active
231374
-
231375
231297
  GPENCIL_MT_material_context_menu: bl_ui.properties_material_gpencil.GPENCIL_MT_material_context_menu
231376
231298
 
231377
- GPENCIL_MT_move_to_layer: bl_ui.properties_grease_pencil_common.GPENCIL_MT_move_to_layer
231378
-
231379
- GPENCIL_MT_snap: bl_ui.properties_grease_pencil_common.GPENCIL_MT_snap
231380
-
231381
- GPENCIL_MT_snap_pie: bl_ui.properties_grease_pencil_common.GPENCIL_MT_snap_pie
231382
-
231383
231299
  GPENCIL_UL_annotation_layer: bl_ui.properties_grease_pencil_common.GPENCIL_UL_annotation_layer
231384
231300
 
231385
231301
  GPENCIL_UL_layer: bl_ui.properties_grease_pencil_common.GPENCIL_UL_layer
@@ -231970,6 +231886,8 @@ NODE_PT_texture_mapping: bl_ui.space_node.NODE_PT_texture_mapping
231970
231886
 
231971
231887
  NODE_PT_tools_active: bl_ui.space_toolsystem_toolbar.NODE_PT_tools_active
231972
231888
 
231889
+ OBJECT_MT_light_linking_context_menu: bl_ui.properties_object.OBJECT_MT_light_linking_context_menu
231890
+
231973
231891
  OBJECT_MT_modifier_add: bl_ui.properties_data_modifier.OBJECT_MT_modifier_add
231974
231892
 
231975
231893
  OBJECT_MT_modifier_add_color: bl_ui.properties_data_modifier.OBJECT_MT_modifier_add_color
@@ -231984,6 +231902,8 @@ OBJECT_MT_modifier_add_normals: bl_ui.properties_data_modifier.OBJECT_MT_modifie
231984
231902
 
231985
231903
  OBJECT_MT_modifier_add_physics: bl_ui.properties_data_modifier.OBJECT_MT_modifier_add_physics
231986
231904
 
231905
+ OBJECT_MT_shadow_linking_context_menu: bl_ui.properties_object.OBJECT_MT_shadow_linking_context_menu
231906
+
231987
231907
  OBJECT_OT_assign_property_defaults: bl_operators.object.OBJECT_OT_assign_property_defaults
231988
231908
 
231989
231909
  OBJECT_PT_animation: bl_ui.properties_object.OBJECT_PT_animation
@@ -232078,6 +231998,8 @@ OBJECT_PT_instancing: bl_ui.properties_object.OBJECT_PT_instancing
232078
231998
 
232079
231999
  OBJECT_PT_instancing_size: bl_ui.properties_object.OBJECT_PT_instancing_size
232080
232000
 
232001
+ OBJECT_PT_light_linking: bl_ui.properties_object.OBJECT_PT_light_linking
232002
+
232081
232003
  OBJECT_PT_lineart: bl_ui.properties_object.OBJECT_PT_lineart
232082
232004
 
232083
232005
  OBJECT_PT_motion_paths: bl_ui.properties_object.OBJECT_PT_motion_paths
@@ -232086,6 +232008,10 @@ OBJECT_PT_motion_paths_display: bl_ui.properties_object.OBJECT_PT_motion_paths_d
232086
232008
 
232087
232009
  OBJECT_PT_relations: bl_ui.properties_object.OBJECT_PT_relations
232088
232010
 
232011
+ OBJECT_PT_shading: bl_ui.properties_object.OBJECT_PT_shading
232012
+
232013
+ OBJECT_PT_shadow_linking: bl_ui.properties_object.OBJECT_PT_shadow_linking
232014
+
232089
232015
  OBJECT_PT_transform: bl_ui.properties_object.OBJECT_PT_transform
232090
232016
 
232091
232017
  OBJECT_PT_visibility: bl_ui.properties_object.OBJECT_PT_visibility
@@ -233044,16 +232970,12 @@ TOPBAR_MT_workspace_menu: bl_ui.space_topbar.TOPBAR_MT_workspace_menu
233044
232970
 
233045
232971
  TOPBAR_PT_annotation_layers: bl_ui.space_view3d.TOPBAR_PT_annotation_layers
233046
232972
 
233047
- TOPBAR_PT_gpencil_layers: bl_ui.space_topbar.TOPBAR_PT_gpencil_layers
233048
-
233049
- TOPBAR_PT_gpencil_materials: bl_ui.space_view3d.TOPBAR_PT_gpencil_materials
233050
-
233051
232973
  TOPBAR_PT_gpencil_primitive: bl_ui.space_topbar.TOPBAR_PT_gpencil_primitive
233052
232974
 
233053
- TOPBAR_PT_gpencil_vertexcolor: bl_ui.space_view3d.TOPBAR_PT_gpencil_vertexcolor
233054
-
233055
232975
  TOPBAR_PT_grease_pencil_layers: bl_ui.space_topbar.TOPBAR_PT_grease_pencil_layers
233056
232976
 
232977
+ TOPBAR_PT_grease_pencil_materials: bl_ui.space_view3d.TOPBAR_PT_grease_pencil_materials
232978
+
233057
232979
  TOPBAR_PT_grease_pencil_vertex_color: bl_ui.space_view3d.TOPBAR_PT_grease_pencil_vertex_color
233058
232980
 
233059
232981
  TOPBAR_PT_name: bl_ui.space_topbar.TOPBAR_PT_name
@@ -233268,8 +233190,6 @@ VIEW3D_AST_brush_gpencil_vertex: bl_ui.space_view3d.VIEW3D_AST_brush_gpencil_ver
233268
233190
 
233269
233191
  VIEW3D_AST_brush_gpencil_weight: bl_ui.space_view3d.VIEW3D_AST_brush_gpencil_weight
233270
233192
 
233271
- VIEW3D_AST_brush_grease_pencil_paint: bl_ui.space_view3d.VIEW3D_AST_brush_grease_pencil_paint
233272
-
233273
233193
  VIEW3D_AST_brush_sculpt: bl_ui.space_view3d.VIEW3D_AST_brush_sculpt
233274
233194
 
233275
233195
  VIEW3D_AST_brush_sculpt_curves: bl_ui.space_view3d.VIEW3D_AST_brush_sculpt_curves
@@ -233296,8 +233216,6 @@ VIEW3D_MT_armature_add: bl_ui.space_view3d.VIEW3D_MT_armature_add
233296
233216
 
233297
233217
  VIEW3D_MT_armature_context_menu: bl_ui.space_view3d.VIEW3D_MT_armature_context_menu
233298
233218
 
233299
- VIEW3D_MT_assign_material: bl_ui.space_view3d.VIEW3D_MT_assign_material
233300
-
233301
233219
  VIEW3D_MT_bone_collections: bl_ui.space_view3d.VIEW3D_MT_bone_collections
233302
233220
 
233303
233221
  VIEW3D_MT_bone_options_disable: bl_ui.space_view3d.VIEW3D_MT_bone_options_disable
@@ -233314,8 +233232,6 @@ VIEW3D_MT_camera_add: bl_ui.space_view3d.VIEW3D_MT_camera_add
233314
233232
 
233315
233233
  VIEW3D_MT_curve_add: bl_ui.space_view3d.VIEW3D_MT_curve_add
233316
233234
 
233317
- VIEW3D_MT_draw_gpencil: bl_ui.space_view3d.VIEW3D_MT_draw_gpencil
233318
-
233319
233235
  VIEW3D_MT_edit_armature: bl_ui.space_view3d.VIEW3D_MT_edit_armature
233320
233236
 
233321
233237
  VIEW3D_MT_edit_armature_delete: bl_ui.space_view3d.VIEW3D_MT_edit_armature_delete
@@ -233362,18 +233278,6 @@ VIEW3D_MT_edit_font_delete: bl_ui.space_view3d.VIEW3D_MT_edit_font_delete
233362
233278
 
233363
233279
  VIEW3D_MT_edit_font_kerning: bl_ui.space_view3d.VIEW3D_MT_edit_font_kerning
233364
233280
 
233365
- VIEW3D_MT_edit_gpencil: bl_ui.space_view3d.VIEW3D_MT_edit_gpencil
233366
-
233367
- VIEW3D_MT_edit_gpencil_delete: bl_ui.space_view3d.VIEW3D_MT_edit_gpencil_delete
233368
-
233369
- VIEW3D_MT_edit_gpencil_point: bl_ui.space_view3d.VIEW3D_MT_edit_gpencil_point
233370
-
233371
- VIEW3D_MT_edit_gpencil_showhide: bl_ui.space_view3d.VIEW3D_MT_edit_gpencil_showhide
233372
-
233373
- VIEW3D_MT_edit_gpencil_stroke: bl_ui.space_view3d.VIEW3D_MT_edit_gpencil_stroke
233374
-
233375
- VIEW3D_MT_edit_gpencil_transform: bl_ui.space_view3d.VIEW3D_MT_edit_gpencil_transform
233376
-
233377
233281
  VIEW3D_MT_edit_greasepencil: bl_ui.space_view3d.VIEW3D_MT_edit_greasepencil
233378
233282
 
233379
233283
  VIEW3D_MT_edit_greasepencil_animation: bl_ui.space_view3d.VIEW3D_MT_edit_greasepencil_animation
@@ -233456,16 +233360,6 @@ VIEW3D_MT_face_sets: bl_ui.space_view3d.VIEW3D_MT_face_sets
233456
233360
 
233457
233361
  VIEW3D_MT_face_sets_init: bl_ui.space_view3d.VIEW3D_MT_face_sets_init
233458
233362
 
233459
- VIEW3D_MT_gpencil_animation: bl_ui.space_view3d.VIEW3D_MT_gpencil_animation
233460
-
233461
- VIEW3D_MT_gpencil_autoweights: bl_ui.space_view3d.VIEW3D_MT_gpencil_autoweights
233462
-
233463
- VIEW3D_MT_gpencil_edit_context_menu: bl_ui.space_view3d.VIEW3D_MT_gpencil_edit_context_menu
233464
-
233465
- VIEW3D_MT_gpencil_simplify: bl_ui.space_view3d.VIEW3D_MT_gpencil_simplify
233466
-
233467
- VIEW3D_MT_gpencil_vertex_group: bl_ui.space_view3d.VIEW3D_MT_gpencil_vertex_group
233468
-
233469
233363
  VIEW3D_MT_grease_pencil_add: bl_ui.space_view3d.VIEW3D_MT_grease_pencil_add
233470
233364
 
233471
233365
  VIEW3D_MT_grease_pencil_assign_material: bl_ui.space_view3d.VIEW3D_MT_grease_pencil_assign_material
@@ -233538,8 +233432,6 @@ VIEW3D_MT_object_track: bl_ui.space_view3d.VIEW3D_MT_object_track
233538
233432
 
233539
233433
  VIEW3D_MT_orientations_pie: bl_ui.space_view3d.VIEW3D_MT_orientations_pie
233540
233434
 
233541
- VIEW3D_MT_paint_gpencil: bl_ui.space_view3d.VIEW3D_MT_paint_gpencil
233542
-
233543
233435
  VIEW3D_MT_paint_grease_pencil: bl_ui.space_view3d.VIEW3D_MT_paint_grease_pencil
233544
233436
 
233545
233437
  VIEW3D_MT_paint_vertex: bl_ui.space_view3d.VIEW3D_MT_paint_vertex
@@ -233592,8 +233484,6 @@ VIEW3D_MT_sculpt_curves: bl_ui.space_view3d.VIEW3D_MT_sculpt_curves
233592
233484
 
233593
233485
  VIEW3D_MT_sculpt_face_sets_edit_pie: bl_ui.space_view3d.VIEW3D_MT_sculpt_face_sets_edit_pie
233594
233486
 
233595
- VIEW3D_MT_sculpt_gpencil_automasking_pie: bl_ui.space_view3d.VIEW3D_MT_sculpt_gpencil_automasking_pie
233596
-
233597
233487
  VIEW3D_MT_sculpt_mask_edit_pie: bl_ui.space_view3d.VIEW3D_MT_sculpt_mask_edit_pie
233598
233488
 
233599
233489
  VIEW3D_MT_sculpt_set_pivot: bl_ui.space_view3d.VIEW3D_MT_sculpt_set_pivot
@@ -233610,8 +233500,6 @@ VIEW3D_MT_select_edit_curve: bl_ui.space_view3d.VIEW3D_MT_select_edit_curve
233610
233500
 
233611
233501
  VIEW3D_MT_select_edit_curves: bl_ui.space_view3d.VIEW3D_MT_select_edit_curves
233612
233502
 
233613
- VIEW3D_MT_select_edit_gpencil: bl_ui.space_view3d.VIEW3D_MT_select_edit_gpencil
233614
-
233615
233503
  VIEW3D_MT_select_edit_grease_pencil: bl_ui.space_view3d.VIEW3D_MT_select_edit_grease_pencil
233616
233504
 
233617
233505
  VIEW3D_MT_select_edit_lattice: bl_ui.space_view3d.VIEW3D_MT_select_edit_lattice
@@ -233690,8 +233578,6 @@ VIEW3D_MT_view_viewpoint: bl_ui.space_view3d.VIEW3D_MT_view_viewpoint
233690
233578
 
233691
233579
  VIEW3D_MT_volume_add: bl_ui.space_view3d.VIEW3D_MT_volume_add
233692
233580
 
233693
- VIEW3D_MT_weight_gpencil: bl_ui.space_view3d.VIEW3D_MT_weight_gpencil
233694
-
233695
233581
  VIEW3D_MT_weight_grease_pencil: bl_ui.space_view3d.VIEW3D_MT_weight_grease_pencil
233696
233582
 
233697
233583
  VIEW3D_MT_wpaint_vgroup_lock_pie: bl_ui.space_view3d.VIEW3D_MT_wpaint_vgroup_lock_pie
@@ -233708,6 +233594,8 @@ VIEW3D_PT_active_tool_duplicate: bl_ui.space_view3d.VIEW3D_PT_active_tool_duplic
233708
233594
 
233709
233595
  VIEW3D_PT_annotation_onion: bl_ui.space_view3d.VIEW3D_PT_annotation_onion
233710
233596
 
233597
+ VIEW3D_PT_brush_asset_shelf_filter: bl_ui.properties_paint_common.VIEW3D_PT_brush_asset_shelf_filter
233598
+
233711
233599
  VIEW3D_PT_collections: bl_ui.space_view3d.VIEW3D_PT_collections
233712
233600
 
233713
233601
  VIEW3D_PT_context_properties: bl_ui.space_view3d.VIEW3D_PT_context_properties
@@ -233726,29 +233614,17 @@ VIEW3D_PT_gizmo_display: bl_ui.space_view3d.VIEW3D_PT_gizmo_display
233726
233614
 
233727
233615
  VIEW3D_PT_gpencil_brush_presets: bl_ui.space_view3d_toolbar.VIEW3D_PT_gpencil_brush_presets
233728
233616
 
233729
- VIEW3D_PT_gpencil_curve_edit: bl_ui.space_view3d.VIEW3D_PT_gpencil_curve_edit
233730
-
233731
- VIEW3D_PT_gpencil_draw_context_menu: bl_ui.space_view3d.VIEW3D_PT_gpencil_draw_context_menu
233732
-
233733
- VIEW3D_PT_gpencil_guide: bl_ui.space_view3d.VIEW3D_PT_gpencil_guide
233734
-
233735
- VIEW3D_PT_gpencil_lock: bl_ui.space_view3d.VIEW3D_PT_gpencil_lock
233736
-
233737
- VIEW3D_PT_gpencil_multi_frame: bl_ui.space_view3d.VIEW3D_PT_gpencil_multi_frame
233738
-
233739
- VIEW3D_PT_gpencil_origin: bl_ui.space_view3d.VIEW3D_PT_gpencil_origin
233740
-
233741
- VIEW3D_PT_gpencil_sculpt_automasking: bl_ui.space_view3d.VIEW3D_PT_gpencil_sculpt_automasking
233617
+ VIEW3D_PT_grease_pencil: bl_ui.space_view3d.VIEW3D_PT_grease_pencil
233742
233618
 
233743
- VIEW3D_PT_gpencil_sculpt_context_menu: bl_ui.space_view3d.VIEW3D_PT_gpencil_sculpt_context_menu
233619
+ VIEW3D_PT_grease_pencil_guide: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_guide
233744
233620
 
233745
- VIEW3D_PT_gpencil_vertex_context_menu: bl_ui.space_view3d.VIEW3D_PT_gpencil_vertex_context_menu
233621
+ VIEW3D_PT_grease_pencil_lock: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_lock
233746
233622
 
233747
- VIEW3D_PT_gpencil_weight_context_menu: bl_ui.space_view3d.VIEW3D_PT_gpencil_weight_context_menu
233623
+ VIEW3D_PT_grease_pencil_multi_frame: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_multi_frame
233748
233624
 
233749
- VIEW3D_PT_grease_pencil: bl_ui.space_view3d.VIEW3D_PT_grease_pencil
233625
+ VIEW3D_PT_grease_pencil_origin: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_origin
233750
233626
 
233751
- VIEW3D_PT_grease_pencil_multi_frame: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_multi_frame
233627
+ VIEW3D_PT_grease_pencil_sculpt_automasking: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_sculpt_automasking
233752
233628
 
233753
233629
  VIEW3D_PT_greasepencil_draw_context_menu: bl_ui.space_view3d.VIEW3D_PT_greasepencil_draw_context_menu
233754
233630
 
@@ -233756,6 +233632,8 @@ VIEW3D_PT_greasepencil_sculpt_context_menu: bl_ui.space_view3d.VIEW3D_PT_greasep
233756
233632
 
233757
233633
  VIEW3D_PT_greasepencil_vertex_paint_context_menu: bl_ui.space_view3d.VIEW3D_PT_greasepencil_vertex_paint_context_menu
233758
233634
 
233635
+ VIEW3D_PT_greasepencil_weight_context_menu: bl_ui.space_view3d.VIEW3D_PT_greasepencil_weight_context_menu
233636
+
233759
233637
  VIEW3D_PT_mask: bl_ui.space_view3d_toolbar.VIEW3D_PT_mask
233760
233638
 
233761
233639
  VIEW3D_PT_object_type_visibility: bl_ui.space_view3d.VIEW3D_PT_object_type_visibility
@@ -233778,8 +233656,6 @@ VIEW3D_PT_overlay_edit_mesh_shading: bl_ui.space_view3d.VIEW3D_PT_overlay_edit_m
233778
233656
 
233779
233657
  VIEW3D_PT_overlay_geometry: bl_ui.space_view3d.VIEW3D_PT_overlay_geometry
233780
233658
 
233781
- VIEW3D_PT_overlay_gpencil_options: bl_ui.space_view3d.VIEW3D_PT_overlay_gpencil_options
233782
-
233783
233659
  VIEW3D_PT_overlay_grease_pencil_canvas_options: bl_ui.space_view3d.VIEW3D_PT_overlay_grease_pencil_canvas_options
233784
233660
 
233785
233661
  VIEW3D_PT_overlay_grease_pencil_options: bl_ui.space_view3d.VIEW3D_PT_overlay_grease_pencil_options