fake-bpy-module 20250223__py3-none-any.whl → 20250225__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.

@@ -148,6 +148,7 @@ def file_browse(
148
148
  ]
149
149
  | None = "DEFAULT",
150
150
  sort_method: str | None = "",
151
+ filter_glob: str = "",
151
152
  ):
152
153
  """Open a file browser, hold Shift to open the file, Alt to browse containing directory
153
154
 
@@ -213,6 +214,8 @@ def file_browse(
213
214
  :type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
214
215
  :param sort_method: File sorting mode
215
216
  :type sort_method: str | None
217
+ :param filter_glob: Glob Filter, Custom filter
218
+ :type filter_glob: str
216
219
  """
217
220
 
218
221
  def start_filter(execution_context: int | str | None = None, undo: bool | None = None):
@@ -437,6 +437,13 @@ def snap_curves_to_surface(
437
437
  :type attach_mode: typing.Literal['NEAREST','DEFORM'] | None
438
438
  """
439
439
 
440
+ def split(execution_context: int | str | None = None, undo: bool | None = None):
441
+ """Split selected points
442
+
443
+ :type execution_context: int | str | None
444
+ :type undo: bool | None
445
+ """
446
+
440
447
  def subdivide(
441
448
  execution_context: int | str | None = None,
442
449
  undo: bool | None = None,
@@ -1458,14 +1458,17 @@ def set_uniform_opacity(
1458
1458
  undo: bool | None = None,
1459
1459
  /,
1460
1460
  *,
1461
- opacity: float | None = 1.0,
1461
+ opacity_stroke: float | None = 1.0,
1462
+ opacity_fill: float | None = 0.5,
1462
1463
  ):
1463
1464
  """Set all stroke points to same opacity
1464
1465
 
1465
1466
  :type execution_context: int | str | None
1466
1467
  :type undo: bool | None
1467
- :param opacity: Opacity
1468
- :type opacity: float | None
1468
+ :param opacity_stroke: Stroke Opacity
1469
+ :type opacity_stroke: float | None
1470
+ :param opacity_fill: Fill Opacity
1471
+ :type opacity_fill: float | None
1469
1472
  """
1470
1473
 
1471
1474
  def set_uniform_thickness(
bpy/ops/node/__init__.pyi CHANGED
@@ -253,6 +253,25 @@ def add_group_asset(
253
253
  :type relative_asset_identifier: str
254
254
  """
255
255
 
256
+ def add_import_node(
257
+ execution_context: int | str | None = None,
258
+ undo: bool | None = None,
259
+ /,
260
+ *,
261
+ directory: str = "",
262
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
263
+ | None = None,
264
+ ):
265
+ """Add an import node to the node tree
266
+
267
+ :type execution_context: int | str | None
268
+ :type undo: bool | None
269
+ :param directory: Directory, Directory of the file
270
+ :type directory: str
271
+ :param files: Files
272
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
273
+ """
274
+
256
275
  def add_mask(
257
276
  execution_context: int | str | None = None,
258
277
  undo: bool | None = None,
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
 
@@ -194142,7 +194167,7 @@ class PreferencesExperimental(bpy_struct):
194142
194167
  :type: bool
194143
194168
  """
194144
194169
 
194145
- use_new_point_cloud_type: bool
194170
+ use_new_pointcloud_type: bool
194146
194171
  """ Enable the new point cloud type in the ui
194147
194172
 
194148
194173
  :type: bool
@@ -232324,10 +232349,10 @@ class WindowManager(ID, bpy_struct):
232324
232349
  :type: bpy_prop_collection[Operator]
232325
232350
  """
232326
232351
 
232327
- poselib_previous_action: Action
232352
+ poselib_previous_action: Action | None
232328
232353
  """
232329
232354
 
232330
- :type: Action
232355
+ :type: Action | None
232331
232356
  """
232332
232357
 
232333
232358
  preset_name: str | typing.Any
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: fake-bpy-module
3
- Version: 20250223
3
+ Version: 20250225
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -206,7 +206,7 @@ bpy/ops/armature/__init__.pyi,sha256=rljv88OGIvV0_Wd3TeRRBghGOvZikghfc5q4HOehvlg
206
206
  bpy/ops/asset/__init__.pyi,sha256=nBGMUdpYiduhM3kkA3t87WzO4fT3c4DPEMEjAR5eUvs,8721
207
207
  bpy/ops/boid/__init__.pyi,sha256=kcmRuTJK7CNmzW-xm3kUF3nD4mmksH_LOUW9ag_AEzA,1990
208
208
  bpy/ops/brush/__init__.pyi,sha256=zEJd-T_V66vjP4hGAAq38ITYQSOCSGIsXH-tv977XWA,9803
209
- bpy/ops/buttons/__init__.pyi,sha256=9YOt22dNNw53JM6yIcnYQ0xki3PsSzwV-GLR1WMXPUE,8945
209
+ bpy/ops/buttons/__init__.pyi,sha256=3O2yKte61LV-xffPhGGj1D_zeNxmezFdZXCUUaayx5k,9058
210
210
  bpy/ops/cachefile/__init__.pyi,sha256=N4xCdIqVGiUK0OVnihHzhobFrqWZlKyfPEWB7WM621A,8901
211
211
  bpy/ops/camera/__init__.pyi,sha256=hCFLd_S3bQZpZxqhXPFU3a8X8XXbbxfuz8jjL4k_fgg,1411
212
212
  bpy/ops/clip/__init__.pyi,sha256=A2q9v6faPo5M9QlMkdlrtrAy_TzH1kiW8buuEuWj07U,44842
@@ -215,7 +215,7 @@ bpy/ops/collection/__init__.pyi,sha256=15Q_xX5yGRf9u0KW-Zv7-JbTsBPdowz5ln95uYM_b
215
215
  bpy/ops/console/__init__.pyi,sha256=0TX-kLJpO7RdKti4gUW6ot54bJA-zQeMa3IvtKW4ORQ,7331
216
216
  bpy/ops/constraint/__init__.pyi,sha256=uYKj3Dnt1BILHFMV9UfYwB_8VwPTaXboEBWgdBXiHUs,11865
217
217
  bpy/ops/curve/__init__.pyi,sha256=UM8JZOLQQBzzmUNF4-bSYZ_RjZ9yo07Ohtfkayneh7o,28612
218
- bpy/ops/curves/__init__.pyi,sha256=88OfxJboP0WoXANdnpnqT53_MyO3I9Yqpx3Qm9oDJlk,15321
218
+ bpy/ops/curves/__init__.pyi,sha256=uIjBzv1a-d31I9odvjWhJNyOoTxHBbrGem5oOToTKpc,15515
219
219
  bpy/ops/cycles/__init__.pyi,sha256=wpr-6dy_yQc7R4mF-e3sPK67nR2X6hMnbLevI6xHozk,1766
220
220
  bpy/ops/dpaint/__init__.pyi,sha256=9c4iWq0b5rd_bwy132hZ0puT1b6MYsQFD9Gsuy9IFR8,1582
221
221
  bpy/ops/ed/__init__.pyi,sha256=ToAbK51M0V5uEjpG4ENeXLfzqqzt0RBPpqD7-cP_ddI,7129
@@ -229,7 +229,7 @@ bpy/ops/geometry/__init__.pyi,sha256=fAv7_BGMFQa5vixcm6tyKguDi_sbfnPSLK8Wi-Sht8s
229
229
  bpy/ops/gizmogroup/__init__.pyi,sha256=FJqZ3Cfe4EuuTxNCDZwbZtPxRuppxibrEFZVJiWsFqU,1289
230
230
  bpy/ops/gpencil/__init__.pyi,sha256=vNZ7b6FETSovKJVYC9yN8wIBOh9F4d9DSurNeBdUduk,4859
231
231
  bpy/ops/graph/__init__.pyi,sha256=N6A_44dYq5ShZyWZeT12T-kFibqYaMNHvkuBhO5XdTY,41730
232
- bpy/ops/grease_pencil/__init__.pyi,sha256=q6kqYP5BCKXqoR-KQ5Wm5QfbD-cbQ7xGB5Eob780UQk,62568
232
+ bpy/ops/grease_pencil/__init__.pyi,sha256=dZ4_KZ-eR-isDy5TYXWQomfnzkATAYgVNbubU_vTlmE,62709
233
233
  bpy/ops/image/__init__.pyi,sha256=_GQrFzIGhO_7spKQMxKgmu9YMDkgQoV1YftctLp8Hs4,52457
234
234
  bpy/ops/import_anim/__init__.pyi,sha256=ZyT-zjTRWvhOapP9D8G_eHO09JJNlT-ofF1SCC0rrOk,3073
235
235
  bpy/ops/import_curve/__init__.pyi,sha256=JWBsLwsuws3lo9fwleS12_TuINYEKfL8xzJ82AFXIt0,723
@@ -242,7 +242,7 @@ bpy/ops/material/__init__.pyi,sha256=4Xm8cTXZ8L1NkYiLaYrwWA0p_paciXXBCk9MNnxsgJg
242
242
  bpy/ops/mball/__init__.pyi,sha256=vKET4S-NZrDAf4r1XUXjyyW8Ry5bdna9EeQlV3HMo5Y,4182
243
243
  bpy/ops/mesh/__init__.pyi,sha256=JxF40_1aTup030iKyTdKOMajm67wsEOKcmKc4XcQCdQ,132623
244
244
  bpy/ops/nla/__init__.pyi,sha256=6C8Gm7ZOBATflqUymRCXljSEKN_oE1MvqVMpR05eVIM,18172
245
- bpy/ops/node/__init__.pyi,sha256=_Qx9HOSWzaSoV2C42CwA9yv05DenqP5sxEKfLaXwkwo,53623
245
+ bpy/ops/node/__init__.pyi,sha256=kx6oK5BRh-rPAdh9XpG_za5Z6nqvQO8-o_t5PFFxVqM,54179
246
246
  bpy/ops/object/__init__.pyi,sha256=wL6erGN95PlURkHhvvdZoIrpJEgt-Q2SwgPHgki0lB8,168048
247
247
  bpy/ops/outliner/__init__.pyi,sha256=MnOyASVckw3cVMUICszbNrPEfchfFB1Ny2drSnrScvI,27770
248
248
  bpy/ops/paint/__init__.pyi,sha256=U-uMYTkGLmcnkI9RsWRnsbqDLJuLaWPk-5ue5rnoQwg,37692
@@ -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=hRX6m1-AAhq3vm5SOnYtKt2XT0xehL6aIKtFUrMA8dY,5476096
282
+ bpy/types/__init__.pyi,sha256=YwSVSZ5Y2vlw5_0OWq76LthASp1o3WMaapqXwxTcJbE,5476910
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=ub0HsAFKN7jMbNu3fuP9OpaOSHywBpSckuXSexz0Bos,5135
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
@@ -328,7 +328,7 @@ gpu/texture/__init__.pyi,sha256=eXL-ZQU-gsMFo_Yv6ShF_YjBQ-yPDLRZno-T3P59nhE,668
328
328
  gpu/types/__init__.pyi,sha256=wv4qnmZ16QT1VUYeF2EMYiRPI_xIa2yCqrzrA_Ukac4,27950
329
329
  gpu_extras/__init__.pyi,sha256=XscwC-5DTPC0yc2HB_XMgvX61rT5Qs5RaImqNwR6c40,240
330
330
  gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
331
- gpu_extras/batch/__init__.pyi,sha256=P0KwOXu_4yBZvCupG7WJ08TQ6yvocr5NZLAhJK_qLtQ,1305
331
+ gpu_extras/batch/__init__.pyi,sha256=0z8rIEm4SFuC-rUGyoOMU0L6i_TsaW5nJN9cGR6u40Y,1306
332
332
  gpu_extras/presets/__init__.pyi,sha256=9MrG1r0CUOxBYWyp_vZSYxs47oElIxca1uMyuFPLKdw,1674
333
333
  graphviz_export/__init__.pyi,sha256=_breciGLRC6qTh-HOor-Ufn_fI5HXnoQego6mmvTAIQ,242
334
334
  graphviz_export/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-20250223.dist-info/METADATA,sha256=_NfS-0jQQAI-qw_6D40ZchkMRDOaMFhOzYovD2gNleU,7429
365
- fake_bpy_module-20250223.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
366
- fake_bpy_module-20250223.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
- fake_bpy_module-20250223.dist-info/RECORD,,
364
+ fake_bpy_module-20250225.dist-info/METADATA,sha256=wYqq1qDkv_9CCaNiSxCBnhR2i2yOuP5cZQuJOd0z5ts,7429
365
+ fake_bpy_module-20250225.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
366
+ fake_bpy_module-20250225.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
+ fake_bpy_module-20250225.dist-info/RECORD,,
@@ -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={Stroke, StrokeVertexIterator}):
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):
@@ -2,7 +2,6 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import numpy.typing as npt
5
- import bgl
6
5
  import gpu.types
7
6
 
8
7
  def batch_for_shader(
@@ -10,7 +9,7 @@ def batch_for_shader(
10
9
  type: str,
11
10
  content: dict[
12
11
  str,
13
- bgl.Buffer
12
+ gpu.types.Buffer
14
13
  | collections.abc.Sequence[float]
15
14
  | collections.abc.Sequence[int]
16
15
  | collections.abc.Sequence[collections.abc.Sequence[float]]
@@ -27,7 +26,7 @@ def batch_for_shader(
27
26
  :type type: str
28
27
  :param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
29
28
  For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
30
- :type content: dict[str, bgl.Buffer | collections.abc.Sequence[float] | collections.abc.Sequence[int] | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[collections.abc.Sequence[int]]]
29
+ :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]]]
31
30
  :return: compatible batch
32
31
  :rtype: gpu.types.GPUBatch
33
32
  """