fake-bge-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.
@@ -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
@@ -26397,6 +26397,7 @@ example of how to create/use filtering/reordering callbacks.
26397
26397
  --------------------
26398
26398
 
26399
26399
  * Action.slots
26400
+ * ActionChannelbag.slot
26400
26401
  * ActionChannelbags.new
26401
26402
  * ActionConstraint.action_slot
26402
26403
  * ActionConstraint.action_suitable_slots
@@ -118911,6 +118912,12 @@ class ActionChannelbag(bpy_struct):
118911
118912
  :type: ActionChannelbagGroups
118912
118913
  """
118913
118914
 
118915
+ slot: ActionSlot
118916
+ """ The Slot that the Channelbag's animation data is for
118917
+
118918
+ :type: ActionSlot
118919
+ """
118920
+
118914
118921
  slot_handle: int
118915
118922
  """
118916
118923
 
@@ -124371,6 +124378,24 @@ class Brush(ID, bpy_struct):
124371
124378
  :type: PaintCurve | None
124372
124379
  """
124373
124380
 
124381
+ plane_depth: float
124382
+ """ The maximum distance below the plane for affected vertices. Increasing the depth affects vertices farther below the plane.
124383
+
124384
+ :type: float
124385
+ """
124386
+
124387
+ plane_height: float
124388
+ """ The maximum distance above the plane for affected vertices. Increasing the height affects vertices farther above the plane.
124389
+
124390
+ :type: float
124391
+ """
124392
+
124393
+ plane_inversion_mode: typing.Literal["INVERT_DISPLACEMENT", "SWAP_DEPTH_AND_HEIGHT"]
124394
+ """ Inversion Mode
124395
+
124396
+ :type: typing.Literal['INVERT_DISPLACEMENT','SWAP_DEPTH_AND_HEIGHT']
124397
+ """
124398
+
124374
124399
  plane_offset: float
124375
124400
  """ Adjust plane on which the brush acts towards or away from the object surface
124376
124401
 
@@ -124511,6 +124536,18 @@ class Brush(ID, bpy_struct):
124511
124536
  :type: int
124512
124537
  """
124513
124538
 
124539
+ stabilize_normal: float
124540
+ """ Stabilize the orientation of the brush plane.
124541
+
124542
+ :type: float
124543
+ """
124544
+
124545
+ stabilize_plane: float
124546
+ """ Stabilize the center of the brush plane.
124547
+
124548
+ :type: float
124549
+ """
124550
+
124514
124551
  stencil_dimension: mathutils.Vector
124515
124552
  """ Dimensions of stencil in viewport
124516
124553
 
@@ -125248,6 +125285,18 @@ class BrushCapabilitiesSculpt(bpy_struct):
125248
125285
  :type: bool
125249
125286
  """
125250
125287
 
125288
+ has_plane_depth: bool
125289
+ """
125290
+
125291
+ :type: bool
125292
+ """
125293
+
125294
+ has_plane_height: bool
125295
+ """
125296
+
125297
+ :type: bool
125298
+ """
125299
+
125251
125300
  has_plane_offset: bool
125252
125301
  """
125253
125302
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: fake-bge-module
3
- Version: 20250204
3
+ Version: 20250205
4
4
  Summary: Collection of the fake Blender Game Engine (BGE) Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -218,7 +218,7 @@ bmesh/utils/__init__.pyi,sha256=XNhFTqYQPL7ZUvljUTQkN0X_3YCS_RyrOgEzqrQZiDg,6235
218
218
  bpy/__init__.pyi,sha256=KeQc-X1TjhtunVxLDy0IK0cMmurLmAQm4fX_D__UPJo,464
219
219
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
220
220
  bpy/_typing/__init__.pyi,sha256=7bioadpQS-8UKR8TdY1m4MqUFqKVy8h13sPIt28ZUqs,99
221
- bpy/_typing/rna_enums/__init__.pyi,sha256=UVng53WN_J9kViC3XjIFhuFpR6W9afZqlVO7G4A2gTo,139465
221
+ bpy/_typing/rna_enums/__init__.pyi,sha256=GIYXtHNhIYCj7bHNwYiPf2Ntz6pb210FINgya56YG5k,139488
222
222
  bpy/app/__init__.pyi,sha256=-q7lN49MbhnKSIN-ZJ99fRC_RRrTNow6XEefo2HaNlA,8768
223
223
  bpy/app/handlers/__init__.pyi,sha256=paak3tw5Edrs_VfQUvgZNA6YsTeuBULkNe9mgo2TzI8,7116
224
224
  bpy/app/icons/__init__.pyi,sha256=w18Xn9y0T54WlpHyhC3_y8a3Lq9kuo3U72Bu7wOY41A,928
@@ -277,7 +277,7 @@ bpy/ops/paintcurve/__init__.pyi,sha256=sJfa-6TohaHNlvBFZ5X2vhjeMCp91in2K6UqwIF3d
277
277
  bpy/ops/palette/__init__.pyi,sha256=RD7rkE6f28SyME46hM3HwjWKCgKFtOXZDDPOO6mQB0Q,2093
278
278
  bpy/ops/particle/__init__.pyi,sha256=fvUbIxeb5nxdxJAK6wWu0AsCBIpy3cCKXMNKY2ZIJqM,13621
279
279
  bpy/ops/pose/__init__.pyi,sha256=X3uT13DBbdw1nsmBhbId71DYAjYEGL6WtapfpwpihzA,26770
280
- bpy/ops/poselib/__init__.pyi,sha256=WK-1Has2-NPp_7EkB-PHV1MtfVgTXMMnkhrtQPYcISc,3820
280
+ bpy/ops/poselib/__init__.pyi,sha256=ewVRAAAMZcuI8kfzx81IRKp_WpUwe2xhbl-VPpdgSHw,5369
281
281
  bpy/ops/preferences/__init__.pyi,sha256=iG82fOc0EGoI0_KoSgUbtUEMlcN71gxdq3SlVkCz01w,19499
282
282
  bpy/ops/ptcache/__init__.pyi,sha256=9WgZUXKtu-AeqF0pYrP8ZSdFXz2jHMdPjmp6zLesL2Q,1667
283
283
  bpy/ops/render/__init__.pyi,sha256=9LDvtzNUv_nd3elJDKQFIXJltAIgsvvinpvyVu5q8cU,7425
@@ -305,7 +305,7 @@ bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHC
305
305
  bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
306
306
  bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
307
307
  bpy/props/__init__.pyi,sha256=Ky1J5ndL8p_pvAaQakudyKKVynbr1NxXvzoN-5E9_I0,35237
308
- bpy/types/__init__.pyi,sha256=WPtfjJIGSKUxJgNTLFctxKnRMsBEndCugIjCTyVHFjc,5653910
308
+ bpy/types/__init__.pyi,sha256=c2k1M0OR8lsstly7gw7ODiFNABiqBvxKL1CN6J3AjCA,5654942
309
309
  bpy/utils/__init__.pyi,sha256=Dwq7WFMz4vZM6bcYjsWYj9mYm1SDnqESf0d0UPX4xPE,14897
310
310
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
311
311
  bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
@@ -340,7 +340,7 @@ freestyle/functions/__init__.pyi,sha256=sEPnGHwZm8XBlfE7CKLros3CKJlAh1h1FI74nBTE
340
340
  freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
341
341
  freestyle/shaders/__init__.pyi,sha256=4a-rY8mkkIcsnIvYGcP8YgAULdJENDJnncju2CjhQVg,24014
342
342
  freestyle/types/__init__.pyi,sha256=Dmb8LokYlO2lCfmDwPX5MwwpnHHSRaXU2t6Nu37Rzjg,100200
343
- freestyle/utils/__init__.pyi,sha256=DdX3Qj2yTIu8jXdOAnf_9yKhJ5AQFnS_zVvSAdTfBpU,5108
343
+ freestyle/utils/__init__.pyi,sha256=lW5JWrilkFTvRmtYoS3hbmWfj2abo2hHsvp4eyGLbcQ,5108
344
344
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=fPDfiBEjpoqXQhBhmHJ6WxG9oLMItwQ32MxKQz_c9_I,3445
345
345
  gpu/__init__.pyi,sha256=Q-AbyJO85pPYcwXNWtvgAhFGGJ6OnnHrlsXQxur9jhs,7999
346
346
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -387,7 +387,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
387
387
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
388
388
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
389
389
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
390
- fake_bge_module-20250204.dist-info/METADATA,sha256=0chuGEUekvOEZz-vMtvSlvAU1zxq2sQUcB3wi4nYO8M,4872
391
- fake_bge_module-20250204.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
392
- fake_bge_module-20250204.dist-info/top_level.txt,sha256=eE5ylpw84TnTp2h-RCfTJgCBykd4PsHdymQwBM_dVls,544
393
- fake_bge_module-20250204.dist-info/RECORD,,
390
+ fake_bge_module-20250205.dist-info/METADATA,sha256=G7MW69okSaRhz9deZlPKkHJpCvUnqE4Xq0qiRUeCuPc,4872
391
+ fake_bge_module-20250205.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
392
+ fake_bge_module-20250205.dist-info/top_level.txt,sha256=eE5ylpw84TnTp2h-RCfTJgCBykd4PsHdymQwBM_dVls,544
393
+ fake_bge_module-20250205.dist-info/RECORD,,
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
124
124
  """get the diffuse RGBA color from an FEdge"""
125
125
 
126
126
  def normal_at_I0D(it): ...
127
- def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
127
+ def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
128
128
  """Yields a tuple containing the previous and current object"""
129
129
 
130
130
  def rgb_to_bw(r, g, b):