fake-bpy-module 20241208__py3-none-any.whl → 20241209__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 +38 -138
- bpy/ops/anim/__init__.pyi +61 -179
- bpy/ops/armature/__init__.pyi +48 -147
- bpy/ops/asset/__init__.pyi +16 -71
- bpy/ops/boid/__init__.pyi +8 -41
- bpy/ops/brush/__init__.pyi +13 -39
- bpy/ops/buttons/__init__.pyi +6 -29
- bpy/ops/cachefile/__init__.pyi +5 -19
- bpy/ops/camera/__init__.pyi +2 -5
- bpy/ops/clip/__init__.pyi +92 -290
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +9 -25
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +51 -180
- bpy/ops/curves/__init__.pyi +28 -100
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +5 -19
- bpy/ops/ed/__init__.pyi +12 -53
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +2 -5
- bpy/ops/extensions/__init__.pyi +34 -110
- bpy/ops/file/__init__.pyi +40 -167
- bpy/ops/fluid/__init__.pyi +14 -77
- bpy/ops/font/__init__.pyi +23 -85
- bpy/ops/geometry/__init__.pyi +10 -27
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +65 -184
- bpy/ops/grease_pencil/__init__.pyi +108 -290
- bpy/ops/image/__init__.pyi +49 -154
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +2 -4
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +8 -29
- bpy/ops/marker/__init__.pyi +11 -31
- bpy/ops/mask/__init__.pyi +39 -132
- bpy/ops/material/__init__.pyi +3 -19
- bpy/ops/mball/__init__.pyi +8 -19
- bpy/ops/mesh/__init__.pyi +164 -401
- bpy/ops/nla/__init__.pyi +39 -147
- bpy/ops/node/__init__.pyi +115 -390
- bpy/ops/object/__init__.pyi +237 -630
- bpy/ops/outliner/__init__.pyi +71 -263
- bpy/ops/paint/__init__.pyi +54 -140
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +36 -134
- bpy/ops/pose/__init__.pyi +51 -169
- bpy/ops/poselib/__init__.pyi +9 -33
- bpy/ops/preferences/__init__.pyi +35 -94
- bpy/ops/ptcache/__init__.pyi +7 -33
- bpy/ops/render/__init__.pyi +13 -37
- bpy/ops/rigidbody/__init__.pyi +13 -45
- bpy/ops/scene/__init__.pyi +37 -121
- bpy/ops/screen/__init__.pyi +39 -137
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +37 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +89 -284
- bpy/ops/sound/__init__.pyi +7 -23
- bpy/ops/spreadsheet/__init__.pyi +4 -15
- bpy/ops/surface/__init__.pyi +6 -13
- bpy/ops/text/__init__.pyi +43 -175
- bpy/ops/text_editor/__init__.pyi +1 -3
- bpy/ops/texture/__init__.pyi +4 -21
- bpy/ops/transform/__init__.pyi +27 -61
- bpy/ops/ui/__init__.pyi +34 -117
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +49 -134
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +67 -232
- bpy/ops/wm/__init__.pyi +114 -298
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
bpy/ops/workspace/__init__.pyi
CHANGED
|
@@ -1,31 +1,24 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
|
|
6
|
-
def add(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
|
-
execution_context: int | str | None = None,
|
|
9
|
-
undo: bool | None = None,
|
|
10
|
-
):
|
|
5
|
+
def add(execution_context: int | str | None = None, undo: bool | None = None):
|
|
11
6
|
"""Add a new workspace by duplicating the current one or appending one from the user configuration
|
|
12
7
|
|
|
13
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
14
8
|
:type execution_context: int | str | None
|
|
15
9
|
:type undo: bool | None
|
|
16
10
|
"""
|
|
17
11
|
|
|
18
12
|
def append_activate(
|
|
19
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
20
13
|
execution_context: int | str | None = None,
|
|
21
14
|
undo: bool | None = None,
|
|
15
|
+
/,
|
|
22
16
|
*,
|
|
23
17
|
idname: str = "",
|
|
24
18
|
filepath: str = "",
|
|
25
19
|
):
|
|
26
20
|
"""Append a workspace and make it the active one in the current window
|
|
27
21
|
|
|
28
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
29
22
|
:type execution_context: int | str | None
|
|
30
23
|
:type undo: bool | None
|
|
31
24
|
:param idname: Identifier, Name of the workspace to append and activate
|
|
@@ -34,62 +27,43 @@ def append_activate(
|
|
|
34
27
|
:type filepath: str
|
|
35
28
|
"""
|
|
36
29
|
|
|
37
|
-
def delete(
|
|
38
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
39
|
-
execution_context: int | str | None = None,
|
|
40
|
-
undo: bool | None = None,
|
|
41
|
-
):
|
|
30
|
+
def delete(execution_context: int | str | None = None, undo: bool | None = None):
|
|
42
31
|
"""Delete the active workspace
|
|
43
32
|
|
|
44
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
45
33
|
:type execution_context: int | str | None
|
|
46
34
|
:type undo: bool | None
|
|
47
35
|
"""
|
|
48
36
|
|
|
49
|
-
def duplicate(
|
|
50
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
51
|
-
execution_context: int | str | None = None,
|
|
52
|
-
undo: bool | None = None,
|
|
53
|
-
):
|
|
37
|
+
def duplicate(execution_context: int | str | None = None, undo: bool | None = None):
|
|
54
38
|
"""Add a new workspace
|
|
55
39
|
|
|
56
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
57
40
|
:type execution_context: int | str | None
|
|
58
41
|
:type undo: bool | None
|
|
59
42
|
"""
|
|
60
43
|
|
|
61
44
|
def reorder_to_back(
|
|
62
|
-
|
|
63
|
-
execution_context: int | str | None = None,
|
|
64
|
-
undo: bool | None = None,
|
|
45
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
65
46
|
):
|
|
66
47
|
"""Reorder workspace to be last in the list
|
|
67
48
|
|
|
68
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
69
49
|
:type execution_context: int | str | None
|
|
70
50
|
:type undo: bool | None
|
|
71
51
|
"""
|
|
72
52
|
|
|
73
53
|
def reorder_to_front(
|
|
74
|
-
|
|
75
|
-
execution_context: int | str | None = None,
|
|
76
|
-
undo: bool | None = None,
|
|
54
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
77
55
|
):
|
|
78
56
|
"""Reorder workspace to be first in the list
|
|
79
57
|
|
|
80
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
81
58
|
:type execution_context: int | str | None
|
|
82
59
|
:type undo: bool | None
|
|
83
60
|
"""
|
|
84
61
|
|
|
85
62
|
def scene_pin_toggle(
|
|
86
|
-
|
|
87
|
-
execution_context: int | str | None = None,
|
|
88
|
-
undo: bool | None = None,
|
|
63
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
89
64
|
):
|
|
90
65
|
"""Remember the last used scene for the current workspace and switch to it whenever this workspace is activated again
|
|
91
66
|
|
|
92
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
93
67
|
:type execution_context: int | str | None
|
|
94
68
|
:type undo: bool | None
|
|
95
69
|
"""
|
bpy/ops/world/__init__.pyi
CHANGED
|
@@ -1,28 +1,19 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
|
|
6
5
|
def convert_volume_to_mesh(
|
|
7
|
-
|
|
8
|
-
execution_context: int | str | None = None,
|
|
9
|
-
undo: bool | None = None,
|
|
6
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
10
7
|
):
|
|
11
8
|
"""Convert the volume of a world to a mesh. The world's volume used to be rendered by EEVEE Legacy. Conversion is needed for it to render properly
|
|
12
9
|
|
|
13
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
14
10
|
:type execution_context: int | str | None
|
|
15
11
|
:type undo: bool | None
|
|
16
12
|
"""
|
|
17
13
|
|
|
18
|
-
def new(
|
|
19
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
20
|
-
execution_context: int | str | None = None,
|
|
21
|
-
undo: bool | None = None,
|
|
22
|
-
):
|
|
14
|
+
def new(execution_context: int | str | None = None, undo: bool | None = None):
|
|
23
15
|
"""Create a new world Data-Block
|
|
24
16
|
|
|
25
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
26
17
|
:type execution_context: int | str | None
|
|
27
18
|
:type undo: bool | None
|
|
28
19
|
"""
|
|
@@ -197,82 +197,82 @@ bpy/app/timers/__init__.pyi,sha256=vtrATRAmkTfP1CknievwpOCC19cPOMowyLTE6Ie9GSg,2
|
|
|
197
197
|
bpy/app/translations/__init__.pyi,sha256=l5NXziSYWbDnNSWXam-Oseo4D8qh8NPButB_xMgpSps,6848
|
|
198
198
|
bpy/msgbus/__init__.pyi,sha256=e9cmp_Wq7FA5pDTQQJ2s0_I84bEJMu8J-5Lu5gNoClM,2954
|
|
199
199
|
bpy/ops/__init__.pyi,sha256=JptIpKHRAy3jrKGANEBzrwmfNuZx8JLP9ofvWLCaLBU,5396
|
|
200
|
-
bpy/ops/action/__init__.pyi,sha256=
|
|
201
|
-
bpy/ops/anim/__init__.pyi,sha256=
|
|
202
|
-
bpy/ops/armature/__init__.pyi,sha256=
|
|
203
|
-
bpy/ops/asset/__init__.pyi,sha256=
|
|
204
|
-
bpy/ops/boid/__init__.pyi,sha256=
|
|
205
|
-
bpy/ops/brush/__init__.pyi,sha256=
|
|
206
|
-
bpy/ops/buttons/__init__.pyi,sha256=
|
|
207
|
-
bpy/ops/cachefile/__init__.pyi,sha256=
|
|
208
|
-
bpy/ops/camera/__init__.pyi,sha256=
|
|
209
|
-
bpy/ops/clip/__init__.pyi,sha256=
|
|
210
|
-
bpy/ops/cloth/__init__.pyi,sha256
|
|
211
|
-
bpy/ops/collection/__init__.pyi,sha256=
|
|
212
|
-
bpy/ops/console/__init__.pyi,sha256=
|
|
213
|
-
bpy/ops/constraint/__init__.pyi,sha256=
|
|
214
|
-
bpy/ops/curve/__init__.pyi,sha256=
|
|
215
|
-
bpy/ops/curves/__init__.pyi,sha256=
|
|
216
|
-
bpy/ops/cycles/__init__.pyi,sha256=
|
|
217
|
-
bpy/ops/dpaint/__init__.pyi,sha256=
|
|
218
|
-
bpy/ops/ed/__init__.pyi,sha256=
|
|
219
|
-
bpy/ops/export_anim/__init__.pyi,sha256=
|
|
220
|
-
bpy/ops/export_scene/__init__.pyi,sha256=
|
|
221
|
-
bpy/ops/extensions/__init__.pyi,sha256=
|
|
222
|
-
bpy/ops/file/__init__.pyi,sha256=
|
|
223
|
-
bpy/ops/fluid/__init__.pyi,sha256=
|
|
224
|
-
bpy/ops/font/__init__.pyi,sha256=
|
|
225
|
-
bpy/ops/geometry/__init__.pyi,sha256=
|
|
226
|
-
bpy/ops/gizmogroup/__init__.pyi,sha256=
|
|
227
|
-
bpy/ops/gpencil/__init__.pyi,sha256=
|
|
228
|
-
bpy/ops/graph/__init__.pyi,sha256=
|
|
229
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
230
|
-
bpy/ops/image/__init__.pyi,sha256=
|
|
231
|
-
bpy/ops/import_anim/__init__.pyi,sha256=
|
|
232
|
-
bpy/ops/import_curve/__init__.pyi,sha256=
|
|
233
|
-
bpy/ops/import_scene/__init__.pyi,sha256=
|
|
234
|
-
bpy/ops/info/__init__.pyi,sha256=
|
|
235
|
-
bpy/ops/lattice/__init__.pyi,sha256=
|
|
236
|
-
bpy/ops/marker/__init__.pyi,sha256=
|
|
237
|
-
bpy/ops/mask/__init__.pyi,sha256
|
|
238
|
-
bpy/ops/material/__init__.pyi,sha256=
|
|
239
|
-
bpy/ops/mball/__init__.pyi,sha256=
|
|
240
|
-
bpy/ops/mesh/__init__.pyi,sha256=
|
|
241
|
-
bpy/ops/nla/__init__.pyi,sha256=
|
|
242
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
243
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
244
|
-
bpy/ops/outliner/__init__.pyi,sha256=
|
|
245
|
-
bpy/ops/paint/__init__.pyi,sha256=
|
|
246
|
-
bpy/ops/paintcurve/__init__.pyi,sha256=
|
|
247
|
-
bpy/ops/palette/__init__.pyi,sha256=
|
|
248
|
-
bpy/ops/particle/__init__.pyi,sha256=
|
|
249
|
-
bpy/ops/pose/__init__.pyi,sha256=
|
|
250
|
-
bpy/ops/poselib/__init__.pyi,sha256=
|
|
251
|
-
bpy/ops/preferences/__init__.pyi,sha256=
|
|
252
|
-
bpy/ops/ptcache/__init__.pyi,sha256=
|
|
253
|
-
bpy/ops/render/__init__.pyi,sha256=
|
|
254
|
-
bpy/ops/rigidbody/__init__.pyi,sha256=
|
|
255
|
-
bpy/ops/scene/__init__.pyi,sha256=
|
|
256
|
-
bpy/ops/screen/__init__.pyi,sha256=
|
|
257
|
-
bpy/ops/script/__init__.pyi,sha256=
|
|
258
|
-
bpy/ops/sculpt/__init__.pyi,sha256=
|
|
259
|
-
bpy/ops/sculpt_curves/__init__.pyi,sha256=
|
|
260
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
261
|
-
bpy/ops/sound/__init__.pyi,sha256=
|
|
262
|
-
bpy/ops/spreadsheet/__init__.pyi,sha256=
|
|
263
|
-
bpy/ops/surface/__init__.pyi,sha256=
|
|
264
|
-
bpy/ops/text/__init__.pyi,sha256=
|
|
265
|
-
bpy/ops/text_editor/__init__.pyi,sha256
|
|
266
|
-
bpy/ops/texture/__init__.pyi,sha256=
|
|
267
|
-
bpy/ops/transform/__init__.pyi,sha256=
|
|
268
|
-
bpy/ops/ui/__init__.pyi,sha256=
|
|
269
|
-
bpy/ops/uilist/__init__.pyi,sha256=
|
|
270
|
-
bpy/ops/uv/__init__.pyi,sha256=
|
|
271
|
-
bpy/ops/view2d/__init__.pyi,sha256=
|
|
272
|
-
bpy/ops/view3d/__init__.pyi,sha256=
|
|
273
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
274
|
-
bpy/ops/workspace/__init__.pyi,sha256=
|
|
275
|
-
bpy/ops/world/__init__.pyi,sha256=
|
|
200
|
+
bpy/ops/action/__init__.pyi,sha256=VaEROcYL3F9RerL3OGNvMeFCRh2Z97iwDs8D3hftDew,18502
|
|
201
|
+
bpy/ops/anim/__init__.pyi,sha256=VM6kJF9mPnpDINvcVqrf-fEHlSRzn-P1vmCPvK8KDwA,24980
|
|
202
|
+
bpy/ops/armature/__init__.pyi,sha256=k6XyBQsnS9j-7cKqfmN4qYVyhv9gQVwX45g-3DJ8jro,20909
|
|
203
|
+
bpy/ops/asset/__init__.pyi,sha256=5rDsk6gBW_pI28yWQJMId5v0NOe7q42GAZaz198pnDQ,8694
|
|
204
|
+
bpy/ops/boid/__init__.pyi,sha256=nXlbukSKeGU_iLvYwJuwdB5oGJgRo2lFcyKOVKlyTro,1930
|
|
205
|
+
bpy/ops/brush/__init__.pyi,sha256=JIo9bxUF65z04rrkyBUR6a6cCkigU-JvPG8aCg2Mtds,9743
|
|
206
|
+
bpy/ops/buttons/__init__.pyi,sha256=emCWcZQc0YEMm4L_qkoZBbjHpRbdaWbWP4GEkhj9S6A,8918
|
|
207
|
+
bpy/ops/cachefile/__init__.pyi,sha256=KFndyrBJnch4nxwe_SSoBPHV5n3nxjzQki8Wcgc_R4s,8874
|
|
208
|
+
bpy/ops/camera/__init__.pyi,sha256=Il4dR95oos_zZb1wuj9gQ97Bfvq6rdWhf8oXBPPfc5M,1384
|
|
209
|
+
bpy/ops/clip/__init__.pyi,sha256=0GRfhVfFyZljlizhVMt7X-cX-69aKKitihFdt9sn5PE,44782
|
|
210
|
+
bpy/ops/cloth/__init__.pyi,sha256=-QZgZVWwhhr7uTvjCQIrSTaLo5oa6vAUkL50wz6JnKk,629
|
|
211
|
+
bpy/ops/collection/__init__.pyi,sha256=EinHz6U_DybolTQPpGpcm1DpfJ5R453KQFL213U4Kcw,3085
|
|
212
|
+
bpy/ops/console/__init__.pyi,sha256=lgoYIWzf29q06AniBBiPYuI7zndNoc2aGyXYyINZbPI,7304
|
|
213
|
+
bpy/ops/constraint/__init__.pyi,sha256=lb318xrvDTH1T_raLhoBKcDPTl4mVmYPfh5TxbnoGDU,11838
|
|
214
|
+
bpy/ops/curve/__init__.pyi,sha256=2Yge4zNwl5NApYrdUbMcCsSXWEWtFGIWVWsKHJyvOc8,28464
|
|
215
|
+
bpy/ops/curves/__init__.pyi,sha256=8Om2oxTeH1c2WLlAvMsqn17JF9aX42EkKZaNv1G2tWg,14975
|
|
216
|
+
bpy/ops/cycles/__init__.pyi,sha256=TzurmelE8U7FLjghhDWt-0HBU-cyTALEWTfG4taUCSI,1739
|
|
217
|
+
bpy/ops/dpaint/__init__.pyi,sha256=aIIF7SDbdC_eskNMWyG7jSEUiDB1VEhDxof5MQjp5Qs,1522
|
|
218
|
+
bpy/ops/ed/__init__.pyi,sha256=ecIB_NEWEa6uMONdtJ7k7w6ZjWh4WZlOAMTYxEmsNY8,6870
|
|
219
|
+
bpy/ops/export_anim/__init__.pyi,sha256=wyCP8IO0cjr0ixNFGfFblD8ASLG4tQ-l2v3a9UnHAlw,2027
|
|
220
|
+
bpy/ops/export_scene/__init__.pyi,sha256=fJHt3qDJexzN2SeBPtsKcdNe-Hsu1FkvlJPCY3_lG2o,38888
|
|
221
|
+
bpy/ops/extensions/__init__.pyi,sha256=GtWfFBmoeA2PoRiMqdgYu7cuSXJuVRnLgFpOa-B3M5E,12748
|
|
222
|
+
bpy/ops/file/__init__.pyi,sha256=PN22Dw-BXJjKVsic6gFhA3_GxYuYRz7gWB2bYyd1hL0,19270
|
|
223
|
+
bpy/ops/fluid/__init__.pyi,sha256=toNBTcKttDwaWx21Nzf2HNBWKT7vZh8IDcIR2nG_ad4,3191
|
|
224
|
+
bpy/ops/font/__init__.pyi,sha256=7fLdMjcgT0AZb_pvWl59RXn5fuhqkrll7pKYPmYZD8w,15509
|
|
225
|
+
bpy/ops/geometry/__init__.pyi,sha256=vdyhoH2IMzQoryHYxNDxCbSqUJe5PpdakV79koEqJ3g,7444
|
|
226
|
+
bpy/ops/gizmogroup/__init__.pyi,sha256=lsDnIxuI4uIqJJEiLNmKUuMq2uqlc6HQAqDHY3T9tf8,1262
|
|
227
|
+
bpy/ops/gpencil/__init__.pyi,sha256=cqeFGa_2tSDBDSWhsWVQVZx5BhHs08wiW4And1rhfVE,4832
|
|
228
|
+
bpy/ops/graph/__init__.pyi,sha256=3-hSpqGgzSvdUCEfQErcZP3s88fIpcpK0olzKZ9BO0Q,41516
|
|
229
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=PV6Q53HYYtE5GhAZ_yBGqMqS0hB5_ZSaC-OXR-zfKWM,59840
|
|
230
|
+
bpy/ops/image/__init__.pyi,sha256=yedlD6hfJWo0OyDkPOvmnQ0dR7dvIG0IryRKplP2HrM,52227
|
|
231
|
+
bpy/ops/import_anim/__init__.pyi,sha256=aE1pDcT6TlridpXwg7tF-E3tXLcm83n7j1vVgn_-g7A,3046
|
|
232
|
+
bpy/ops/import_curve/__init__.pyi,sha256=sDhKpg3cI-y0NYuUo8ey3jb3h-KKergdPUDKlQ-C2iI,485
|
|
233
|
+
bpy/ops/import_scene/__init__.pyi,sha256=TTEY7tywXLoe5xGm3R1qfE0afH7gpiePYiNofJjDkJw,10282
|
|
234
|
+
bpy/ops/info/__init__.pyi,sha256=awrfSCgZOjERYahNCEfz80MLPSL1MLEzD2w1IVD_V9Y,3090
|
|
235
|
+
bpy/ops/lattice/__init__.pyi,sha256=olqUrBMsFt_2qzue5c2nK4FqaJ3vUH1XYVojuo0j0l0,3546
|
|
236
|
+
bpy/ops/marker/__init__.pyi,sha256=UdcuNJTcu5roTdeLXoV6Rgfpxtnb_LTEJlXklwMtUk0,5376
|
|
237
|
+
bpy/ops/mask/__init__.pyi,sha256=l61FwahMcMjLF4UvD76HTgPODfsjhbCEfVc9x2fx9DI,17108
|
|
238
|
+
bpy/ops/material/__init__.pyi,sha256=8AhfpDXsCDLZI0UEESadmN8-zfNGEiDblmKobSJLcqA,669
|
|
239
|
+
bpy/ops/mball/__init__.pyi,sha256=VRZZbMhoN6OWmsG-344hmoHQ-_qcjRuisuzJvLxGobI,4155
|
|
240
|
+
bpy/ops/mesh/__init__.pyi,sha256=lMQJI5J7ARoHYT2GJ-i_xNEoqTXoYQx1gCkpzYCPhiw,132079
|
|
241
|
+
bpy/ops/nla/__init__.pyi,sha256=fttW1MBPJIwDHycGqO5VcX13_K7gxSIhBSWCsIlDXv4,18112
|
|
242
|
+
bpy/ops/node/__init__.pyi,sha256=eGmPP0aNn-XBTSiYLVDyF621vypPmf0bB7QuIFqoAno,51991
|
|
243
|
+
bpy/ops/object/__init__.pyi,sha256=LcWANQPBS34qmXB8wwqnThALNwJzpPF9Qgs4Gy8TJwg,167541
|
|
244
|
+
bpy/ops/outliner/__init__.pyi,sha256=oXvqgI_ntYe23IbI0tMw83bRnPpFTr9c1pYAnsOKrXE,27688
|
|
245
|
+
bpy/ops/paint/__init__.pyi,sha256=LOqrmcYESew6rsZnfW7kh-wpgW_5Ltn1xVPVdwOCCEc,37076
|
|
246
|
+
bpy/ops/paintcurve/__init__.pyi,sha256=sJfa-6TohaHNlvBFZ5X2vhjeMCp91in2K6UqwIF3d80,2980
|
|
247
|
+
bpy/ops/palette/__init__.pyi,sha256=RD7rkE6f28SyME46hM3HwjWKCgKFtOXZDDPOO6mQB0Q,2093
|
|
248
|
+
bpy/ops/particle/__init__.pyi,sha256=0i7ElQYdudM-PWGsSfwOUtmPj3cyFf6PNW_UkCtkLiI,13478
|
|
249
|
+
bpy/ops/pose/__init__.pyi,sha256=HcG9ntFjRter3h6CtkfAdAS-6ko4OWPMukbIFtVyFTo,26627
|
|
250
|
+
bpy/ops/poselib/__init__.pyi,sha256=WK-1Has2-NPp_7EkB-PHV1MtfVgTXMMnkhrtQPYcISc,3820
|
|
251
|
+
bpy/ops/preferences/__init__.pyi,sha256=iG82fOc0EGoI0_KoSgUbtUEMlcN71gxdq3SlVkCz01w,19499
|
|
252
|
+
bpy/ops/ptcache/__init__.pyi,sha256=9WgZUXKtu-AeqF0pYrP8ZSdFXz2jHMdPjmp6zLesL2Q,1667
|
|
253
|
+
bpy/ops/render/__init__.pyi,sha256=9LDvtzNUv_nd3elJDKQFIXJltAIgsvvinpvyVu5q8cU,7425
|
|
254
|
+
bpy/ops/rigidbody/__init__.pyi,sha256=D8cI6kBx5s8yZk4SyXt9SBEIrW3yrwH_vEGFmwO2gwk,6599
|
|
255
|
+
bpy/ops/scene/__init__.pyi,sha256=bb7f6u6fezZaSK3CqddtBzvodSeFxU-ds-mWCJ6soGQ,13629
|
|
256
|
+
bpy/ops/screen/__init__.pyi,sha256=QMTeZ7KCyQ4Y-HkTrJCfHBMT4pVhxoum5ecBe6lynGw,19886
|
|
257
|
+
bpy/ops/script/__init__.pyi,sha256=LPFPi3ovQdpV5IVlMnJpo9K3i88q1t6cFnoXnfiJ5HA,978
|
|
258
|
+
bpy/ops/sculpt/__init__.pyi,sha256=rLoR6GFU6ARcuEq-CwBKngSn0xxELfy42WJogo4pXxw,46804
|
|
259
|
+
bpy/ops/sculpt_curves/__init__.pyi,sha256=jDglkug-tn6Esxo-_DrILnCkifpWfQ82x9JE_q0PW-c,2849
|
|
260
|
+
bpy/ops/sequencer/__init__.pyi,sha256=0spRWrC3oExZeHmvxGLXUITAoEMfuWg5tGuku2ddLuE,74064
|
|
261
|
+
bpy/ops/sound/__init__.pyi,sha256=AjwVXW3oYYL0GrRvoEoUzKGKFBP6IY67FhR9jfjLvZ0,16826
|
|
262
|
+
bpy/ops/spreadsheet/__init__.pyi,sha256=q_4fYPoBC6g61Pw7Mz71PQB93vYHxk661B18CvIkguA,1360
|
|
263
|
+
bpy/ops/surface/__init__.pyi,sha256=OD-_jQEOIHzb89OaZ4JLMZlnP7-s4jbY4a2DpI9bA_I,10315
|
|
264
|
+
bpy/ops/text/__init__.pyi,sha256=j6wutufMV-p6P1WkAJxrFJWDv3MK-ra691fkR_rdy1s,21152
|
|
265
|
+
bpy/ops/text_editor/__init__.pyi,sha256=-BquL2tZJRA0PG5_CbDNcfFJ5S2JgVWVWHRGOr-5IKo,635
|
|
266
|
+
bpy/ops/texture/__init__.pyi,sha256=oxKGKHziumZd9yFWYjRNVALiIAgR3-AIlmSnHbhhT1I,1043
|
|
267
|
+
bpy/ops/transform/__init__.pyi,sha256=f70Fne2cbvHM7fVepfeSnWx8LmbfssjEwd6wnWpoAx4,57336
|
|
268
|
+
bpy/ops/ui/__init__.pyi,sha256=C3pDpcSf36MCa56mWmGyR-W_vDizDBBTmFj65RIvfS4,12411
|
|
269
|
+
bpy/ops/uilist/__init__.pyi,sha256=1Vu7qHRYL-MOM5kdcHJLmJwucvveh10t1wbmL_98GEM,1618
|
|
270
|
+
bpy/ops/uv/__init__.pyi,sha256=e6ilriSD-iJymqq1PjEw-DWy218-OeCTTeAiJm4NfGc,45187
|
|
271
|
+
bpy/ops/view2d/__init__.pyi,sha256=bw6xoLUDUWQGk36g4T8THDWpNSH_VX8Pyg_mlGB9Dik,6986
|
|
272
|
+
bpy/ops/view3d/__init__.pyi,sha256=MGiNsaGKtQPLFiSQgEdKlULq2a0Rp6W3vGTub0Hb3p4,30689
|
|
273
|
+
bpy/ops/wm/__init__.pyi,sha256=hc6iEbXOoGCx_Rg-3zBpQWYzvh2iiaK2LBFIRpHjmnQ,214217
|
|
274
|
+
bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHCU,1983
|
|
275
|
+
bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
|
|
276
276
|
bpy/path/__init__.pyi,sha256=N-QNSw3piTmrzrydYRyWab7GFGOh3BsdaS91x4Kf-Cc,5403
|
|
277
277
|
bpy/props/__init__.pyi,sha256=eHzPsDSyDTa92O5TvPpi1yflmxv7vVGW_ZocCqudgw4,31027
|
|
278
278
|
bpy/types/__init__.pyi,sha256=6G_KEMFkGTYTIKuih45uqcmRlmXNH1giwMCHXCyy3w4,5387903
|
|
@@ -358,7 +358,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
358
358
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
359
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
360
360
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
361
|
-
fake_bpy_module-
|
|
362
|
-
fake_bpy_module-
|
|
363
|
-
fake_bpy_module-
|
|
364
|
-
fake_bpy_module-
|
|
361
|
+
fake_bpy_module-20241209.dist-info/METADATA,sha256=Nq0IYdN3WbYd4iAvydnpuFnI4n-kaSzabrCgwfSves0,7289
|
|
362
|
+
fake_bpy_module-20241209.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
363
|
+
fake_bpy_module-20241209.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
364
|
+
fake_bpy_module-20241209.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|