fake-bpy-module 20240508__py3-none-any.whl → 20240510__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.
- bmesh/ops/__init__.pyi +106 -106
- 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 +15 -9
- 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 +496 -227
- bpy/ops/workspace/__init__.pyi +28 -14
- bpy/ops/world/__init__.pyi +4 -2
- bpy/types/__init__.pyi +434 -37
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240510.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240510.dist-info}/RECORD +84 -84
- mathutils/__init__.pyi +20 -0
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240510.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240510.dist-info}/top_level.txt +0 -0
bpy/ops/paintcurve/__init__.pyi
CHANGED
|
@@ -4,14 +4,16 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def add_point(
|
|
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
|
location: typing.Optional[typing.Any] = (0, 0),
|
|
11
13
|
):
|
|
12
14
|
"""Add New Paint Curve Point
|
|
13
15
|
|
|
14
|
-
:type override_context: typing.Optional[typing.Union[
|
|
16
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
15
17
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
16
18
|
:type undo: typing.Optional[bool]
|
|
17
19
|
:param location: Location, Location of vertex in area space
|
|
@@ -21,7 +23,9 @@ def add_point(
|
|
|
21
23
|
...
|
|
22
24
|
|
|
23
25
|
def add_point_slide(
|
|
24
|
-
override_context: typing.Optional[
|
|
26
|
+
override_context: typing.Optional[
|
|
27
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
28
|
+
] = None,
|
|
25
29
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
26
30
|
undo: typing.Optional[bool] = None,
|
|
27
31
|
PAINTCURVE_OT_add_point: typing.Optional[add_point] = None,
|
|
@@ -29,7 +33,7 @@ def add_point_slide(
|
|
|
29
33
|
):
|
|
30
34
|
"""Add new curve point and slide it
|
|
31
35
|
|
|
32
|
-
:type override_context: typing.Optional[typing.Union[
|
|
36
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
33
37
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
34
38
|
:type undo: typing.Optional[bool]
|
|
35
39
|
:param PAINTCURVE_OT_add_point: Add New Paint Curve Point, Add New Paint Curve Point
|
|
@@ -41,13 +45,15 @@ def add_point_slide(
|
|
|
41
45
|
...
|
|
42
46
|
|
|
43
47
|
def cursor(
|
|
44
|
-
override_context: typing.Optional[
|
|
48
|
+
override_context: typing.Optional[
|
|
49
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
50
|
+
] = None,
|
|
45
51
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
46
52
|
undo: typing.Optional[bool] = None,
|
|
47
53
|
):
|
|
48
54
|
"""Place cursor
|
|
49
55
|
|
|
50
|
-
:type override_context: typing.Optional[typing.Union[
|
|
56
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
51
57
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
52
58
|
:type undo: typing.Optional[bool]
|
|
53
59
|
"""
|
|
@@ -55,13 +61,15 @@ def cursor(
|
|
|
55
61
|
...
|
|
56
62
|
|
|
57
63
|
def delete_point(
|
|
58
|
-
override_context: typing.Optional[
|
|
64
|
+
override_context: typing.Optional[
|
|
65
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
66
|
+
] = None,
|
|
59
67
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
60
68
|
undo: typing.Optional[bool] = None,
|
|
61
69
|
):
|
|
62
70
|
"""Remove Paint Curve Point
|
|
63
71
|
|
|
64
|
-
:type override_context: typing.Optional[typing.Union[
|
|
72
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
65
73
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
66
74
|
:type undo: typing.Optional[bool]
|
|
67
75
|
"""
|
|
@@ -69,13 +77,15 @@ def delete_point(
|
|
|
69
77
|
...
|
|
70
78
|
|
|
71
79
|
def draw(
|
|
72
|
-
override_context: typing.Optional[
|
|
80
|
+
override_context: typing.Optional[
|
|
81
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
82
|
+
] = None,
|
|
73
83
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
74
84
|
undo: typing.Optional[bool] = None,
|
|
75
85
|
):
|
|
76
86
|
"""Draw curve
|
|
77
87
|
|
|
78
|
-
:type override_context: typing.Optional[typing.Union[
|
|
88
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
79
89
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
80
90
|
:type undo: typing.Optional[bool]
|
|
81
91
|
"""
|
|
@@ -83,13 +93,15 @@ def draw(
|
|
|
83
93
|
...
|
|
84
94
|
|
|
85
95
|
def new(
|
|
86
|
-
override_context: typing.Optional[
|
|
96
|
+
override_context: typing.Optional[
|
|
97
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
98
|
+
] = None,
|
|
87
99
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
88
100
|
undo: typing.Optional[bool] = None,
|
|
89
101
|
):
|
|
90
102
|
"""Add new paint curve
|
|
91
103
|
|
|
92
|
-
:type override_context: typing.Optional[typing.Union[
|
|
104
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
93
105
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
94
106
|
:type undo: typing.Optional[bool]
|
|
95
107
|
"""
|
|
@@ -97,7 +109,9 @@ def new(
|
|
|
97
109
|
...
|
|
98
110
|
|
|
99
111
|
def select(
|
|
100
|
-
override_context: typing.Optional[
|
|
112
|
+
override_context: typing.Optional[
|
|
113
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
114
|
+
] = None,
|
|
101
115
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
102
116
|
undo: typing.Optional[bool] = None,
|
|
103
117
|
location: typing.Optional[typing.Any] = (0, 0),
|
|
@@ -106,7 +120,7 @@ def select(
|
|
|
106
120
|
):
|
|
107
121
|
"""Select a paint curve point
|
|
108
122
|
|
|
109
|
-
:type override_context: typing.Optional[typing.Union[
|
|
123
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
110
124
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
111
125
|
:type undo: typing.Optional[bool]
|
|
112
126
|
:param location: Location, Location of vertex in area space
|
|
@@ -120,7 +134,9 @@ def select(
|
|
|
120
134
|
...
|
|
121
135
|
|
|
122
136
|
def slide(
|
|
123
|
-
override_context: typing.Optional[
|
|
137
|
+
override_context: typing.Optional[
|
|
138
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
139
|
+
] = None,
|
|
124
140
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
125
141
|
undo: typing.Optional[bool] = None,
|
|
126
142
|
align: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -128,7 +144,7 @@ def slide(
|
|
|
128
144
|
):
|
|
129
145
|
"""Select and slide paint curve point
|
|
130
146
|
|
|
131
|
-
:type override_context: typing.Optional[typing.Union[
|
|
147
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
132
148
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
133
149
|
:type undo: typing.Optional[bool]
|
|
134
150
|
:param align: Align Handles, Aligns opposite point handle during transform
|
bpy/ops/palette/__init__.pyi
CHANGED
|
@@ -4,13 +4,15 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def color_add(
|
|
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
|
):
|
|
11
13
|
"""Add new color to active palette
|
|
12
14
|
|
|
13
|
-
:type override_context: typing.Optional[typing.Union[
|
|
15
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
14
16
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
15
17
|
:type undo: typing.Optional[bool]
|
|
16
18
|
"""
|
|
@@ -18,13 +20,15 @@ def color_add(
|
|
|
18
20
|
...
|
|
19
21
|
|
|
20
22
|
def color_delete(
|
|
21
|
-
override_context: typing.Optional[
|
|
23
|
+
override_context: typing.Optional[
|
|
24
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
25
|
+
] = None,
|
|
22
26
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
23
27
|
undo: typing.Optional[bool] = None,
|
|
24
28
|
):
|
|
25
29
|
"""Remove active color from palette
|
|
26
30
|
|
|
27
|
-
:type override_context: typing.Optional[typing.Union[
|
|
31
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
28
32
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
29
33
|
:type undo: typing.Optional[bool]
|
|
30
34
|
"""
|
|
@@ -32,14 +36,16 @@ def color_delete(
|
|
|
32
36
|
...
|
|
33
37
|
|
|
34
38
|
def color_move(
|
|
35
|
-
override_context: typing.Optional[
|
|
39
|
+
override_context: typing.Optional[
|
|
40
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
41
|
+
] = None,
|
|
36
42
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
37
43
|
undo: typing.Optional[bool] = None,
|
|
38
44
|
type: typing.Optional[typing.Any] = "UP",
|
|
39
45
|
):
|
|
40
46
|
"""Move the active Color up/down in the list
|
|
41
47
|
|
|
42
|
-
:type override_context: typing.Optional[typing.Union[
|
|
48
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
43
49
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
44
50
|
:type undo: typing.Optional[bool]
|
|
45
51
|
:param type: Type
|
|
@@ -49,14 +55,16 @@ def color_move(
|
|
|
49
55
|
...
|
|
50
56
|
|
|
51
57
|
def extract_from_image(
|
|
52
|
-
override_context: typing.Optional[
|
|
58
|
+
override_context: typing.Optional[
|
|
59
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
60
|
+
] = None,
|
|
53
61
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
54
62
|
undo: typing.Optional[bool] = None,
|
|
55
63
|
threshold: typing.Optional[typing.Any] = 1,
|
|
56
64
|
):
|
|
57
65
|
"""Extract all colors used in Image and create a Palette
|
|
58
66
|
|
|
59
|
-
:type override_context: typing.Optional[typing.Union[
|
|
67
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
60
68
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
61
69
|
:type undo: typing.Optional[bool]
|
|
62
70
|
:param threshold: Threshold
|
|
@@ -66,14 +74,16 @@ def extract_from_image(
|
|
|
66
74
|
...
|
|
67
75
|
|
|
68
76
|
def join(
|
|
69
|
-
override_context: typing.Optional[
|
|
77
|
+
override_context: typing.Optional[
|
|
78
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
79
|
+
] = None,
|
|
70
80
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
71
81
|
undo: typing.Optional[bool] = None,
|
|
72
82
|
palette: typing.Union[str, typing.Any] = "",
|
|
73
83
|
):
|
|
74
84
|
"""Join Palette Swatches
|
|
75
85
|
|
|
76
|
-
:type override_context: typing.Optional[typing.Union[
|
|
86
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
77
87
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
78
88
|
:type undo: typing.Optional[bool]
|
|
79
89
|
:param palette: Palette, Name of the Palette
|
|
@@ -83,13 +93,15 @@ def join(
|
|
|
83
93
|
...
|
|
84
94
|
|
|
85
95
|
def new(
|
|
86
|
-
override_context: typing.Optional[
|
|
96
|
+
override_context: typing.Optional[
|
|
97
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
98
|
+
] = None,
|
|
87
99
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
88
100
|
undo: typing.Optional[bool] = None,
|
|
89
101
|
):
|
|
90
102
|
"""Add new palette
|
|
91
103
|
|
|
92
|
-
:type override_context: typing.Optional[typing.Union[
|
|
104
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
93
105
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
94
106
|
:type undo: typing.Optional[bool]
|
|
95
107
|
"""
|
|
@@ -97,14 +109,16 @@ def new(
|
|
|
97
109
|
...
|
|
98
110
|
|
|
99
111
|
def sort(
|
|
100
|
-
override_context: typing.Optional[
|
|
112
|
+
override_context: typing.Optional[
|
|
113
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
114
|
+
] = None,
|
|
101
115
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
102
116
|
undo: typing.Optional[bool] = None,
|
|
103
117
|
type: typing.Optional[typing.Any] = "HSV",
|
|
104
118
|
):
|
|
105
119
|
"""Sort Palette Colors
|
|
106
120
|
|
|
107
|
-
:type override_context: typing.Optional[typing.Union[
|
|
121
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
108
122
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
109
123
|
:type undo: typing.Optional[bool]
|
|
110
124
|
:param type: Type
|