fake-bpy-module 20250225__py3-none-any.whl → 20250227__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 +36 -0
- bl_ui/space_dopesheet/__init__.pyi +2 -2
- bpy/_typing/rna_enums/__init__.pyi +1 -2
- bpy/ops/anim/__init__.pyi +3 -0
- bpy/ops/extensions/__init__.pyi +0 -18
- bpy/ops/object/__init__.pyi +9 -0
- bpy/ops/sculpt/__init__.pyi +3 -0
- bpy/types/__init__.pyi +30559 -30547
- {fake_bpy_module-20250225.dist-info → fake_bpy_module-20250227.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250225.dist-info → fake_bpy_module-20250227.dist-info}/RECORD +13 -13
- {fake_bpy_module-20250225.dist-info → fake_bpy_module-20250227.dist-info}/WHEEL +1 -1
- gpu_extras/batch/__init__.pyi +3 -2
- {fake_bpy_module-20250225.dist-info → fake_bpy_module-20250227.dist-info}/top_level.txt +0 -0
|
@@ -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,
|
|
238
|
+
def draw(self, context):
|
|
239
239
|
"""
|
|
240
240
|
|
|
241
|
-
:param
|
|
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
|
-
"
|
|
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(
|
bpy/ops/extensions/__init__.pyi
CHANGED
|
@@ -4,15 +4,6 @@ import typing_extensions
|
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import bpy.types
|
|
6
6
|
|
|
7
|
-
def dummy_progress(
|
|
8
|
-
execution_context: int | str | None = None, undo: bool | None = None
|
|
9
|
-
):
|
|
10
|
-
"""Undocumented, consider contributing.
|
|
11
|
-
|
|
12
|
-
:type execution_context: int | str | None
|
|
13
|
-
:type undo: bool | None
|
|
14
|
-
"""
|
|
15
|
-
|
|
16
7
|
def package_disable(
|
|
17
8
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
18
9
|
):
|
|
@@ -22,15 +13,6 @@ def package_disable(
|
|
|
22
13
|
:type undo: bool | None
|
|
23
14
|
"""
|
|
24
15
|
|
|
25
|
-
def package_enable_not_installed(
|
|
26
|
-
execution_context: int | str | None = None, undo: bool | None = None
|
|
27
|
-
):
|
|
28
|
-
"""Turn on this extension
|
|
29
|
-
|
|
30
|
-
:type execution_context: int | str | None
|
|
31
|
-
:type undo: bool | None
|
|
32
|
-
"""
|
|
33
|
-
|
|
34
16
|
def package_install(
|
|
35
17
|
execution_context: int | str | None = None,
|
|
36
18
|
undo: bool | None = None,
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -4905,6 +4905,15 @@ def vertex_weight_set_active(
|
|
|
4905
4905
|
:type weight_group: int | None
|
|
4906
4906
|
"""
|
|
4907
4907
|
|
|
4908
|
+
def visual_geometry_to_objects(
|
|
4909
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
4910
|
+
):
|
|
4911
|
+
"""Convert geometry and instances into editable objects and collections
|
|
4912
|
+
|
|
4913
|
+
:type execution_context: int | str | None
|
|
4914
|
+
:type undo: bool | None
|
|
4915
|
+
"""
|
|
4916
|
+
|
|
4908
4917
|
def visual_transform_apply(
|
|
4909
4918
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
4910
4919
|
):
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -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(
|