fake-bpy-module 20250224__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(
@@ -148,6 +148,7 @@ def file_browse(
148
148
  ]
149
149
  | None = "DEFAULT",
150
150
  sort_method: str | None = "",
151
+ filter_glob: str = "",
151
152
  ):
152
153
  """Open a file browser, hold Shift to open the file, Alt to browse containing directory
153
154
 
@@ -213,6 +214,8 @@ def file_browse(
213
214
  :type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
214
215
  :param sort_method: File sorting mode
215
216
  :type sort_method: str | None
217
+ :param filter_glob: Glob Filter, Custom filter
218
+ :type filter_glob: str
216
219
  """
217
220
 
218
221
  def start_filter(execution_context: int | str | None = None, undo: bool | None = None):
@@ -437,6 +437,13 @@ def snap_curves_to_surface(
437
437
  :type attach_mode: typing.Literal['NEAREST','DEFORM'] | None
438
438
  """
439
439
 
440
+ def split(execution_context: int | str | None = None, undo: bool | None = None):
441
+ """Split selected points
442
+
443
+ :type execution_context: int | str | None
444
+ :type undo: bool | None
445
+ """
446
+
440
447
  def subdivide(
441
448
  execution_context: int | str | None = None,
442
449
  undo: bool | None = None,
@@ -1458,14 +1458,17 @@ def set_uniform_opacity(
1458
1458
  undo: bool | None = None,
1459
1459
  /,
1460
1460
  *,
1461
- opacity: float | None = 1.0,
1461
+ opacity_stroke: float | None = 1.0,
1462
+ opacity_fill: float | None = 0.5,
1462
1463
  ):
1463
1464
  """Set all stroke points to same opacity
1464
1465
 
1465
1466
  :type execution_context: int | str | None
1466
1467
  :type undo: bool | None
1467
- :param opacity: Opacity
1468
- :type opacity: float | None
1468
+ :param opacity_stroke: Stroke Opacity
1469
+ :type opacity_stroke: float | None
1470
+ :param opacity_fill: Fill Opacity
1471
+ :type opacity_fill: float | None
1469
1472
  """
1470
1473
 
1471
1474
  def set_uniform_thickness(
bpy/ops/node/__init__.pyi CHANGED
@@ -253,6 +253,25 @@ def add_group_asset(
253
253
  :type relative_asset_identifier: str
254
254
  """
255
255
 
256
+ def add_import_node(
257
+ execution_context: int | str | None = None,
258
+ undo: bool | None = None,
259
+ /,
260
+ *,
261
+ directory: str = "",
262
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
263
+ | None = None,
264
+ ):
265
+ """Add an import node to the node tree
266
+
267
+ :type execution_context: int | str | None
268
+ :type undo: bool | None
269
+ :param directory: Directory, Directory of the file
270
+ :type directory: str
271
+ :param files: Files
272
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
273
+ """
274
+
256
275
  def add_mask(
257
276
  execution_context: int | str | None = None,
258
277
  undo: bool | None = None,
@@ -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(