fake-bpy-module 20250222__py3-none-any.whl → 20250224__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/types/__init__.pyi +25 -0
- {fake_bpy_module-20250222.dist-info → fake_bpy_module-20250224.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250222.dist-info → fake_bpy_module-20250224.dist-info}/RECORD +6 -6
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20250222.dist-info → fake_bpy_module-20250224.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250222.dist-info → fake_bpy_module-20250224.dist-info}/top_level.txt +0 -0
bpy/types/__init__.pyi
CHANGED
|
@@ -38207,7 +38207,10 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
38207
38207
|
* KeyConfig.keymaps
|
|
38208
38208
|
* KeyConfigurations.find_item_from_operator
|
|
38209
38209
|
* KeyMap.active
|
|
38210
|
+
* KeyMapItems.find_match
|
|
38210
38211
|
* KeyMaps.find
|
|
38212
|
+
* KeyMaps.find_match
|
|
38213
|
+
* KeyMaps.find_match
|
|
38211
38214
|
* KeyMaps.find_modal
|
|
38212
38215
|
* KeyMaps.new
|
|
38213
38216
|
* KeyMaps.remove
|
|
@@ -91492,6 +91495,8 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
91492
91495
|
* KeyMap.restore_item_to_default
|
|
91493
91496
|
* KeyMapItem.compare
|
|
91494
91497
|
* KeyMapItems.find_from_operator
|
|
91498
|
+
* KeyMapItems.find_match
|
|
91499
|
+
* KeyMapItems.find_match
|
|
91495
91500
|
* KeyMapItems.from_id
|
|
91496
91501
|
* KeyMapItems.match_event
|
|
91497
91502
|
* KeyMapItems.new
|
|
@@ -111284,6 +111289,17 @@ class KeyMapItems(bpy_prop_collection[KeyMapItem], bpy_struct):
|
|
|
111284
111289
|
:rtype: KeyMapItem
|
|
111285
111290
|
"""
|
|
111286
111291
|
|
|
111292
|
+
def find_match(self, keymap: KeyMap | None, item: KeyMapItem | None) -> KeyMapItem:
|
|
111293
|
+
"""find_match
|
|
111294
|
+
|
|
111295
|
+
:param keymap: The matching keymap
|
|
111296
|
+
:type keymap: KeyMap | None
|
|
111297
|
+
:param item: The matching keymap item
|
|
111298
|
+
:type item: KeyMapItem | None
|
|
111299
|
+
:return: The keymap item from this keymap which matches the keymap item from the arguments passed in
|
|
111300
|
+
:rtype: KeyMapItem
|
|
111301
|
+
"""
|
|
111302
|
+
|
|
111287
111303
|
def match_event(self, event: Event | None) -> KeyMapItem:
|
|
111288
111304
|
"""match_event
|
|
111289
111305
|
|
|
@@ -111372,6 +111388,15 @@ class KeyMaps(bpy_prop_collection[KeyMap], bpy_struct):
|
|
|
111372
111388
|
:rtype: KeyMap
|
|
111373
111389
|
"""
|
|
111374
111390
|
|
|
111391
|
+
def find_match(self, keymap: KeyMap | None) -> KeyMap:
|
|
111392
|
+
"""find_match
|
|
111393
|
+
|
|
111394
|
+
:param keymap: Key Map, The key map for comparison
|
|
111395
|
+
:type keymap: KeyMap | None
|
|
111396
|
+
:return: Key Map, Corresponding key map
|
|
111397
|
+
:rtype: KeyMap
|
|
111398
|
+
"""
|
|
111399
|
+
|
|
111375
111400
|
def find_modal(self, name: str) -> KeyMap:
|
|
111376
111401
|
"""find_modal
|
|
111377
111402
|
|
|
@@ -279,7 +279,7 @@ bpy/ops/workspace/__init__.pyi,sha256=hXSSQZl7IwVFrxMveYrlSKGWY7BjrsV-cKagPzhuT0
|
|
|
279
279
|
bpy/ops/world/__init__.pyi,sha256=9OhY87-WRRLor-4GQJhDiDJG3M9W5s9yFo9x45Iiycs,628
|
|
280
280
|
bpy/path/__init__.pyi,sha256=p309InrX9QRoqh0vMXKzNHQIYef9A51c9J4LYU5THxQ,5511
|
|
281
281
|
bpy/props/__init__.pyi,sha256=QR_11bCyEyK-Q85yZhNDW6BsqHVq73C9IL_qShksqQU,35264
|
|
282
|
-
bpy/types/__init__.pyi,sha256=
|
|
282
|
+
bpy/types/__init__.pyi,sha256=AVr0-92RRN4gha_BanMU7NWS9WYkrcOxfIK7My2QFPA,5476897
|
|
283
283
|
bpy/utils/__init__.pyi,sha256=sTpVkInNYv883pb3TyZzGLQbn468mQHzz_sUG9UMp6M,14936
|
|
284
284
|
bpy/utils/previews/__init__.pyi,sha256=RF4ii5Rs-FetM_ZmC0GCpMSiin5evppVj62-CmKK76s,2307
|
|
285
285
|
bpy/utils/units/__init__.pyi,sha256=dc9ZViPAqOap5ZsFfWoI0d6bHdri3pWWiVeRxAaZr-U,2672
|
|
@@ -314,7 +314,7 @@ freestyle/functions/__init__.pyi,sha256=RGdlJWbBctqKBR3p81MsXBk9OWdTuvEoOfBXvxjf
|
|
|
314
314
|
freestyle/predicates/__init__.pyi,sha256=Liq_1krkT25RfeNPeEgvKWkLnWtHCuO9-7vXX3lE71E,13488
|
|
315
315
|
freestyle/shaders/__init__.pyi,sha256=imuo4jXkwaN4dazDARvErEGdn9XuMGlWIKGpnqd3Po0,24041
|
|
316
316
|
freestyle/types/__init__.pyi,sha256=zCVqLakrYPiSTlYVHLg-455C9aPCEo-eeO-0A1fYFYs,100227
|
|
317
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
317
|
+
freestyle/utils/__init__.pyi,sha256=k2JFp4C3DUpnkVgR1B32ZDux08pAcsceSuWBnIEHD9A,5135
|
|
318
318
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=YvDLJXMxKbbqBS0so4MnfuSN1g4wNAFOXbpW7_g4AR0,3472
|
|
319
319
|
gpu/__init__.pyi,sha256=80Udrv8AAvblVeWgcU709t4PmsX3ShvU2TaWj7qv0uk,8026
|
|
320
320
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=o3yE2C_BSi2O_ZJM_Jao06i6seWMRNQcZaI6keKjpFE,1308
|
|
|
361
361
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
362
|
rna_xml/__init__.pyi,sha256=EBP-inpL9KRsjGftcoza9_G_Do5UjXw62eAvuEMoaO0,604
|
|
363
363
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-
|
|
366
|
-
fake_bpy_module-
|
|
367
|
-
fake_bpy_module-
|
|
364
|
+
fake_bpy_module-20250224.dist-info/METADATA,sha256=SreltrNl2gNZjm-4Vev-XhmdX54iOtsIgUODUA01dBo,7429
|
|
365
|
+
fake_bpy_module-20250224.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
366
|
+
fake_bpy_module-20250224.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
367
|
+
fake_bpy_module-20250224.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -125,7 +125,7 @@ def material_from_fedge(fe):
|
|
|
125
125
|
"""get the diffuse RGBA color from an FEdge"""
|
|
126
126
|
|
|
127
127
|
def normal_at_I0D(it): ...
|
|
128
|
-
def pairwise(iterable, types={
|
|
128
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
|
|
129
129
|
"""Yields a tuple containing the previous and current object"""
|
|
130
130
|
|
|
131
131
|
def rgb_to_bw(r, g, b):
|
|
File without changes
|
|
File without changes
|