fake-bpy-module-latest 20260119__py3-none-any.whl → 20260121__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.
- bpy/app/handlers/__init__.pyi +4 -0
- bpy/ops/paint/__init__.pyi +14 -0
- bpy/ops/preferences/__init__.pyi +14 -0
- bpy/types/__init__.pyi +13 -1
- {fake_bpy_module_latest-20260119.dist-info → fake_bpy_module_latest-20260121.dist-info}/METADATA +1 -1
- {fake_bpy_module_latest-20260119.dist-info → fake_bpy_module_latest-20260121.dist-info}/RECORD +9 -9
- idprop/__init__.pyi +10 -0
- {fake_bpy_module_latest-20260119.dist-info → fake_bpy_module_latest-20260121.dist-info}/WHEEL +0 -0
- {fake_bpy_module_latest-20260119.dist-info → fake_bpy_module_latest-20260121.dist-info}/top_level.txt +0 -0
bpy/app/handlers/__init__.pyi
CHANGED
|
@@ -91,6 +91,10 @@ depsgraph_update_pre: list[collections.abc.Callable[[bpy.types.Scene, None], Non
|
|
|
91
91
|
""" on depsgraph update (pre). Accepts two arguments: The scene data-block and the dependency graph being updated
|
|
92
92
|
"""
|
|
93
93
|
|
|
94
|
+
exit_pre: list[collections.abc.Callable[[bpy.types.Scene], None]]
|
|
95
|
+
""" just before Blender shuts down, while all data is still valid. Accepts one boolean argument. True indicates either that a user has been using Blender and exited, or that Blender is exiting in a circumstance that should be treated as if that were the case. False indicates that Blender is running in background mode, or is exiting due to failed command line arguments, etc.
|
|
96
|
+
"""
|
|
97
|
+
|
|
94
98
|
frame_change_post: list[collections.abc.Callable[[bpy.types.Scene], None]]
|
|
95
99
|
""" Called after frame change for playback and rendering, after the data has been evaluated for the new frame. Accepts two arguments: The scene data-block and the dependency graph being updated
|
|
96
100
|
"""
|
bpy/ops/paint/__init__.pyi
CHANGED
|
@@ -666,6 +666,20 @@ def vert_select_linked_pick(
|
|
|
666
666
|
:param select: Select, Whether to select or deselect linked vertices under the cursor
|
|
667
667
|
"""
|
|
668
668
|
|
|
669
|
+
def vert_select_loop(
|
|
670
|
+
execution_context: int | str | None = None,
|
|
671
|
+
undo: bool | None = None,
|
|
672
|
+
/,
|
|
673
|
+
*,
|
|
674
|
+
select: bool | None = True,
|
|
675
|
+
extend: bool | None = False,
|
|
676
|
+
) -> None:
|
|
677
|
+
"""Select vertex loop under the cursor
|
|
678
|
+
|
|
679
|
+
:param select: Select, If false, vertices will be deselected
|
|
680
|
+
:param extend: Extend, Extend the selection
|
|
681
|
+
"""
|
|
682
|
+
|
|
669
683
|
def vert_select_more(
|
|
670
684
|
execution_context: int | str | None = None,
|
|
671
685
|
undo: bool | None = None,
|
bpy/ops/preferences/__init__.pyi
CHANGED
|
@@ -220,6 +220,13 @@ def autoexec_path_remove(
|
|
|
220
220
|
:param index: Index
|
|
221
221
|
"""
|
|
222
222
|
|
|
223
|
+
def clear_filter(
|
|
224
|
+
execution_context: int | str | None = None,
|
|
225
|
+
undo: bool | None = None,
|
|
226
|
+
/,
|
|
227
|
+
) -> None:
|
|
228
|
+
"""Clear the search filter"""
|
|
229
|
+
|
|
223
230
|
def copy_prev(
|
|
224
231
|
execution_context: int | str | None = None,
|
|
225
232
|
undo: bool | None = None,
|
|
@@ -427,6 +434,13 @@ def script_directory_remove(
|
|
|
427
434
|
:param index: Index, Index of the script directory to remove
|
|
428
435
|
"""
|
|
429
436
|
|
|
437
|
+
def start_filter(
|
|
438
|
+
execution_context: int | str | None = None,
|
|
439
|
+
undo: bool | None = None,
|
|
440
|
+
/,
|
|
441
|
+
) -> None:
|
|
442
|
+
"""Start entering filter text"""
|
|
443
|
+
|
|
430
444
|
def studiolight_copy_settings(
|
|
431
445
|
execution_context: int | str | None = None,
|
|
432
446
|
undo: bool | None = None,
|
bpy/types/__init__.pyi
CHANGED
|
@@ -158067,7 +158067,11 @@ class GeometryNodeList(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
158067
158067
|
class GeometryNodeListGetItem(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
158068
158068
|
"""Retrieve a value from a list"""
|
|
158069
158069
|
|
|
158070
|
-
|
|
158070
|
+
socket_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
158071
|
+
""" Value may be implicitly converted if the type does not match"""
|
|
158072
|
+
|
|
158073
|
+
structure_type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
|
|
158074
|
+
""" What kind of higher order types are expected to flow through this socket"""
|
|
158071
158075
|
|
|
158072
158076
|
@classmethod
|
|
158073
158077
|
def is_registered_node_type(cls) -> bool:
|
|
@@ -207595,7 +207599,12 @@ class SpacePreferences(Space, bpy_struct):
|
|
|
207595
207599
|
filter_type: typing.Literal["NAME", "KEY"]
|
|
207596
207600
|
""" Filter method"""
|
|
207597
207601
|
|
|
207602
|
+
search_filter: str
|
|
207603
|
+
""" Live search filtering string"""
|
|
207604
|
+
|
|
207598
207605
|
show_region_ui: bool
|
|
207606
|
+
tab_search_results: bool
|
|
207607
|
+
""" Whether or not each visible tab has a search result"""
|
|
207599
207608
|
|
|
207600
207609
|
@classmethod
|
|
207601
207610
|
def bl_rna_get_subclass(
|
|
@@ -214244,6 +214253,7 @@ class ThemeOutliner(bpy_struct):
|
|
|
214244
214253
|
class ThemePreferences(bpy_struct):
|
|
214245
214254
|
"""Theme settings for the Blender Preferences"""
|
|
214246
214255
|
|
|
214256
|
+
match: mathutils.Color
|
|
214247
214257
|
space: ThemeSpaceGeneric
|
|
214248
214258
|
""" Settings for space"""
|
|
214249
214259
|
|
|
@@ -216439,6 +216449,7 @@ class UILayout(bpy_struct):
|
|
|
216439
216449
|
data_highlight: typing.Any = None,
|
|
216440
216450
|
property_highlight: str = "",
|
|
216441
216451
|
icon_only: bool | None = False,
|
|
216452
|
+
expand_as: typing.Literal["DEFAULT", "ROW"] | None = "DEFAULT",
|
|
216442
216453
|
) -> None:
|
|
216443
216454
|
"""prop_tabs_enum
|
|
216444
216455
|
|
|
@@ -216447,6 +216458,7 @@ class UILayout(bpy_struct):
|
|
|
216447
216458
|
:param data_highlight: Data from which to take highlight property
|
|
216448
216459
|
:param property_highlight: Identifier of highlight property in data
|
|
216449
216460
|
:param icon_only: Draw only icons in tabs, no text
|
|
216461
|
+
:param expand_as:
|
|
216450
216462
|
"""
|
|
216451
216463
|
|
|
216452
216464
|
def prop_enum(
|
{fake_bpy_module_latest-20260119.dist-info → fake_bpy_module_latest-20260121.dist-info}/RECORD
RENAMED
|
@@ -226,7 +226,7 @@ bmesh/utils/__init__.pyi,sha256=LNxIl4-PECWMRk6rvR7v7_6ipypEVc1-Kx-ujzZxR5M,5531
|
|
|
226
226
|
bpy/__init__.pyi,sha256=2c24IZe013Q0UbFSvpU9JKRYusCUwGYTXbNDx17dK5g,490
|
|
227
227
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
228
228
|
bpy/app/__init__.pyi,sha256=QzLt2Ydy0ksVLxYOnDmBohdnTyjYRbhmYCTof7hBFuQ,8919
|
|
229
|
-
bpy/app/handlers/__init__.pyi,sha256=
|
|
229
|
+
bpy/app/handlers/__init__.pyi,sha256=zxGxU2vUg5Nsn01mFyjXbL1Pf7_O6PeVhmEac4N2X-k,8510
|
|
230
230
|
bpy/app/icons/__init__.pyi,sha256=3qIiozVL2TnlE1vZotNGuxX5DDrr1PsN6UWJCeUkJ8E,798
|
|
231
231
|
bpy/app/timers/__init__.pyi,sha256=VuykhQjGUw3Y7i1Ssy0vkBzAAdRJSMwJft4Ml1Fa8-g,1522
|
|
232
232
|
bpy/app/translations/__init__.pyi,sha256=FjV31T5EUMoe51lpvW_VZr7Db1xyvb5jhGJqKwcT_O0,6511
|
|
@@ -277,14 +277,14 @@ bpy/ops/nla/__init__.pyi,sha256=BKhMtxIO-S1uvKYDWWGtkdImtHOkh0vuMCQPXU-DMHo,1393
|
|
|
277
277
|
bpy/ops/node/__init__.pyi,sha256=rUizTh9YyCl9SkT_m3d03ynO8_no3Jb-R_RI8CaBMWY,60945
|
|
278
278
|
bpy/ops/object/__init__.pyi,sha256=lUwpGFhl51RMdrpWuEHxl9_L3hyt6ucPVnPFriHvec0,132838
|
|
279
279
|
bpy/ops/outliner/__init__.pyi,sha256=9WpptES8EMwCnQOqrTntIcr31HhlN-n_5UqjeBKT0Mg,21357
|
|
280
|
-
bpy/ops/paint/__init__.pyi,sha256=
|
|
280
|
+
bpy/ops/paint/__init__.pyi,sha256=Va4erQE47Dhou61TQktAeF9uR_jNsZmR5Dylv43Ncgs,28720
|
|
281
281
|
bpy/ops/paintcurve/__init__.pyi,sha256=YC6tSOp62YNPX_SpgZFCcthR7lZC0CYEdRWonEKnNEs,2198
|
|
282
282
|
bpy/ops/palette/__init__.pyi,sha256=jAl22wlshj9D8HU97etN6o7-OoiIV2m7VHf6XTp1DZ8,1519
|
|
283
283
|
bpy/ops/particle/__init__.pyi,sha256=bQAY27lzTiJuuM2KLKPUF0wEs5AwwjVGGYgsMJU1ogA,10397
|
|
284
284
|
bpy/ops/pointcloud/__init__.pyi,sha256=sobbTqe-GdCpGjgb7Wct0eR75mhweZp9BMsUaL0tgNo,2793
|
|
285
285
|
bpy/ops/pose/__init__.pyi,sha256=cWUjE15BFBMmRk7_pvD-CnrhB8XdkgzQD-WWMrIpw38,21354
|
|
286
286
|
bpy/ops/poselib/__init__.pyi,sha256=3_kiwfZWc168J_UV8uOaNthybeKUXrJAUfPb1_Ai1JQ,4431
|
|
287
|
-
bpy/ops/preferences/__init__.pyi,sha256=
|
|
287
|
+
bpy/ops/preferences/__init__.pyi,sha256=1uceZeR4Xunqw6_C70_5YTiq-dRFi0Occedw5bB-1Hk,14574
|
|
288
288
|
bpy/ops/ptcache/__init__.pyi,sha256=CA2tVqJgrr0bKe1hlfsXyyKuhjd_MFln2tp8rBd-mZ8,1230
|
|
289
289
|
bpy/ops/render/__init__.pyi,sha256=l-ICt9rdpUJP2fqVh83PMswmiXxzwHO0Kh_KaFvHadg,6181
|
|
290
290
|
bpy/ops/rigidbody/__init__.pyi,sha256=Jiz2mEGjhBz81pScUCxDhYZnUMS4V-jE1egwXaPZt80,5203
|
|
@@ -313,7 +313,7 @@ bpy/path/__init__.pyi,sha256=jgXGlVLUTr15BhcgCVnkz6WlJp4yjpHhJc4TJAXSbsU,4632
|
|
|
313
313
|
bpy/props/__init__.pyi,sha256=BFnRoY78kkf6szROPfp4HSETs8yEgMeKE4QeSd2vDrs,41820
|
|
314
314
|
bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
315
315
|
bpy/stub_internal/rna_enums/__init__.pyi,sha256=qwmvb4vKgXjyUx69cDNAssAsbkYCVs1ODFOk4wl9yMY,144112
|
|
316
|
-
bpy/types/__init__.pyi,sha256=
|
|
316
|
+
bpy/types/__init__.pyi,sha256=ifZY-foP34oz-Zkzf-43FCx4wp4iyq2jOBz7LlIKwzU,5381978
|
|
317
317
|
bpy/utils/__init__.pyi,sha256=z2RE91bnjKGSocTVMkIrZ1HS9Q5UUC_u1eo3Kv1DVzs,13054
|
|
318
318
|
bpy/utils/previews/__init__.pyi,sha256=ByUvnneVHqE8dr5c1-hYsf-6qaKWdU0KP0IbwA5QN00,2028
|
|
319
319
|
bpy/utils/units/__init__.pyi,sha256=CbBgOpnx48WP0flNilskhsmA7YCAnbbj07vr3OXlMG8,2214
|
|
@@ -356,7 +356,7 @@ gpu_extras/__init__.pyi,sha256=XscwC-5DTPC0yc2HB_XMgvX61rT5Qs5RaImqNwR6c40,240
|
|
|
356
356
|
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
357
357
|
gpu_extras/batch/__init__.pyi,sha256=R9oy8hroBj5qmDidgqH9dTOwLC5IuSmc_532wVPcmqY,962
|
|
358
358
|
gpu_extras/presets/__init__.pyi,sha256=E7QDFkK8Mv6EEzqgn3WREPJ1I-j6WIJQlR6mzYjewzY,1811
|
|
359
|
-
idprop/__init__.pyi,sha256=
|
|
359
|
+
idprop/__init__.pyi,sha256=yQ1thPRMTfDV3cSGSMMY3vXJueea6FZSMN6pSibkAHc,256
|
|
360
360
|
idprop/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
361
361
|
idprop/types/__init__.pyi,sha256=_w1PmQSa3nleEJwBmlrGkLeNVtri7YbHPETYe6WlS4s,1894
|
|
362
362
|
imbuf/__init__.pyi,sha256=FbCZylGRx6Z_UcQFYOcvwNGw_jbP4dgC5nKbTHWmcsg,1169
|
|
@@ -379,7 +379,7 @@ rna_keymap_ui/__init__.pyi,sha256=HjNXbu5w-94HLbvVQlEWXV3JVrgWpNz9jiJ3mzGMCNg,48
|
|
|
379
379
|
rna_keymap_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
380
380
|
rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
|
|
381
381
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
382
|
-
fake_bpy_module_latest-
|
|
383
|
-
fake_bpy_module_latest-
|
|
384
|
-
fake_bpy_module_latest-
|
|
385
|
-
fake_bpy_module_latest-
|
|
382
|
+
fake_bpy_module_latest-20260121.dist-info/METADATA,sha256=9Cp21_kzwZMQJpxtFY7xaIqeQO8mv7S8-rCSGipStsM,7739
|
|
383
|
+
fake_bpy_module_latest-20260121.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
384
|
+
fake_bpy_module_latest-20260121.dist-info/top_level.txt,sha256=LGIXuHDoaVTgSTMScq2hvwZRtozSAzYE7RqrFaRqT6o,553
|
|
385
|
+
fake_bpy_module_latest-20260121.dist-info/RECORD,,
|
idprop/__init__.pyi
CHANGED
{fake_bpy_module_latest-20260119.dist-info → fake_bpy_module_latest-20260121.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|