fake-bpy-module 20240706__py3-none-any.whl → 20240707__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_operators/assets/__init__.pyi +8 -8
- bl_operators/image_as_planes/__init__.pyi +43 -43
- bl_operators/node/__init__.pyi +234 -234
- bl_operators/object_quick_effects/__init__.pyi +21 -21
- bl_operators/presets/__init__.pyi +388 -388
- bl_ui/properties_collection/__init__.pyi +12 -12
- bl_ui/properties_constraint/__init__.pyi +954 -954
- bl_ui/properties_data_armature/__init__.pyi +85 -85
- bl_ui/properties_data_bone/__init__.pyi +12 -12
- bl_ui/properties_data_curve/__init__.pyi +92 -92
- bl_ui/properties_data_curves/__init__.pyi +12 -12
- bl_ui/properties_data_empty/__init__.pyi +12 -12
- bl_ui/properties_data_gpencil/__init__.pyi +265 -265
- bl_ui/properties_data_grease_pencil/__init__.pyi +312 -312
- bl_ui/properties_data_lattice/__init__.pyi +12 -12
- bl_ui/properties_data_light/__init__.pyi +12 -12
- bl_ui/properties_data_lightprobe/__init__.pyi +12 -12
- bl_ui/properties_data_mesh/__init__.pyi +527 -527
- bl_ui/properties_data_metaball/__init__.pyi +12 -12
- bl_ui/properties_data_modifier/__init__.pyi +19 -19
- bl_ui/properties_data_pointcloud/__init__.pyi +140 -140
- bl_ui/properties_data_shaderfx/__init__.pyi +5 -5
- bl_ui/properties_data_speaker/__init__.pyi +12 -12
- bl_ui/properties_data_volume/__init__.pyi +65 -65
- bl_ui/properties_freestyle/__init__.pyi +248 -248
- bl_ui/properties_material/__init__.pyi +145 -145
- bl_ui/properties_material_gpencil/__init__.pyi +86 -86
- bl_ui/properties_object/__init__.pyi +75 -75
- bl_ui/properties_output/__init__.pyi +201 -201
- bl_ui/properties_particle/__init__.pyi +220 -220
- bl_ui/properties_physics_cloth/__init__.pyi +12 -12
- bl_ui/properties_physics_common/__init__.pyi +12 -12
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +187 -187
- bl_ui/properties_physics_field/__init__.pyi +19 -19
- bl_ui/properties_physics_fluid/__init__.pyi +61 -61
- bl_ui/properties_physics_rigidbody/__init__.pyi +5 -5
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +5 -5
- bl_ui/properties_physics_softbody/__init__.pyi +12 -12
- bl_ui/properties_render/__init__.pyi +217 -217
- bl_ui/properties_scene/__init__.pyi +143 -143
- bl_ui/properties_texture/__init__.pyi +156 -156
- bl_ui/properties_view_layer/__init__.pyi +78 -78
- bl_ui/properties_workspace/__init__.pyi +64 -64
- bl_ui/properties_world/__init__.pyi +12 -12
- bl_ui/space_clip/__init__.pyi +366 -366
- bl_ui/space_dopesheet/__init__.pyi +176 -176
- bl_ui/space_filebrowser/__init__.pyi +735 -735
- bl_ui/space_image/__init__.pyi +646 -646
- bl_ui/space_sequencer/__init__.pyi +841 -389
- bl_ui/space_time/__init__.pyi +11 -11
- bl_ui/space_userpref/__init__.pyi +684 -684
- bl_ui/space_view3d/__init__.pyi +1152 -1152
- bl_ui/space_view3d_toolbar/__init__.pyi +2831 -2831
- bpy/types/__init__.pyi +69750 -69696
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/RECORD +62 -62
- freestyle/utils/__init__.pyi +1 -1
- keyingsets_builtins/__init__.pyi +87 -87
- mathutils/__init__.pyi +156 -6
- nodeitems_builtins/__init__.pyi +7 -7
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/top_level.txt +0 -0
|
@@ -4016,29 +4016,9 @@ class DOPESHEET_MT_view_pie(bpy_types._GenericUI):
|
|
|
4016
4016
|
"""
|
|
4017
4017
|
...
|
|
4018
4018
|
|
|
4019
|
-
class DopesheetActionPanelBase:
|
|
4020
|
-
bl_label: typing.Any
|
|
4021
|
-
bl_region_type: typing.Any
|
|
4022
|
-
|
|
4023
|
-
def draw_generic_panel(self, _context, layout, action):
|
|
4024
|
-
"""
|
|
4025
|
-
|
|
4026
|
-
:param _context:
|
|
4027
|
-
:param layout:
|
|
4028
|
-
:param action:
|
|
4029
|
-
"""
|
|
4030
|
-
...
|
|
4031
|
-
|
|
4032
|
-
class DOPESHEET_PT_custom_props_action(rna_prop_ui.PropertyPanel, bpy_types._GenericUI):
|
|
4033
|
-
"""The subclass should have its own poll function
|
|
4034
|
-
and the variable '_context_path' MUST be set.
|
|
4035
|
-
"""
|
|
4036
|
-
|
|
4019
|
+
class DOPESHEET_PT_action(DopesheetActionPanelBase, bpy_types._GenericUI):
|
|
4037
4020
|
bl_category: typing.Any
|
|
4038
|
-
bl_context: typing.Any
|
|
4039
4021
|
bl_label: typing.Any
|
|
4040
|
-
bl_options: typing.Any
|
|
4041
|
-
bl_order: typing.Any
|
|
4042
4022
|
bl_region_type: typing.Any
|
|
4043
4023
|
bl_rna: typing.Any
|
|
4044
4024
|
bl_space_type: typing.Any
|
|
@@ -4083,6 +4063,15 @@ class DOPESHEET_PT_custom_props_action(rna_prop_ui.PropertyPanel, bpy_types._Gen
|
|
|
4083
4063
|
"""
|
|
4084
4064
|
...
|
|
4085
4065
|
|
|
4066
|
+
def draw_generic_panel(self, _context, layout, action):
|
|
4067
|
+
"""
|
|
4068
|
+
|
|
4069
|
+
:param _context:
|
|
4070
|
+
:param layout:
|
|
4071
|
+
:param action:
|
|
4072
|
+
"""
|
|
4073
|
+
...
|
|
4074
|
+
|
|
4086
4075
|
def driver_add(self) -> bpy.types.FCurve:
|
|
4087
4076
|
"""Adds driver(s) to the given property
|
|
4088
4077
|
|
|
@@ -4262,65 +4251,19 @@ class DOPESHEET_PT_custom_props_action(rna_prop_ui.PropertyPanel, bpy_types._Gen
|
|
|
4262
4251
|
"""
|
|
4263
4252
|
...
|
|
4264
4253
|
|
|
4265
|
-
class
|
|
4266
|
-
|
|
4267
|
-
|
|
4268
|
-
|
|
4269
|
-
def draw_generic_filters(self, context, layout):
|
|
4270
|
-
"""
|
|
4271
|
-
|
|
4272
|
-
:param context:
|
|
4273
|
-
:param layout:
|
|
4274
|
-
"""
|
|
4275
|
-
...
|
|
4276
|
-
|
|
4277
|
-
def draw_search_filters(self, context, layout, generic_filters_only=False):
|
|
4278
|
-
"""
|
|
4279
|
-
|
|
4280
|
-
:param context:
|
|
4281
|
-
:param layout:
|
|
4282
|
-
:param generic_filters_only:
|
|
4283
|
-
"""
|
|
4284
|
-
...
|
|
4285
|
-
|
|
4286
|
-
def draw_standard_filters(self, context, layout):
|
|
4287
|
-
"""
|
|
4288
|
-
|
|
4289
|
-
:param context:
|
|
4290
|
-
:param layout:
|
|
4291
|
-
"""
|
|
4292
|
-
...
|
|
4293
|
-
|
|
4294
|
-
class LayersDopeSheetPanel:
|
|
4295
|
-
bl_category: typing.Any
|
|
4296
|
-
bl_region_type: typing.Any
|
|
4297
|
-
bl_space_type: typing.Any
|
|
4298
|
-
|
|
4299
|
-
def poll(self, context):
|
|
4300
|
-
"""
|
|
4301
|
-
|
|
4302
|
-
:param context:
|
|
4303
|
-
"""
|
|
4304
|
-
...
|
|
4254
|
+
class DOPESHEET_PT_custom_props_action(rna_prop_ui.PropertyPanel, bpy_types._GenericUI):
|
|
4255
|
+
"""The subclass should have its own poll function
|
|
4256
|
+
and the variable '_context_path' MUST be set.
|
|
4257
|
+
"""
|
|
4305
4258
|
|
|
4306
|
-
class GreasePencilLayersDopeSheetPanel:
|
|
4307
4259
|
bl_category: typing.Any
|
|
4308
|
-
|
|
4309
|
-
bl_space_type: typing.Any
|
|
4310
|
-
|
|
4311
|
-
def poll(self, context):
|
|
4312
|
-
"""
|
|
4313
|
-
|
|
4314
|
-
:param context:
|
|
4315
|
-
"""
|
|
4316
|
-
...
|
|
4317
|
-
|
|
4318
|
-
class DOPESHEET_PT_proportional_edit(bpy_types._GenericUI):
|
|
4260
|
+
bl_context: typing.Any
|
|
4319
4261
|
bl_label: typing.Any
|
|
4262
|
+
bl_options: typing.Any
|
|
4263
|
+
bl_order: typing.Any
|
|
4320
4264
|
bl_region_type: typing.Any
|
|
4321
4265
|
bl_rna: typing.Any
|
|
4322
4266
|
bl_space_type: typing.Any
|
|
4323
|
-
bl_ui_units_x: typing.Any
|
|
4324
4267
|
id_data: typing.Any
|
|
4325
4268
|
|
|
4326
4269
|
def append(self, draw_func):
|
|
@@ -4484,6 +4427,13 @@ class DOPESHEET_PT_proportional_edit(bpy_types._GenericUI):
|
|
|
4484
4427
|
"""Returns the property from the path, raise an exception when not found."""
|
|
4485
4428
|
...
|
|
4486
4429
|
|
|
4430
|
+
def poll(self, context):
|
|
4431
|
+
"""
|
|
4432
|
+
|
|
4433
|
+
:param context:
|
|
4434
|
+
"""
|
|
4435
|
+
...
|
|
4436
|
+
|
|
4487
4437
|
def pop(self):
|
|
4488
4438
|
"""Remove and return the value of the custom property assigned to key or default
|
|
4489
4439
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -4534,7 +4484,7 @@ class DOPESHEET_PT_proportional_edit(bpy_types._GenericUI):
|
|
|
4534
4484
|
"""
|
|
4535
4485
|
...
|
|
4536
4486
|
|
|
4537
|
-
class
|
|
4487
|
+
class DOPESHEET_PT_filters(DopesheetFilterPopoverBase, bpy_types._GenericUI):
|
|
4538
4488
|
bl_label: typing.Any
|
|
4539
4489
|
bl_region_type: typing.Any
|
|
4540
4490
|
bl_rna: typing.Any
|
|
@@ -4580,6 +4530,31 @@ class DOPESHEET_PT_snapping(bpy_types._GenericUI):
|
|
|
4580
4530
|
"""
|
|
4581
4531
|
...
|
|
4582
4532
|
|
|
4533
|
+
def draw_generic_filters(self, context, layout):
|
|
4534
|
+
"""
|
|
4535
|
+
|
|
4536
|
+
:param context:
|
|
4537
|
+
:param layout:
|
|
4538
|
+
"""
|
|
4539
|
+
...
|
|
4540
|
+
|
|
4541
|
+
def draw_search_filters(self, context, layout, generic_filters_only=False):
|
|
4542
|
+
"""
|
|
4543
|
+
|
|
4544
|
+
:param context:
|
|
4545
|
+
:param layout:
|
|
4546
|
+
:param generic_filters_only:
|
|
4547
|
+
"""
|
|
4548
|
+
...
|
|
4549
|
+
|
|
4550
|
+
def draw_standard_filters(self, context, layout):
|
|
4551
|
+
"""
|
|
4552
|
+
|
|
4553
|
+
:param context:
|
|
4554
|
+
:param layout:
|
|
4555
|
+
"""
|
|
4556
|
+
...
|
|
4557
|
+
|
|
4583
4558
|
def driver_add(self) -> bpy.types.FCurve:
|
|
4584
4559
|
"""Adds driver(s) to the given property
|
|
4585
4560
|
|
|
@@ -4752,9 +4727,15 @@ class DOPESHEET_PT_snapping(bpy_types._GenericUI):
|
|
|
4752
4727
|
"""
|
|
4753
4728
|
...
|
|
4754
4729
|
|
|
4755
|
-
class
|
|
4730
|
+
class DOPESHEET_PT_gpencil_layer_adjustments(
|
|
4731
|
+
LayersDopeSheetPanel,
|
|
4732
|
+
bl_ui.properties_grease_pencil_common.GreasePencilLayerAdjustmentsPanel,
|
|
4733
|
+
bpy_types._GenericUI,
|
|
4734
|
+
):
|
|
4756
4735
|
bl_category: typing.Any
|
|
4757
4736
|
bl_label: typing.Any
|
|
4737
|
+
bl_options: typing.Any
|
|
4738
|
+
bl_parent_id: typing.Any
|
|
4758
4739
|
bl_region_type: typing.Any
|
|
4759
4740
|
bl_rna: typing.Any
|
|
4760
4741
|
bl_space_type: typing.Any
|
|
@@ -4799,15 +4780,6 @@ class DOPESHEET_PT_action(DopesheetActionPanelBase, bpy_types._GenericUI):
|
|
|
4799
4780
|
"""
|
|
4800
4781
|
...
|
|
4801
4782
|
|
|
4802
|
-
def draw_generic_panel(self, _context, layout, action):
|
|
4803
|
-
"""
|
|
4804
|
-
|
|
4805
|
-
:param _context:
|
|
4806
|
-
:param layout:
|
|
4807
|
-
:param action:
|
|
4808
|
-
"""
|
|
4809
|
-
...
|
|
4810
|
-
|
|
4811
4783
|
def driver_add(self) -> bpy.types.FCurve:
|
|
4812
4784
|
"""Adds driver(s) to the given property
|
|
4813
4785
|
|
|
@@ -4987,8 +4959,15 @@ class DOPESHEET_PT_action(DopesheetActionPanelBase, bpy_types._GenericUI):
|
|
|
4987
4959
|
"""
|
|
4988
4960
|
...
|
|
4989
4961
|
|
|
4990
|
-
class
|
|
4962
|
+
class DOPESHEET_PT_gpencil_layer_display(
|
|
4963
|
+
LayersDopeSheetPanel,
|
|
4964
|
+
bl_ui.properties_grease_pencil_common.GreasePencilLayerDisplayPanel,
|
|
4965
|
+
bpy_types._GenericUI,
|
|
4966
|
+
):
|
|
4967
|
+
bl_category: typing.Any
|
|
4991
4968
|
bl_label: typing.Any
|
|
4969
|
+
bl_options: typing.Any
|
|
4970
|
+
bl_parent_id: typing.Any
|
|
4992
4971
|
bl_region_type: typing.Any
|
|
4993
4972
|
bl_rna: typing.Any
|
|
4994
4973
|
bl_space_type: typing.Any
|
|
@@ -5033,31 +5012,6 @@ class DOPESHEET_PT_filters(DopesheetFilterPopoverBase, bpy_types._GenericUI):
|
|
|
5033
5012
|
"""
|
|
5034
5013
|
...
|
|
5035
5014
|
|
|
5036
|
-
def draw_generic_filters(self, context, layout):
|
|
5037
|
-
"""
|
|
5038
|
-
|
|
5039
|
-
:param context:
|
|
5040
|
-
:param layout:
|
|
5041
|
-
"""
|
|
5042
|
-
...
|
|
5043
|
-
|
|
5044
|
-
def draw_search_filters(self, context, layout, generic_filters_only=False):
|
|
5045
|
-
"""
|
|
5046
|
-
|
|
5047
|
-
:param context:
|
|
5048
|
-
:param layout:
|
|
5049
|
-
:param generic_filters_only:
|
|
5050
|
-
"""
|
|
5051
|
-
...
|
|
5052
|
-
|
|
5053
|
-
def draw_standard_filters(self, context, layout):
|
|
5054
|
-
"""
|
|
5055
|
-
|
|
5056
|
-
:param context:
|
|
5057
|
-
:param layout:
|
|
5058
|
-
"""
|
|
5059
|
-
...
|
|
5060
|
-
|
|
5061
5015
|
def driver_add(self) -> bpy.types.FCurve:
|
|
5062
5016
|
"""Adds driver(s) to the given property
|
|
5063
5017
|
|
|
@@ -5180,6 +5134,13 @@ class DOPESHEET_PT_filters(DopesheetFilterPopoverBase, bpy_types._GenericUI):
|
|
|
5180
5134
|
"""Returns the property from the path, raise an exception when not found."""
|
|
5181
5135
|
...
|
|
5182
5136
|
|
|
5137
|
+
def poll(self, context):
|
|
5138
|
+
"""
|
|
5139
|
+
|
|
5140
|
+
:param context:
|
|
5141
|
+
"""
|
|
5142
|
+
...
|
|
5143
|
+
|
|
5183
5144
|
def pop(self):
|
|
5184
5145
|
"""Remove and return the value of the custom property assigned to key or default
|
|
5185
5146
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -5230,9 +5191,9 @@ class DOPESHEET_PT_filters(DopesheetFilterPopoverBase, bpy_types._GenericUI):
|
|
|
5230
5191
|
"""
|
|
5231
5192
|
...
|
|
5232
5193
|
|
|
5233
|
-
class
|
|
5194
|
+
class DOPESHEET_PT_gpencil_layer_masks(
|
|
5234
5195
|
LayersDopeSheetPanel,
|
|
5235
|
-
bl_ui.properties_grease_pencil_common.
|
|
5196
|
+
bl_ui.properties_grease_pencil_common.GreasePencilLayerMasksPanel,
|
|
5236
5197
|
bpy_types._GenericUI,
|
|
5237
5198
|
):
|
|
5238
5199
|
bl_category: typing.Any
|
|
@@ -5283,6 +5244,13 @@ class DOPESHEET_PT_gpencil_layer_adjustments(
|
|
|
5283
5244
|
"""
|
|
5284
5245
|
...
|
|
5285
5246
|
|
|
5247
|
+
def draw_header(self, context):
|
|
5248
|
+
"""
|
|
5249
|
+
|
|
5250
|
+
:param context:
|
|
5251
|
+
"""
|
|
5252
|
+
...
|
|
5253
|
+
|
|
5286
5254
|
def driver_add(self) -> bpy.types.FCurve:
|
|
5287
5255
|
"""Adds driver(s) to the given property
|
|
5288
5256
|
|
|
@@ -5462,9 +5430,9 @@ class DOPESHEET_PT_gpencil_layer_adjustments(
|
|
|
5462
5430
|
"""
|
|
5463
5431
|
...
|
|
5464
5432
|
|
|
5465
|
-
class
|
|
5433
|
+
class DOPESHEET_PT_gpencil_layer_relations(
|
|
5466
5434
|
LayersDopeSheetPanel,
|
|
5467
|
-
bl_ui.properties_grease_pencil_common.
|
|
5435
|
+
bl_ui.properties_grease_pencil_common.GreasePencilLayerRelationsPanel,
|
|
5468
5436
|
bpy_types._GenericUI,
|
|
5469
5437
|
):
|
|
5470
5438
|
bl_category: typing.Any
|
|
@@ -5694,9 +5662,9 @@ class DOPESHEET_PT_gpencil_layer_display(
|
|
|
5694
5662
|
"""
|
|
5695
5663
|
...
|
|
5696
5664
|
|
|
5697
|
-
class
|
|
5665
|
+
class DOPESHEET_PT_gpencil_layer_transform(
|
|
5698
5666
|
LayersDopeSheetPanel,
|
|
5699
|
-
bl_ui.properties_grease_pencil_common.
|
|
5667
|
+
bl_ui.properties_grease_pencil_common.GreasePencilLayerTransformPanel,
|
|
5700
5668
|
bpy_types._GenericUI,
|
|
5701
5669
|
):
|
|
5702
5670
|
bl_category: typing.Any
|
|
@@ -5747,13 +5715,6 @@ class DOPESHEET_PT_gpencil_layer_masks(
|
|
|
5747
5715
|
"""
|
|
5748
5716
|
...
|
|
5749
5717
|
|
|
5750
|
-
def draw_header(self, context):
|
|
5751
|
-
"""
|
|
5752
|
-
|
|
5753
|
-
:param context:
|
|
5754
|
-
"""
|
|
5755
|
-
...
|
|
5756
|
-
|
|
5757
5718
|
def driver_add(self) -> bpy.types.FCurve:
|
|
5758
5719
|
"""Adds driver(s) to the given property
|
|
5759
5720
|
|
|
@@ -5933,15 +5894,9 @@ class DOPESHEET_PT_gpencil_layer_masks(
|
|
|
5933
5894
|
"""
|
|
5934
5895
|
...
|
|
5935
5896
|
|
|
5936
|
-
class
|
|
5937
|
-
LayersDopeSheetPanel,
|
|
5938
|
-
bl_ui.properties_grease_pencil_common.GreasePencilLayerRelationsPanel,
|
|
5939
|
-
bpy_types._GenericUI,
|
|
5940
|
-
):
|
|
5897
|
+
class DOPESHEET_PT_gpencil_mode(LayersDopeSheetPanel, bpy_types._GenericUI):
|
|
5941
5898
|
bl_category: typing.Any
|
|
5942
5899
|
bl_label: typing.Any
|
|
5943
|
-
bl_options: typing.Any
|
|
5944
|
-
bl_parent_id: typing.Any
|
|
5945
5900
|
bl_region_type: typing.Any
|
|
5946
5901
|
bl_rna: typing.Any
|
|
5947
5902
|
bl_space_type: typing.Any
|
|
@@ -6165,9 +6120,9 @@ class DOPESHEET_PT_gpencil_layer_relations(
|
|
|
6165
6120
|
"""
|
|
6166
6121
|
...
|
|
6167
6122
|
|
|
6168
|
-
class
|
|
6169
|
-
|
|
6170
|
-
bl_ui.
|
|
6123
|
+
class DOPESHEET_PT_grease_pencil_layer_masks(
|
|
6124
|
+
GreasePencilLayersDopeSheetPanel,
|
|
6125
|
+
bl_ui.properties_data_grease_pencil.GreasePencil_LayerMaskPanel,
|
|
6171
6126
|
bpy_types._GenericUI,
|
|
6172
6127
|
):
|
|
6173
6128
|
bl_category: typing.Any
|
|
@@ -6218,6 +6173,13 @@ class DOPESHEET_PT_gpencil_layer_transform(
|
|
|
6218
6173
|
"""
|
|
6219
6174
|
...
|
|
6220
6175
|
|
|
6176
|
+
def draw_header(self, context):
|
|
6177
|
+
"""
|
|
6178
|
+
|
|
6179
|
+
:param context:
|
|
6180
|
+
"""
|
|
6181
|
+
...
|
|
6182
|
+
|
|
6221
6183
|
def driver_add(self) -> bpy.types.FCurve:
|
|
6222
6184
|
"""Adds driver(s) to the given property
|
|
6223
6185
|
|
|
@@ -6397,9 +6359,15 @@ class DOPESHEET_PT_gpencil_layer_transform(
|
|
|
6397
6359
|
"""
|
|
6398
6360
|
...
|
|
6399
6361
|
|
|
6400
|
-
class
|
|
6362
|
+
class DOPESHEET_PT_grease_pencil_layer_relations(
|
|
6363
|
+
GreasePencilLayersDopeSheetPanel,
|
|
6364
|
+
bl_ui.properties_data_grease_pencil.GreasPencil_LayerRelationsPanel,
|
|
6365
|
+
bpy_types._GenericUI,
|
|
6366
|
+
):
|
|
6401
6367
|
bl_category: typing.Any
|
|
6402
6368
|
bl_label: typing.Any
|
|
6369
|
+
bl_options: typing.Any
|
|
6370
|
+
bl_parent_id: typing.Any
|
|
6403
6371
|
bl_region_type: typing.Any
|
|
6404
6372
|
bl_rna: typing.Any
|
|
6405
6373
|
bl_space_type: typing.Any
|
|
@@ -6623,9 +6591,9 @@ class DOPESHEET_PT_gpencil_mode(LayersDopeSheetPanel, bpy_types._GenericUI):
|
|
|
6623
6591
|
"""
|
|
6624
6592
|
...
|
|
6625
6593
|
|
|
6626
|
-
class
|
|
6594
|
+
class DOPESHEET_PT_grease_pencil_layer_transform(
|
|
6627
6595
|
GreasePencilLayersDopeSheetPanel,
|
|
6628
|
-
bl_ui.properties_data_grease_pencil.
|
|
6596
|
+
bl_ui.properties_data_grease_pencil.GreasePencil_LayerTransformPanel,
|
|
6629
6597
|
bpy_types._GenericUI,
|
|
6630
6598
|
):
|
|
6631
6599
|
bl_category: typing.Any
|
|
@@ -6676,13 +6644,6 @@ class DOPESHEET_PT_grease_pencil_layer_masks(
|
|
|
6676
6644
|
"""
|
|
6677
6645
|
...
|
|
6678
6646
|
|
|
6679
|
-
def draw_header(self, context):
|
|
6680
|
-
"""
|
|
6681
|
-
|
|
6682
|
-
:param context:
|
|
6683
|
-
"""
|
|
6684
|
-
...
|
|
6685
|
-
|
|
6686
6647
|
def driver_add(self) -> bpy.types.FCurve:
|
|
6687
6648
|
"""Adds driver(s) to the given property
|
|
6688
6649
|
|
|
@@ -6862,15 +6823,11 @@ class DOPESHEET_PT_grease_pencil_layer_masks(
|
|
|
6862
6823
|
"""
|
|
6863
6824
|
...
|
|
6864
6825
|
|
|
6865
|
-
class
|
|
6866
|
-
GreasePencilLayersDopeSheetPanel,
|
|
6867
|
-
bl_ui.properties_data_grease_pencil.GreasPencil_LayerRelationsPanel,
|
|
6868
|
-
bpy_types._GenericUI,
|
|
6826
|
+
class DOPESHEET_PT_grease_pencil_mode(
|
|
6827
|
+
GreasePencilLayersDopeSheetPanel, bpy_types._GenericUI
|
|
6869
6828
|
):
|
|
6870
6829
|
bl_category: typing.Any
|
|
6871
6830
|
bl_label: typing.Any
|
|
6872
|
-
bl_options: typing.Any
|
|
6873
|
-
bl_parent_id: typing.Any
|
|
6874
6831
|
bl_region_type: typing.Any
|
|
6875
6832
|
bl_rna: typing.Any
|
|
6876
6833
|
bl_space_type: typing.Any
|
|
@@ -7094,18 +7051,12 @@ class DOPESHEET_PT_grease_pencil_layer_relations(
|
|
|
7094
7051
|
"""
|
|
7095
7052
|
...
|
|
7096
7053
|
|
|
7097
|
-
class
|
|
7098
|
-
GreasePencilLayersDopeSheetPanel,
|
|
7099
|
-
bl_ui.properties_data_grease_pencil.GreasePencil_LayerTransformPanel,
|
|
7100
|
-
bpy_types._GenericUI,
|
|
7101
|
-
):
|
|
7102
|
-
bl_category: typing.Any
|
|
7054
|
+
class DOPESHEET_PT_proportional_edit(bpy_types._GenericUI):
|
|
7103
7055
|
bl_label: typing.Any
|
|
7104
|
-
bl_options: typing.Any
|
|
7105
|
-
bl_parent_id: typing.Any
|
|
7106
7056
|
bl_region_type: typing.Any
|
|
7107
7057
|
bl_rna: typing.Any
|
|
7108
7058
|
bl_space_type: typing.Any
|
|
7059
|
+
bl_ui_units_x: typing.Any
|
|
7109
7060
|
id_data: typing.Any
|
|
7110
7061
|
|
|
7111
7062
|
def append(self, draw_func):
|
|
@@ -7269,13 +7220,6 @@ class DOPESHEET_PT_grease_pencil_layer_transform(
|
|
|
7269
7220
|
"""Returns the property from the path, raise an exception when not found."""
|
|
7270
7221
|
...
|
|
7271
7222
|
|
|
7272
|
-
def poll(self, context):
|
|
7273
|
-
"""
|
|
7274
|
-
|
|
7275
|
-
:param context:
|
|
7276
|
-
"""
|
|
7277
|
-
...
|
|
7278
|
-
|
|
7279
7223
|
def pop(self):
|
|
7280
7224
|
"""Remove and return the value of the custom property assigned to key or default
|
|
7281
7225
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -7326,10 +7270,7 @@ class DOPESHEET_PT_grease_pencil_layer_transform(
|
|
|
7326
7270
|
"""
|
|
7327
7271
|
...
|
|
7328
7272
|
|
|
7329
|
-
class
|
|
7330
|
-
GreasePencilLayersDopeSheetPanel, bpy_types._GenericUI
|
|
7331
|
-
):
|
|
7332
|
-
bl_category: typing.Any
|
|
7273
|
+
class DOPESHEET_PT_snapping(bpy_types._GenericUI):
|
|
7333
7274
|
bl_label: typing.Any
|
|
7334
7275
|
bl_region_type: typing.Any
|
|
7335
7276
|
bl_rna: typing.Any
|
|
@@ -7497,13 +7438,6 @@ class DOPESHEET_PT_grease_pencil_mode(
|
|
|
7497
7438
|
"""Returns the property from the path, raise an exception when not found."""
|
|
7498
7439
|
...
|
|
7499
7440
|
|
|
7500
|
-
def poll(self, context):
|
|
7501
|
-
"""
|
|
7502
|
-
|
|
7503
|
-
:param context:
|
|
7504
|
-
"""
|
|
7505
|
-
...
|
|
7506
|
-
|
|
7507
7441
|
def pop(self):
|
|
7508
7442
|
"""Remove and return the value of the custom property assigned to key or default
|
|
7509
7443
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -7554,4 +7488,70 @@ class DOPESHEET_PT_grease_pencil_mode(
|
|
|
7554
7488
|
"""
|
|
7555
7489
|
...
|
|
7556
7490
|
|
|
7491
|
+
class DopesheetActionPanelBase:
|
|
7492
|
+
bl_label: typing.Any
|
|
7493
|
+
bl_region_type: typing.Any
|
|
7494
|
+
|
|
7495
|
+
def draw_generic_panel(self, _context, layout, action):
|
|
7496
|
+
"""
|
|
7497
|
+
|
|
7498
|
+
:param _context:
|
|
7499
|
+
:param layout:
|
|
7500
|
+
:param action:
|
|
7501
|
+
"""
|
|
7502
|
+
...
|
|
7503
|
+
|
|
7504
|
+
class DopesheetFilterPopoverBase:
|
|
7505
|
+
bl_label: typing.Any
|
|
7506
|
+
bl_region_type: typing.Any
|
|
7507
|
+
|
|
7508
|
+
def draw_generic_filters(self, context, layout):
|
|
7509
|
+
"""
|
|
7510
|
+
|
|
7511
|
+
:param context:
|
|
7512
|
+
:param layout:
|
|
7513
|
+
"""
|
|
7514
|
+
...
|
|
7515
|
+
|
|
7516
|
+
def draw_search_filters(self, context, layout, generic_filters_only=False):
|
|
7517
|
+
"""
|
|
7518
|
+
|
|
7519
|
+
:param context:
|
|
7520
|
+
:param layout:
|
|
7521
|
+
:param generic_filters_only:
|
|
7522
|
+
"""
|
|
7523
|
+
...
|
|
7524
|
+
|
|
7525
|
+
def draw_standard_filters(self, context, layout):
|
|
7526
|
+
"""
|
|
7527
|
+
|
|
7528
|
+
:param context:
|
|
7529
|
+
:param layout:
|
|
7530
|
+
"""
|
|
7531
|
+
...
|
|
7532
|
+
|
|
7533
|
+
class GreasePencilLayersDopeSheetPanel:
|
|
7534
|
+
bl_category: typing.Any
|
|
7535
|
+
bl_region_type: typing.Any
|
|
7536
|
+
bl_space_type: typing.Any
|
|
7537
|
+
|
|
7538
|
+
def poll(self, context):
|
|
7539
|
+
"""
|
|
7540
|
+
|
|
7541
|
+
:param context:
|
|
7542
|
+
"""
|
|
7543
|
+
...
|
|
7544
|
+
|
|
7545
|
+
class LayersDopeSheetPanel:
|
|
7546
|
+
bl_category: typing.Any
|
|
7547
|
+
bl_region_type: typing.Any
|
|
7548
|
+
bl_space_type: typing.Any
|
|
7549
|
+
|
|
7550
|
+
def poll(self, context):
|
|
7551
|
+
"""
|
|
7552
|
+
|
|
7553
|
+
:param context:
|
|
7554
|
+
"""
|
|
7555
|
+
...
|
|
7556
|
+
|
|
7557
7557
|
def dopesheet_filter(layout, context): ...
|