fake-bpy-module 20240507__py3-none-any.whl → 20240509__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.
- bpy/ops/action/__init__.pyi +152 -76
- bpy/ops/anim/__init__.pyi +212 -106
- bpy/ops/armature/__init__.pyi +192 -96
- bpy/ops/asset/__init__.pyi +64 -32
- bpy/ops/boid/__init__.pyi +32 -16
- bpy/ops/brush/__init__.pyi +36 -18
- bpy/ops/buttons/__init__.pyi +24 -12
- bpy/ops/cachefile/__init__.pyi +20 -10
- bpy/ops/camera/__init__.pyi +8 -4
- bpy/ops/clip/__init__.pyi +368 -184
- bpy/ops/cloth/__init__.pyi +4 -2
- bpy/ops/collection/__init__.pyi +36 -18
- bpy/ops/console/__init__.pyi +84 -42
- bpy/ops/constraint/__init__.pyi +72 -36
- bpy/ops/curve/__init__.pyi +204 -102
- bpy/ops/curves/__init__.pyi +108 -54
- bpy/ops/cycles/__init__.pyi +12 -6
- bpy/ops/dpaint/__init__.pyi +20 -10
- bpy/ops/ed/__init__.pyi +48 -24
- bpy/ops/export_anim/__init__.pyi +4 -2
- bpy/ops/export_mesh/__init__.pyi +4 -2
- bpy/ops/export_scene/__init__.pyi +14 -8
- bpy/ops/file/__init__.pyi +160 -80
- bpy/ops/fluid/__init__.pyi +56 -28
- bpy/ops/font/__init__.pyi +92 -46
- bpy/ops/geometry/__init__.pyi +40 -20
- bpy/ops/gizmogroup/__init__.pyi +8 -4
- bpy/ops/gpencil/__init__.pyi +600 -300
- bpy/ops/graph/__init__.pyi +260 -130
- bpy/ops/grease_pencil/__init__.pyi +268 -134
- bpy/ops/image/__init__.pyi +188 -94
- bpy/ops/import_anim/__init__.pyi +4 -2
- bpy/ops/import_curve/__init__.pyi +4 -2
- bpy/ops/import_mesh/__init__.pyi +4 -2
- bpy/ops/import_scene/__init__.pyi +12 -6
- bpy/ops/info/__init__.pyi +28 -14
- bpy/ops/lattice/__init__.pyi +32 -16
- bpy/ops/marker/__init__.pyi +44 -22
- bpy/ops/mask/__init__.pyi +156 -78
- bpy/ops/material/__init__.pyi +12 -6
- bpy/ops/mball/__init__.pyi +32 -16
- bpy/ops/mesh/__init__.pyi +652 -326
- bpy/ops/nla/__init__.pyi +158 -80
- bpy/ops/node/__init__.pyi +404 -202
- bpy/ops/object/__init__.pyi +1002 -490
- bpy/ops/outliner/__init__.pyi +276 -138
- bpy/ops/paint/__init__.pyi +212 -106
- bpy/ops/paintcurve/__init__.pyi +32 -16
- bpy/ops/palette/__init__.pyi +28 -14
- bpy/ops/particle/__init__.pyi +144 -72
- bpy/ops/pose/__init__.pyi +156 -78
- bpy/ops/poselib/__init__.pyi +36 -18
- bpy/ops/preferences/__init__.pyi +152 -76
- bpy/ops/ptcache/__init__.pyi +28 -14
- bpy/ops/render/__init__.pyi +48 -24
- bpy/ops/rigidbody/__init__.pyi +52 -26
- bpy/ops/scene/__init__.pyi +156 -78
- bpy/ops/screen/__init__.pyi +156 -78
- bpy/ops/script/__init__.pyi +12 -6
- bpy/ops/sculpt/__init__.pyi +134 -68
- bpy/ops/sculpt_curves/__init__.pyi +16 -8
- bpy/ops/sequencer/__init__.pyi +340 -170
- bpy/ops/sound/__init__.pyi +28 -14
- bpy/ops/spreadsheet/__init__.pyi +16 -8
- bpy/ops/surface/__init__.pyi +24 -12
- bpy/ops/text/__init__.pyi +172 -86
- bpy/ops/text_editor/__init__.pyi +4 -2
- bpy/ops/texture/__init__.pyi +16 -8
- bpy/ops/transform/__init__.pyi +108 -54
- bpy/ops/ui/__init__.pyi +132 -66
- bpy/ops/uilist/__init__.pyi +12 -6
- bpy/ops/uv/__init__.pyi +196 -98
- bpy/ops/view2d/__init__.pyi +56 -28
- bpy/ops/view3d/__init__.pyi +268 -134
- bpy/ops/wm/__init__.pyi +493 -224
- bpy/ops/workspace/__init__.pyi +28 -14
- bpy/ops/world/__init__.pyi +4 -2
- bpy/types/__init__.pyi +1250 -631
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/RECORD +83 -83
- mathutils/__init__.pyi +20 -0
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/top_level.txt +0 -0
|
@@ -4,7 +4,9 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def brush_stroke(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
stroke: typing.Optional[
|
|
@@ -14,7 +16,7 @@ def brush_stroke(
|
|
|
14
16
|
):
|
|
15
17
|
"""Sculpt curves using a brush
|
|
16
18
|
|
|
17
|
-
:type override_context: typing.Optional[typing.Union[
|
|
19
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
18
20
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
19
21
|
:type undo: typing.Optional[bool]
|
|
20
22
|
:param stroke: Stroke
|
|
@@ -35,13 +37,15 @@ def brush_stroke(
|
|
|
35
37
|
...
|
|
36
38
|
|
|
37
39
|
def min_distance_edit(
|
|
38
|
-
override_context: typing.Optional[
|
|
40
|
+
override_context: typing.Optional[
|
|
41
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
42
|
+
] = None,
|
|
39
43
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
40
44
|
undo: typing.Optional[bool] = None,
|
|
41
45
|
):
|
|
42
46
|
"""Change the minimum distance used by the density brush
|
|
43
47
|
|
|
44
|
-
:type override_context: typing.Optional[typing.Union[
|
|
48
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
45
49
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
46
50
|
:type undo: typing.Optional[bool]
|
|
47
51
|
"""
|
|
@@ -49,14 +53,16 @@ def min_distance_edit(
|
|
|
49
53
|
...
|
|
50
54
|
|
|
51
55
|
def select_grow(
|
|
52
|
-
override_context: typing.Optional[
|
|
56
|
+
override_context: typing.Optional[
|
|
57
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
58
|
+
] = None,
|
|
53
59
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
54
60
|
undo: typing.Optional[bool] = None,
|
|
55
61
|
distance: typing.Optional[typing.Any] = 0.1,
|
|
56
62
|
):
|
|
57
63
|
"""Select curves which are close to curves that are selected already
|
|
58
64
|
|
|
59
|
-
:type override_context: typing.Optional[typing.Union[
|
|
65
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
60
66
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
61
67
|
:type undo: typing.Optional[bool]
|
|
62
68
|
:param distance: Distance, By how much to grow the selection
|
|
@@ -66,7 +72,9 @@ def select_grow(
|
|
|
66
72
|
...
|
|
67
73
|
|
|
68
74
|
def select_random(
|
|
69
|
-
override_context: typing.Optional[
|
|
75
|
+
override_context: typing.Optional[
|
|
76
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
77
|
+
] = None,
|
|
70
78
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
71
79
|
undo: typing.Optional[bool] = None,
|
|
72
80
|
seed: typing.Optional[typing.Any] = 0,
|
|
@@ -77,7 +85,7 @@ def select_random(
|
|
|
77
85
|
):
|
|
78
86
|
"""Randomizes existing selection or create new random selection
|
|
79
87
|
|
|
80
|
-
:type override_context: typing.Optional[typing.Union[
|
|
88
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
81
89
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
82
90
|
:type undo: typing.Optional[bool]
|
|
83
91
|
:param seed: Seed, Source of randomness
|