fake-bpy-module 20241115__py3-none-any.whl → 20241116__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_ui/properties_data_grease_pencil/__init__.pyi +6 -6
- bl_ui/space_dopesheet/__init__.pyi +29 -1
- bpy/props/__init__.pyi +4 -1
- bpy/types/__init__.pyi +2 -0
- {fake_bpy_module-20241115.dist-info → fake_bpy_module-20241116.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241115.dist-info → fake_bpy_module-20241116.dist-info}/RECORD +8 -8
- {fake_bpy_module-20241115.dist-info → fake_bpy_module-20241116.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241115.dist-info → fake_bpy_module-20241116.dist-info}/top_level.txt +0 -0
|
@@ -179,7 +179,7 @@ class DATA_PT_grease_pencil_layer_masks(
|
|
|
179
179
|
"""
|
|
180
180
|
|
|
181
181
|
class DATA_PT_grease_pencil_layer_relations(
|
|
182
|
-
|
|
182
|
+
GreasePencil_LayerRelationsPanel, LayerDataButtonsPanel, bpy.types.Panel
|
|
183
183
|
):
|
|
184
184
|
bl_context: typing.Any
|
|
185
185
|
bl_label: typing.Any
|
|
@@ -567,28 +567,28 @@ class GREASE_PENCIL_UL_masks(bpy.types.UIList):
|
|
|
567
567
|
:param _index:
|
|
568
568
|
"""
|
|
569
569
|
|
|
570
|
-
class
|
|
570
|
+
class GreasePencil_LayerAdjustmentsPanel:
|
|
571
571
|
def draw(self, context):
|
|
572
572
|
"""
|
|
573
573
|
|
|
574
574
|
:param context:
|
|
575
575
|
"""
|
|
576
576
|
|
|
577
|
-
class
|
|
577
|
+
class GreasePencil_LayerMaskPanel:
|
|
578
578
|
def draw(self, context):
|
|
579
579
|
"""
|
|
580
580
|
|
|
581
581
|
:param context:
|
|
582
582
|
"""
|
|
583
583
|
|
|
584
|
-
|
|
585
|
-
def draw(self, context):
|
|
584
|
+
def draw_header(self, context):
|
|
586
585
|
"""
|
|
587
586
|
|
|
588
587
|
:param context:
|
|
589
588
|
"""
|
|
590
589
|
|
|
591
|
-
|
|
590
|
+
class GreasePencil_LayerRelationsPanel:
|
|
591
|
+
def draw(self, context):
|
|
592
592
|
"""
|
|
593
593
|
|
|
594
594
|
:param context:
|
|
@@ -523,6 +523,34 @@ class DOPESHEET_PT_filters(DopesheetFilterPopoverBase, bpy.types.Panel):
|
|
|
523
523
|
:param context:
|
|
524
524
|
"""
|
|
525
525
|
|
|
526
|
+
class DOPESHEET_PT_grease_pencil_layer_adjustments(
|
|
527
|
+
bl_ui.properties_data_grease_pencil.GreasePencil_LayerAdjustmentsPanel,
|
|
528
|
+
GreasePencilLayersDopeSheetPanel,
|
|
529
|
+
bpy.types.Panel,
|
|
530
|
+
):
|
|
531
|
+
bl_category: typing.Any
|
|
532
|
+
bl_label: typing.Any
|
|
533
|
+
bl_options: typing.Any
|
|
534
|
+
bl_parent_id: typing.Any
|
|
535
|
+
bl_region_type: typing.Any
|
|
536
|
+
bl_rna: typing.Any
|
|
537
|
+
bl_space_type: typing.Any
|
|
538
|
+
id_data: typing.Any
|
|
539
|
+
|
|
540
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
541
|
+
"""
|
|
542
|
+
|
|
543
|
+
:return: The RNA type or default when not found.
|
|
544
|
+
:rtype: bpy.types.Struct
|
|
545
|
+
"""
|
|
546
|
+
|
|
547
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
548
|
+
"""
|
|
549
|
+
|
|
550
|
+
:return: The class or default when not found.
|
|
551
|
+
:rtype: typing.Any
|
|
552
|
+
"""
|
|
553
|
+
|
|
526
554
|
class DOPESHEET_PT_grease_pencil_layer_masks(
|
|
527
555
|
bl_ui.properties_data_grease_pencil.GreasePencil_LayerMaskPanel,
|
|
528
556
|
GreasePencilLayersDopeSheetPanel,
|
|
@@ -552,7 +580,7 @@ class DOPESHEET_PT_grease_pencil_layer_masks(
|
|
|
552
580
|
"""
|
|
553
581
|
|
|
554
582
|
class DOPESHEET_PT_grease_pencil_layer_relations(
|
|
555
|
-
bl_ui.properties_data_grease_pencil.
|
|
583
|
+
bl_ui.properties_data_grease_pencil.GreasePencil_LayerRelationsPanel,
|
|
556
584
|
GreasePencilLayersDopeSheetPanel,
|
|
557
585
|
bpy.types.Panel,
|
|
558
586
|
):
|
bpy/props/__init__.pyi
CHANGED
|
@@ -247,6 +247,7 @@ def EnumProperty(
|
|
|
247
247
|
identifier
|
|
248
248
|
|
|
249
249
|
The identifier is used for Python access.
|
|
250
|
+
An empty identifier means that the item is a separator
|
|
250
251
|
|
|
251
252
|
name
|
|
252
253
|
|
|
@@ -269,7 +270,9 @@ def EnumProperty(
|
|
|
269
270
|
|
|
270
271
|
When an item only contains 4 items they define (identifier, name, description, number).
|
|
271
272
|
|
|
272
|
-
Separators may be added using None
|
|
273
|
+
Separators may be added using either None (nameless separator),
|
|
274
|
+
or a regular item tuple with an empty identifier string, in which case the name,
|
|
275
|
+
if non-empty, will be displayed in the UI above the separator line.
|
|
273
276
|
For dynamic values a callback can be passed which returns a list in
|
|
274
277
|
the same format as the static list.
|
|
275
278
|
This function must take 2 arguments (self, context), context may be None.
|
bpy/types/__init__.pyi
CHANGED
|
@@ -231057,6 +231057,8 @@ DOPESHEET_PT_custom_props_action: bl_ui.space_dopesheet.DOPESHEET_PT_custom_prop
|
|
|
231057
231057
|
|
|
231058
231058
|
DOPESHEET_PT_filters: bl_ui.space_dopesheet.DOPESHEET_PT_filters
|
|
231059
231059
|
|
|
231060
|
+
DOPESHEET_PT_grease_pencil_layer_adjustments: bl_ui.space_dopesheet.DOPESHEET_PT_grease_pencil_layer_adjustments
|
|
231061
|
+
|
|
231060
231062
|
DOPESHEET_PT_grease_pencil_layer_masks: bl_ui.space_dopesheet.DOPESHEET_PT_grease_pencil_layer_masks
|
|
231061
231063
|
|
|
231062
231064
|
DOPESHEET_PT_grease_pencil_layer_relations: bl_ui.space_dopesheet.DOPESHEET_PT_grease_pencil_layer_relations
|
|
@@ -117,7 +117,7 @@ bl_ui/properties_data_camera/__init__.pyi,sha256=voA4pSpiwEB0_CY454oPQfpwY2Il-wk
|
|
|
117
117
|
bl_ui/properties_data_curve/__init__.pyi,sha256=D1xZkuCpaMwurWe-N7UAeEB8Ko8Egsw8fAhfOTQqXJU,12859
|
|
118
118
|
bl_ui/properties_data_curves/__init__.pyi,sha256=huauSiwT8GBVJrFzp3o6N6aA8ouxecfu6RgHBfc5rJg,5913
|
|
119
119
|
bl_ui/properties_data_empty/__init__.pyi,sha256=PrWD2bMI4AKOBXS1-GsHXFFeVc12p4siGDQJxdmn95A,1679
|
|
120
|
-
bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=
|
|
120
|
+
bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=9zD7njkiRvAr-uPG1pRessLz8meEpqhExbHf7p0K8Pg,13942
|
|
121
121
|
bl_ui/properties_data_lattice/__init__.pyi,sha256=duUWwjGBzoTFbhB3BUruazK5qfddVxHJ1UJAtxSSkcs,3442
|
|
122
122
|
bl_ui/properties_data_light/__init__.pyi,sha256=Q4jh6kmNDqhw5u3An4gSPhlPnzMZMUb-wH_1RrcPsNM,8137
|
|
123
123
|
bl_ui/properties_data_lightprobe/__init__.pyi,sha256=micXmIresZ3nptUhIKrsUe7dMYQkTd-H2SMi-kkMysg,10705
|
|
@@ -154,7 +154,7 @@ bl_ui/properties_workspace/__init__.pyi,sha256=H9ixaD-_K6YbmzvvzDqE8Ca1_jvGeOJ0S
|
|
|
154
154
|
bl_ui/properties_world/__init__.pyi,sha256=2BvXUUUI6BdaA61DKNR3xNGGLSiK5kfeHW25x-s4p7w,9145
|
|
155
155
|
bl_ui/space_clip/__init__.pyi,sha256=I9bHrnPSZnkPYGxKw3tlUqch3FnyL4fpyjIzG-rqpKk,45001
|
|
156
156
|
bl_ui/space_console/__init__.pyi,sha256=jHE-NegnXq5WiuRTy89jw6hkYwLAjwEJryGzPJ7GrZw,3273
|
|
157
|
-
bl_ui/space_dopesheet/__init__.pyi,sha256=
|
|
157
|
+
bl_ui/space_dopesheet/__init__.pyi,sha256=1GCQ2DNekJvyEknCS-MxR3ISnR7vBU_E_lM9jEoTz04,17342
|
|
158
158
|
bl_ui/space_filebrowser/__init__.pyi,sha256=mFlZd3CLqrkdD-_nftH3A8f1hVHwHeGUvWBFEpIIoaM,19466
|
|
159
159
|
bl_ui/space_graph/__init__.pyi,sha256=7XFWtjx8rwzqzsIpnXcZbVgHHp1Xa6gr-GSxy5f7MhI,10909
|
|
160
160
|
bl_ui/space_image/__init__.pyi,sha256=Q6rgGQ3vJ0QZTcekgTJRVVIuxBeMvvkque8wBSBgV2g,44704
|
|
@@ -274,8 +274,8 @@ bpy/ops/wm/__init__.pyi,sha256=4_b4aN4AHyWvJmKpy0iaCzxrOFGx7m675twb22q6l28,23110
|
|
|
274
274
|
bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJY,3133
|
|
275
275
|
bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
|
|
276
276
|
bpy/path/__init__.pyi,sha256=b_M-IUy-VEWMDZJH0bP9P-HHcLLcQo59S1dARRQrP9E,5064
|
|
277
|
-
bpy/props/__init__.pyi,sha256=
|
|
278
|
-
bpy/types/__init__.pyi,sha256=
|
|
277
|
+
bpy/props/__init__.pyi,sha256=TfulJGBHgbMIc1aadTzLWiL6Q2NQdeO9Q4_ePasNesU,30717
|
|
278
|
+
bpy/types/__init__.pyi,sha256=_HmdKTMP0txazkTRBeXX6Xot4dAzDElPkQKsezBgweE,5363060
|
|
279
279
|
bpy/typing/__init__.pyi,sha256=gsUFQbZl7Gutj4Syr6Pqk3uZfsSsTa-vqvr2Mvq3AeY,138837
|
|
280
280
|
bpy/utils/__init__.pyi,sha256=XXoE6J8aW13NQ-2FvnFORXyNVUFfO8hSno-xfgJ6ZNI,13078
|
|
281
281
|
bpy/utils/previews/__init__.pyi,sha256=XEThA7jxMWet1sPTJ3mmngM6LdAdKiIVSZOKbCsbvzw,2217
|
|
@@ -358,7 +358,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
358
358
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
359
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
360
360
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
361
|
-
fake_bpy_module-
|
|
362
|
-
fake_bpy_module-
|
|
363
|
-
fake_bpy_module-
|
|
364
|
-
fake_bpy_module-
|
|
361
|
+
fake_bpy_module-20241116.dist-info/METADATA,sha256=2JjkUkYIbVtzPgU6GYru-C1JhykZ1DudoO2NK-MEy0A,7289
|
|
362
|
+
fake_bpy_module-20241116.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
|
|
363
|
+
fake_bpy_module-20241116.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
364
|
+
fake_bpy_module-20241116.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|