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

@@ -20,11 +20,11 @@ def fbx(
20
20
  use_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = True,
21
21
  bake_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
22
22
  object_types: typing.Optional[typing.Any] = {
23
- '"ARMATURE"',
24
- '"CAMERA"',
25
- '"MESH"',
26
23
  '"LIGHT"',
27
24
  '"EMPTY"',
25
+ '"MESH"',
26
+ '"CAMERA"',
27
+ '"ARMATURE"',
28
28
  '"OTHER"',
29
29
  },
30
30
  use_mesh_modifiers: typing.Optional[typing.Union[bool, typing.Any]] = True,
bpy/ops/nla/__init__.pyi CHANGED
@@ -102,11 +102,11 @@ def bake(
102
102
  clean_curves: typing.Optional[typing.Union[bool, typing.Any]] = False,
103
103
  bake_types: typing.Optional[typing.Any] = {'"POSE"'},
104
104
  channel_types: typing.Optional[typing.Any] = {
105
+ '"LOCATION"',
106
+ '"SCALE"',
107
+ '"BBONE"',
105
108
  '"ROTATION"',
106
109
  '"PROPS"',
107
- '"BBONE"',
108
- '"SCALE"',
109
- '"LOCATION"',
110
110
  },
111
111
  ):
112
112
  """Bake all selected objects location/scale/rotation animation to an action
@@ -1581,6 +1581,10 @@ def grease_pencil_add(
1581
1581
  undo=None,
1582
1582
  *,
1583
1583
  type: typing.Optional[typing.Any] = "EMPTY",
1584
+ use_in_front: typing.Optional[typing.Union[bool, typing.Any]] = True,
1585
+ stroke_depth_offset: typing.Optional[typing.Any] = 0.05,
1586
+ use_lights: typing.Optional[typing.Union[bool, typing.Any]] = False,
1587
+ stroke_depth_order: typing.Optional[typing.Any] = "3D",
1584
1588
  radius: typing.Optional[typing.Any] = 1.0,
1585
1589
  align: typing.Optional[typing.Any] = "WORLD",
1586
1590
  location: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
@@ -1594,6 +1598,20 @@ def grease_pencil_add(
1594
1598
  :type undo: typing.Optional[bool]
1595
1599
  :param type: Type
1596
1600
  :type type: typing.Optional[typing.Any]
1601
+ :param use_in_front: Show In Front, Show line art grease pencil in front of everything
1602
+ :type use_in_front: typing.Optional[typing.Union[bool, typing.Any]]
1603
+ :param stroke_depth_offset: Stroke Offset, Stroke offset for the line art modifier
1604
+ :type stroke_depth_offset: typing.Optional[typing.Any]
1605
+ :param use_lights: Use Lights, Use lights for this grease pencil object
1606
+ :type use_lights: typing.Optional[typing.Union[bool, typing.Any]]
1607
+ :param stroke_depth_order: Stroke Depth Order, Defines how the strokes are ordered in 3D space (for objects not displayed 'In Front')
1608
+
1609
+ 2D
1610
+ 2D Layers -- Display strokes using grease pencil layers to define order.
1611
+
1612
+ 3D
1613
+ 3D Location -- Display strokes using real 3D position in 3D space.
1614
+ :type stroke_depth_order: typing.Optional[typing.Any]
1597
1615
  :param radius: Radius
1598
1616
  :type radius: typing.Optional[typing.Any]
1599
1617
  :param align: Align, The alignment of the new object
@@ -1677,6 +1695,66 @@ def grease_pencil_dash_modifier_segment_remove(
1677
1695
 
1678
1696
  ...
1679
1697
 
1698
+ def grease_pencil_time_modifier_segment_add(
1699
+ override_context=None,
1700
+ execution_context=None,
1701
+ undo=None,
1702
+ *,
1703
+ modifier: typing.Union[str, typing.Any] = "",
1704
+ ):
1705
+ """Add a segment to the time modifier
1706
+
1707
+ :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1708
+ :type execution_context: typing.Optional[typing.Union[int, str]]
1709
+ :type undo: typing.Optional[bool]
1710
+ :param modifier: Modifier, Name of the modifier to edit
1711
+ :type modifier: typing.Union[str, typing.Any]
1712
+ """
1713
+
1714
+ ...
1715
+
1716
+ def grease_pencil_time_modifier_segment_move(
1717
+ override_context=None,
1718
+ execution_context=None,
1719
+ undo=None,
1720
+ *,
1721
+ modifier: typing.Union[str, typing.Any] = "",
1722
+ type: typing.Optional[typing.Any] = "UP",
1723
+ ):
1724
+ """Move the active time segment up or down
1725
+
1726
+ :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1727
+ :type execution_context: typing.Optional[typing.Union[int, str]]
1728
+ :type undo: typing.Optional[bool]
1729
+ :param modifier: Modifier, Name of the modifier to edit
1730
+ :type modifier: typing.Union[str, typing.Any]
1731
+ :param type: Type
1732
+ :type type: typing.Optional[typing.Any]
1733
+ """
1734
+
1735
+ ...
1736
+
1737
+ def grease_pencil_time_modifier_segment_remove(
1738
+ override_context=None,
1739
+ execution_context=None,
1740
+ undo=None,
1741
+ *,
1742
+ modifier: typing.Union[str, typing.Any] = "",
1743
+ index: typing.Optional[typing.Any] = 0,
1744
+ ):
1745
+ """Remove the active segment from the time modifier
1746
+
1747
+ :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1748
+ :type execution_context: typing.Optional[typing.Union[int, str]]
1749
+ :type undo: typing.Optional[bool]
1750
+ :param modifier: Modifier, Name of the modifier to edit
1751
+ :type modifier: typing.Union[str, typing.Any]
1752
+ :param index: Index, Index of the segment to remove
1753
+ :type index: typing.Optional[typing.Any]
1754
+ """
1755
+
1756
+ ...
1757
+
1680
1758
  def hide_collection(
1681
1759
  override_context=None,
1682
1760
  execution_context=None,
@@ -837,6 +837,16 @@ def operation(override_context=None, execution_context=None, undo=None):
837
837
 
838
838
  ...
839
839
 
840
+ def orphans_manage(override_context=None, execution_context=None, undo=None):
841
+ """Open a window to manage unused data
842
+
843
+ :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
844
+ :type execution_context: typing.Optional[typing.Union[int, str]]
845
+ :type undo: typing.Optional[bool]
846
+ """
847
+
848
+ ...
849
+
840
850
  def orphans_purge(
841
851
  override_context=None,
842
852
  execution_context=None,
@@ -51,7 +51,7 @@ def cloth_filter(
51
51
  bpy.types.bpy_prop_collection["bpy.types.OperatorStrokeElement"]
52
52
  ] = None,
53
53
  type: typing.Optional[typing.Any] = "GRAVITY",
54
- force_axis: typing.Optional[typing.Any] = {'"Y"', '"Z"', '"X"'},
54
+ force_axis: typing.Optional[typing.Any] = {'"X"', '"Z"', '"Y"'},
55
55
  orientation: typing.Optional[typing.Any] = "LOCAL",
56
56
  cloth_mass: typing.Optional[typing.Any] = 1.0,
57
57
  cloth_damping: typing.Optional[typing.Any] = 0.0,
@@ -610,7 +610,7 @@ def mesh_filter(
610
610
  bpy.types.bpy_prop_collection["bpy.types.OperatorStrokeElement"]
611
611
  ] = None,
612
612
  type: typing.Optional[typing.Any] = "INFLATE",
613
- deform_axis: typing.Optional[typing.Any] = {'"Y"', '"Z"', '"X"'},
613
+ deform_axis: typing.Optional[typing.Any] = {'"X"', '"Z"', '"Y"'},
614
614
  orientation: typing.Optional[typing.Any] = "LOCAL",
615
615
  surface_smooth_shape_preservation: typing.Optional[typing.Any] = 0.5,
616
616
  surface_smooth_current_vertex: typing.Optional[typing.Any] = 0.5,
bpy/types/__init__.pyi CHANGED
@@ -3833,6 +3833,12 @@ class BrushCurvesSculptSettings(bpy_struct):
3833
3833
  :type: 'CurveMapping'
3834
3834
  """
3835
3835
 
3836
+ curve_radius: float
3837
+ """ Radius of newly added curves when it is not interpolated from other curves
3838
+
3839
+ :type: float
3840
+ """
3841
+
3836
3842
  density_add_attempts: int
3837
3843
  """ How many times the Density brush tries to add a new curve
3838
3844
 
@@ -3845,43 +3851,49 @@ class BrushCurvesSculptSettings(bpy_struct):
3845
3851
  :type: typing.Union[int, str]
3846
3852
  """
3847
3853
 
3848
- interpolate_length: bool
3849
- """ Use length of the curves in close proximity
3854
+ minimum_distance: float
3855
+ """ Goal distance between curve roots for the Density brush
3850
3856
 
3851
- :type: bool
3857
+ :type: float
3852
3858
  """
3853
3859
 
3854
- interpolate_point_count: bool
3855
- """ Use the number of points from the curves in close proximity
3860
+ minimum_length: float
3861
+ """ Avoid shrinking curves shorter than this length
3856
3862
 
3857
- :type: bool
3863
+ :type: float
3858
3864
  """
3859
3865
 
3860
- interpolate_shape: bool
3861
- """ Use shape of the curves in close proximity
3866
+ points_per_curve: int
3867
+ """ Number of control points in a newly added curve
3868
+
3869
+ :type: int
3870
+ """
3871
+
3872
+ use_length_interpolate: bool
3873
+ """ Use length of the curves in close proximity
3862
3874
 
3863
3875
  :type: bool
3864
3876
  """
3865
3877
 
3866
- minimum_distance: float
3867
- """ Goal distance between curve roots for the Density brush
3878
+ use_point_count_interpolate: bool
3879
+ """ Use the number of points from the curves in close proximity
3868
3880
 
3869
- :type: float
3881
+ :type: bool
3870
3882
  """
3871
3883
 
3872
- minimum_length: float
3873
- """ Avoid shrinking curves shorter than this length
3884
+ use_radius_interpolate: bool
3885
+ """ Use radius of the curves in close proximity
3874
3886
 
3875
- :type: float
3887
+ :type: bool
3876
3888
  """
3877
3889
 
3878
- points_per_curve: int
3879
- """ Number of control points in a newly added curve
3890
+ use_shape_interpolate: bool
3891
+ """ Use shape of the curves in close proximity
3880
3892
 
3881
- :type: int
3893
+ :type: bool
3882
3894
  """
3883
3895
 
3884
- scale_uniform: bool
3896
+ use_uniform_scale: bool
3885
3897
  """ Grow or shrink curves by changing their size uniformly instead of using trimming or extrapolation
3886
3898
 
3887
3899
  :type: bool
@@ -16102,6 +16114,65 @@ class GreasePencilLayerGroup(bpy_struct):
16102
16114
  """
16103
16115
  ...
16104
16116
 
16117
+ class GreasePencilTimeModifierSegment(bpy_struct):
16118
+ """Configuration for a single dash segment"""
16119
+
16120
+ name: typing.Union[str, typing.Any]
16121
+ """ Name of the dash segment
16122
+
16123
+ :type: typing.Union[str, typing.Any]
16124
+ """
16125
+
16126
+ segment_end: int
16127
+ """ Last frame of the segment
16128
+
16129
+ :type: int
16130
+ """
16131
+
16132
+ segment_mode: typing.Union[int, str]
16133
+ """
16134
+
16135
+ :type: typing.Union[int, str]
16136
+ """
16137
+
16138
+ segment_repeat: int
16139
+ """ Number of cycle repeats
16140
+
16141
+ :type: int
16142
+ """
16143
+
16144
+ segment_start: int
16145
+ """ First frame of the segment
16146
+
16147
+ :type: int
16148
+ """
16149
+
16150
+ def bl_rna_get_subclass(self, id: typing.Optional[str], default=None) -> "Struct":
16151
+ """
16152
+
16153
+ :param id: The RNA type identifier.
16154
+ :type id: typing.Optional[str]
16155
+ :param default:
16156
+ :type default:
16157
+ :rtype: 'Struct'
16158
+ :return: The RNA type or default when not found.
16159
+ """
16160
+ ...
16161
+
16162
+ def bl_rna_get_subclass_py(
16163
+ self, id: typing.Optional[str], default=None
16164
+ ) -> typing.Any:
16165
+ """
16166
+
16167
+ :param id: The RNA type identifier.
16168
+ :type id: typing.Optional[str]
16169
+ :param default:
16170
+ :type default:
16171
+ :rtype: typing.Any
16172
+ :return: The class or default when not found.
16173
+ """
16174
+ ...
16175
+
16105
16176
  class Header(bpy_struct):
16106
16177
  """Editor header containing UI elements"""
16107
16178
 
@@ -23176,7 +23247,6 @@ class NodeTreeInterface(bpy_struct):
23176
23247
  name: typing.Union[str, typing.Any],
23177
23248
  description: typing.Union[str, typing.Any] = "",
23178
23249
  default_closed: typing.Optional[typing.Union[bool, typing.Any]] = False,
23179
- parent: typing.Optional["NodeTreeInterfacePanel"] = None,
23180
23250
  ) -> "NodeTreeInterfacePanel":
23181
23251
  """Add a new panel to the interface
23182
23252
 
@@ -23186,8 +23256,6 @@ class NodeTreeInterface(bpy_struct):
23186
23256
  :type description: typing.Union[str, typing.Any]
23187
23257
  :param default_closed: Default Closed, Panel is closed by default on new nodes
23188
23258
  :type default_closed: typing.Optional[typing.Union[bool, typing.Any]]
23189
- :param parent: Parent, Add panel as a child of the parent panel
23190
- :type parent: typing.Optional['NodeTreeInterfacePanel']
23191
23259
  :rtype: 'NodeTreeInterfacePanel'
23192
23260
  :return: Panel, New panel
23193
23261
  """
@@ -67781,10 +67849,10 @@ class KeyConfigurations(bpy_prop_collection[KeyConfig], bpy_struct):
67781
67849
  context: typing.Optional[typing.Any] = "INVOKE_DEFAULT",
67782
67850
  properties: typing.Optional["OperatorProperties"] = None,
67783
67851
  include: typing.Optional[typing.Any] = {
67852
+ '"NDOF"',
67784
67853
  '"KEYBOARD"',
67785
67854
  '"MOUSE"',
67786
67855
  '"ACTIONZONE"',
67787
- '"NDOF"',
67788
67856
  },
67789
67857
  exclude: typing.Optional[typing.Any] = {},
67790
67858
  ):
@@ -68068,10 +68136,10 @@ class KeyMapItems(bpy_prop_collection[KeyMapItem], bpy_struct):
68068
68136
  idname: typing.Union[str, typing.Any],
68069
68137
  properties: typing.Optional["OperatorProperties"] = None,
68070
68138
  include: typing.Optional[typing.Any] = {
68139
+ '"NDOF"',
68071
68140
  '"KEYBOARD"',
68072
68141
  '"MOUSE"',
68073
68142
  '"ACTIONZONE"',
68074
- '"NDOF"',
68075
68143
  },
68076
68144
  exclude: typing.Optional[typing.Any] = {},
68077
68145
  ) -> "KeyMapItem":
@@ -73258,6 +73326,131 @@ class GreasePencilThickModifierData(Modifier, bpy_struct):
73258
73326
  """
73259
73327
  ...
73260
73328
 
73329
+ class GreasePencilTimeModifier(Modifier, bpy_struct):
73330
+ """Offset keyframes"""
73331
+
73332
+ frame_end: int
73333
+ """ Final frame of the range
73334
+
73335
+ :type: int
73336
+ """
73337
+
73338
+ frame_scale: float
73339
+ """ Evaluation time in seconds
73340
+
73341
+ :type: float
73342
+ """
73343
+
73344
+ frame_start: int
73345
+ """ First frame of the range
73346
+
73347
+ :type: int
73348
+ """
73349
+
73350
+ invert_layer_filter: bool
73351
+ """ Invert layer filter
73352
+
73353
+ :type: bool
73354
+ """
73355
+
73356
+ invert_layer_pass_filter: bool
73357
+ """ Invert layer pass filter
73358
+
73359
+ :type: bool
73360
+ """
73361
+
73362
+ layer_filter: typing.Union[str, typing.Any]
73363
+ """ Layer name
73364
+
73365
+ :type: typing.Union[str, typing.Any]
73366
+ """
73367
+
73368
+ layer_pass_filter: int
73369
+ """ Layer pass filter
73370
+
73371
+ :type: int
73372
+ """
73373
+
73374
+ mode: typing.Union[int, str]
73375
+ """
73376
+
73377
+ :type: typing.Union[int, str]
73378
+ """
73379
+
73380
+ offset: int
73381
+ """ Number of frames to offset original keyframe number or frame to fix
73382
+
73383
+ :type: int
73384
+ """
73385
+
73386
+ open_custom_range_panel: bool
73387
+ """
73388
+
73389
+ :type: bool
73390
+ """
73391
+
73392
+ open_influence_panel: bool
73393
+ """
73394
+
73395
+ :type: bool
73396
+ """
73397
+
73398
+ segment_active_index: int
73399
+ """ Active index in the segment list
73400
+
73401
+ :type: int
73402
+ """
73403
+
73404
+ segments: bpy_prop_collection["GreasePencilTimeModifierSegment"]
73405
+ """
73406
+
73407
+ :type: bpy_prop_collection['GreasePencilTimeModifierSegment']
73408
+ """
73409
+
73410
+ use_custom_frame_range: bool
73411
+ """ Define a custom range of frames to use in modifier
73412
+
73413
+ :type: bool
73414
+ """
73415
+
73416
+ use_keep_loop: bool
73417
+ """ Retiming end frames and move to start of animation to keep loop
73418
+
73419
+ :type: bool
73420
+ """
73421
+
73422
+ use_layer_pass_filter: bool
73423
+ """ Use layer pass filter
73424
+
73425
+ :type: bool
73426
+ """
73427
+
73428
+ def bl_rna_get_subclass(self, id: typing.Optional[str], default=None) -> "Struct":
73429
+ """
73430
+
73431
+ :param id: The RNA type identifier.
73432
+ :type id: typing.Optional[str]
73433
+ :param default:
73434
+ :type default:
73435
+ :rtype: 'Struct'
73436
+ :return: The RNA type or default when not found.
73437
+ """
73438
+ ...
73439
+
73440
+ def bl_rna_get_subclass_py(
73441
+ self, id: typing.Optional[str], default=None
73442
+ ) -> typing.Any:
73443
+ """
73444
+
73445
+ :param id: The RNA type identifier.
73446
+ :type id: typing.Optional[str]
73447
+ :param default:
73448
+ :type default:
73449
+ :rtype: typing.Any
73450
+ :return: The class or default when not found.
73451
+ """
73452
+ ...
73453
+
73261
73454
  class GreasePencilTintModifier(Modifier, bpy_struct):
73262
73455
  color: typing.Union[
73263
73456
  "mathutils.Color", typing.List[float], typing.Tuple[float, float, float]
@@ -116856,6 +117049,73 @@ class GeometryNodeDeleteGeometry(GeometryNode, NodeInternal, Node, bpy_struct):
116856
117049
  """
116857
117050
  ...
116858
117051
 
117052
+ class GeometryNodeDistributePointsInGrid(GeometryNode, NodeInternal, Node, bpy_struct):
117053
+ """Generate points inside a volume grid"""
117054
+
117055
+ mode: typing.Union[int, str]
117056
+ """ Method to use for scattering points
117057
+
117058
+ :type: typing.Union[int, str]
117059
+ """
117060
+
117061
+ def is_registered_node_type(self) -> bool:
117062
+ """True if a registered node type
117063
+
117064
+ :rtype: bool
117065
+ :return: Result
117066
+ """
117067
+ ...
117068
+
117069
+ def input_template(
117070
+ self, index: typing.Optional[int]
117071
+ ) -> "NodeInternalSocketTemplate":
117072
+ """Input socket template
117073
+
117074
+ :param index: Index
117075
+ :type index: typing.Optional[int]
117076
+ :rtype: 'NodeInternalSocketTemplate'
117077
+ :return: result
117078
+ """
117079
+ ...
117080
+
117081
+ def output_template(
117082
+ self, index: typing.Optional[int]
117083
+ ) -> "NodeInternalSocketTemplate":
117084
+ """Output socket template
117085
+
117086
+ :param index: Index
117087
+ :type index: typing.Optional[int]
117088
+ :rtype: 'NodeInternalSocketTemplate'
117089
+ :return: result
117090
+ """
117091
+ ...
117092
+
117093
+ def bl_rna_get_subclass(self, id: typing.Optional[str], default=None) -> "Struct":
117094
+ """
117095
+
117096
+ :param id: The RNA type identifier.
117097
+ :type id: typing.Optional[str]
117098
+ :param default:
117099
+ :type default:
117100
+ :rtype: 'Struct'
117101
+ :return: The RNA type or default when not found.
117102
+ """
117103
+ ...
117104
+
117105
+ def bl_rna_get_subclass_py(
117106
+ self, id: typing.Optional[str], default=None
117107
+ ) -> typing.Any:
117108
+ """
117109
+
117110
+ :param id: The RNA type identifier.
117111
+ :type id: typing.Optional[str]
117112
+ :param default:
117113
+ :type default:
117114
+ :rtype: typing.Any
117115
+ :return: The class or default when not found.
117116
+ """
117117
+ ...
117118
+
116859
117119
  class GeometryNodeDistributePointsInVolume(
116860
117120
  GeometryNode, NodeInternal, Node, bpy_struct
116861
117121
  ):
@@ -117431,14 +117691,75 @@ class GeometryNodeEdgesToFaceGroups(GeometryNode, NodeInternal, Node, bpy_struct
117431
117691
  """
117432
117692
  ...
117433
117693
 
117434
- class GeometryNodeExtrudeMesh(GeometryNode, NodeInternal, Node, bpy_struct):
117435
- """Generate new vertices, edges, or faces from selected elements and move them based on an offset while keeping them connected by their boundary"""
117436
-
117437
- mode: typing.Union[int, str]
117438
- """
117439
-
117440
- :type: typing.Union[int, str]
117441
- """
117694
+ class GeometryNodeExtrudeMesh(GeometryNode, NodeInternal, Node, bpy_struct):
117695
+ """Generate new vertices, edges, or faces from selected elements and move them based on an offset while keeping them connected by their boundary"""
117696
+
117697
+ mode: typing.Union[int, str]
117698
+ """
117699
+
117700
+ :type: typing.Union[int, str]
117701
+ """
117702
+
117703
+ def is_registered_node_type(self) -> bool:
117704
+ """True if a registered node type
117705
+
117706
+ :rtype: bool
117707
+ :return: Result
117708
+ """
117709
+ ...
117710
+
117711
+ def input_template(
117712
+ self, index: typing.Optional[int]
117713
+ ) -> "NodeInternalSocketTemplate":
117714
+ """Input socket template
117715
+
117716
+ :param index: Index
117717
+ :type index: typing.Optional[int]
117718
+ :rtype: 'NodeInternalSocketTemplate'
117719
+ :return: result
117720
+ """
117721
+ ...
117722
+
117723
+ def output_template(
117724
+ self, index: typing.Optional[int]
117725
+ ) -> "NodeInternalSocketTemplate":
117726
+ """Output socket template
117727
+
117728
+ :param index: Index
117729
+ :type index: typing.Optional[int]
117730
+ :rtype: 'NodeInternalSocketTemplate'
117731
+ :return: result
117732
+ """
117733
+ ...
117734
+
117735
+ def bl_rna_get_subclass(self, id: typing.Optional[str], default=None) -> "Struct":
117736
+ """
117737
+
117738
+ :param id: The RNA type identifier.
117739
+ :type id: typing.Optional[str]
117740
+ :param default:
117741
+ :type default:
117742
+ :rtype: 'Struct'
117743
+ :return: The RNA type or default when not found.
117744
+ """
117745
+ ...
117746
+
117747
+ def bl_rna_get_subclass_py(
117748
+ self, id: typing.Optional[str], default=None
117749
+ ) -> typing.Any:
117750
+ """
117751
+
117752
+ :param id: The RNA type identifier.
117753
+ :type id: typing.Optional[str]
117754
+ :param default:
117755
+ :type default:
117756
+ :rtype: typing.Any
117757
+ :return: The class or default when not found.
117758
+ """
117759
+ ...
117760
+
117761
+ class GeometryNodeFaceOfCorner(GeometryNode, NodeInternal, Node, bpy_struct):
117762
+ """Retrieve the face each face corner is part of"""
117442
117763
 
117443
117764
  def is_registered_node_type(self) -> bool:
117444
117765
  """True if a registered node type
@@ -117498,8 +117819,20 @@ class GeometryNodeExtrudeMesh(GeometryNode, NodeInternal, Node, bpy_struct):
117498
117819
  """
117499
117820
  ...
117500
117821
 
117501
- class GeometryNodeFaceOfCorner(GeometryNode, NodeInternal, Node, bpy_struct):
117502
- """Retrieve the face each face corner is part of"""
117822
+ class GeometryNodeFieldAtIndex(GeometryNode, NodeInternal, Node, bpy_struct):
117823
+ """Retrieve data of other elements in the context's geometry"""
117824
+
117825
+ data_type: typing.Union[int, str]
117826
+ """
117827
+
117828
+ :type: typing.Union[int, str]
117829
+ """
117830
+
117831
+ domain: typing.Union[int, str]
117832
+ """ Domain the field is evaluated in
117833
+
117834
+ :type: typing.Union[int, str]
117835
+ """
117503
117836
 
117504
117837
  def is_registered_node_type(self) -> bool:
117505
117838
  """True if a registered node type
@@ -117559,8 +117892,8 @@ class GeometryNodeFaceOfCorner(GeometryNode, NodeInternal, Node, bpy_struct):
117559
117892
  """
117560
117893
  ...
117561
117894
 
117562
- class GeometryNodeFieldAtIndex(GeometryNode, NodeInternal, Node, bpy_struct):
117563
- """Retrieve data of other elements in the context's geometry"""
117895
+ class GeometryNodeFieldOnDomain(GeometryNode, NodeInternal, Node, bpy_struct):
117896
+ """Retrieve values from a field on a different domain besides the domain from the context"""
117564
117897
 
117565
117898
  data_type: typing.Union[int, str]
117566
117899
  """
@@ -117632,21 +117965,15 @@ class GeometryNodeFieldAtIndex(GeometryNode, NodeInternal, Node, bpy_struct):
117632
117965
  """
117633
117966
  ...
117634
117967
 
117635
- class GeometryNodeFieldOnDomain(GeometryNode, NodeInternal, Node, bpy_struct):
117636
- """Retrieve values from a field on a different domain besides the domain from the context"""
117968
+ class GeometryNodeFillCurve(GeometryNode, NodeInternal, Node, bpy_struct):
117969
+ """Generate a mesh on the XY plane with faces on the inside of input curves"""
117637
117970
 
117638
- data_type: typing.Union[int, str]
117971
+ mode: typing.Union[int, str]
117639
117972
  """
117640
117973
 
117641
117974
  :type: typing.Union[int, str]
117642
117975
  """
117643
117976
 
117644
- domain: typing.Union[int, str]
117645
- """ Domain the field is evaluated in
117646
-
117647
- :type: typing.Union[int, str]
117648
- """
117649
-
117650
117977
  def is_registered_node_type(self) -> bool:
117651
117978
  """True if a registered node type
117652
117979
 
@@ -117705,11 +118032,11 @@ class GeometryNodeFieldOnDomain(GeometryNode, NodeInternal, Node, bpy_struct):
117705
118032
  """
117706
118033
  ...
117707
118034
 
117708
- class GeometryNodeFillCurve(GeometryNode, NodeInternal, Node, bpy_struct):
117709
- """Generate a mesh on the XY plane with faces on the inside of input curves"""
118035
+ class GeometryNodeFilletCurve(GeometryNode, NodeInternal, Node, bpy_struct):
118036
+ """Round corners by generating circular arcs on each control point"""
117710
118037
 
117711
118038
  mode: typing.Union[int, str]
117712
- """
118039
+ """ How to choose number of vertices on fillet
117713
118040
 
117714
118041
  :type: typing.Union[int, str]
117715
118042
  """
@@ -117772,14 +118099,8 @@ class GeometryNodeFillCurve(GeometryNode, NodeInternal, Node, bpy_struct):
117772
118099
  """
117773
118100
  ...
117774
118101
 
117775
- class GeometryNodeFilletCurve(GeometryNode, NodeInternal, Node, bpy_struct):
117776
- """Round corners by generating circular arcs on each control point"""
117777
-
117778
- mode: typing.Union[int, str]
117779
- """ How to choose number of vertices on fillet
117780
-
117781
- :type: typing.Union[int, str]
117782
- """
118102
+ class GeometryNodeFlipFaces(GeometryNode, NodeInternal, Node, bpy_struct):
118103
+ """Reverse the order of the vertices and edges of selected faces, flipping their normal direction"""
117783
118104
 
117784
118105
  def is_registered_node_type(self) -> bool:
117785
118106
  """True if a registered node type
@@ -117839,8 +118160,8 @@ class GeometryNodeFilletCurve(GeometryNode, NodeInternal, Node, bpy_struct):
117839
118160
  """
117840
118161
  ...
117841
118162
 
117842
- class GeometryNodeFlipFaces(GeometryNode, NodeInternal, Node, bpy_struct):
117843
- """Reverse the order of the vertices and edges of selected faces, flipping their normal direction"""
118163
+ class GeometryNodeGeometryToInstance(GeometryNode, NodeInternal, Node, bpy_struct):
118164
+ """Convert each input geometry into an instance, which can be much faster than the Join Geometry node when the inputs are large"""
117844
118165
 
117845
118166
  def is_registered_node_type(self) -> bool:
117846
118167
  """True if a registered node type
@@ -117900,8 +118221,14 @@ class GeometryNodeFlipFaces(GeometryNode, NodeInternal, Node, bpy_struct):
117900
118221
  """
117901
118222
  ...
117902
118223
 
117903
- class GeometryNodeGeometryToInstance(GeometryNode, NodeInternal, Node, bpy_struct):
117904
- """Convert each input geometry into an instance, which can be much faster than the Join Geometry node when the inputs are large"""
118224
+ class GeometryNodeGetNamedGrid(GeometryNode, NodeInternal, Node, bpy_struct):
118225
+ """Get volume grid from a volume geometry with the specified name"""
118226
+
118227
+ data_type: typing.Union[int, str]
118228
+ """ Type of grid data
118229
+
118230
+ :type: typing.Union[int, str]
118231
+ """
117905
118232
 
117906
118233
  def is_registered_node_type(self) -> bool:
117907
118234
  """True if a registered node type
@@ -117961,14 +118288,8 @@ class GeometryNodeGeometryToInstance(GeometryNode, NodeInternal, Node, bpy_struc
117961
118288
  """
117962
118289
  ...
117963
118290
 
117964
- class GeometryNodeGetNamedGrid(GeometryNode, NodeInternal, Node, bpy_struct):
117965
- """Get volume grid from a volume geometry with the specified name"""
117966
-
117967
- data_type: typing.Union[int, str]
117968
- """ Type of grid data
117969
-
117970
- :type: typing.Union[int, str]
117971
- """
118291
+ class GeometryNodeGridToMesh(GeometryNode, NodeInternal, Node, bpy_struct):
118292
+ """Generate a mesh on the "surface" of a volume grid"""
117972
118293
 
117973
118294
  def is_registered_node_type(self) -> bool:
117974
118295
  """True if a registered node type
@@ -121369,6 +121690,67 @@ class GeometryNodeMeshToCurve(GeometryNode, NodeInternal, Node, bpy_struct):
121369
121690
  """
121370
121691
  ...
121371
121692
 
121693
+ class GeometryNodeMeshToDensityGrid(GeometryNode, NodeInternal, Node, bpy_struct):
121694
+ """Create a filled volume grid from a mesh"""
121695
+
121696
+ def is_registered_node_type(self) -> bool:
121697
+ """True if a registered node type
121698
+
121699
+ :rtype: bool
121700
+ :return: Result
121701
+ """
121702
+ ...
121703
+
121704
+ def input_template(
121705
+ self, index: typing.Optional[int]
121706
+ ) -> "NodeInternalSocketTemplate":
121707
+ """Input socket template
121708
+
121709
+ :param index: Index
121710
+ :type index: typing.Optional[int]
121711
+ :rtype: 'NodeInternalSocketTemplate'
121712
+ :return: result
121713
+ """
121714
+ ...
121715
+
121716
+ def output_template(
121717
+ self, index: typing.Optional[int]
121718
+ ) -> "NodeInternalSocketTemplate":
121719
+ """Output socket template
121720
+
121721
+ :param index: Index
121722
+ :type index: typing.Optional[int]
121723
+ :rtype: 'NodeInternalSocketTemplate'
121724
+ :return: result
121725
+ """
121726
+ ...
121727
+
121728
+ def bl_rna_get_subclass(self, id: typing.Optional[str], default=None) -> "Struct":
121729
+ """
121730
+
121731
+ :param id: The RNA type identifier.
121732
+ :type id: typing.Optional[str]
121733
+ :param default:
121734
+ :type default:
121735
+ :rtype: 'Struct'
121736
+ :return: The RNA type or default when not found.
121737
+ """
121738
+ ...
121739
+
121740
+ def bl_rna_get_subclass_py(
121741
+ self, id: typing.Optional[str], default=None
121742
+ ) -> typing.Any:
121743
+ """
121744
+
121745
+ :param id: The RNA type identifier.
121746
+ :type id: typing.Optional[str]
121747
+ :param default:
121748
+ :type default:
121749
+ :rtype: typing.Any
121750
+ :return: The class or default when not found.
121751
+ """
121752
+ ...
121753
+
121372
121754
  class GeometryNodeMeshToPoints(GeometryNode, NodeInternal, Node, bpy_struct):
121373
121755
  """Generate a point cloud from a mesh's vertices"""
121374
121756
 
@@ -121436,6 +121818,67 @@ class GeometryNodeMeshToPoints(GeometryNode, NodeInternal, Node, bpy_struct):
121436
121818
  """
121437
121819
  ...
121438
121820
 
121821
+ class GeometryNodeMeshToSDFGrid(GeometryNode, NodeInternal, Node, bpy_struct):
121822
+ """Create a signed distance volume grid from a mesh"""
121823
+
121824
+ def is_registered_node_type(self) -> bool:
121825
+ """True if a registered node type
121826
+
121827
+ :rtype: bool
121828
+ :return: Result
121829
+ """
121830
+ ...
121831
+
121832
+ def input_template(
121833
+ self, index: typing.Optional[int]
121834
+ ) -> "NodeInternalSocketTemplate":
121835
+ """Input socket template
121836
+
121837
+ :param index: Index
121838
+ :type index: typing.Optional[int]
121839
+ :rtype: 'NodeInternalSocketTemplate'
121840
+ :return: result
121841
+ """
121842
+ ...
121843
+
121844
+ def output_template(
121845
+ self, index: typing.Optional[int]
121846
+ ) -> "NodeInternalSocketTemplate":
121847
+ """Output socket template
121848
+
121849
+ :param index: Index
121850
+ :type index: typing.Optional[int]
121851
+ :rtype: 'NodeInternalSocketTemplate'
121852
+ :return: result
121853
+ """
121854
+ ...
121855
+
121856
+ def bl_rna_get_subclass(self, id: typing.Optional[str], default=None) -> "Struct":
121857
+ """
121858
+
121859
+ :param id: The RNA type identifier.
121860
+ :type id: typing.Optional[str]
121861
+ :param default:
121862
+ :type default:
121863
+ :rtype: 'Struct'
121864
+ :return: The RNA type or default when not found.
121865
+ """
121866
+ ...
121867
+
121868
+ def bl_rna_get_subclass_py(
121869
+ self, id: typing.Optional[str], default=None
121870
+ ) -> typing.Any:
121871
+ """
121872
+
121873
+ :param id: The RNA type identifier.
121874
+ :type id: typing.Optional[str]
121875
+ :param default:
121876
+ :type default:
121877
+ :rtype: typing.Any
121878
+ :return: The class or default when not found.
121879
+ """
121880
+ ...
121881
+
121439
121882
  class GeometryNodeMeshToVolume(GeometryNode, NodeInternal, Node, bpy_struct):
121440
121883
  """Create a fog volume with the shape of the input mesh's surface"""
121441
121884
 
@@ -121936,6 +122379,67 @@ class GeometryNodePointsToCurves(GeometryNode, NodeInternal, Node, bpy_struct):
121936
122379
  """
121937
122380
  ...
121938
122381
 
122382
+ class GeometryNodePointsToSDFGrid(GeometryNode, NodeInternal, Node, bpy_struct):
122383
+ """Create a signed distance volume grid from points"""
122384
+
122385
+ def is_registered_node_type(self) -> bool:
122386
+ """True if a registered node type
122387
+
122388
+ :rtype: bool
122389
+ :return: Result
122390
+ """
122391
+ ...
122392
+
122393
+ def input_template(
122394
+ self, index: typing.Optional[int]
122395
+ ) -> "NodeInternalSocketTemplate":
122396
+ """Input socket template
122397
+
122398
+ :param index: Index
122399
+ :type index: typing.Optional[int]
122400
+ :rtype: 'NodeInternalSocketTemplate'
122401
+ :return: result
122402
+ """
122403
+ ...
122404
+
122405
+ def output_template(
122406
+ self, index: typing.Optional[int]
122407
+ ) -> "NodeInternalSocketTemplate":
122408
+ """Output socket template
122409
+
122410
+ :param index: Index
122411
+ :type index: typing.Optional[int]
122412
+ :rtype: 'NodeInternalSocketTemplate'
122413
+ :return: result
122414
+ """
122415
+ ...
122416
+
122417
+ def bl_rna_get_subclass(self, id: typing.Optional[str], default=None) -> "Struct":
122418
+ """
122419
+
122420
+ :param id: The RNA type identifier.
122421
+ :type id: typing.Optional[str]
122422
+ :param default:
122423
+ :type default:
122424
+ :rtype: 'Struct'
122425
+ :return: The RNA type or default when not found.
122426
+ """
122427
+ ...
122428
+
122429
+ def bl_rna_get_subclass_py(
122430
+ self, id: typing.Optional[str], default=None
122431
+ ) -> typing.Any:
122432
+ """
122433
+
122434
+ :param id: The RNA type identifier.
122435
+ :type id: typing.Optional[str]
122436
+ :param default:
122437
+ :type default:
122438
+ :rtype: typing.Any
122439
+ :return: The class or default when not found.
122440
+ """
122441
+ ...
122442
+
121939
122443
  class GeometryNodePointsToVertices(GeometryNode, NodeInternal, Node, bpy_struct):
121940
122444
  """Generate a mesh vertex for each point cloud point"""
121941
122445
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240227
3
+ Version: 20240229
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
@@ -199,7 +199,7 @@ bpy/ops/dpaint/__init__.pyi,sha256=f68AefeI15BnIR_tf5mVbfrAbaly83_RIBznTGmrTSo,2
199
199
  bpy/ops/ed/__init__.pyi,sha256=O354iq6Wg0tNzTDiLkXU7agqD6e6DoywuAKuAajDLGE,9974
200
200
  bpy/ops/export_anim/__init__.pyi,sha256=AnV2l6UH64F1xxXF9rWLXZv3EJmSzI6WsP0ICv0j6Sc,2420
201
201
  bpy/ops/export_mesh/__init__.pyi,sha256=agxQTGbW405r7WZOu-bBgNDJbahufUvBqfBSqLVKGe0,2913
202
- bpy/ops/export_scene/__init__.pyi,sha256=jILpCiXnxnh6hoF-Z9n27kfl6ex5GulKuREtmQZANh8,46435
202
+ bpy/ops/export_scene/__init__.pyi,sha256=g48oFgQ8ZOunDsFZuX6yLznOF5AIRnkpwMkJey1Z48Y,46435
203
203
  bpy/ops/file/__init__.pyi,sha256=AOLAU6yIqsVvw4Ga9h77DvKdn0o-kOyAnG5Lmib1vI0,26137
204
204
  bpy/ops/fluid/__init__.pyi,sha256=LIkJyMJMAC5WH1ZKJ6eZGu7cB42FRLLiTeUAXy9j9cU,5094
205
205
  bpy/ops/font/__init__.pyi,sha256=5kN9cQw9Mcc2sUNRR8_9sHbFLswfyEcJ4Dg2EgcwR1M,20180
@@ -220,10 +220,10 @@ bpy/ops/mask/__init__.pyi,sha256=idXFdZ4Bfm4hF3-C0cPFDh5DUMGfDL-Zwc0LzmRG0DU,222
220
220
  bpy/ops/material/__init__.pyi,sha256=4u36fuqh_UeA9ZHX6lZp1yrcxvdPRjKjcEOzN2LX9F0,1049
221
221
  bpy/ops/mball/__init__.pyi,sha256=qpO_MAD_wUFIdb6Ky2lMrdVNsufZNfDRnuaixg6tVCw,5313
222
222
  bpy/ops/mesh/__init__.pyi,sha256=nDN8oKLTEOs1ZR-XMyVMg0Uni4slWy460dVzajXAJKE,162497
223
- bpy/ops/nla/__init__.pyi,sha256=M8JQ2Sbm1sJAI5lMJ9el7v1zOqaslNkiZYWtDKSNhFU,24744
223
+ bpy/ops/nla/__init__.pyi,sha256=BqsolCTYle9qBx-UxHMv0r_XOcMzSzY0fqslaVx6_HA,24744
224
224
  bpy/ops/node/__init__.pyi,sha256=NEtaFcYvlfH5BhYR1JdYR-4Jpb1AuzOgWMTtrxLpfKY,63060
225
- bpy/ops/object/__init__.pyi,sha256=i0TnbJquz60pAyS28GEL_2QDAwAcGfiNFhU1RcjStLc,202720
226
- bpy/ops/outliner/__init__.pyi,sha256=YiPAAFD9nevPrV5_ZWIL4SXZ2FbT8RM3-wWa3zqYdGw,35420
225
+ bpy/ops/object/__init__.pyi,sha256=514I-XR8WQNWR21EV7Thzeh9nRAeDzNubaSZoohTsXY,205750
226
+ bpy/ops/outliner/__init__.pyi,sha256=ohgJm1n2tBnSU88O5FyXNUp9dTB_Sqb28_86gFjp79s,35759
227
227
  bpy/ops/paint/__init__.pyi,sha256=ifHUx1YLPOkBs4amOwFu6vuNBJ6yW90nj2Qqfgy4328,38276
228
228
  bpy/ops/paintcurve/__init__.pyi,sha256=wsQNQtYErdEKvk7QRtNy2Z31UJ4YEpwuZopE8fmiPd0,4258
229
229
  bpy/ops/palette/__init__.pyi,sha256=2eLGGKb1Q_4X0R23y5cifJeS5VRTFMop39GsAOKHWkg,2967
@@ -237,7 +237,7 @@ bpy/ops/rigidbody/__init__.pyi,sha256=Gs2OZGl4NUXQ0wLPQImK9sVSg4FNHckHSfBnqKoyE8
237
237
  bpy/ops/scene/__init__.pyi,sha256=ZEpwgRw6gc6dWCIEsVFMAJK5gOsWGKWb8dOi2EItBuY,19495
238
238
  bpy/ops/screen/__init__.pyi,sha256=QwLMLVzQGagLKPPhBCZRH7xUeQcb2oLuY97zwTh2qt4,28074
239
239
  bpy/ops/script/__init__.pyi,sha256=pn2CKXaea19HjHsrF-SdWrDLfO9yDo0StYYhFYnYmTI,1508
240
- bpy/ops/sculpt/__init__.pyi,sha256=lQG7iw4CL5aEZlLcaaYYvwM_NY_MNWiLEAJutGgSYI4,39912
240
+ bpy/ops/sculpt/__init__.pyi,sha256=6terCC1ndnPTwFMNj7QzXEhRzoaR4Vevoo7VSLhSpRs,39912
241
241
  bpy/ops/sculpt_curves/__init__.pyi,sha256=VSftg3xozMLjVm43j51TDfEIvglcC_TlN2BZ1MMbh8E,3336
242
242
  bpy/ops/sequencer/__init__.pyi,sha256=4g6lIr_5oWw71xMdnCCpSHWXVRllvD9dNl3Qehhqank,93251
243
243
  bpy/ops/sound/__init__.pyi,sha256=jsnI0SFHoBtnf73dJwNl79fFScHjOhUWr2tcq2ymyzY,21562
@@ -257,7 +257,7 @@ bpy/ops/workspace/__init__.pyi,sha256=cfTHpfhZok-9W-Cv6xpLYIh1LaqCQB4RAeZNnNev_H
257
257
  bpy/ops/world/__init__.pyi,sha256=Jex-4HYHQCGb1L18edEx0_Bi6LLewdSOK0FRSMfR4a8,398
258
258
  bpy/path/__init__.pyi,sha256=QxWy6N5-7KFQWppjuhDhEV-3XNodrAcFXA6JvbbTbXQ,6388
259
259
  bpy/props/__init__.pyi,sha256=vG0dYQzpuh5QnOwqNwz8W-2yKdclHbNkC2jtXkgx4rQ,29405
260
- bpy/types/__init__.pyi,sha256=jIcYsW9IIWu3TaeHDf0GYevUHAv7jex4OK0wXMCozfk,3444233
260
+ bpy/types/__init__.pyi,sha256=fQ4tP_SFd3jO_nk4iTA_nOon-kO1o_a3ASAni-UQCLg,3455961
261
261
  bpy/utils/__init__.pyi,sha256=tXg7jhIyeJmLMHrU85XbRTSYex_YJi8siXMvAiWamd0,10365
262
262
  bpy/utils/previews/__init__.pyi,sha256=gOgnSWVc0SRdn5n768T2WxDNYhJgTZdNwQnrSQv2D_0,2159
263
263
  bpy/utils/units/__init__.pyi,sha256=AzFFYMVq6akTZ3AHGW4GzA_n6jfeKV7O9qvqvBasBgY,2684
@@ -343,7 +343,7 @@ rna_xml/__init__.pyi,sha256=oMdXh2K4vb_KNNhyhehXJPH20RJkrUExWFoGX6_8IoI,471
343
343
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
344
344
  sys_info/__init__.pyi,sha256=8dAUaATaRsjhkMMCN8lWAlnEo_Z0qzeYMjashL-525k,93
345
345
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
346
- fake_bpy_module-20240227.dist-info/METADATA,sha256=w2AoWLqX-J5N1QLD4krhePnDNU1VxWPNph5Xlh2kaLI,7008
347
- fake_bpy_module-20240227.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
348
- fake_bpy_module-20240227.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
349
- fake_bpy_module-20240227.dist-info/RECORD,,
346
+ fake_bpy_module-20240229.dist-info/METADATA,sha256=g42EPNfe93eN_yk508nnYJ7zFU5iQfs8ckxN-4vkQDE,7008
347
+ fake_bpy_module-20240229.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
348
+ fake_bpy_module-20240229.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
349
+ fake_bpy_module-20240229.dist-info/RECORD,,