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

@@ -46,6 +46,8 @@ class GreasePencilStrokePoint(AttributeGetterSetter):
46
46
  radius: typing.Any
47
47
  rotation: typing.Any
48
48
  select: typing.Any
49
+ select_handle_left: typing.Any
50
+ select_handle_right: typing.Any
49
51
  vertex_color: typing.Any
50
52
 
51
53
  class GreasePencilStrokePointSlice(SliceHelper):
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
@@ -128984,19 +129082,19 @@ class CompositorNodeAntiAliasing(CompositorNode, NodeInternal, Node, bpy_struct)
128984
129082
  """Smooth away jagged edges"""
128985
129083
 
128986
129084
  contrast_limit: float
128987
- """ How much to eliminate spurious edges to avoid artifacts (the larger value makes less active; the value 2.0, for example, means discard a detected edge if there is a neighboring edge that has 2.0 times bigger contrast than the current one)
129085
+ """ How much to eliminate spurious edges to avoid artifacts (the larger value makes less active; the value 2.0, for example, means discard a detected edge if there is a neighboring edge that has 2.0 times bigger contrast than the current one). (Deprecated: Use Contrast Limit input instead.)
128988
129086
 
128989
129087
  :type: float
128990
129088
  """
128991
129089
 
128992
129090
  corner_rounding: float
128993
- """ How much sharp corners will be rounded
129091
+ """ How much sharp corners will be rounded. (Deprecated: Use Corner Rounding input instead.)
128994
129092
 
128995
129093
  :type: float
128996
129094
  """
128997
129095
 
128998
129096
  threshold: float
128999
- """ Threshold to detect edges (smaller threshold makes more sensitive detection)
129097
+ """ Threshold to detect edges (smaller threshold makes more sensitive detection). (Deprecated: Use Threshold input instead.)
129000
129098
 
129001
129099
  :type: float
129002
129100
  """
@@ -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
  """
@@ -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
  """
@@ -136157,31 +136255,31 @@ class CompositorNodeVecBlur(CompositorNode, NodeInternal, Node, bpy_struct):
136157
136255
  """Uses the vector speed render pass to blur the image pixels in 2D"""
136158
136256
 
136159
136257
  factor: float
136160
- """ Scaling factor for motion vectors (actually, 'shutter speed', in frames)
136258
+ """ Scaling factor for motion vectors (actually, 'shutter speed', in frames). (Deprecated: Use Shutter input instead.)
136161
136259
 
136162
136260
  :type: float
136163
136261
  """
136164
136262
 
136165
136263
  samples: int
136166
- """
136264
+ """ (Deprecated: Use Samples input instead.)
136167
136265
 
136168
136266
  :type: int
136169
136267
  """
136170
136268
 
136171
136269
  speed_max: int
136172
- """ Maximum speed, or zero for none
136270
+ """ Maximum speed, or zero for none. (Deprecated.)
136173
136271
 
136174
136272
  :type: int
136175
136273
  """
136176
136274
 
136177
136275
  speed_min: int
136178
- """ Minimum speed for a pixel to be blurred (used to separate background from foreground)
136276
+ """ Minimum speed for a pixel to be blurred (used to separate background from foreground). (Deprecated.)
136179
136277
 
136180
136278
  :type: int
136181
136279
  """
136182
136280
 
136183
136281
  use_curved: bool
136184
- """ Interpolate between frames in a Bézier curve, rather than linearly
136282
+ """ Interpolate between frames in a Bézier curve, rather than linearly. (Deprecated.)
136185
136283
 
136186
136284
  :type: bool
136187
136285
  """
@@ -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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fake-bpy-module
3
- Version: 20250417
3
+ Version: 20250419
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
@@ -8,7 +8,7 @@ _bpy_internal/extensions/stale_file_manager/__init__.pyi,sha256=wDLQ3qtwFBvigYQl
8
8
  _bpy_internal/extensions/wheel_manager/__init__.pyi,sha256=CoBeo0vQHIbfXLXGy22AboVQdQLlinbjslYyMwzqwRo,950
9
9
  _bpy_internal/freedesktop/__init__.pyi,sha256=s4-ornIqrszouHk5ef-YmPwXcpZ-X9swOPYLKTQoziE,798
10
10
  _bpy_internal/grease_pencil/__init__.pyi,sha256=4YIHrnLvkVHJW3S7fz8xYyAakqsDCnxvaQfuZiUUvFc,120
11
- _bpy_internal/grease_pencil/stroke/__init__.pyi,sha256=MDU6v8SlwJZTS1yoRHqbuIm6BbnasuKPvaCiPCdgC8Q,1820
11
+ _bpy_internal/grease_pencil/stroke/__init__.pyi,sha256=61T3_Lp6Tm7hXebpRODywfX4E6dK4isd1ZZuFZuYQlU,1891
12
12
  _bpy_internal/system_info/__init__.pyi,sha256=U0qDEDvXTA0KHyhqeNNd4eLbsn3quigyg1qJD-OeV4E,264
13
13
  _bpy_internal/system_info/text_generate_runtime/__init__.pyi,sha256=_B2cmnrQuKL9wD53IE7KZPWs2noF7Cz2ZeYsKaMsiXo,113
14
14
  _bpy_internal/system_info/url_prefill_runtime/__init__.pyi,sha256=e6SNdD7wUyUmxiITc_urISKGgVwIk2uD-aN9C7KJ_E8,136
@@ -279,7 +279,7 @@ bpy/ops/workspace/__init__.pyi,sha256=NdaJuwz3A-gStNuzp_OWR9DIj7oeSgLjn9SUEBLYuN
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=NCdsZsjunCuIxo8ei2mvKKFmtD3E2nzSp6D4FZ7yJJw,5587157
282
+ bpy/types/__init__.pyi,sha256=kcsu52lS0WpL6f3tkSAAtis1r1DuLhSn1F1JELy8iTQ,5591251
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
@@ -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=k2JFp4C3DUpnkVgR1B32ZDux08pAcsceSuWBnIEHD9A,5135
317
+ freestyle/utils/__init__.pyi,sha256=ub0HsAFKN7jMbNu3fuP9OpaOSHywBpSckuXSexz0Bos,5135
318
318
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=YvDLJXMxKbbqBS0so4MnfuSN1g4wNAFOXbpW7_g4AR0,3472
319
319
  gpu/__init__.pyi,sha256=zVeZ4mRNYZyEgbp-j6uZ6ZQTpWFGh7j3R8UT9JOZ_0w,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=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=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-20250417.dist-info/METADATA,sha256=LsJ4zMr60O9_O85ahYPqjruVwfZcTG1TEpce4gow6NM,7429
365
- fake_bpy_module-20250417.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
366
- fake_bpy_module-20250417.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
- fake_bpy_module-20250417.dist-info/RECORD,,
364
+ fake_bpy_module-20250419.dist-info/METADATA,sha256=X4DGFQqWE5ttiHcHL1ujDhIBVSk-satDE-JpWd8QVCw,7429
365
+ fake_bpy_module-20250419.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
366
+ fake_bpy_module-20250419.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
+ fake_bpy_module-20250419.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={StrokeVertexIterator, Stroke}):
128
+ def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
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
  """