fake-bpy-module 20240811__py3-none-any.whl → 20240813__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/space_view3d/__init__.pyi +31 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +110 -110
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +166 -166
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +208 -208
- bpy/ops/object/__init__.pyi +473 -473
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +72 -72
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +174 -174
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +64 -64
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +226 -226
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +76 -64
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/RECORD +83 -83
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/top_level.txt +0 -0
bpy/ops/buttons/__init__.pyi
CHANGED
|
@@ -7,13 +7,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def clear_filter(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
):
|
|
14
14
|
"""Clear the search filter
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
"""
|
|
@@ -21,13 +21,13 @@ def clear_filter(
|
|
|
21
21
|
...
|
|
22
22
|
|
|
23
23
|
def context_menu(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
24
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
25
25
|
execution_context: int | str | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
27
|
):
|
|
28
28
|
"""Display properties editor context_menu
|
|
29
29
|
|
|
30
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
30
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
31
31
|
:type execution_context: int | str | None
|
|
32
32
|
:type undo: bool | None
|
|
33
33
|
"""
|
|
@@ -35,7 +35,7 @@ def context_menu(
|
|
|
35
35
|
...
|
|
36
36
|
|
|
37
37
|
def directory_browse(
|
|
38
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
38
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
39
39
|
execution_context: int | str | None = None,
|
|
40
40
|
undo: bool | None = None,
|
|
41
41
|
*,
|
|
@@ -69,7 +69,7 @@ def directory_browse(
|
|
|
69
69
|
):
|
|
70
70
|
"""Open a directory browser, hold Shift to open the file, Alt to browse containing directory
|
|
71
71
|
|
|
72
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
72
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
73
73
|
:type execution_context: int | str | None
|
|
74
74
|
:type undo: bool | None
|
|
75
75
|
:param directory: Directory, Directory of the file
|
|
@@ -137,7 +137,7 @@ def directory_browse(
|
|
|
137
137
|
...
|
|
138
138
|
|
|
139
139
|
def file_browse(
|
|
140
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
140
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
141
141
|
execution_context: int | str | None = None,
|
|
142
142
|
undo: bool | None = None,
|
|
143
143
|
*,
|
|
@@ -171,7 +171,7 @@ def file_browse(
|
|
|
171
171
|
):
|
|
172
172
|
"""Open a file browser, hold Shift to open the file, Alt to browse containing directory
|
|
173
173
|
|
|
174
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
174
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
175
175
|
:type execution_context: int | str | None
|
|
176
176
|
:type undo: bool | None
|
|
177
177
|
:param filepath: File Path, Path to file
|
|
@@ -239,13 +239,13 @@ def file_browse(
|
|
|
239
239
|
...
|
|
240
240
|
|
|
241
241
|
def start_filter(
|
|
242
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
242
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
243
243
|
execution_context: int | str | None = None,
|
|
244
244
|
undo: bool | None = None,
|
|
245
245
|
):
|
|
246
246
|
"""Start entering filter text
|
|
247
247
|
|
|
248
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
248
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
249
249
|
:type execution_context: int | str | None
|
|
250
250
|
:type undo: bool | None
|
|
251
251
|
"""
|
|
@@ -253,13 +253,13 @@ def start_filter(
|
|
|
253
253
|
...
|
|
254
254
|
|
|
255
255
|
def toggle_pin(
|
|
256
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
256
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
257
257
|
execution_context: int | str | None = None,
|
|
258
258
|
undo: bool | None = None,
|
|
259
259
|
):
|
|
260
260
|
"""Keep the current data-block displayed
|
|
261
261
|
|
|
262
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
262
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
263
263
|
:type execution_context: int | str | None
|
|
264
264
|
:type undo: bool | None
|
|
265
265
|
"""
|
bpy/ops/cachefile/__init__.pyi
CHANGED
|
@@ -7,7 +7,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def layer_add(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
*,
|
|
@@ -41,7 +41,7 @@ def layer_add(
|
|
|
41
41
|
):
|
|
42
42
|
"""Add an override layer to the archive
|
|
43
43
|
|
|
44
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
44
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
45
45
|
:type execution_context: int | str | None
|
|
46
46
|
:type undo: bool | None
|
|
47
47
|
:param filepath: File Path, Path to file
|
|
@@ -109,7 +109,7 @@ def layer_add(
|
|
|
109
109
|
...
|
|
110
110
|
|
|
111
111
|
def layer_move(
|
|
112
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
112
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
113
113
|
execution_context: int | str | None = None,
|
|
114
114
|
undo: bool | None = None,
|
|
115
115
|
*,
|
|
@@ -117,7 +117,7 @@ def layer_move(
|
|
|
117
117
|
):
|
|
118
118
|
"""Move layer in the list, layers further down the list will overwrite data from the layers higher up
|
|
119
119
|
|
|
120
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
120
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
121
121
|
:type execution_context: int | str | None
|
|
122
122
|
:type undo: bool | None
|
|
123
123
|
:param direction: Direction, Direction to move the active vertex group towards
|
|
@@ -127,13 +127,13 @@ def layer_move(
|
|
|
127
127
|
...
|
|
128
128
|
|
|
129
129
|
def layer_remove(
|
|
130
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
130
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
131
131
|
execution_context: int | str | None = None,
|
|
132
132
|
undo: bool | None = None,
|
|
133
133
|
):
|
|
134
134
|
"""Remove an override layer from the archive
|
|
135
135
|
|
|
136
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
136
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
137
137
|
:type execution_context: int | str | None
|
|
138
138
|
:type undo: bool | None
|
|
139
139
|
"""
|
|
@@ -141,7 +141,7 @@ def layer_remove(
|
|
|
141
141
|
...
|
|
142
142
|
|
|
143
143
|
def open(
|
|
144
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
144
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
145
145
|
execution_context: int | str | None = None,
|
|
146
146
|
undo: bool | None = None,
|
|
147
147
|
*,
|
|
@@ -175,7 +175,7 @@ def open(
|
|
|
175
175
|
):
|
|
176
176
|
"""Load a cache file
|
|
177
177
|
|
|
178
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
178
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
179
179
|
:type execution_context: int | str | None
|
|
180
180
|
:type undo: bool | None
|
|
181
181
|
:param filepath: File Path, Path to file
|
|
@@ -243,13 +243,13 @@ def open(
|
|
|
243
243
|
...
|
|
244
244
|
|
|
245
245
|
def reload(
|
|
246
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
246
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
247
247
|
execution_context: int | str | None = None,
|
|
248
248
|
undo: bool | None = None,
|
|
249
249
|
):
|
|
250
250
|
"""Update objects paths list with new data from the archive
|
|
251
251
|
|
|
252
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
252
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
253
253
|
:type execution_context: int | str | None
|
|
254
254
|
:type undo: bool | None
|
|
255
255
|
"""
|
bpy/ops/camera/__init__.pyi
CHANGED
|
@@ -7,7 +7,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def preset_add(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
*,
|
|
@@ -18,7 +18,7 @@ def preset_add(
|
|
|
18
18
|
):
|
|
19
19
|
"""Add or remove a Camera Preset
|
|
20
20
|
|
|
21
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
21
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
22
22
|
:type execution_context: int | str | None
|
|
23
23
|
:type undo: bool | None
|
|
24
24
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -34,7 +34,7 @@ def preset_add(
|
|
|
34
34
|
...
|
|
35
35
|
|
|
36
36
|
def safe_areas_preset_add(
|
|
37
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
37
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
38
38
|
execution_context: int | str | None = None,
|
|
39
39
|
undo: bool | None = None,
|
|
40
40
|
*,
|
|
@@ -44,7 +44,7 @@ def safe_areas_preset_add(
|
|
|
44
44
|
):
|
|
45
45
|
"""Add or remove a Safe Areas Preset
|
|
46
46
|
|
|
47
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
47
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
48
48
|
:type execution_context: int | str | None
|
|
49
49
|
:type undo: bool | None
|
|
50
50
|
:param name: Name, Name of the preset, used to make the path name
|