fake-bpy-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.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

@@ -179,6 +179,42 @@ class DATA_PT_grease_pencil_layer_display(
179
179
  :rtype: typing.Any
180
180
  """
181
181
 
182
+ class DATA_PT_grease_pencil_layer_group_display(bpy.types.Panel):
183
+ bl_context: typing.Any
184
+ bl_label: typing.Any
185
+ bl_options: typing.Any
186
+ bl_region_type: typing.Any
187
+ bl_rna: typing.Any
188
+ bl_space_type: typing.Any
189
+ id_data: typing.Any
190
+
191
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
192
+ """
193
+
194
+ :return: The RNA type or default when not found.
195
+ :rtype: bpy.types.Struct
196
+ """
197
+
198
+ def bl_rna_get_subclass_py(self) -> typing.Any:
199
+ """
200
+
201
+ :return: The class or default when not found.
202
+ :rtype: typing.Any
203
+ """
204
+
205
+ def draw(self, context):
206
+ """
207
+
208
+ :param context:
209
+ """
210
+
211
+ @classmethod
212
+ def poll(cls, context):
213
+ """
214
+
215
+ :param context:
216
+ """
217
+
182
218
  class DATA_PT_grease_pencil_layer_masks(
183
219
  GreasePencil_LayerMaskPanel, LayerDataButtonsPanel, bpy.types.Panel
184
220
  ):
@@ -235,10 +235,10 @@ class DOPESHEET_MT_key(bpy.types.Menu):
235
235
  :rtype: typing.Any
236
236
  """
237
237
 
238
- def draw(self, _context):
238
+ def draw(self, context):
239
239
  """
240
240
 
241
- :param _context:
241
+ :param context:
242
242
  """
243
243
 
244
244
  class DOPESHEET_MT_key_transform(bpy.types.Menu):
@@ -2397,8 +2397,7 @@ type ObjectTypeItems = typing.Literal[
2397
2397
  "CURVES", # Hair Curves.
2398
2398
  "POINTCLOUD", # Point Cloud.
2399
2399
  "VOLUME", # Volume.
2400
- "GPENCIL", # Grease Pencil.
2401
- "GREASEPENCIL", # Grease Pencil v3.
2400
+ "GREASEPENCIL", # Grease Pencil.
2402
2401
  "ARMATURE", # Armature.
2403
2402
  "LATTICE", # Lattice.
2404
2403
  "EMPTY", # Empty.
bpy/ops/anim/__init__.pyi CHANGED
@@ -10,6 +10,7 @@ def change_frame(
10
10
  *,
11
11
  frame: float | None = 0.0,
12
12
  snap: bool | None = False,
13
+ seq_solo_preview: bool | None = False,
13
14
  ):
14
15
  """Interactively change the current frame number
15
16
 
@@ -19,6 +20,8 @@ def change_frame(
19
20
  :type frame: float | None
20
21
  :param snap: Snap
21
22
  :type snap: bool | None
23
+ :param seq_solo_preview: Strip Preview
24
+ :type seq_solo_preview: bool | None
22
25
  """
23
26
 
24
27
  def channel_select_keys(
@@ -559,6 +559,7 @@ def mask_by_color(
559
559
  invert: bool | None = False,
560
560
  preserve_previous_mask: bool | None = False,
561
561
  threshold: float | None = 0.35,
562
+ location: collections.abc.Iterable[int] | None = (0, 0),
562
563
  ):
563
564
  """Creates a mask based on the active color attribute
564
565
 
@@ -572,6 +573,8 @@ def mask_by_color(
572
573
  :type preserve_previous_mask: bool | None
573
574
  :param threshold: Threshold, How much changes in color affect the mask generation
574
575
  :type threshold: float | None
576
+ :param location: Location, Region coordinates of sampling
577
+ :type location: collections.abc.Iterable[int] | None
575
578
  """
576
579
 
577
580
  def mask_filter(