fake-bpy-module 20250416__py3-none-any.whl → 20250418__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/app/__init__.pyi CHANGED
@@ -98,7 +98,7 @@ build_linkflags: typing.Any
98
98
  """
99
99
 
100
100
  build_options: typing.Any
101
- """ Constant value bpy.app.build_options(bullet=True, codec_avi=False, codec_ffmpeg=True, codec_sndfile=True, compositor_cpu=True, cycles=True, cycles_osl=True, freestyle=True, image_cineon=True, image_dds=True, image_hdr=True, image_openexr=True, image_openjpeg=True, image_tiff=True, image_webp=True, input_ndof=True, audaspace=True, international=True, openal=True, opensubdiv=True, sdl=False, coreaudio=False, jack=False, pulseaudio=False, wasapi=False, libmv=True, mod_oceansim=True, mod_remesh=True, collada=True, io_wavefront_obj=True, io_ply=True, io_stl=True, io_gpencil=True, opencolorio=True, openmp=False, openvdb=True, alembic=True, usd=True, fluid=True, xr_openxr=True, potrace=True, pugixml=True, haru=True)
101
+ """ Constant value bpy.app.build_options(bullet=True, codec_avi=False, codec_ffmpeg=True, codec_sndfile=True, compositor_cpu=True, cycles=True, cycles_osl=True, freestyle=True, image_cineon=True, image_dds=True, image_hdr=True, image_openexr=True, image_openjpeg=True, image_tiff=True, image_webp=True, input_ndof=True, audaspace=True, international=True, openal=True, opensubdiv=True, sdl=False, coreaudio=False, jack=False, pulseaudio=False, wasapi=False, libmv=True, mod_oceansim=True, mod_remesh=True, collada=True, io_wavefront_obj=True, io_ply=True, io_stl=True, io_fbx=True, io_gpencil=True, opencolorio=True, openmp=False, openvdb=True, alembic=True, usd=True, fluid=True, xr_openxr=True, potrace=True, pugixml=True, haru=True)
102
102
  """
103
103
 
104
104
  build_platform: typing.Any
bpy/ops/wm/__init__.pyi CHANGED
@@ -1422,6 +1422,148 @@ def drop_import_file(
1422
1422
  :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
1423
1423
  """
1424
1424
 
1425
+ def fbx_import(
1426
+ execution_context: int | str | None = None,
1427
+ undo: bool | None = None,
1428
+ /,
1429
+ *,
1430
+ filepath: str = "",
1431
+ directory: str = "",
1432
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
1433
+ | None = None,
1434
+ check_existing: bool | None = False,
1435
+ filter_blender: bool | None = False,
1436
+ filter_backup: bool | None = False,
1437
+ filter_image: bool | None = False,
1438
+ filter_movie: bool | None = False,
1439
+ filter_python: bool | None = False,
1440
+ filter_font: bool | None = False,
1441
+ filter_sound: bool | None = False,
1442
+ filter_text: bool | None = False,
1443
+ filter_archive: bool | None = False,
1444
+ filter_btx: bool | None = False,
1445
+ filter_collada: bool | None = False,
1446
+ filter_alembic: bool | None = False,
1447
+ filter_usd: bool | None = False,
1448
+ filter_obj: bool | None = False,
1449
+ filter_volume: bool | None = False,
1450
+ filter_folder: bool | None = True,
1451
+ filter_blenlib: bool | None = False,
1452
+ filemode: int | None = 8,
1453
+ display_type: typing.Literal[
1454
+ "DEFAULT", "LIST_VERTICAL", "LIST_HORIZONTAL", "THUMBNAIL"
1455
+ ]
1456
+ | None = "DEFAULT",
1457
+ sort_method: str | None = "",
1458
+ global_scale: float | None = 1.0,
1459
+ import_colors: typing.Literal["NONE", "SRGB", "LINEAR"] | None = "SRGB",
1460
+ use_custom_normals: bool | None = True,
1461
+ use_custom_props: bool | None = True,
1462
+ use_custom_props_enum_as_string: bool | None = True,
1463
+ import_subdivision: bool | None = False,
1464
+ ignore_leaf_bones: bool | None = False,
1465
+ validate_meshes: bool | None = True,
1466
+ use_anim: bool | None = True,
1467
+ anim_offset: float | None = 1.0,
1468
+ filter_glob: str = "*.fbx",
1469
+ ):
1470
+ """Import FBX file into current scene
1471
+
1472
+ :type execution_context: int | str | None
1473
+ :type undo: bool | None
1474
+ :param filepath: File Path, Path to file
1475
+ :type filepath: str
1476
+ :param directory: Directory, Directory of the file
1477
+ :type directory: str
1478
+ :param files: Files
1479
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
1480
+ :param check_existing: Check Existing, Check and warn on overwriting existing files
1481
+ :type check_existing: bool | None
1482
+ :param filter_blender: Filter .blend files
1483
+ :type filter_blender: bool | None
1484
+ :param filter_backup: Filter .blend files
1485
+ :type filter_backup: bool | None
1486
+ :param filter_image: Filter image files
1487
+ :type filter_image: bool | None
1488
+ :param filter_movie: Filter movie files
1489
+ :type filter_movie: bool | None
1490
+ :param filter_python: Filter Python files
1491
+ :type filter_python: bool | None
1492
+ :param filter_font: Filter font files
1493
+ :type filter_font: bool | None
1494
+ :param filter_sound: Filter sound files
1495
+ :type filter_sound: bool | None
1496
+ :param filter_text: Filter text files
1497
+ :type filter_text: bool | None
1498
+ :param filter_archive: Filter archive files
1499
+ :type filter_archive: bool | None
1500
+ :param filter_btx: Filter btx files
1501
+ :type filter_btx: bool | None
1502
+ :param filter_collada: Filter COLLADA files
1503
+ :type filter_collada: bool | None
1504
+ :param filter_alembic: Filter Alembic files
1505
+ :type filter_alembic: bool | None
1506
+ :param filter_usd: Filter USD files
1507
+ :type filter_usd: bool | None
1508
+ :param filter_obj: Filter OBJ files
1509
+ :type filter_obj: bool | None
1510
+ :param filter_volume: Filter OpenVDB volume files
1511
+ :type filter_volume: bool | None
1512
+ :param filter_folder: Filter folders
1513
+ :type filter_folder: bool | None
1514
+ :param filter_blenlib: Filter Blender IDs
1515
+ :type filter_blenlib: bool | None
1516
+ :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
1517
+ :type filemode: int | None
1518
+ :param display_type: Display Type
1519
+
1520
+ DEFAULT
1521
+ Default -- Automatically determine display type for files.
1522
+
1523
+ LIST_VERTICAL
1524
+ Short List -- Display files as short list.
1525
+
1526
+ LIST_HORIZONTAL
1527
+ Long List -- Display files as a detailed list.
1528
+
1529
+ THUMBNAIL
1530
+ Thumbnails -- Display files as thumbnails.
1531
+ :type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
1532
+ :param sort_method: File sorting mode
1533
+ :type sort_method: str | None
1534
+ :param global_scale: Scale
1535
+ :type global_scale: float | None
1536
+ :param import_colors: Vertex Colors, Import vertex color attributes
1537
+
1538
+ NONE
1539
+ None -- Do not import color attributes.
1540
+
1541
+ SRGB
1542
+ sRGB -- Vertex colors in the file are in sRGB color space.
1543
+
1544
+ LINEAR
1545
+ Linear -- Vertex colors in the file are in linear color space.
1546
+ :type import_colors: typing.Literal['NONE','SRGB','LINEAR'] | None
1547
+ :param use_custom_normals: Custom Normals, Import custom normals, if available (otherwise Blender will compute them)
1548
+ :type use_custom_normals: bool | None
1549
+ :param use_custom_props: Custom Properties, Import user properties as custom properties
1550
+ :type use_custom_props: bool | None
1551
+ :param use_custom_props_enum_as_string: Enums As Strings, Store custom property enumeration values as strings
1552
+ :type use_custom_props_enum_as_string: bool | None
1553
+ :param import_subdivision: Subdivision Data, Import FBX subdivision information as subdivision surface modifiers
1554
+ :type import_subdivision: bool | None
1555
+ :param ignore_leaf_bones: Ignore Leaf Bones, Ignore the last bone at the end of each chain (used to mark the length of the previous bone)
1556
+ :type ignore_leaf_bones: bool | None
1557
+ :param validate_meshes: Validate Meshes, Ensure the data is valid (when disabled, data may be imported which causes crashes displaying or editing)
1558
+ :type validate_meshes: bool | None
1559
+ :param use_anim: Import Animation, Import FBX animation
1560
+ :type use_anim: bool | None
1561
+ :param anim_offset: Offset, Offset to apply to animation timestamps, in frames
1562
+ :type anim_offset: float | None
1563
+ :param filter_glob: Extension Filter
1564
+ :type filter_glob: str
1565
+ """
1566
+
1425
1567
  def grease_pencil_export_pdf(
1426
1568
  execution_context: int | str | None = None,
1427
1569
  undo: bool | None = None,
bpy/types/__init__.pyi CHANGED
@@ -9626,6 +9626,8 @@ Shared Enum Types <bpy_types_enum_items/index>
9626
9626
  * GeometryNodeInputImage.output_template
9627
9627
  * GeometryNodeInputIndex.input_template
9628
9628
  * GeometryNodeInputIndex.output_template
9629
+ * GeometryNodeInputInstanceBounds.input_template
9630
+ * GeometryNodeInputInstanceBounds.output_template
9629
9631
  * GeometryNodeInputInstanceRotation.input_template
9630
9632
  * GeometryNodeInputInstanceRotation.output_template
9631
9633
  * GeometryNodeInputInstanceScale.input_template
@@ -54248,6 +54250,102 @@ Menu.poll function.
54248
54250
  :columns: 2
54249
54251
 
54250
54252
 
54253
+ --------------------
54254
+
54255
+ * bpy_struct.id_data
54256
+ * Node.type
54257
+ * Node.location
54258
+ * Node.location_absolute
54259
+ * Node.width
54260
+ * Node.height
54261
+ * Node.dimensions
54262
+ * Node.name
54263
+ * Node.label
54264
+ * Node.inputs
54265
+ * Node.outputs
54266
+ * Node.internal_links
54267
+ * Node.parent
54268
+ * Node.warning_propagation
54269
+ * Node.use_custom_color
54270
+ * Node.color
54271
+ * Node.color_tag
54272
+ * Node.select
54273
+ * Node.show_options
54274
+ * Node.show_preview
54275
+ * Node.hide
54276
+ * Node.mute
54277
+ * Node.show_texture
54278
+ * Node.bl_idname
54279
+ * Node.bl_label
54280
+ * Node.bl_description
54281
+ * Node.bl_icon
54282
+ * Node.bl_static_type
54283
+ * Node.bl_width_default
54284
+ * Node.bl_width_min
54285
+ * Node.bl_width_max
54286
+ * Node.bl_height_default
54287
+ * Node.bl_height_min
54288
+ * Node.bl_height_max
54289
+
54290
+ :columns: 2
54291
+
54292
+
54293
+ --------------------
54294
+
54295
+ * bpy_struct.as_pointer
54296
+ * bpy_struct.driver_add
54297
+ * bpy_struct.driver_remove
54298
+ * bpy_struct.get
54299
+ * bpy_struct.id_properties_clear
54300
+ * bpy_struct.id_properties_ensure
54301
+ * bpy_struct.id_properties_ui
54302
+ * bpy_struct.is_property_hidden
54303
+ * bpy_struct.is_property_overridable_library
54304
+ * bpy_struct.is_property_readonly
54305
+ * bpy_struct.is_property_set
54306
+ * bpy_struct.items
54307
+ * bpy_struct.keyframe_delete
54308
+ * bpy_struct.keyframe_insert
54309
+ * bpy_struct.keys
54310
+ * bpy_struct.path_from_id
54311
+ * bpy_struct.path_resolve
54312
+ * bpy_struct.pop
54313
+ * bpy_struct.property_overridable_library_set
54314
+ * bpy_struct.property_unset
54315
+ * bpy_struct.rna_ancestors
54316
+ * bpy_struct.type_recast
54317
+ * bpy_struct.values
54318
+ * Node.socket_value_update
54319
+ * Node.is_registered_node_type
54320
+ * Node.poll
54321
+ * Node.poll_instance
54322
+ * Node.update
54323
+ * Node.insert_link
54324
+ * Node.init
54325
+ * Node.copy
54326
+ * Node.free
54327
+ * Node.draw_buttons
54328
+ * Node.draw_buttons_ext
54329
+ * Node.draw_label
54330
+ * Node.debug_zone_body_lazy_function_graph
54331
+ * Node.debug_zone_lazy_function_graph
54332
+ * Node.poll
54333
+ * Node.bl_rna_get_subclass
54334
+ * Node.bl_rna_get_subclass_py
54335
+ * NodeInternal.poll
54336
+ * NodeInternal.poll_instance
54337
+ * NodeInternal.update
54338
+ * NodeInternal.draw_buttons
54339
+ * NodeInternal.draw_buttons_ext
54340
+ * NodeInternal.bl_rna_get_subclass
54341
+ * NodeInternal.bl_rna_get_subclass_py
54342
+ * GeometryNode.poll
54343
+ * GeometryNode.bl_rna_get_subclass
54344
+ * GeometryNode.bl_rna_get_subclass_py
54345
+
54346
+ :columns: 2
54347
+
54348
+
54251
54349
  --------------------
54252
54350
 
54253
54351
  * bpy_struct.id_data
@@ -79114,7 +79212,7 @@ of the scene and only show nodes of the renderer they are designed for.
79114
79212
  * BlendDataNodeTrees.remove
79115
79213
  * CompositorNodeCustomGroup.node_tree
79116
79214
  * CompositorNodeGroup.node_tree
79117
- * EvaluateClosureNodeViewerPathElem.closure_tree
79215
+ * EvaluateClosureNodeViewerPathElem.source_node_tree
79118
79216
  * FreestyleLineStyle.node_tree
79119
79217
  * GeometryNodeCustomGroup.node_tree
79120
79218
  * GeometryNodeGroup.node_tree
@@ -131560,13 +131658,13 @@ class CompositorNodeDespeckle(CompositorNode, NodeInternal, Node, bpy_struct):
131560
131658
  """Smooth areas of an image in which noise is noticeable, while leaving complex areas untouched"""
131561
131659
 
131562
131660
  threshold: float
131563
- """ Threshold for detecting pixels to despeckle
131661
+ """ Threshold for detecting pixels to despeckle. (Deprecated: Use Color Threshold input instead.)
131564
131662
 
131565
131663
  :type: float
131566
131664
  """
131567
131665
 
131568
131666
  threshold_neighbor: float
131569
- """ Threshold for the number of neighbor pixels that must match
131667
+ """ Threshold for the number of neighbor pixels that must match. (Deprecated: Use Neighbor Threshold instead.)
131570
131668
 
131571
131669
  :type: float
131572
131670
  """
@@ -131692,13 +131790,13 @@ class CompositorNodeDilateErode(CompositorNode, NodeInternal, Node, bpy_struct):
131692
131790
  """Expand and shrink masks"""
131693
131791
 
131694
131792
  distance: int
131695
- """ Distance to grow/shrink (number of iterations)
131793
+ """ Distance to grow/shrink (number of iterations). (Deprecated: Use Size input instead.)
131696
131794
 
131697
131795
  :type: int
131698
131796
  """
131699
131797
 
131700
131798
  edge: float
131701
- """ Edge to inset
131799
+ """ Edge to inset. (Deprecated: Use Falloff Size input instead.)
131702
131800
 
131703
131801
  :type: float
131704
131802
  """
@@ -132812,7 +132910,7 @@ class CompositorNodeInpaint(CompositorNode, NodeInternal, Node, bpy_struct):
132812
132910
  """Extend borders of an image into transparent or masked regions"""
132813
132911
 
132814
132912
  distance: int
132815
- """ Distance to inpaint (number of iterations)
132913
+ """ Distance to inpaint (number of iterations). (Deprecated: Use Size input instead.)
132816
132914
 
132817
132915
  :type: int
132818
132916
  """
@@ -133136,25 +133234,25 @@ class CompositorNodeKuwahara(CompositorNode, NodeInternal, Node, bpy_struct):
133136
133234
  """Apply smoothing filter that preserves edges, for stylized and painterly effects"""
133137
133235
 
133138
133236
  eccentricity: float
133139
- """ Controls how directional the filter is. 0 means the filter is completely omnidirectional while 2 means it is maximally directed along the edges of the image.
133237
+ """ Controls how directional the filter is. 0 means the filter is completely omnidirectional while 2 means it is maximally directed along the edges of the image. (Deprecated: Use Eccentricity input instead.)
133140
133238
 
133141
133239
  :type: float
133142
133240
  """
133143
133241
 
133144
133242
  sharpness: float
133145
- """ Controls the sharpness of the filter. 0 means completely smooth while 1 means completely sharp.
133243
+ """ Controls the sharpness of the filter. 0 means completely smooth while 1 means completely sharp. (Deprecated: Use Sharpness input instead.)
133146
133244
 
133147
133245
  :type: float
133148
133246
  """
133149
133247
 
133150
133248
  uniformity: int
133151
- """ Controls the uniformity of the direction of the filter. Higher values produces more uniform directions.
133249
+ """ Controls the uniformity of the direction of the filter. Higher values produces more uniform directions. (Deprecated: Use Uniformity input instead.)
133152
133250
 
133153
133251
  :type: int
133154
133252
  """
133155
133253
 
133156
133254
  use_high_precision: bool
133157
- """ Uses a more precise but slower method. Use if the output contains undesirable noise.
133255
+ """ Uses a more precise but slower method. Use if the output contains undesirable noise. (Deprecated: Use High Precision input instead.)
133158
133256
 
133159
133257
  :type: bool
133160
133258
  """
@@ -134198,7 +134296,7 @@ class CompositorNodePixelate(CompositorNode, NodeInternal, Node, bpy_struct):
134198
134296
  """Reduce detail in an image by making individual pixels more prominent, for a blocky or mosaic-like appearance"""
134199
134297
 
134200
134298
  pixel_size: int
134201
- """ Pixel size of the output image
134299
+ """ Pixel size of the output image. (Deprecated: Use Size input instead.)
134202
134300
 
134203
134301
  :type: int
134204
134302
  """
@@ -135692,43 +135790,43 @@ class CompositorNodeTonemap(CompositorNode, NodeInternal, Node, bpy_struct):
135692
135790
  """Map one set of colors to another in order to approximate the appearance of high dynamic range"""
135693
135791
 
135694
135792
  adaptation: float
135695
- """ If 0, global; if 1, based on pixel intensity
135793
+ """ If 0, global; if 1, based on pixel intensity. (Deprecated: Use Light Adaptation input instead.)
135696
135794
 
135697
135795
  :type: float
135698
135796
  """
135699
135797
 
135700
135798
  contrast: float
135701
- """ Set to 0 to use estimate from input image
135799
+ """ Set to 0 to use estimate from input image. (Deprecated: Use Contrast input instead.)
135702
135800
 
135703
135801
  :type: float
135704
135802
  """
135705
135803
 
135706
135804
  correction: float
135707
- """ If 0, same for all channels; if 1, each independent
135805
+ """ If 0, same for all channels; if 1, each independent (Deprecated: Use Chromatic Adaptation input instead.)
135708
135806
 
135709
135807
  :type: float
135710
135808
  """
135711
135809
 
135712
135810
  gamma: float
135713
- """ If not used, set to 1
135811
+ """ If not used, set to 1. (Deprecated: Use Gamma input instead.)
135714
135812
 
135715
135813
  :type: float
135716
135814
  """
135717
135815
 
135718
135816
  intensity: float
135719
- """ If less than zero, darkens image; otherwise, makes it brighter
135817
+ """ If less than zero, darkens image; otherwise, makes it brighter. (Deprecated: Use Intensity input instead.)
135720
135818
 
135721
135819
  :type: float
135722
135820
  """
135723
135821
 
135724
135822
  key: float
135725
- """ The value the average luminance is mapped to
135823
+ """ The value the average luminance is mapped to. (Deprecated: Use Key input instead.)
135726
135824
 
135727
135825
  :type: float
135728
135826
  """
135729
135827
 
135730
135828
  offset: float
135731
- """ Normally always 1, but can be used as an extra control to alter the brightness curve
135829
+ """ Normally always 1, but can be used as an extra control to alter the brightness curve. (Deprecated: Use Balance input instead.)
135732
135830
 
135733
135831
  :type: float
135734
135832
  """
@@ -141846,19 +141944,19 @@ class EnumPropertyItem(bpy_struct):
141846
141944
  """
141847
141945
 
141848
141946
  class EvaluateClosureNodeViewerPathElem(ViewerPathElem, bpy_struct):
141849
- closure_output_node_id: int
141947
+ evaluate_node_id: int
141850
141948
  """
141851
141949
 
141852
141950
  :type: int
141853
141951
  """
141854
141952
 
141855
- closure_tree: NodeTree | None
141953
+ source_node_tree: NodeTree | None
141856
141954
  """
141857
141955
 
141858
141956
  :type: NodeTree | None
141859
141957
  """
141860
141958
 
141861
- evaluate_node_id: int
141959
+ source_output_node_id: int
141862
141960
  """
141863
141961
 
141864
141962
  :type: int
@@ -155700,6 +155798,59 @@ class GeometryNodeInputIndex(GeometryNode, NodeInternal, Node, bpy_struct):
155700
155798
  :rtype: typing.Any
155701
155799
  """
155702
155800
 
155801
+ class GeometryNodeInputInstanceBounds(GeometryNode, NodeInternal, Node, bpy_struct):
155802
+ """Calculate position bounds of each instance's geometry set"""
155803
+
155804
+ @classmethod
155805
+ def is_registered_node_type(cls) -> bool:
155806
+ """True if a registered node type
155807
+
155808
+ :return: Result
155809
+ :rtype: bool
155810
+ """
155811
+
155812
+ @classmethod
155813
+ def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
155814
+ """Input socket template
155815
+
155816
+ :param index: Index
155817
+ :type index: int | None
155818
+ :return: result
155819
+ :rtype: NodeInternalSocketTemplate
155820
+ """
155821
+
155822
+ @classmethod
155823
+ def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
155824
+ """Output socket template
155825
+
155826
+ :param index: Index
155827
+ :type index: int | None
155828
+ :return: result
155829
+ :rtype: NodeInternalSocketTemplate
155830
+ """
155831
+
155832
+ @classmethod
155833
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
155834
+ """
155835
+
155836
+ :param id: The RNA type identifier.
155837
+ :type id: str | None
155838
+ :param default:
155839
+ :return: The RNA type or default when not found.
155840
+ :rtype: Struct
155841
+ """
155842
+
155843
+ @classmethod
155844
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
155845
+ """
155846
+
155847
+ :param id: The RNA type identifier.
155848
+ :type id: str | None
155849
+ :param default:
155850
+ :return: The class or default when not found.
155851
+ :rtype: typing.Any
155852
+ """
155853
+
155703
155854
  class GeometryNodeInputInstanceRotation(GeometryNode, NodeInternal, Node, bpy_struct):
155704
155855
  """Retrieve the rotation of each instance in the geometry"""
155705
155856
 
@@ -193372,7 +193523,7 @@ class OperatorStrokeElement(PropertyGroup, bpy_struct):
193372
193523
  """
193373
193524
 
193374
193525
  y_tilt: float
193375
- """ Pen tilt from forward (-1.0) to back (+1.0)
193526
+ """ Pen tilt from backward (-1.0) to forward (+1.0)
193376
193527
 
193377
193528
  :type: float
193378
193529
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fake-bpy-module
3
- Version: 20250416
3
+ Version: 20250418
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
@@ -193,7 +193,7 @@ bpy/__init__.pyi,sha256=xqYSQA60ItjGIlcKmU1c67ClE1dzY3IA0l7SeDDfFFg,491
193
193
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
194
  bpy/_typing/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
195
195
  bpy/_typing/rna_enums/__init__.pyi,sha256=gzGoh2vHz9KGc5JnfmYr-6k5u7cn2mrFfAiy0y28Jio,140438
196
- bpy/app/__init__.pyi,sha256=hNqhcqWihQrYUx9_KDYW0IWG4XkSQj1LIdHqQo_H42o,8784
196
+ bpy/app/__init__.pyi,sha256=Xwk-SXH12MBT1wOpGXofw-vK_zhwxtNX41BV9q6WvQE,8797
197
197
  bpy/app/handlers/__init__.pyi,sha256=A9IS2EmBskYtGy2aMCX5vxAmTKB3YCuz1hUPZvah8S4,6938
198
198
  bpy/app/icons/__init__.pyi,sha256=IxxJA0uPQaBAogv-iZ2jEG-5f6i3X9M-gRjw8jJnL8A,955
199
199
  bpy/app/timers/__init__.pyi,sha256=z2vm07XNdNRr9Hi7N82BILPmiLXCzhaml-BrR1orBIo,2153
@@ -274,12 +274,12 @@ bpy/ops/uilist/__init__.pyi,sha256=CvereEDgN2sNfwlFl55E3sGeLTcaUcTCowuL1XVlclE,1
274
274
  bpy/ops/uv/__init__.pyi,sha256=nVZbRNLymiV8kXoRxWWNRSq72QkPBHTtwifjBxyVINY,45463
275
275
  bpy/ops/view2d/__init__.pyi,sha256=-ofLmKQJ0PqTP5b_mT2JHGo-Jf7aa3qeEf1nsmJQf50,7013
276
276
  bpy/ops/view3d/__init__.pyi,sha256=zjN4R4gMYbiteFoT7Hq2jy6JC9o5VmtOvRcq4og13s8,30895
277
- bpy/ops/wm/__init__.pyi,sha256=SUFra28kG7VC4M6Npd3pEk9pf2IZlIHReP1PhGHSL1M,221862
277
+ bpy/ops/wm/__init__.pyi,sha256=cmmx4mpSloZ3G0i3AewHHS77H8V8ejPV3LDfEcM6Nk0,228037
278
278
  bpy/ops/workspace/__init__.pyi,sha256=NdaJuwz3A-gStNuzp_OWR9DIj7oeSgLjn9SUEBLYuNo,2024
279
279
  bpy/ops/world/__init__.pyi,sha256=9OhY87-WRRLor-4GQJhDiDJG3M9W5s9yFo9x45Iiycs,628
280
280
  bpy/path/__init__.pyi,sha256=yGX45MUnn9fJYw32UWTsBQ646iN5DbbxfvnoDkREWvI,5537
281
281
  bpy/props/__init__.pyi,sha256=4SYl5qfPLRwe3zGyHowQy_i_mU-gjImdiqidFOHP6Tc,35264
282
- bpy/types/__init__.pyi,sha256=Upi0xLx5yw2oWgFR1yTa0GC_qxvo7iEqCp-S3ZbrITo,5586670
282
+ bpy/types/__init__.pyi,sha256=A4wjf98C6ap-ERMruXJ8J3O3iT-jTmSgk_gxBUV3LMw,5590981
283
283
  bpy/utils/__init__.pyi,sha256=NwKl40t0SfvM2Lce9VmXS9zh6T-ZE1JxleSh9te_d5E,15351
284
284
  bpy/utils/previews/__init__.pyi,sha256=Pji8UKqvI3AJTk5v3nCK92URlJfehxuoaaJW6n9L7XU,2342
285
285
  bpy/utils/units/__init__.pyi,sha256=dc9ZViPAqOap5ZsFfWoI0d6bHdri3pWWiVeRxAaZr-U,2672
@@ -328,7 +328,7 @@ gpu/texture/__init__.pyi,sha256=eXL-ZQU-gsMFo_Yv6ShF_YjBQ-yPDLRZno-T3P59nhE,668
328
328
  gpu/types/__init__.pyi,sha256=9wnXX8CdoIPTRMxWLEEiwmDi8Xj0-_lovIxRZ5BEKaM,29330
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=0z8rIEm4SFuC-rUGyoOMU0L6i_TsaW5nJN9cGR6u40Y,1306
331
+ gpu_extras/batch/__init__.pyi,sha256=P0KwOXu_4yBZvCupG7WJ08TQ6yvocr5NZLAhJK_qLtQ,1305
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-20250416.dist-info/METADATA,sha256=Z1H9kZKBs1_Yak791hwZVGn5tV8XWLxI-BDOu_iMI9Y,7429
365
- fake_bpy_module-20250416.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
366
- fake_bpy_module-20250416.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
- fake_bpy_module-20250416.dist-info/RECORD,,
364
+ fake_bpy_module-20250418.dist-info/METADATA,sha256=6T7_1Qc0YO1HSzoRe9x0BKWuQ2SWPdn7PDD4rTQsAQQ,7429
365
+ fake_bpy_module-20250418.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
366
+ fake_bpy_module-20250418.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
+ fake_bpy_module-20250418.dist-info/RECORD,,
@@ -2,6 +2,7 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import numpy.typing as npt
5
+ import bgl
5
6
  import gpu.types
6
7
 
7
8
  def batch_for_shader(
@@ -9,7 +10,7 @@ def batch_for_shader(
9
10
  type: str,
10
11
  content: dict[
11
12
  str,
12
- gpu.types.Buffer
13
+ bgl.Buffer
13
14
  | collections.abc.Sequence[float]
14
15
  | collections.abc.Sequence[int]
15
16
  | collections.abc.Sequence[collections.abc.Sequence[float]]
@@ -26,7 +27,7 @@ def batch_for_shader(
26
27
  :type type: str
27
28
  :param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
28
29
  For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
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]]]
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]]]
30
31
  :return: compatible batch
31
32
  :rtype: gpu.types.GPUBatch
32
33
  """