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

@@ -359,7 +359,7 @@ def brush_settings(layout, context, brush, popover=False):
359
359
 
360
360
  """
361
361
 
362
- def brush_settings_advanced(layout, context, brush, popover=False):
362
+ def brush_settings_advanced(layout, context, settings, brush, popover=False):
363
363
  """Draw advanced brush settings for Sculpt, Texture/Vertex/Weight Paint modes."""
364
364
 
365
365
  def brush_shared_settings(layout, context, brush, popover=False):
@@ -4166,7 +4166,7 @@ class VIEW3D_MT_select_edit_metaball(bpy.types.Menu):
4166
4166
  :param _context:
4167
4167
  """
4168
4168
 
4169
- class VIEW3D_MT_select_edit_point_cloud(bpy.types.Menu):
4169
+ class VIEW3D_MT_select_edit_pointcloud(bpy.types.Menu):
4170
4170
  bl_label: typing.Any
4171
4171
  bl_rna: typing.Any
4172
4172
  id_data: typing.Any
@@ -399,7 +399,7 @@ type ContextModeItems = typing.Literal[
399
399
  "EDIT_METABALL", # Metaball Edit.
400
400
  "EDIT_LATTICE", # Lattice Edit.
401
401
  "EDIT_GREASE_PENCIL", # Grease Pencil Edit.
402
- "EDIT_POINT_CLOUD", # Point Cloud Edit.
402
+ "EDIT_POINTCLOUD", # Point Cloud Edit.
403
403
  "POSE", # Pose.
404
404
  "SCULPT", # Sculpt.
405
405
  "PAINT_WEIGHT", # Weight Paint.
bpy/ops/__init__.pyi CHANGED
@@ -207,7 +207,7 @@ from . import paint as paint
207
207
  from . import paintcurve as paintcurve
208
208
  from . import palette as palette
209
209
  from . import particle as particle
210
- from . import point_cloud as point_cloud
210
+ from . import pointcloud as pointcloud
211
211
  from . import pose as pose
212
212
  from . import poselib as poselib
213
213
  from . import preferences as preferences
@@ -55,15 +55,15 @@ def duplicate_move(
55
55
  undo: bool | None = None,
56
56
  /,
57
57
  *,
58
- POINT_CLOUD_OT_duplicate: typing.Any | None = None,
58
+ POINTCLOUD_OT_duplicate: duplicate | None = None,
59
59
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
60
60
  ):
61
61
  """Make copies of selected elements and move them
62
62
 
63
63
  :type execution_context: int | str | None
64
64
  :type undo: bool | None
65
- :param POINT_CLOUD_OT_duplicate: Duplicate, Copy selected points
66
- :type POINT_CLOUD_OT_duplicate: typing.Any | None
65
+ :param POINTCLOUD_OT_duplicate: Duplicate, Copy selected points
66
+ :type POINTCLOUD_OT_duplicate: duplicate | None
67
67
  :param TRANSFORM_OT_translate: Move, Move selected items
68
68
  :type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
69
69
  """
@@ -95,6 +95,24 @@ def select_all(
95
95
  :type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
96
96
  """
97
97
 
98
+ def select_random(
99
+ execution_context: int | str | None = None,
100
+ undo: bool | None = None,
101
+ /,
102
+ *,
103
+ seed: int | None = 0,
104
+ probability: float | None = 0.5,
105
+ ):
106
+ """Randomizes existing selection or create new random selection
107
+
108
+ :type execution_context: int | str | None
109
+ :type undo: bool | None
110
+ :param seed: Seed, Source of randomness
111
+ :type seed: int | None
112
+ :param probability: Probability, Chance of every point being included in the selection
113
+ :type probability: float | None
114
+ """
115
+
98
116
  def separate(execution_context: int | str | None = None, undo: bool | None = None):
99
117
  """Separate selected geometry into a new point cloud
100
118
 
bpy/types/__init__.pyi CHANGED
@@ -57635,7 +57635,6 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
57635
57635
  * BlendDataImages.load
57636
57636
  * BlendDataImages.new
57637
57637
  * BlendDataImages.remove
57638
- * Brush.clone_image
57639
57638
  * CameraBackgroundImage.image
57640
57639
  * CompositorNodeCryptomatteV2.image
57641
57640
  * CompositorNodeImage.image
@@ -120982,24 +120981,6 @@ class Brush(ID, bpy_struct):
120982
120981
  :type: BrushCapabilities
120983
120982
  """
120984
120983
 
120985
- clone_alpha: float
120986
- """ Opacity of clone image display
120987
-
120988
- :type: float
120989
- """
120990
-
120991
- clone_image: Image | None
120992
- """ Image for clone brushes
120993
-
120994
- :type: Image | None
120995
- """
120996
-
120997
- clone_offset: mathutils.Vector
120998
- """
120999
-
121000
- :type: mathutils.Vector
121001
- """
121002
-
121003
120984
  cloth_constraint_softbody_strength: float
121004
120985
  """ How much the cloth preserves the original shape, acting as a soft body
121005
120986
 
@@ -159117,7 +159098,7 @@ class GeometryNodeTree(NodeTree, ID, bpy_struct):
159117
159098
  :type: bool
159118
159099
  """
159119
159100
 
159120
- is_type_point_cloud: bool
159101
+ is_type_pointcloud: bool
159121
159102
  """ The node group is used for point clouds
159122
159103
 
159123
159104
  :type: bool
@@ -167206,12 +167187,24 @@ class ImagePaint(Paint, bpy_struct):
167206
167187
  :type: Image | None
167207
167188
  """
167208
167189
 
167190
+ clone_alpha: float
167191
+ """ Opacity of clone image display
167192
+
167193
+ :type: float
167194
+ """
167195
+
167209
167196
  clone_image: Image | None
167210
167197
  """ Image used as clone source
167211
167198
 
167212
167199
  :type: Image | None
167213
167200
  """
167214
167201
 
167202
+ clone_offset: mathutils.Vector
167203
+ """
167204
+
167205
+ :type: mathutils.Vector
167206
+ """
167207
+
167215
167208
  dither: float
167216
167209
  """ Amount of dithering when painting on byte images
167217
167210
 
@@ -237437,7 +237430,7 @@ VIEW3D_MT_select_edit_mesh: bl_ui.space_view3d.VIEW3D_MT_select_edit_mesh
237437
237430
 
237438
237431
  VIEW3D_MT_select_edit_metaball: bl_ui.space_view3d.VIEW3D_MT_select_edit_metaball
237439
237432
 
237440
- VIEW3D_MT_select_edit_point_cloud: bl_ui.space_view3d.VIEW3D_MT_select_edit_point_cloud
237433
+ VIEW3D_MT_select_edit_pointcloud: bl_ui.space_view3d.VIEW3D_MT_select_edit_pointcloud
237441
237434
 
237442
237435
  VIEW3D_MT_select_edit_surface: bl_ui.space_view3d.VIEW3D_MT_select_edit_surface
237443
237436
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: fake-bpy-module
3
- Version: 20250219
3
+ Version: 20250221
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
@@ -136,7 +136,7 @@ bl_ui/properties_material/__init__.pyi,sha256=J3GrRdWFeh4p5w2qKtC5Dwz0XF301ATcsC
136
136
  bl_ui/properties_material_gpencil/__init__.pyi,sha256=nzPF77aPdfB82IJ0Gt5kXMy8Lcsu5m2MmhR_uyUwEIY,8590
137
137
  bl_ui/properties_object/__init__.pyi,sha256=8j-f7nIklQcDr8gIfbaHQzZBbfT9DpTDy3g02ZEWtbI,14680
138
138
  bl_ui/properties_output/__init__.pyi,sha256=1fkDdDyAz2lTcSUnef8fai-1hTw9ztgvJsafPT_8vcU,13760
139
- bl_ui/properties_paint_common/__init__.pyi,sha256=INYsmz0kr7GuYAv9v8p-b6taRlrd782PhlFh3zXtE38,7982
139
+ bl_ui/properties_paint_common/__init__.pyi,sha256=aDxo3QM8DJUqm1tf8VWI5meE_gmpiQJtLSK-hBg8tkU,7992
140
140
  bl_ui/properties_particle/__init__.pyi,sha256=HVO0ZWeKHj7ZNP4Bh8ji6IunnLDTpPDNRVZg6TQ8wOU,43414
141
141
  bl_ui/properties_physics_cloth/__init__.pyi,sha256=z4BUwpMH-UQsZv7OfyPU_HHwCGeL-rcpMyY02M-Ew2Q,10647
142
142
  bl_ui/properties_physics_common/__init__.pyi,sha256=2lJ-nAiO5aVycUimdzvPYJAfVyvsnBdaE9nQ9UN2W4w,1338
@@ -173,7 +173,7 @@ bl_ui/space_toolsystem_common/__init__.pyi,sha256=IFq4tTh_oM6-dQWMZbuRo6HhYinOLB
173
173
  bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=amIcQArvjsuZ7iHNMO3EETPZ1LXkSGRjIwTLtqDkJbk,9946
174
174
  bl_ui/space_topbar/__init__.pyi,sha256=tVupsHc6IdA1o_axDcB1Cbf0o8ARZzgLncMXgguQnWY,15316
175
175
  bl_ui/space_userpref/__init__.pyi,sha256=iLYc94VUBgP3dE6whoVFktEjvqAE-oLGDbtey9Y4L0E,79675
176
- bl_ui/space_view3d/__init__.pyi,sha256=cYPicnHWYodDU1P6rA9Q9865sZrgmjOPeW7b5gtVeiY,156446
176
+ bl_ui/space_view3d/__init__.pyi,sha256=pOZyJv_EchJpLM6zEFv2cGOL26umD4MbbneLBQ1653o,156445
177
177
  bl_ui/space_view3d_toolbar/__init__.pyi,sha256=EG6IIG6nSOJAvIRRxU3TyjEQNWZ_n2tFEB6FlwjIhuw,76295
178
178
  bl_ui/utils/__init__.pyi,sha256=qkgl-AlZI3QD4UUITGIvN9PbifOI4BPkZBpu7WyxMBw,483
179
179
  bl_ui_utils/__init__.pyi,sha256=ZOo9_bgn1c9NiCNalhTplCD2IChG67rU_V3BeG0k4pE,93
@@ -192,14 +192,14 @@ bmesh/utils/__init__.pyi,sha256=XNhFTqYQPL7ZUvljUTQkN0X_3YCS_RyrOgEzqrQZiDg,6235
192
192
  bpy/__init__.pyi,sha256=KeQc-X1TjhtunVxLDy0IK0cMmurLmAQm4fX_D__UPJo,464
193
193
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
194
  bpy/_typing/__init__.pyi,sha256=7bioadpQS-8UKR8TdY1m4MqUFqKVy8h13sPIt28ZUqs,99
195
- bpy/_typing/rna_enums/__init__.pyi,sha256=FbJCbUdEBpmkjKPuoah3DYPQsOgvOQ-5ZF_TuFbn3XM,138851
195
+ bpy/_typing/rna_enums/__init__.pyi,sha256=C6M-ucHcC3LOmsIE8jxja74wsN7qdIgbRdy-mEZJyPg,138850
196
196
  bpy/app/__init__.pyi,sha256=rNqetnnLndA8L1Ap2JsOPF9kSBCk2maa6dQtWV_a3ZY,8739
197
197
  bpy/app/handlers/__init__.pyi,sha256=Gxao8v-gF10WpVRUdswsB4QndzHjO1UtymwrorJef-4,6911
198
198
  bpy/app/icons/__init__.pyi,sha256=w18Xn9y0T54WlpHyhC3_y8a3Lq9kuo3U72Bu7wOY41A,928
199
199
  bpy/app/timers/__init__.pyi,sha256=vtrATRAmkTfP1CknievwpOCC19cPOMowyLTE6Ie9GSg,2126
200
200
  bpy/app/translations/__init__.pyi,sha256=rrUs88RJakTJ8IZzE7oRunD_HqLByX5tqmLSrQ_e8dQ,7007
201
201
  bpy/msgbus/__init__.pyi,sha256=e9cmp_Wq7FA5pDTQQJ2s0_I84bEJMu8J-5Lu5gNoClM,2954
202
- bpy/ops/__init__.pyi,sha256=weYePEygySKk9Hdxl5lKjMZZPVQw2itBZ4_h4jEXQjM,5600
202
+ bpy/ops/__init__.pyi,sha256=NJ3gLwOmQ6GxP7La2osayHxGEpq2MTMfUNXQ_XCPn5g,5598
203
203
  bpy/ops/action/__init__.pyi,sha256=LBNWtp-Nd2C-ae5OK4WTxg-ztiufJ4OLan-f6W7EJXo,18645
204
204
  bpy/ops/anim/__init__.pyi,sha256=VM6kJF9mPnpDINvcVqrf-fEHlSRzn-P1vmCPvK8KDwA,24980
205
205
  bpy/ops/armature/__init__.pyi,sha256=k6XyBQsnS9j-7cKqfmN4qYVyhv9gQVwX45g-3DJ8jro,20909
@@ -249,7 +249,7 @@ bpy/ops/paint/__init__.pyi,sha256=Q-EnWEXXc_RyYXxGY0x4zTQbmNwd4HOaPxashYEWwpk,37
249
249
  bpy/ops/paintcurve/__init__.pyi,sha256=sJfa-6TohaHNlvBFZ5X2vhjeMCp91in2K6UqwIF3d80,2980
250
250
  bpy/ops/palette/__init__.pyi,sha256=RD7rkE6f28SyME46hM3HwjWKCgKFtOXZDDPOO6mQB0Q,2093
251
251
  bpy/ops/particle/__init__.pyi,sha256=fvUbIxeb5nxdxJAK6wWu0AsCBIpy3cCKXMNKY2ZIJqM,13621
252
- bpy/ops/point_cloud/__init__.pyi,sha256=SaJsHeCGj2e4iW9vfLVQsZX7EmshxoFI1pVpTeMrcUs,3321
252
+ bpy/ops/pointcloud/__init__.pyi,sha256=dB3XaaDLeHkeSTERVVOG0UYyg75HwGO1cYrhU3XB9sM,3843
253
253
  bpy/ops/pose/__init__.pyi,sha256=X3uT13DBbdw1nsmBhbId71DYAjYEGL6WtapfpwpihzA,26770
254
254
  bpy/ops/poselib/__init__.pyi,sha256=gznUsY5ppqRYjKMHdUHXvCYF0n568JR6t-djfMV9rrU,5374
255
255
  bpy/ops/preferences/__init__.pyi,sha256=1IgwxC10pDOYBY7qhdYOc-VW-I0fpTJXo1LINr1120s,19481
@@ -279,7 +279,7 @@ bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHC
279
279
  bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
280
280
  bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
281
281
  bpy/props/__init__.pyi,sha256=Ky1J5ndL8p_pvAaQakudyKKVynbr1NxXvzoN-5E9_I0,35237
282
- bpy/types/__init__.pyi,sha256=So_orMnvU84zNOuoTr6wzfdMaS43fJ9RC3ji2aHrevE,5471973
282
+ bpy/types/__init__.pyi,sha256=sSn_azOCHqGeK5tqCaZZZVFq4Ln5ivffh3GYL8VM2hI,5471854
283
283
  bpy/utils/__init__.pyi,sha256=y7dfOaWh9PE_q0Qs8gEKOm71RQuMZI0wQ1B07DCDHF4,14909
284
284
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
285
285
  bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
361
361
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
362
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
363
363
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
364
- fake_bpy_module-20250219.dist-info/METADATA,sha256=mtmvOQ6-H_Zo3lfaokQ02oMtBmzTu6Tzxg_xwCDDOO4,7429
365
- fake_bpy_module-20250219.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
366
- fake_bpy_module-20250219.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
- fake_bpy_module-20250219.dist-info/RECORD,,
364
+ fake_bpy_module-20250221.dist-info/METADATA,sha256=B7159hA_2TaOiyTuWZ70Lc8RopJ8SG_AIG2Dg-yqiJs,7429
365
+ fake_bpy_module-20250221.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
366
+ fake_bpy_module-20250221.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
+ fake_bpy_module-20250221.dist-info/RECORD,,