fake-bge-module 20250225__py3-none-any.whl → 20250226__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.
- bl_ui/properties_data_grease_pencil/__init__.pyi +36 -0
- bl_ui/space_dopesheet/__init__.pyi +2 -2
- bpy/_typing/rna_enums/__init__.pyi +1 -2
- bpy/ops/grease_pencil/__init__.pyi +6 -3
- bpy/types/__init__.pyi +31674 -31686
- {fake_bge_module-20250225.dist-info → fake_bge_module-20250226.dist-info}/METADATA +1 -1
- {fake_bge_module-20250225.dist-info → fake_bge_module-20250226.dist-info}/RECORD +9 -9
- {fake_bge_module-20250225.dist-info → fake_bge_module-20250226.dist-info}/WHEEL +1 -1
- {fake_bge_module-20250225.dist-info → fake_bge_module-20250226.dist-info}/top_level.txt +0 -0
|
@@ -178,6 +178,42 @@ class DATA_PT_grease_pencil_layer_display(
|
|
|
178
178
|
:rtype: typing.Any
|
|
179
179
|
"""
|
|
180
180
|
|
|
181
|
+
class DATA_PT_grease_pencil_layer_group_display(bpy.types.Panel):
|
|
182
|
+
bl_context: typing.Any
|
|
183
|
+
bl_label: typing.Any
|
|
184
|
+
bl_options: typing.Any
|
|
185
|
+
bl_region_type: typing.Any
|
|
186
|
+
bl_rna: typing.Any
|
|
187
|
+
bl_space_type: typing.Any
|
|
188
|
+
id_data: typing.Any
|
|
189
|
+
|
|
190
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
191
|
+
"""
|
|
192
|
+
|
|
193
|
+
:return: The RNA type or default when not found.
|
|
194
|
+
:rtype: bpy.types.Struct
|
|
195
|
+
"""
|
|
196
|
+
|
|
197
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
198
|
+
"""
|
|
199
|
+
|
|
200
|
+
:return: The class or default when not found.
|
|
201
|
+
:rtype: typing.Any
|
|
202
|
+
"""
|
|
203
|
+
|
|
204
|
+
def draw(self, context):
|
|
205
|
+
"""
|
|
206
|
+
|
|
207
|
+
:param context:
|
|
208
|
+
"""
|
|
209
|
+
|
|
210
|
+
@classmethod
|
|
211
|
+
def poll(cls, context):
|
|
212
|
+
"""
|
|
213
|
+
|
|
214
|
+
:param context:
|
|
215
|
+
"""
|
|
216
|
+
|
|
181
217
|
class DATA_PT_grease_pencil_layer_masks(
|
|
182
218
|
GreasePencil_LayerMaskPanel, LayerDataButtonsPanel, bpy.types.Panel
|
|
183
219
|
):
|
|
@@ -234,10 +234,10 @@ class DOPESHEET_MT_key(bpy.types.Menu):
|
|
|
234
234
|
:rtype: typing.Any
|
|
235
235
|
"""
|
|
236
236
|
|
|
237
|
-
def draw(self,
|
|
237
|
+
def draw(self, context):
|
|
238
238
|
"""
|
|
239
239
|
|
|
240
|
-
:param
|
|
240
|
+
:param context:
|
|
241
241
|
"""
|
|
242
242
|
|
|
243
243
|
class DOPESHEET_MT_key_transform(bpy.types.Menu):
|
|
@@ -2415,8 +2415,7 @@ type ObjectTypeItems = typing.Literal[
|
|
|
2415
2415
|
"CURVES", # Hair Curves.
|
|
2416
2416
|
"POINTCLOUD", # Point Cloud.
|
|
2417
2417
|
"VOLUME", # Volume.
|
|
2418
|
-
"
|
|
2419
|
-
"GREASEPENCIL", # Grease Pencil v3.
|
|
2418
|
+
"GREASEPENCIL", # Grease Pencil.
|
|
2420
2419
|
"ARMATURE", # Armature.
|
|
2421
2420
|
"LATTICE", # Lattice.
|
|
2422
2421
|
"EMPTY", # Empty.
|
|
@@ -1457,14 +1457,17 @@ def set_uniform_opacity(
|
|
|
1457
1457
|
undo: bool | None = None,
|
|
1458
1458
|
/,
|
|
1459
1459
|
*,
|
|
1460
|
-
|
|
1460
|
+
opacity_stroke: float | None = 1.0,
|
|
1461
|
+
opacity_fill: float | None = 0.5,
|
|
1461
1462
|
):
|
|
1462
1463
|
"""Set all stroke points to same opacity
|
|
1463
1464
|
|
|
1464
1465
|
:type execution_context: int | str | None
|
|
1465
1466
|
:type undo: bool | None
|
|
1466
|
-
:param
|
|
1467
|
-
:type
|
|
1467
|
+
:param opacity_stroke: Stroke Opacity
|
|
1468
|
+
:type opacity_stroke: float | None
|
|
1469
|
+
:param opacity_fill: Fill Opacity
|
|
1470
|
+
:type opacity_fill: float | None
|
|
1468
1471
|
"""
|
|
1469
1472
|
|
|
1470
1473
|
def set_uniform_thickness(
|