fake-bpy-module 20250104__py3-none-any.whl → 20250109__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.
- bgl/__init__.pyi +2 -2
- bl_ui/node_add_menu_shader/__init__.pyi +0 -1
- bl_ui/properties_data_camera/__init__.pyi +0 -2
- bl_ui/space_node/__init__.pyi +0 -1
- bpy/__init__.pyi +0 -1
- bpy/_typing/__init__.pyi +4 -0
- bpy/{typing → _typing/rna_enums}/__init__.pyi +9 -9
- bpy/app/__init__.pyi +3 -3
- bpy/ops/action/__init__.pyi +13 -13
- bpy/ops/boid/__init__.pyi +3 -3
- bpy/ops/brush/__init__.pyi +3 -3
- bpy/ops/clip/__init__.pyi +3 -3
- bpy/ops/curve/__init__.pyi +5 -5
- bpy/ops/curves/__init__.pyi +9 -9
- bpy/ops/dpaint/__init__.pyi +3 -3
- bpy/ops/geometry/__init__.pyi +19 -19
- bpy/ops/graph/__init__.pyi +17 -17
- bpy/ops/grease_pencil/__init__.pyi +9 -27
- bpy/ops/image/__init__.pyi +9 -9
- bpy/ops/lattice/__init__.pyi +3 -3
- bpy/ops/mesh/__init__.pyi +54 -43
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/node/__init__.pyi +3 -3
- bpy/ops/object/__init__.pyi +69 -69
- bpy/ops/outliner/__init__.pyi +5 -5
- bpy/ops/paint/__init__.pyi +7 -7
- bpy/ops/pose/__init__.pyi +13 -13
- bpy/ops/rigidbody/__init__.pyi +9 -9
- bpy/ops/scene/__init__.pyi +10 -9
- bpy/ops/screen/__init__.pyi +7 -7
- bpy/ops/sequencer/__init__.pyi +3 -3
- bpy/ops/sound/__init__.pyi +3 -3
- bpy/ops/transform/__init__.pyi +87 -73
- bpy/ops/uv/__init__.pyi +9 -9
- bpy/ops/wm/__init__.pyi +18 -15
- bpy/props/__init__.pyi +63 -63
- bpy/types/__init__.pyi +32616 -32500
- bpy/utils/__init__.pyi +29 -10
- {fake_bpy_module-20250104.dist-info → fake_bpy_module-20250109.dist-info}/METADATA +2 -2
- {fake_bpy_module-20250104.dist-info → fake_bpy_module-20250109.dist-info}/RECORD +46 -45
- {fake_bpy_module-20250104.dist-info → fake_bpy_module-20250109.dist-info}/WHEEL +1 -1
- freestyle/shaders/__init__.pyi +5 -1
- freestyle/types/__init__.pyi +5 -2
- freestyle/utils/__init__.pyi +1 -1
- gpu_extras/batch/__init__.pyi +2 -3
- {fake_bpy_module-20250104.dist-info → fake_bpy_module-20250109.dist-info}/top_level.txt +0 -0
bpy/utils/__init__.pyi
CHANGED
|
@@ -179,16 +179,23 @@ def preset_paths(subdir: str) -> list[str]:
|
|
|
179
179
|
def refresh_script_paths():
|
|
180
180
|
"""Run this after creating new script paths to update sys.path"""
|
|
181
181
|
|
|
182
|
-
def register_class(
|
|
182
|
+
def register_class(
|
|
183
|
+
cls: type[
|
|
184
|
+
bpy.types.Panel
|
|
185
|
+
| bpy.types.UIList
|
|
186
|
+
| bpy.types.Menu
|
|
187
|
+
| bpy.types.Header
|
|
188
|
+
| bpy.types.Operator
|
|
189
|
+
| bpy.types.KeyingSetInfo
|
|
190
|
+
| bpy.types.RenderEngine
|
|
191
|
+
| bpy.types.AssetShelf
|
|
192
|
+
| bpy.types.FileHandler
|
|
193
|
+
],
|
|
194
|
+
):
|
|
183
195
|
"""Register a subclass of a Blender type class.
|
|
184
196
|
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
`bpy.types.Menu`, `bpy.types.Header`,
|
|
188
|
-
`bpy.types.Operator`, `bpy.types.KeyingSetInfo`,
|
|
189
|
-
`bpy.types.RenderEngine`, `bpy.types.AssetShelf`,
|
|
190
|
-
`bpy.types.FileHandler`
|
|
191
|
-
:type cls: typing.Any
|
|
197
|
+
:param cls: Registerable Blender class type.
|
|
198
|
+
:type cls: type[bpy.types.Panel | bpy.types.UIList | bpy.types.Menu | bpy.types.Header | bpy.types.Operator | bpy.types.KeyingSetInfo | bpy.types.RenderEngine | bpy.types.AssetShelf | bpy.types.FileHandler]
|
|
192
199
|
"""
|
|
193
200
|
|
|
194
201
|
def register_classes_factory(classes):
|
|
@@ -360,13 +367,25 @@ def unescape_identifier(string: str) -> str:
|
|
|
360
367
|
:rtype: str
|
|
361
368
|
"""
|
|
362
369
|
|
|
363
|
-
def unregister_class(
|
|
370
|
+
def unregister_class(
|
|
371
|
+
cls: type[
|
|
372
|
+
bpy.types.Panel
|
|
373
|
+
| bpy.types.UIList
|
|
374
|
+
| bpy.types.Menu
|
|
375
|
+
| bpy.types.Header
|
|
376
|
+
| bpy.types.Operator
|
|
377
|
+
| bpy.types.KeyingSetInfo
|
|
378
|
+
| bpy.types.RenderEngine
|
|
379
|
+
| bpy.types.AssetShelf
|
|
380
|
+
| bpy.types.FileHandler
|
|
381
|
+
],
|
|
382
|
+
):
|
|
364
383
|
"""Unload the Python class from blender.
|
|
365
384
|
|
|
366
385
|
:param cls: Blender type class,
|
|
367
386
|
see `bpy.utils.register_class` for classes which can
|
|
368
387
|
be registered.
|
|
369
|
-
:type cls:
|
|
388
|
+
:type cls: type[bpy.types.Panel | bpy.types.UIList | bpy.types.Menu | bpy.types.Header | bpy.types.Operator | bpy.types.KeyingSetInfo | bpy.types.RenderEngine | bpy.types.AssetShelf | bpy.types.FileHandler]
|
|
370
389
|
"""
|
|
371
390
|
|
|
372
391
|
def unregister_cli_command(handle):
|
|
@@ -19,7 +19,7 @@ animsys_refactor/__init__.pyi,sha256=FVtTS8ep5YY_wxoK9FesObKvYKIffFgmOyS74iuza0s
|
|
|
19
19
|
animsys_refactor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
20
|
aud/__init__.pyi,sha256=tt3gNwZlxxqaCPPrJmqlpycZ-6LDuQyHzFeItdw0Ymw,33507
|
|
21
21
|
aud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
-
bgl/__init__.pyi,sha256=
|
|
22
|
+
bgl/__init__.pyi,sha256=qpQGlYz_sDIpS4AYONwmVkBlX2wM19TzfS76UM4IX-E,99534
|
|
23
23
|
bgl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
24
|
bl_app_override/__init__.pyi,sha256=kkg9A36TgZy86l0Nc2FnamcJsAG66am6xW0YjBDbjBI,368
|
|
25
25
|
bl_app_override/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -106,14 +106,14 @@ bl_ui/generic_ui_list/__init__.pyi,sha256=E9S37L1rZLNoVKSC_Rc2_lZ7O_-8j3U6FujiN5
|
|
|
106
106
|
bl_ui/node_add_menu/__init__.pyi,sha256=47u8vW3h1ub07M_kPJfQ1pbEdHeckMek5HSTwfYR7f8,1148
|
|
107
107
|
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=Xyt38vc4UpTKxmANEt786uFNnjEDLF04O7OtFJiyc2A,9793
|
|
108
108
|
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=B1Hc_HPujxSaE8Onv5VPvaxsc49cQEfikZ_-d-zHBag,28540
|
|
109
|
-
bl_ui/node_add_menu_shader/__init__.pyi,sha256=
|
|
109
|
+
bl_ui/node_add_menu_shader/__init__.pyi,sha256=sbKk_FrjWk5bdMjv7ZoZ70KVBfiWaAUpv-u1845_1bE,5987
|
|
110
110
|
bl_ui/node_add_menu_texture/__init__.pyi,sha256=sNBQZ2K5eXKcCbJKtBu2Ldx45Ds2jgyOZq01wiUkACk,5201
|
|
111
111
|
bl_ui/properties_animviz/__init__.pyi,sha256=3qdld3djZH4LXWRv5bmBgA0tX3OnD1RNrwzxREPqFGc,662
|
|
112
112
|
bl_ui/properties_collection/__init__.pyi,sha256=8RMhD3OoeJjNkOTDeQQ1ai-q1qrkI17ZeEaVHmC3XhE,4334
|
|
113
113
|
bl_ui/properties_constraint/__init__.pyi,sha256=JljYpXi7gn8TkUMS2ZTdDK-RVsHCnN1gQpS7j-TPbtw,61000
|
|
114
114
|
bl_ui/properties_data_armature/__init__.pyi,sha256=8LdOsnTPoSIf4f8HWJ2aWGdSSDg0ri4I8mpiN_of-tg,13185
|
|
115
115
|
bl_ui/properties_data_bone/__init__.pyi,sha256=jG4ytf1UzXw0ajVB3X94zyNI3NCwNznsAcLJurr2uqU,7970
|
|
116
|
-
bl_ui/properties_data_camera/__init__.pyi,sha256=
|
|
116
|
+
bl_ui/properties_data_camera/__init__.pyi,sha256=O4J_wrJQkb85AQLFFTHd4M2Z-N1RgNx9E0OE7-h7Jns,11839
|
|
117
117
|
bl_ui/properties_data_curve/__init__.pyi,sha256=D1xZkuCpaMwurWe-N7UAeEB8Ko8Egsw8fAhfOTQqXJU,12859
|
|
118
118
|
bl_ui/properties_data_curves/__init__.pyi,sha256=huauSiwT8GBVJrFzp3o6N6aA8ouxecfu6RgHBfc5rJg,5913
|
|
119
119
|
bl_ui/properties_data_empty/__init__.pyi,sha256=PrWD2bMI4AKOBXS1-GsHXFFeVc12p4siGDQJxdmn95A,1679
|
|
@@ -160,7 +160,7 @@ bl_ui/space_graph/__init__.pyi,sha256=7XFWtjx8rwzqzsIpnXcZbVgHHp1Xa6gr-GSxy5f7Mh
|
|
|
160
160
|
bl_ui/space_image/__init__.pyi,sha256=HO1Je2i9wtBtwirMt8LvXsj3uiMGjHLI8ML2S1zCLqY,44587
|
|
161
161
|
bl_ui/space_info/__init__.pyi,sha256=u0Bz7_HxRJrOKh0Ae7M0PvcA_H0_qI9dkcN_MW2SJa0,3285
|
|
162
162
|
bl_ui/space_nla/__init__.pyi,sha256=uT7nGRBlJlDS-wYZGGGuMs17DK-_XsYoa1qkop7ZVyM,9535
|
|
163
|
-
bl_ui/space_node/__init__.pyi,sha256=
|
|
163
|
+
bl_ui/space_node/__init__.pyi,sha256=sHP77K93twJEnel9dlQFAMjCBhLpC58LS6oK96OP1xo,17979
|
|
164
164
|
bl_ui/space_outliner/__init__.pyi,sha256=o_7H2lQtpKIncGyBU2lL7SHOp-emrqicrRoOBkjwMIg,8090
|
|
165
165
|
bl_ui/space_properties/__init__.pyi,sha256=U4lQ2UupgDfM0RBCSQrI-MlmNG2pOtBxwn5gED-7jzU,2708
|
|
166
166
|
bl_ui/space_sequencer/__init__.pyi,sha256=majDM6-RLT5xfu4BZHiVlqQzVXu08qIStiQ-3Nv5nJk,55215
|
|
@@ -188,33 +188,35 @@ bmesh/geometry/__init__.pyi,sha256=fgGEevkhB2IEtja2X5rm6OQU5EoDfkPaqiKeNGfWZ6c,6
|
|
|
188
188
|
bmesh/ops/__init__.pyi,sha256=DMiZji_B_pnY7y_hrTysJAkYhSrfEz9jnAqIuO16mBc,74702
|
|
189
189
|
bmesh/types/__init__.pyi,sha256=1KUSIGZDOD-fC_iPMVljAL2QYyYHpsCzWbgnsJJyT8A,43472
|
|
190
190
|
bmesh/utils/__init__.pyi,sha256=XNhFTqYQPL7ZUvljUTQkN0X_3YCS_RyrOgEzqrQZiDg,6235
|
|
191
|
-
bpy/__init__.pyi,sha256=
|
|
191
|
+
bpy/__init__.pyi,sha256=KeQc-X1TjhtunVxLDy0IK0cMmurLmAQm4fX_D__UPJo,464
|
|
192
192
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
193
|
-
bpy/
|
|
193
|
+
bpy/_typing/__init__.pyi,sha256=7bioadpQS-8UKR8TdY1m4MqUFqKVy8h13sPIt28ZUqs,99
|
|
194
|
+
bpy/_typing/rna_enums/__init__.pyi,sha256=cZOdBBRwXW-ErnbusJCar6fKTXfoZ6yja8Uq3L0DBl0,138625
|
|
195
|
+
bpy/app/__init__.pyi,sha256=aGpSDYK21XJs8ERXghQBni0uwOXSJo0-huNiAAY7P-Q,8238
|
|
194
196
|
bpy/app/handlers/__init__.pyi,sha256=Gxao8v-gF10WpVRUdswsB4QndzHjO1UtymwrorJef-4,6911
|
|
195
197
|
bpy/app/icons/__init__.pyi,sha256=w18Xn9y0T54WlpHyhC3_y8a3Lq9kuo3U72Bu7wOY41A,928
|
|
196
198
|
bpy/app/timers/__init__.pyi,sha256=vtrATRAmkTfP1CknievwpOCC19cPOMowyLTE6Ie9GSg,2126
|
|
197
199
|
bpy/app/translations/__init__.pyi,sha256=cTQKT-pPZcfDQfUVJKoat9W2wdnAwl2TdaeQkp83rQU,6932
|
|
198
200
|
bpy/msgbus/__init__.pyi,sha256=e9cmp_Wq7FA5pDTQQJ2s0_I84bEJMu8J-5Lu5gNoClM,2954
|
|
199
201
|
bpy/ops/__init__.pyi,sha256=JptIpKHRAy3jrKGANEBzrwmfNuZx8JLP9ofvWLCaLBU,5396
|
|
200
|
-
bpy/ops/action/__init__.pyi,sha256=
|
|
202
|
+
bpy/ops/action/__init__.pyi,sha256=LBNWtp-Nd2C-ae5OK4WTxg-ztiufJ4OLan-f6W7EJXo,18645
|
|
201
203
|
bpy/ops/anim/__init__.pyi,sha256=VM6kJF9mPnpDINvcVqrf-fEHlSRzn-P1vmCPvK8KDwA,24980
|
|
202
204
|
bpy/ops/armature/__init__.pyi,sha256=k6XyBQsnS9j-7cKqfmN4qYVyhv9gQVwX45g-3DJ8jro,20909
|
|
203
205
|
bpy/ops/asset/__init__.pyi,sha256=5rDsk6gBW_pI28yWQJMId5v0NOe7q42GAZaz198pnDQ,8694
|
|
204
|
-
bpy/ops/boid/__init__.pyi,sha256=
|
|
205
|
-
bpy/ops/brush/__init__.pyi,sha256=
|
|
206
|
+
bpy/ops/boid/__init__.pyi,sha256=7ItnfUAiiN8vT6JtFCRLEwcXnFGQk0vy1ye12JO3PPM,1963
|
|
207
|
+
bpy/ops/brush/__init__.pyi,sha256=uVoVLHxY1ZDpF8r4b5y376ymcs_u6vNmKZ0cJu-xAoA,9776
|
|
206
208
|
bpy/ops/buttons/__init__.pyi,sha256=emCWcZQc0YEMm4L_qkoZBbjHpRbdaWbWP4GEkhj9S6A,8918
|
|
207
209
|
bpy/ops/cachefile/__init__.pyi,sha256=KFndyrBJnch4nxwe_SSoBPHV5n3nxjzQki8Wcgc_R4s,8874
|
|
208
210
|
bpy/ops/camera/__init__.pyi,sha256=Il4dR95oos_zZb1wuj9gQ97Bfvq6rdWhf8oXBPPfc5M,1384
|
|
209
|
-
bpy/ops/clip/__init__.pyi,sha256=
|
|
211
|
+
bpy/ops/clip/__init__.pyi,sha256=7jjYI07dSDylZ8XXD_o_8g4BtirZExq9-T6YFr4EwmE,44815
|
|
210
212
|
bpy/ops/cloth/__init__.pyi,sha256=-QZgZVWwhhr7uTvjCQIrSTaLo5oa6vAUkL50wz6JnKk,629
|
|
211
213
|
bpy/ops/collection/__init__.pyi,sha256=EinHz6U_DybolTQPpGpcm1DpfJ5R453KQFL213U4Kcw,3085
|
|
212
214
|
bpy/ops/console/__init__.pyi,sha256=lgoYIWzf29q06AniBBiPYuI7zndNoc2aGyXYyINZbPI,7304
|
|
213
215
|
bpy/ops/constraint/__init__.pyi,sha256=lb318xrvDTH1T_raLhoBKcDPTl4mVmYPfh5TxbnoGDU,11838
|
|
214
|
-
bpy/ops/curve/__init__.pyi,sha256=
|
|
215
|
-
bpy/ops/curves/__init__.pyi,sha256=
|
|
216
|
+
bpy/ops/curve/__init__.pyi,sha256=_CPLNJzJHt3xy2OqvtIAKpArFdY_FfNkDx85xU4bgUY,28519
|
|
217
|
+
bpy/ops/curves/__init__.pyi,sha256=c2qqV_FWtUG5wRnYQ-389Wp417M6KKXCQK6q7l5Qbuc,15074
|
|
216
218
|
bpy/ops/cycles/__init__.pyi,sha256=TzurmelE8U7FLjghhDWt-0HBU-cyTALEWTfG4taUCSI,1739
|
|
217
|
-
bpy/ops/dpaint/__init__.pyi,sha256=
|
|
219
|
+
bpy/ops/dpaint/__init__.pyi,sha256=LhNcaKIZxU6RVVV3Am5d-0r3fVmTqc_UbXwM53yPFCQ,1555
|
|
218
220
|
bpy/ops/ed/__init__.pyi,sha256=ecIB_NEWEa6uMONdtJ7k7w6ZjWh4WZlOAMTYxEmsNY8,6870
|
|
219
221
|
bpy/ops/export_anim/__init__.pyi,sha256=wyCP8IO0cjr0ixNFGfFblD8ASLG4tQ-l2v3a9UnHAlw,2027
|
|
220
222
|
bpy/ops/export_scene/__init__.pyi,sha256=fJHt3qDJexzN2SeBPtsKcdNe-Hsu1FkvlJPCY3_lG2o,38888
|
|
@@ -222,62 +224,61 @@ bpy/ops/extensions/__init__.pyi,sha256=GtWfFBmoeA2PoRiMqdgYu7cuSXJuVRnLgFpOa-B3M
|
|
|
222
224
|
bpy/ops/file/__init__.pyi,sha256=EwxedztM5v4x6oQd7FV0VbAHAtRKChgHTMuhkHUDDQ8,19260
|
|
223
225
|
bpy/ops/fluid/__init__.pyi,sha256=toNBTcKttDwaWx21Nzf2HNBWKT7vZh8IDcIR2nG_ad4,3191
|
|
224
226
|
bpy/ops/font/__init__.pyi,sha256=7fLdMjcgT0AZb_pvWl59RXn5fuhqkrll7pKYPmYZD8w,15509
|
|
225
|
-
bpy/ops/geometry/__init__.pyi,sha256=
|
|
227
|
+
bpy/ops/geometry/__init__.pyi,sha256=5E3W4rVQTQmgHc8p8Adr9EHk-VsTrhwYbCvchw4Ax7c,7653
|
|
226
228
|
bpy/ops/gizmogroup/__init__.pyi,sha256=lsDnIxuI4uIqJJEiLNmKUuMq2uqlc6HQAqDHY3T9tf8,1262
|
|
227
229
|
bpy/ops/gpencil/__init__.pyi,sha256=cqeFGa_2tSDBDSWhsWVQVZx5BhHs08wiW4And1rhfVE,4832
|
|
228
|
-
bpy/ops/graph/__init__.pyi,sha256=
|
|
229
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
230
|
-
bpy/ops/image/__init__.pyi,sha256=
|
|
230
|
+
bpy/ops/graph/__init__.pyi,sha256=LxlhLzlxAjlrVyfx09PY74t15-khJK0tiasNQyYUqw4,41703
|
|
231
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=H9WVzX5b9L_OB0KW1repZrTZ_NrZ-1Xj9pnZgdvtMX4,61294
|
|
232
|
+
bpy/ops/image/__init__.pyi,sha256=vK532kr88U-wpy9REGM5OgG9v2Xlgz5wVfm0M9X4QrM,52326
|
|
231
233
|
bpy/ops/import_anim/__init__.pyi,sha256=aE1pDcT6TlridpXwg7tF-E3tXLcm83n7j1vVgn_-g7A,3046
|
|
232
234
|
bpy/ops/import_curve/__init__.pyi,sha256=sDhKpg3cI-y0NYuUo8ey3jb3h-KKergdPUDKlQ-C2iI,485
|
|
233
235
|
bpy/ops/import_scene/__init__.pyi,sha256=TTEY7tywXLoe5xGm3R1qfE0afH7gpiePYiNofJjDkJw,10282
|
|
234
236
|
bpy/ops/info/__init__.pyi,sha256=awrfSCgZOjERYahNCEfz80MLPSL1MLEzD2w1IVD_V9Y,3090
|
|
235
|
-
bpy/ops/lattice/__init__.pyi,sha256=
|
|
237
|
+
bpy/ops/lattice/__init__.pyi,sha256=q9buSVqGTwv5woNjo5gvJ8Ymuad0kEXaNulBoOeGCBY,3579
|
|
236
238
|
bpy/ops/marker/__init__.pyi,sha256=UdcuNJTcu5roTdeLXoV6Rgfpxtnb_LTEJlXklwMtUk0,5376
|
|
237
239
|
bpy/ops/mask/__init__.pyi,sha256=l61FwahMcMjLF4UvD76HTgPODfsjhbCEfVc9x2fx9DI,17108
|
|
238
240
|
bpy/ops/material/__init__.pyi,sha256=8AhfpDXsCDLZI0UEESadmN8-zfNGEiDblmKobSJLcqA,669
|
|
239
241
|
bpy/ops/mball/__init__.pyi,sha256=VRZZbMhoN6OWmsG-344hmoHQ-_qcjRuisuzJvLxGobI,4155
|
|
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=
|
|
242
|
+
bpy/ops/mesh/__init__.pyi,sha256=qE1RpDdjx6k30pAjr1ZWqjR4aoY6_qJ8VVyQk0F8GPA,132596
|
|
243
|
+
bpy/ops/nla/__init__.pyi,sha256=qWBmb8nOy9c6H_rKEjt3spO-TnwPaqJc1meOgDy5uaY,18145
|
|
244
|
+
bpy/ops/node/__init__.pyi,sha256=f-sZY8A2OnvpTVF-fQd_Dk7qZFz9osDrjv-vf4aft6Q,52024
|
|
245
|
+
bpy/ops/object/__init__.pyi,sha256=uNGBw3h2DlUZFKwNp3_ZVRh6pT7BZmg8XPMF_DF9FjE,168300
|
|
246
|
+
bpy/ops/outliner/__init__.pyi,sha256=la079qCOhk_Bf_FiEtjcNh0jP97X0sY5aPgnAxOT4x0,27743
|
|
247
|
+
bpy/ops/paint/__init__.pyi,sha256=e-oY3Tfshra13yecq4RnWCHs7AfGJIrZvGUD1xV9RGo,37153
|
|
246
248
|
bpy/ops/paintcurve/__init__.pyi,sha256=sJfa-6TohaHNlvBFZ5X2vhjeMCp91in2K6UqwIF3d80,2980
|
|
247
249
|
bpy/ops/palette/__init__.pyi,sha256=RD7rkE6f28SyME46hM3HwjWKCgKFtOXZDDPOO6mQB0Q,2093
|
|
248
250
|
bpy/ops/particle/__init__.pyi,sha256=0i7ElQYdudM-PWGsSfwOUtmPj3cyFf6PNW_UkCtkLiI,13478
|
|
249
|
-
bpy/ops/pose/__init__.pyi,sha256=
|
|
251
|
+
bpy/ops/pose/__init__.pyi,sha256=X3uT13DBbdw1nsmBhbId71DYAjYEGL6WtapfpwpihzA,26770
|
|
250
252
|
bpy/ops/poselib/__init__.pyi,sha256=WK-1Has2-NPp_7EkB-PHV1MtfVgTXMMnkhrtQPYcISc,3820
|
|
251
253
|
bpy/ops/preferences/__init__.pyi,sha256=iG82fOc0EGoI0_KoSgUbtUEMlcN71gxdq3SlVkCz01w,19499
|
|
252
254
|
bpy/ops/ptcache/__init__.pyi,sha256=9WgZUXKtu-AeqF0pYrP8ZSdFXz2jHMdPjmp6zLesL2Q,1667
|
|
253
255
|
bpy/ops/render/__init__.pyi,sha256=9LDvtzNUv_nd3elJDKQFIXJltAIgsvvinpvyVu5q8cU,7425
|
|
254
|
-
bpy/ops/rigidbody/__init__.pyi,sha256=
|
|
255
|
-
bpy/ops/scene/__init__.pyi,sha256=
|
|
256
|
-
bpy/ops/screen/__init__.pyi,sha256=
|
|
256
|
+
bpy/ops/rigidbody/__init__.pyi,sha256=WL-53YoWliMEFDB0TAbvSwE9RgqakWuJqaytrj5kPGs,6698
|
|
257
|
+
bpy/ops/scene/__init__.pyi,sha256=tN5QUf93N8lktEnAiIjWHKA4LI-b09A6G0mEE5DhTQY,13732
|
|
258
|
+
bpy/ops/screen/__init__.pyi,sha256=6WbfNAHRE24NwTHuUyk6pfZAROdMzIn5V_hjYq3rVLQ,19963
|
|
257
259
|
bpy/ops/script/__init__.pyi,sha256=LPFPi3ovQdpV5IVlMnJpo9K3i88q1t6cFnoXnfiJ5HA,978
|
|
258
260
|
bpy/ops/sculpt/__init__.pyi,sha256=rLoR6GFU6ARcuEq-CwBKngSn0xxELfy42WJogo4pXxw,46804
|
|
259
261
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=jDglkug-tn6Esxo-_DrILnCkifpWfQ82x9JE_q0PW-c,2849
|
|
260
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
261
|
-
bpy/ops/sound/__init__.pyi,sha256
|
|
262
|
+
bpy/ops/sequencer/__init__.pyi,sha256=PvVUvPL124adjdt8bF65h35mUIkK1DnLj2glJ15O6FA,78337
|
|
263
|
+
bpy/ops/sound/__init__.pyi,sha256=-XatEtxOVyJEDQ5qbiYIvVSaoHMV0BlDXaVXHmpILQY,16859
|
|
262
264
|
bpy/ops/spreadsheet/__init__.pyi,sha256=q_4fYPoBC6g61Pw7Mz71PQB93vYHxk661B18CvIkguA,1360
|
|
263
265
|
bpy/ops/surface/__init__.pyi,sha256=OD-_jQEOIHzb89OaZ4JLMZlnP7-s4jbY4a2DpI9bA_I,10315
|
|
264
266
|
bpy/ops/text/__init__.pyi,sha256=j6wutufMV-p6P1WkAJxrFJWDv3MK-ra691fkR_rdy1s,21152
|
|
265
267
|
bpy/ops/text_editor/__init__.pyi,sha256=-BquL2tZJRA0PG5_CbDNcfFJ5S2JgVWVWHRGOr-5IKo,635
|
|
266
268
|
bpy/ops/texture/__init__.pyi,sha256=oxKGKHziumZd9yFWYjRNVALiIAgR3-AIlmSnHbhhT1I,1043
|
|
267
|
-
bpy/ops/transform/__init__.pyi,sha256=
|
|
269
|
+
bpy/ops/transform/__init__.pyi,sha256=nFMU9BIC1R0F3vOtG3UJzG06_0bhvpn5WJ7jpB_B3rA,58195
|
|
268
270
|
bpy/ops/ui/__init__.pyi,sha256=C3pDpcSf36MCa56mWmGyR-W_vDizDBBTmFj65RIvfS4,12411
|
|
269
271
|
bpy/ops/uilist/__init__.pyi,sha256=1Vu7qHRYL-MOM5kdcHJLmJwucvveh10t1wbmL_98GEM,1618
|
|
270
|
-
bpy/ops/uv/__init__.pyi,sha256=
|
|
272
|
+
bpy/ops/uv/__init__.pyi,sha256=_PFdsIxNsw5RLzCHmpqA7MnHriWUf0mau2pvYSyj7DQ,45436
|
|
271
273
|
bpy/ops/view2d/__init__.pyi,sha256=bw6xoLUDUWQGk36g4T8THDWpNSH_VX8Pyg_mlGB9Dik,6986
|
|
272
274
|
bpy/ops/view3d/__init__.pyi,sha256=MGiNsaGKtQPLFiSQgEdKlULq2a0Rp6W3vGTub0Hb3p4,30689
|
|
273
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
275
|
+
bpy/ops/wm/__init__.pyi,sha256=vNXQGtWFHxjk_ft3OeWStjne67NsOtRXjBtFWbP-jOA,215937
|
|
274
276
|
bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHCU,1983
|
|
275
277
|
bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
|
|
276
278
|
bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
|
|
277
|
-
bpy/props/__init__.pyi,sha256=
|
|
278
|
-
bpy/types/__init__.pyi,sha256=
|
|
279
|
-
bpy/
|
|
280
|
-
bpy/utils/__init__.pyi,sha256=Shl-q0XiWluRIHc6l_YMuVwFrz3vOJ0hnlgjVp1OirY,13711
|
|
279
|
+
bpy/props/__init__.pyi,sha256=rxpq9_AeVaMNXJ1MBAowRzLYjBzsYxNx5Ox5qWLLu5w,35255
|
|
280
|
+
bpy/types/__init__.pyi,sha256=N0XOaNiYo5db9I8NRT0mhJys7JPykivzq18AK50ooaI,5419445
|
|
281
|
+
bpy/utils/__init__.pyi,sha256=LBKZscVUnS43O9AFmDZrJA1hBxJE3AFAY9d5SCWdKyU,14403
|
|
281
282
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
282
283
|
bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
|
|
283
284
|
bpy_extras/__init__.pyi,sha256=wejK55NeAEGsAzM9psNhBokX9H0DBihwOdNQ5XlCHB4,968
|
|
@@ -309,9 +310,9 @@ freestyle/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
309
310
|
freestyle/chainingiterators/__init__.pyi,sha256=-sExETC4ZKfEvte3IoUoOj318RttlFo5otO6VATWnE0,10592
|
|
310
311
|
freestyle/functions/__init__.pyi,sha256=sEPnGHwZm8XBlfE7CKLros3CKJlAh1h1FI74nBTEOk4,48844
|
|
311
312
|
freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
|
|
312
|
-
freestyle/shaders/__init__.pyi,sha256=
|
|
313
|
-
freestyle/types/__init__.pyi,sha256=
|
|
314
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
313
|
+
freestyle/shaders/__init__.pyi,sha256=4a-rY8mkkIcsnIvYGcP8YgAULdJENDJnncju2CjhQVg,24014
|
|
314
|
+
freestyle/types/__init__.pyi,sha256=NDfpQQ0PBTw2NaRhCDcVRoEpJhH58BLBr16GcZORl98,100188
|
|
315
|
+
freestyle/utils/__init__.pyi,sha256=lW5JWrilkFTvRmtYoS3hbmWfj2abo2hHsvp4eyGLbcQ,5108
|
|
315
316
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=fPDfiBEjpoqXQhBhmHJ6WxG9oLMItwQ32MxKQz_c9_I,3445
|
|
316
317
|
gpu/__init__.pyi,sha256=Q-AbyJO85pPYcwXNWtvgAhFGGJ6OnnHrlsXQxur9jhs,7999
|
|
317
318
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -325,7 +326,7 @@ gpu/texture/__init__.pyi,sha256=NWixhD9M2vFrAIWlQDM0Co-CNRiU7BbL7imkSOloHHI,641
|
|
|
325
326
|
gpu/types/__init__.pyi,sha256=Q8Gym2MsHoDFLW7snVIfPMUGCQns-XA2URYfeOV3nnk,27923
|
|
326
327
|
gpu_extras/__init__.pyi,sha256=oNgtMNheClZ_iCmKSH63hBJ4U0huayOWKil-qPvYHds,213
|
|
327
328
|
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
328
|
-
gpu_extras/batch/__init__.pyi,sha256=
|
|
329
|
+
gpu_extras/batch/__init__.pyi,sha256=nbeZNWRKChMLBkKYc4mLF9abAffVyzEHp01yf64gZK8,1279
|
|
329
330
|
gpu_extras/presets/__init__.pyi,sha256=pDhGELr5vKTZ9yDsLJ4Y836Kmh7cs95rDhSwd1i5e-s,1647
|
|
330
331
|
graphviz_export/__init__.pyi,sha256=LBiepSfMSL7Qix8FZ6LYKmbPgu1AHRvRw3yHDDWYrEw,215
|
|
331
332
|
graphviz_export/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -358,7 +359,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
358
359
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
360
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
360
361
|
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-
|
|
362
|
+
fake_bpy_module-20250109.dist-info/METADATA,sha256=P8kTOF-9Xzygmj4fFMFJEEuHlTwcKBSe1N-A7f9z3Tc,7289
|
|
363
|
+
fake_bpy_module-20250109.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
364
|
+
fake_bpy_module-20250109.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
365
|
+
fake_bpy_module-20250109.dist-info/RECORD,,
|
freestyle/shaders/__init__.pyi
CHANGED
|
@@ -11,6 +11,7 @@ freestyle.types.StrokeShader class.
|
|
|
11
11
|
import typing
|
|
12
12
|
import collections.abc
|
|
13
13
|
import typing_extensions
|
|
14
|
+
import bpy.types
|
|
14
15
|
import freestyle.types
|
|
15
16
|
import mathutils
|
|
16
17
|
|
|
@@ -55,11 +56,14 @@ class BezierCurveShader:
|
|
|
55
56
|
class BlenderTextureShader:
|
|
56
57
|
"""Class hierarchy: `freestyle.types.StrokeShader` > `BlenderTextureShader`[Texture shader]"""
|
|
57
58
|
|
|
58
|
-
def __init__(
|
|
59
|
+
def __init__(
|
|
60
|
+
self, texture: bpy.types.LineStyleTextureSlot | bpy.types.ShaderNodeTree
|
|
61
|
+
):
|
|
59
62
|
"""Builds a BlenderTextureShader object.
|
|
60
63
|
|
|
61
64
|
:param texture: A line style texture slot or a shader node tree to define
|
|
62
65
|
a set of textures.
|
|
66
|
+
:type texture: bpy.types.LineStyleTextureSlot | bpy.types.ShaderNodeTree
|
|
63
67
|
"""
|
|
64
68
|
|
|
65
69
|
def shade(self, stroke: freestyle.types.Stroke):
|
freestyle/types/__init__.pyi
CHANGED
|
@@ -869,12 +869,15 @@ class, the .object property refers to a `StrokeVertex` object.
|
|
|
869
869
|
:type brother: typing_extensions.Self
|
|
870
870
|
"""
|
|
871
871
|
|
|
872
|
-
def __init__(
|
|
872
|
+
def __init__(
|
|
873
|
+
self,
|
|
874
|
+
it: CurvePointIterator | SVertexIterator | StrokeVertexIterator | typing.Any,
|
|
875
|
+
):
|
|
873
876
|
"""Construct a nested Interface0DIterator using either the copy constructor
|
|
874
877
|
or the constructor that takes an he argument of a Function0D.
|
|
875
878
|
|
|
876
879
|
:param it: An iterator object to be nested.
|
|
877
|
-
:type it: CurvePointIterator | SVertexIterator
|
|
880
|
+
:type it: CurvePointIterator | SVertexIterator | StrokeVertexIterator | typing.Any
|
|
878
881
|
"""
|
|
879
882
|
|
|
880
883
|
class Interface1D:
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
|
|
|
124
124
|
"""get the diffuse RGBA color from an FEdge"""
|
|
125
125
|
|
|
126
126
|
def normal_at_I0D(it): ...
|
|
127
|
-
def pairwise(iterable, types={
|
|
127
|
+
def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
|
|
128
128
|
"""Yields a tuple containing the previous and current object"""
|
|
129
129
|
|
|
130
130
|
def rgb_to_bw(r, g, b):
|
gpu_extras/batch/__init__.pyi
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bgl
|
|
5
4
|
import gpu.types
|
|
6
5
|
|
|
7
6
|
def batch_for_shader(
|
|
@@ -9,7 +8,7 @@ def batch_for_shader(
|
|
|
9
8
|
type: str,
|
|
10
9
|
content: dict[
|
|
11
10
|
str,
|
|
12
|
-
|
|
11
|
+
gpu.types.Buffer
|
|
13
12
|
| collections.abc.Sequence[float]
|
|
14
13
|
| collections.abc.Sequence[int]
|
|
15
14
|
| collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
@@ -26,7 +25,7 @@ def batch_for_shader(
|
|
|
26
25
|
:type type: str
|
|
27
26
|
:param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
|
|
28
27
|
For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
|
|
29
|
-
:type content: dict[str,
|
|
28
|
+
:type content: dict[str, gpu.types.Buffer | collections.abc.Sequence[float] | collections.abc.Sequence[int] | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[collections.abc.Sequence[int]]]
|
|
30
29
|
:return: compatible batch
|
|
31
30
|
:rtype: gpu.types.GPUBatch
|
|
32
31
|
"""
|
|
File without changes
|