fake-bpy-module 20240523__py3-none-any.whl → 20240528__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_operators/__init__.pyi +1 -0
- bl_operators/image_as_planes/__init__.pyi +457 -0
- bl_operators/userpref/__init__.pyi +0 -214
- bl_ui/properties_data_modifier/__init__.pyi +284 -0
- bl_ui/properties_render/__init__.pyi +1 -1
- bl_ui/space_userpref/__init__.pyi +233 -0
- bpy/app/__init__.pyi +9 -1
- bpy/ops/action/__init__.pyi +21 -0
- bpy/ops/anim/__init__.pyi +34 -0
- bpy/ops/armature/__init__.pyi +31 -0
- bpy/ops/asset/__init__.pyi +5 -0
- bpy/ops/bl_pkg/__init__.pyi +28 -17
- bpy/ops/boid/__init__.pyi +1 -0
- bpy/ops/brush/__init__.pyi +6 -0
- bpy/ops/buttons/__init__.pyi +2 -0
- bpy/ops/cachefile/__init__.pyi +3 -0
- bpy/ops/camera/__init__.pyi +2 -0
- bpy/ops/clip/__init__.pyi +49 -0
- bpy/ops/cloth/__init__.pyi +1 -0
- bpy/ops/collection/__init__.pyi +7 -0
- bpy/ops/console/__init__.pyi +11 -0
- bpy/ops/constraint/__init__.pyi +15 -0
- bpy/ops/curve/__init__.pyi +28 -0
- bpy/ops/curves/__init__.pyi +14 -0
- bpy/ops/cycles/__init__.pyi +2 -0
- bpy/ops/dpaint/__init__.pyi +2 -0
- bpy/ops/ed/__init__.pyi +3 -0
- bpy/ops/export_anim/__init__.pyi +1 -0
- bpy/ops/export_scene/__init__.pyi +20 -3
- bpy/ops/file/__init__.pyi +14 -0
- bpy/ops/fluid/__init__.pyi +1 -0
- bpy/ops/font/__init__.pyi +13 -0
- bpy/ops/geometry/__init__.pyi +7 -0
- bpy/ops/gizmogroup/__init__.pyi +1 -0
- bpy/ops/gpencil/__init__.pyi +106 -0
- bpy/ops/graph/__init__.pyi +47 -0
- bpy/ops/grease_pencil/__init__.pyi +58 -0
- bpy/ops/image/__init__.pyi +308 -0
- bpy/ops/import_anim/__init__.pyi +1 -0
- bpy/ops/import_curve/__init__.pyi +1 -0
- bpy/ops/import_scene/__init__.pyi +2 -0
- bpy/ops/info/__init__.pyi +3 -0
- bpy/ops/lattice/__init__.pyi +5 -0
- bpy/ops/marker/__init__.pyi +9 -0
- bpy/ops/mask/__init__.pyi +22 -0
- bpy/ops/mball/__init__.pyi +7 -0
- bpy/ops/mesh/__init__.pyi +134 -0
- bpy/ops/nla/__init__.pyi +20 -0
- bpy/ops/node/__init__.pyi +47 -0
- bpy/ops/object/__init__.pyi +174 -0
- bpy/ops/outliner/__init__.pyi +53 -0
- bpy/ops/paint/__init__.pyi +39 -0
- bpy/ops/paintcurve/__init__.pyi +4 -0
- bpy/ops/palette/__init__.pyi +4 -0
- bpy/ops/particle/__init__.pyi +17 -0
- bpy/ops/pose/__init__.pyi +24 -0
- bpy/ops/poselib/__init__.pyi +4 -0
- bpy/ops/preferences/__init__.pyi +26 -14
- bpy/ops/ptcache/__init__.pyi +2 -0
- bpy/ops/render/__init__.pyi +9 -0
- bpy/ops/rigidbody/__init__.pyi +7 -0
- bpy/ops/scene/__init__.pyi +16 -0
- bpy/ops/screen/__init__.pyi +21 -0
- bpy/ops/script/__init__.pyi +2 -0
- bpy/ops/sculpt/__init__.pyi +26 -1
- bpy/ops/sculpt_curves/__init__.pyi +3 -0
- bpy/ops/sequencer/__init__.pyi +57 -0
- bpy/ops/sound/__init__.pyi +4 -0
- bpy/ops/spreadsheet/__init__.pyi +2 -0
- bpy/ops/surface/__init__.pyi +6 -0
- bpy/ops/text/__init__.pyi +18 -0
- bpy/ops/text_editor/__init__.pyi +1 -0
- bpy/ops/texture/__init__.pyi +1 -0
- bpy/ops/transform/__init__.pyi +25 -0
- bpy/ops/ui/__init__.pyi +13 -0
- bpy/ops/uilist/__init__.pyi +3 -0
- bpy/ops/uv/__init__.pyi +40 -0
- bpy/ops/view2d/__init__.pyi +11 -0
- bpy/ops/view3d/__init__.pyi +30 -0
- bpy/ops/wm/__init__.pyi +114 -0
- bpy/ops/workspace/__init__.pyi +1 -0
- bpy/path/__init__.pyi +6 -6
- bpy/props/__init__.pyi +11 -1
- bpy/types/__init__.pyi +594 -342
- bpy/utils/__init__.pyi +10 -8
- bpy_extras/anim_utils/__init__.pyi +3 -3
- bpy_extras/view3d_utils/__init__.pyi +2 -0
- {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/RECORD +94 -93
- gpu/types/__init__.pyi +4 -2
- gpu_extras/batch/__init__.pyi +1 -1
- gpu_extras/presets/__init__.pyi +1 -1
- {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/top_level.txt +0 -0
bpy/ops/workspace/__init__.pyi
CHANGED
bpy/path/__init__.pyi
CHANGED
|
@@ -12,7 +12,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
12
12
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
13
13
|
|
|
14
14
|
def abspath(
|
|
15
|
-
path, start: str | bytes | None = None, library: bpy.types.Library | None = None
|
|
15
|
+
path, *, start: str | bytes | None = None, library: bpy.types.Library | None = None
|
|
16
16
|
) -> str:
|
|
17
17
|
"""Returns the absolute path relative to the current blend file
|
|
18
18
|
using the "//" prefix.
|
|
@@ -65,7 +65,7 @@ def basename(path) -> str:
|
|
|
65
65
|
|
|
66
66
|
...
|
|
67
67
|
|
|
68
|
-
def clean_name(name: str | bytes | None, replace: str | None = "_") -> str:
|
|
68
|
+
def clean_name(name: str | bytes | None, *, replace: str | None = "_") -> str:
|
|
69
69
|
"""Returns a name with characters replaced that
|
|
70
70
|
may cause problems under various circumstances,
|
|
71
71
|
such as writing to a file.All characters besides A-Z/a-z, 0-9 are replaced with "_"
|
|
@@ -98,7 +98,7 @@ def clean_name(name: str | bytes | None, replace: str | None = "_") -> str:
|
|
|
98
98
|
...
|
|
99
99
|
|
|
100
100
|
def display_name(
|
|
101
|
-
name: str | None, has_ext: bool | None = True, title_case: bool | None = True
|
|
101
|
+
name: str | None, *, has_ext: bool | None = True, title_case: bool | None = True
|
|
102
102
|
) -> str:
|
|
103
103
|
"""Creates a display string from name to be used menus and the user interface.
|
|
104
104
|
Intended for use with filenames and module names.
|
|
@@ -182,7 +182,7 @@ def display_name_to_filepath(name: str | None) -> str:
|
|
|
182
182
|
...
|
|
183
183
|
|
|
184
184
|
def ensure_ext(
|
|
185
|
-
filepath: str | None, ext: str | None, case_sensitive: bool | None = False
|
|
185
|
+
filepath: str | None, ext: str | None, *, case_sensitive: bool | None = False
|
|
186
186
|
) -> str:
|
|
187
187
|
"""Return the path with the extension added if it is not already set.
|
|
188
188
|
|
|
@@ -242,7 +242,7 @@ def is_subdir(path: str | bytes | None, directory) -> bool:
|
|
|
242
242
|
...
|
|
243
243
|
|
|
244
244
|
def module_names(
|
|
245
|
-
path: str | None, recursive: bool | None = False, package: str | None = ""
|
|
245
|
+
path: str | None, *, recursive: bool | None = False, package: str | None = ""
|
|
246
246
|
) -> list[str]:
|
|
247
247
|
"""Return a list of modules which can be imported from path.
|
|
248
248
|
|
|
@@ -323,7 +323,7 @@ def reduce_dirs(dirs: list[str] | None) -> list[str]:
|
|
|
323
323
|
|
|
324
324
|
...
|
|
325
325
|
|
|
326
|
-
def relpath(path: str | bytes | None, start: str | bytes | None = None) -> str:
|
|
326
|
+
def relpath(path: str | bytes | None, *, start: str | bytes | None = None) -> str:
|
|
327
327
|
"""Returns the path relative to the current blend file using the "//" prefix.
|
|
328
328
|
|
|
329
329
|
:param path: An absolute path.
|
bpy/props/__init__.pyi
CHANGED
|
@@ -94,6 +94,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
94
94
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
95
95
|
|
|
96
96
|
def BoolProperty(
|
|
97
|
+
*,
|
|
97
98
|
name: str | None = "",
|
|
98
99
|
description: str | None = "",
|
|
99
100
|
translation_context: str | None = "*",
|
|
@@ -137,6 +138,7 @@ def BoolProperty(
|
|
|
137
138
|
...
|
|
138
139
|
|
|
139
140
|
def BoolVectorProperty(
|
|
141
|
+
*,
|
|
140
142
|
name: str | None = "",
|
|
141
143
|
description: str | None = "",
|
|
142
144
|
translation_context: str | None = "*",
|
|
@@ -185,6 +187,7 @@ def BoolVectorProperty(
|
|
|
185
187
|
...
|
|
186
188
|
|
|
187
189
|
def CollectionProperty(
|
|
190
|
+
*,
|
|
188
191
|
type=None,
|
|
189
192
|
name: str | None = "",
|
|
190
193
|
description: str | None = "",
|
|
@@ -213,6 +216,7 @@ def CollectionProperty(
|
|
|
213
216
|
...
|
|
214
217
|
|
|
215
218
|
def EnumProperty(
|
|
219
|
+
*,
|
|
216
220
|
items: typing.Iterable[typing.Iterable[str]] | typing.Callable | None,
|
|
217
221
|
name: str | None = "",
|
|
218
222
|
description: str | None = "",
|
|
@@ -298,6 +302,7 @@ def EnumProperty(
|
|
|
298
302
|
...
|
|
299
303
|
|
|
300
304
|
def FloatProperty(
|
|
305
|
+
*,
|
|
301
306
|
name: str | None = "",
|
|
302
307
|
description: str | None = "",
|
|
303
308
|
translation_context: str | None = "*",
|
|
@@ -362,6 +367,7 @@ def FloatProperty(
|
|
|
362
367
|
...
|
|
363
368
|
|
|
364
369
|
def FloatVectorProperty(
|
|
370
|
+
*,
|
|
365
371
|
name: str | None = "",
|
|
366
372
|
description: str | None = "",
|
|
367
373
|
translation_context: str | None = "*",
|
|
@@ -431,6 +437,7 @@ def FloatVectorProperty(
|
|
|
431
437
|
...
|
|
432
438
|
|
|
433
439
|
def IntProperty(
|
|
440
|
+
*,
|
|
434
441
|
name: str | None = "",
|
|
435
442
|
description: str | None = "",
|
|
436
443
|
translation_context: str | None = "*",
|
|
@@ -489,6 +496,7 @@ def IntProperty(
|
|
|
489
496
|
...
|
|
490
497
|
|
|
491
498
|
def IntVectorProperty(
|
|
499
|
+
*,
|
|
492
500
|
name: str | None = "",
|
|
493
501
|
description: str | None = "",
|
|
494
502
|
translation_context: str | None = "*",
|
|
@@ -552,6 +560,7 @@ def IntVectorProperty(
|
|
|
552
560
|
...
|
|
553
561
|
|
|
554
562
|
def PointerProperty(
|
|
563
|
+
*,
|
|
555
564
|
type=None,
|
|
556
565
|
name: str | None = "",
|
|
557
566
|
description: str | None = "",
|
|
@@ -588,7 +597,7 @@ def PointerProperty(
|
|
|
588
597
|
|
|
589
598
|
...
|
|
590
599
|
|
|
591
|
-
def RemoveProperty(cls: typing.Any | None, attr: str | None):
|
|
600
|
+
def RemoveProperty(*, cls: typing.Any | None, attr: str | None):
|
|
592
601
|
"""Removes a dynamically defined property.
|
|
593
602
|
|
|
594
603
|
:param cls: The class containing the property (must be a positional argument).
|
|
@@ -600,6 +609,7 @@ def RemoveProperty(cls: typing.Any | None, attr: str | None):
|
|
|
600
609
|
...
|
|
601
610
|
|
|
602
611
|
def StringProperty(
|
|
612
|
+
*,
|
|
603
613
|
name: str | None = "",
|
|
604
614
|
description: str | None = "",
|
|
605
615
|
translation_context: str | None = "*",
|