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

@@ -276,6 +276,7 @@ type BrushSculptBrushTypeItems = typing.Literal[
276
276
  "FLATTEN", # Flatten.
277
277
  "FILL", # Fill.
278
278
  "SCRAPE", # Scrape.
279
+ "PLANE", # Plane.
279
280
  "MULTIPLANE_SCRAPE", # Multi-plane Scrape.
280
281
  "PINCH", # Pinch.
281
282
  "GRAB", # Grab.
@@ -20,6 +20,40 @@ def apply_pose_asset(
20
20
  :type flipped: bool | None
21
21
  """
22
22
 
23
+ def asset_delete(execution_context: int | str | None = None, undo: bool | None = None):
24
+ """Delete the selected Pose Asset
25
+
26
+ :type execution_context: int | str | None
27
+ :type undo: bool | None
28
+ """
29
+
30
+ def asset_modify(
31
+ execution_context: int | str | None = None,
32
+ undo: bool | None = None,
33
+ /,
34
+ *,
35
+ mode: typing.Literal["ADJUST", "REPLACE", "ADD", "REMOVE"] | None = "ADJUST",
36
+ ):
37
+ """Update the selected pose asset in the asset library from the currently selected bones. The mode defines how the asset is updated
38
+
39
+ :type execution_context: int | str | None
40
+ :type undo: bool | None
41
+ :param mode: Overwrite Mode, Specify which parts of the pose asset are overwritten
42
+
43
+ ADJUST
44
+ Adjust -- Update existing channels in the pose asset but don't remove or add any channels.
45
+
46
+ REPLACE
47
+ Replace with Selection -- Completely replace all channels in the pose asset with the current selection.
48
+
49
+ ADD
50
+ Add Selected Bones -- Add channels of the selection to the pose asset. Existing channels will be updated.
51
+
52
+ REMOVE
53
+ Remove Selected Bones -- Remove channels of the selection from the pose asset.
54
+ :type mode: typing.Literal['ADJUST','REPLACE','ADD','REMOVE'] | None
55
+ """
56
+
23
57
  def blend_pose_asset(
24
58
  execution_context: int | str | None = None,
25
59
  undo: bool | None = None,
@@ -72,15 +106,21 @@ def create_pose_asset(
72
106
  /,
73
107
  *,
74
108
  pose_name: str = "",
75
- activate_new_action: bool | None = True,
109
+ asset_library_reference: str | None = "",
110
+ catalog_path: str = "",
111
+ activate_new_action: bool | None = False,
76
112
  ):
77
- """Create a new Action that contains the pose of the selected bones, and mark it as Asset. The asset will be stored in the current blend file
113
+ """Create a new asset from the selection in the scene
78
114
 
79
115
  :type execution_context: int | str | None
80
116
  :type undo: bool | None
81
- :param pose_name: Pose Name
117
+ :param pose_name: Pose Name, Name for the new pose asset
82
118
  :type pose_name: str
83
- :param activate_new_action: Activate New Action
119
+ :param asset_library_reference: Library, Asset library used to store the new pose
120
+ :type asset_library_reference: str | None
121
+ :param catalog_path: Catalog, Catalog to use for the new asset
122
+ :type catalog_path: str
123
+ :param activate_new_action: Activate New Action, This property is deprecated and will be removed in the future
84
124
  :type activate_new_action: bool | None
85
125
  """
86
126
 
bpy/types/__init__.pyi CHANGED
@@ -25288,6 +25288,7 @@ example of how to create/use filtering/reordering callbacks.
25288
25288
  --------------------
25289
25289
 
25290
25290
  * Action.slots
25291
+ * ActionChannelbag.slot
25291
25292
  * ActionChannelbags.new
25292
25293
  * ActionConstraint.action_slot
25293
25294
  * ActionConstraint.action_suitable_slots
@@ -114564,6 +114565,12 @@ class ActionChannelbag(bpy_struct):
114564
114565
  :type: ActionChannelbagGroups
114565
114566
  """
114566
114567
 
114568
+ slot: ActionSlot
114569
+ """ The Slot that the Channelbag's animation data is for
114570
+
114571
+ :type: ActionSlot
114572
+ """
114573
+
114567
114574
  slot_handle: int
114568
114575
  """
114569
114576
 
@@ -119735,6 +119742,24 @@ class Brush(ID, bpy_struct):
119735
119742
  :type: PaintCurve | None
119736
119743
  """
119737
119744
 
119745
+ plane_depth: float
119746
+ """ The maximum distance below the plane for affected vertices. Increasing the depth affects vertices farther below the plane.
119747
+
119748
+ :type: float
119749
+ """
119750
+
119751
+ plane_height: float
119752
+ """ The maximum distance above the plane for affected vertices. Increasing the height affects vertices farther above the plane.
119753
+
119754
+ :type: float
119755
+ """
119756
+
119757
+ plane_inversion_mode: typing.Literal["INVERT_DISPLACEMENT", "SWAP_DEPTH_AND_HEIGHT"]
119758
+ """ Inversion Mode
119759
+
119760
+ :type: typing.Literal['INVERT_DISPLACEMENT','SWAP_DEPTH_AND_HEIGHT']
119761
+ """
119762
+
119738
119763
  plane_offset: float
119739
119764
  """ Adjust plane on which the brush acts towards or away from the object surface
119740
119765
 
@@ -119875,6 +119900,18 @@ class Brush(ID, bpy_struct):
119875
119900
  :type: int
119876
119901
  """
119877
119902
 
119903
+ stabilize_normal: float
119904
+ """ Stabilize the orientation of the brush plane.
119905
+
119906
+ :type: float
119907
+ """
119908
+
119909
+ stabilize_plane: float
119910
+ """ Stabilize the center of the brush plane.
119911
+
119912
+ :type: float
119913
+ """
119914
+
119878
119915
  stencil_dimension: mathutils.Vector
119879
119916
  """ Dimensions of stencil in viewport
119880
119917
 
@@ -120612,6 +120649,18 @@ class BrushCapabilitiesSculpt(bpy_struct):
120612
120649
  :type: bool
120613
120650
  """
120614
120651
 
120652
+ has_plane_depth: bool
120653
+ """
120654
+
120655
+ :type: bool
120656
+ """
120657
+
120658
+ has_plane_height: bool
120659
+ """
120660
+
120661
+ :type: bool
120662
+ """
120663
+
120615
120664
  has_plane_offset: bool
120616
120665
  """
120617
120666
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: fake-bpy-module
3
- Version: 20250204
3
+ Version: 20250205
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
@@ -191,7 +191,7 @@ bmesh/utils/__init__.pyi,sha256=XNhFTqYQPL7ZUvljUTQkN0X_3YCS_RyrOgEzqrQZiDg,6235
191
191
  bpy/__init__.pyi,sha256=KeQc-X1TjhtunVxLDy0IK0cMmurLmAQm4fX_D__UPJo,464
192
192
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
193
193
  bpy/_typing/__init__.pyi,sha256=7bioadpQS-8UKR8TdY1m4MqUFqKVy8h13sPIt28ZUqs,99
194
- bpy/_typing/rna_enums/__init__.pyi,sha256=WeU_5jwP5G5xPFkCyKfV2zsXtH5WsasE7I3qlrj48WU,138692
194
+ bpy/_typing/rna_enums/__init__.pyi,sha256=5HbFPSOzvlGhGA1nqaneyn_CPRfXCTsJpIhMc0cNhAU,138715
195
195
  bpy/app/__init__.pyi,sha256=s6DxbRrXGzFTpAIeczXT4DiCPzeYAKldZFZk4uVR5Yg,8740
196
196
  bpy/app/handlers/__init__.pyi,sha256=Gxao8v-gF10WpVRUdswsB4QndzHjO1UtymwrorJef-4,6911
197
197
  bpy/app/icons/__init__.pyi,sha256=w18Xn9y0T54WlpHyhC3_y8a3Lq9kuo3U72Bu7wOY41A,928
@@ -249,7 +249,7 @@ bpy/ops/paintcurve/__init__.pyi,sha256=sJfa-6TohaHNlvBFZ5X2vhjeMCp91in2K6UqwIF3d
249
249
  bpy/ops/palette/__init__.pyi,sha256=RD7rkE6f28SyME46hM3HwjWKCgKFtOXZDDPOO6mQB0Q,2093
250
250
  bpy/ops/particle/__init__.pyi,sha256=fvUbIxeb5nxdxJAK6wWu0AsCBIpy3cCKXMNKY2ZIJqM,13621
251
251
  bpy/ops/pose/__init__.pyi,sha256=X3uT13DBbdw1nsmBhbId71DYAjYEGL6WtapfpwpihzA,26770
252
- bpy/ops/poselib/__init__.pyi,sha256=WK-1Has2-NPp_7EkB-PHV1MtfVgTXMMnkhrtQPYcISc,3820
252
+ bpy/ops/poselib/__init__.pyi,sha256=ewVRAAAMZcuI8kfzx81IRKp_WpUwe2xhbl-VPpdgSHw,5369
253
253
  bpy/ops/preferences/__init__.pyi,sha256=iG82fOc0EGoI0_KoSgUbtUEMlcN71gxdq3SlVkCz01w,19499
254
254
  bpy/ops/ptcache/__init__.pyi,sha256=9WgZUXKtu-AeqF0pYrP8ZSdFXz2jHMdPjmp6zLesL2Q,1667
255
255
  bpy/ops/render/__init__.pyi,sha256=9LDvtzNUv_nd3elJDKQFIXJltAIgsvvinpvyVu5q8cU,7425
@@ -277,7 +277,7 @@ bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHC
277
277
  bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
278
278
  bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
279
279
  bpy/props/__init__.pyi,sha256=Ky1J5ndL8p_pvAaQakudyKKVynbr1NxXvzoN-5E9_I0,35237
280
- bpy/types/__init__.pyi,sha256=zo0peDhMWXOq-xkT6NiHJuDozRwYqx1GZYfSBv6nRxg,5423061
280
+ bpy/types/__init__.pyi,sha256=U_V3WJpkVipqoHi9xgSAPV38x2N455HLRueUs-aIEmA,5424093
281
281
  bpy/utils/__init__.pyi,sha256=Dwq7WFMz4vZM6bcYjsWYj9mYm1SDnqESf0d0UPX4xPE,14897
282
282
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
283
283
  bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
@@ -326,7 +326,7 @@ gpu/texture/__init__.pyi,sha256=NWixhD9M2vFrAIWlQDM0Co-CNRiU7BbL7imkSOloHHI,641
326
326
  gpu/types/__init__.pyi,sha256=Q8Gym2MsHoDFLW7snVIfPMUGCQns-XA2URYfeOV3nnk,27923
327
327
  gpu_extras/__init__.pyi,sha256=oNgtMNheClZ_iCmKSH63hBJ4U0huayOWKil-qPvYHds,213
328
328
  gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
329
- gpu_extras/batch/__init__.pyi,sha256=nbeZNWRKChMLBkKYc4mLF9abAffVyzEHp01yf64gZK8,1279
329
+ gpu_extras/batch/__init__.pyi,sha256=t-kFLEyZ0OABqt8VbtSwvo60S7vw15Tq5HRea-G3odE,1278
330
330
  gpu_extras/presets/__init__.pyi,sha256=pDhGELr5vKTZ9yDsLJ4Y836Kmh7cs95rDhSwd1i5e-s,1647
331
331
  graphviz_export/__init__.pyi,sha256=LBiepSfMSL7Qix8FZ6LYKmbPgu1AHRvRw3yHDDWYrEw,215
332
332
  graphviz_export/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -359,7 +359,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
359
359
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
360
360
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
361
361
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
- fake_bpy_module-20250204.dist-info/METADATA,sha256=VliTw8eu7uNst0bDZTc_OxbwgGeaAsbyNIMbfqiVwFQ,7429
363
- fake_bpy_module-20250204.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
364
- fake_bpy_module-20250204.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
365
- fake_bpy_module-20250204.dist-info/RECORD,,
362
+ fake_bpy_module-20250205.dist-info/METADATA,sha256=-M5aZ5zYMRwQp8gR6DdVPoPchiTBNanVcl7n4mlWFfU,7429
363
+ fake_bpy_module-20250205.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
364
+ fake_bpy_module-20250205.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
365
+ fake_bpy_module-20250205.dist-info/RECORD,,
@@ -1,6 +1,7 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
+ import bgl
4
5
  import gpu.types
5
6
 
6
7
  def batch_for_shader(
@@ -8,7 +9,7 @@ def batch_for_shader(
8
9
  type: str,
9
10
  content: dict[
10
11
  str,
11
- gpu.types.Buffer
12
+ bgl.Buffer
12
13
  | collections.abc.Sequence[float]
13
14
  | collections.abc.Sequence[int]
14
15
  | collections.abc.Sequence[collections.abc.Sequence[float]]
@@ -25,7 +26,7 @@ def batch_for_shader(
25
26
  :type type: str
26
27
  :param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
27
28
  For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
28
- :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]]]
29
+ :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
30
  :return: compatible batch
30
31
  :rtype: gpu.types.GPUBatch
31
32
  """