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

@@ -1326,6 +1326,9 @@ class _defs_paint_grease_pencil:
1326
1326
  erase: typing.Any
1327
1327
  """ """
1328
1328
 
1329
+ tint: typing.Any
1330
+ """ """
1331
+
1329
1332
  class _defs_particle:
1330
1333
  """ """
1331
1334
 
@@ -19,12 +19,12 @@ def fbx(
19
19
  use_space_transform: typing.Union[bool, typing.Any] = True,
20
20
  bake_space_transform: typing.Union[bool, typing.Any] = False,
21
21
  object_types: typing.Any = {
22
- '"EMPTY"',
23
- '"ARMATURE"',
22
+ '"LIGHT"',
24
23
  '"OTHER"',
25
- '"CAMERA"',
24
+ '"ARMATURE"',
26
25
  '"MESH"',
27
- '"LIGHT"',
26
+ '"CAMERA"',
27
+ '"EMPTY"',
28
28
  },
29
29
  use_mesh_modifiers: typing.Union[bool, typing.Any] = True,
30
30
  use_mesh_modifiers_render: typing.Union[bool, typing.Any] = True,
bpy/ops/mesh/__init__.pyi CHANGED
@@ -398,7 +398,7 @@ def convex_hull(
398
398
  :type shape_threshold: typing.Any
399
399
  :param uvs: Compare UVs
400
400
  :type uvs: typing.Union[bool, typing.Any]
401
- :param vcols: Compare VCols
401
+ :param vcols: Compare Color Attributes
402
402
  :type vcols: typing.Union[bool, typing.Any]
403
403
  :param seam: Compare Seam
404
404
  :type seam: typing.Union[bool, typing.Any]
@@ -3884,7 +3884,7 @@ def tris_convert_to_quads(
3884
3884
  :type shape_threshold: typing.Any
3885
3885
  :param uvs: Compare UVs
3886
3886
  :type uvs: typing.Union[bool, typing.Any]
3887
- :param vcols: Compare VCols
3887
+ :param vcols: Compare Color Attributes
3888
3888
  :type vcols: typing.Union[bool, typing.Any]
3889
3889
  :param seam: Compare Seam
3890
3890
  :type seam: typing.Union[bool, typing.Any]
bpy/ops/nla/__init__.pyi CHANGED
@@ -100,11 +100,11 @@ def bake(
100
100
  clean_curves: typing.Union[bool, typing.Any] = False,
101
101
  bake_types: typing.Any = {'"POSE"'},
102
102
  channel_types: typing.Any = {
103
- '"BBONE"',
104
103
  '"PROPS"',
104
+ '"BBONE"',
105
105
  '"LOCATION"',
106
- '"SCALE"',
107
106
  '"ROTATION"',
107
+ '"SCALE"',
108
108
  },
109
109
  ):
110
110
  """Bake all selected objects location/scale/rotation animation to an action
@@ -47,7 +47,7 @@ def cloth_filter(
47
47
  bpy.types.OperatorStrokeElement
48
48
  ] = None,
49
49
  type: typing.Any = "GRAVITY",
50
- force_axis: typing.Any = {'"Y"', '"X"', '"Z"'},
50
+ force_axis: typing.Any = {'"Y"', '"Z"', '"X"'},
51
51
  orientation: typing.Any = "LOCAL",
52
52
  cloth_mass: typing.Any = 1.0,
53
53
  cloth_damping: typing.Any = 0.0,
@@ -599,7 +599,7 @@ def mesh_filter(
599
599
  bpy.types.OperatorStrokeElement
600
600
  ] = None,
601
601
  type: typing.Any = "INFLATE",
602
- deform_axis: typing.Any = {'"Y"', '"X"', '"Z"'},
602
+ deform_axis: typing.Any = {'"Y"', '"Z"', '"X"'},
603
603
  orientation: typing.Any = "LOCAL",
604
604
  surface_smooth_shape_preservation: typing.Any = 0.5,
605
605
  surface_smooth_current_vertex: typing.Any = 0.5,
bpy/types/__init__.pyi CHANGED
@@ -54364,6 +54364,161 @@ class GreasePencilSubdivModifier(bpy_struct):
54364
54364
  """
54365
54365
  ...
54366
54366
 
54367
+ class GreasePencilTextureModifier(bpy_struct):
54368
+ """Transform stroke texture coordinates Modifier"""
54369
+
54370
+ alignment_rotation: float
54371
+ """ Additional rotation applied to dots and square strokes
54372
+
54373
+ :type: float
54374
+ """
54375
+
54376
+ fill_offset: typing.Union[
54377
+ typing.List[float], typing.Tuple[float, float], mathutils.Vector
54378
+ ]
54379
+ """ Additional offset of the fill UV
54380
+
54381
+ :type: typing.Union[typing.List[float], typing.Tuple[float, float], mathutils.Vector]
54382
+ """
54383
+
54384
+ fill_rotation: float
54385
+ """ Additional rotation of the fill UV
54386
+
54387
+ :type: float
54388
+ """
54389
+
54390
+ fill_scale: float
54391
+ """ Additional scale of the fill UV
54392
+
54393
+ :type: float
54394
+ """
54395
+
54396
+ fit_method: typing.Union[str, int]
54397
+ """
54398
+
54399
+ :type: typing.Union[str, int]
54400
+ """
54401
+
54402
+ invert_layer_filter: bool
54403
+ """ Invert layer filter
54404
+
54405
+ :type: bool
54406
+ """
54407
+
54408
+ invert_layer_pass_filter: bool
54409
+ """ Invert layer pass filter
54410
+
54411
+ :type: bool
54412
+ """
54413
+
54414
+ invert_material_filter: bool
54415
+ """ Invert material filter
54416
+
54417
+ :type: bool
54418
+ """
54419
+
54420
+ invert_material_pass_filter: bool
54421
+ """ Invert material pass filter
54422
+
54423
+ :type: bool
54424
+ """
54425
+
54426
+ invert_vertex_group: bool
54427
+ """ Invert vertex group weights
54428
+
54429
+ :type: bool
54430
+ """
54431
+
54432
+ layer_filter: typing.Union[str, typing.Any]
54433
+ """ Layer name
54434
+
54435
+ :type: typing.Union[str, typing.Any]
54436
+ """
54437
+
54438
+ layer_pass_filter: int
54439
+ """ Layer pass filter
54440
+
54441
+ :type: int
54442
+ """
54443
+
54444
+ material_filter: Material
54445
+ """ Material used for filtering
54446
+
54447
+ :type: Material
54448
+ """
54449
+
54450
+ material_pass_filter: int
54451
+ """ Material pass
54452
+
54453
+ :type: int
54454
+ """
54455
+
54456
+ mode: typing.Union[str, int]
54457
+ """
54458
+
54459
+ :type: typing.Union[str, int]
54460
+ """
54461
+
54462
+ open_influence_panel: bool
54463
+ """
54464
+
54465
+ :type: bool
54466
+ """
54467
+
54468
+ use_layer_pass_filter: bool
54469
+ """ Use layer pass filter
54470
+
54471
+ :type: bool
54472
+ """
54473
+
54474
+ use_material_pass_filter: bool
54475
+ """ Use material pass filter
54476
+
54477
+ :type: bool
54478
+ """
54479
+
54480
+ uv_offset: float
54481
+ """ Offset value to add to stroke UVs
54482
+
54483
+ :type: float
54484
+ """
54485
+
54486
+ uv_scale: float
54487
+ """ Factor to scale the UVs
54488
+
54489
+ :type: float
54490
+ """
54491
+
54492
+ vertex_group_name: typing.Union[str, typing.Any]
54493
+ """ Vertex group name for modulating the deform
54494
+
54495
+ :type: typing.Union[str, typing.Any]
54496
+ """
54497
+
54498
+ @classmethod
54499
+ def bl_rna_get_subclass(cls, id: str, default=None):
54500
+ """
54501
+
54502
+ :param id: The RNA type identifier.
54503
+ :type id: str
54504
+ :param default:
54505
+ :return: The RNA type or default when not found.
54506
+ :rtype: Struct
54507
+ """
54508
+ ...
54509
+
54510
+ @classmethod
54511
+ def bl_rna_get_subclass_py(cls, id: str, default=None):
54512
+ """
54513
+
54514
+ :param id: The RNA type identifier.
54515
+ :type id: str
54516
+ :param default:
54517
+ :return: The class or default when not found.
54518
+ :rtype: typing.Any
54519
+ """
54520
+ ...
54521
+
54367
54522
  class GreasePencilThickModifierData(bpy_struct):
54368
54523
  """Adjust stroke thickness"""
54369
54524
 
@@ -58473,7 +58628,7 @@ class KeyConfigurations(bpy_struct):
58473
58628
  idname: typing.Union[str, typing.Any],
58474
58629
  context: typing.Union[str, int] = "INVOKE_DEFAULT",
58475
58630
  properties: typing.Union[OperatorProperties, typing.Any] = None,
58476
- include: typing.Any = {'"MOUSE"', '"ACTIONZONE"', '"KEYBOARD"', '"NDOF"'},
58631
+ include: typing.Any = {'"NDOF"', '"MOUSE"', '"KEYBOARD"', '"ACTIONZONE"'},
58477
58632
  exclude: typing.Any = {},
58478
58633
  ) -> typing.Any:
58479
58634
  """find_item_from_operator
@@ -58956,7 +59111,7 @@ class KeyMapItems(bpy_struct):
58956
59111
  self,
58957
59112
  idname: typing.Union[str, typing.Any],
58958
59113
  properties: typing.Union[OperatorProperties, typing.Any] = None,
58959
- include: typing.Any = {'"MOUSE"', '"ACTIONZONE"', '"KEYBOARD"', '"NDOF"'},
59114
+ include: typing.Any = {'"NDOF"', '"MOUSE"', '"KEYBOARD"', '"ACTIONZONE"'},
58960
59115
  exclude: typing.Any = {},
58961
59116
  ) -> typing.Any:
58962
59117
  """find_from_operator
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240329
3
+ Version: 20240331
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
@@ -149,7 +149,7 @@ bl_ui/space_statusbar/__init__.pyi,sha256=qRNQiIjAyBghdMA_cGi-bsxriRYdiKdYOlGWWG
149
149
  bl_ui/space_text/__init__.pyi,sha256=skr_Z-5YvN-AYekClJhDyofs5WCym7IixNegs70sbks,41578
150
150
  bl_ui/space_time/__init__.pyi,sha256=V3wZam6K9oSXO7-lWQFVKZ0GyZXSauaoYO5C-rFZZ6I,18567
151
151
  bl_ui/space_toolsystem_common/__init__.pyi,sha256=ggsPZ13QxN5La9B5XhroaEkZ0Yt_IjcyVq--9y8MjFI,6378
152
- bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=PBye1NM8-9SfRi2dPmQ18y32xuPCi-R3k0Ltf9F8adk,24574
152
+ bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=zdyooYiuWvif_oug4_6p3j03T6to6dM4-g1H9-8gUIk,24608
153
153
  bl_ui/space_topbar/__init__.pyi,sha256=VYaoiCgwgRlgAq_CjTCBMVdG8WQqzdBVGvx__1TL0tA,68597
154
154
  bl_ui/space_userpref/__init__.pyi,sha256=WlOtBzTX_9bHRHOotzDIERQy_dfNvyZkdaf--Bei5bY,208887
155
155
  bl_ui/space_view3d/__init__.pyi,sha256=mbTPOlpnfdaHTroY8fL1yp1q2d0c8_oYe2MyUH08AtI,683231
@@ -199,7 +199,7 @@ bpy/ops/dpaint/__init__.pyi,sha256=AJ26qd7otmsIWPCb43XVdV_MaGr211-GlcoxbKhapwU,1
199
199
  bpy/ops/ed/__init__.pyi,sha256=PxaWru-dVJ2bRA2GGwtFFERgL1Mr_p1QUdK_QnWxD4g,8950
200
200
  bpy/ops/export_anim/__init__.pyi,sha256=K6ll7RWxlG8Frqjjlv4iXOsoU1nc0jsGZuKxlVNfyUA,2186
201
201
  bpy/ops/export_mesh/__init__.pyi,sha256=GJhrJezT6_-Z7BDAThJvvP73C9DG4ilTmnO7lHAZqMo,2543
202
- bpy/ops/export_scene/__init__.pyi,sha256=ITM7iHQRZ-08yhhAioUuQjNu6tan0ioZTW7YWR3fmCA,42387
202
+ bpy/ops/export_scene/__init__.pyi,sha256=AYzkAi83Q7APGpi6f43L4JppzjiL674sADPqO6uY2Rk,42387
203
203
  bpy/ops/file/__init__.pyi,sha256=jxCrURW6yr27-_rjXIfY1_ziXEAlpkIp1zOz5tgHTFM,23620
204
204
  bpy/ops/fluid/__init__.pyi,sha256=RccmE8XY37bi96GOWgbp4ROOvBVreb2VlobfzQsuWek,4892
205
205
  bpy/ops/font/__init__.pyi,sha256=uglCjVN1vpCh-mL74iU1FEYQ4x0J2RerHspHisWkJ_A,17772
@@ -219,8 +219,8 @@ bpy/ops/marker/__init__.pyi,sha256=2vJXwqOXcx6eMe2USZF5hMKeBmdbnBnotFNQ06k6nqU,6
219
219
  bpy/ops/mask/__init__.pyi,sha256=0-xKWc42g_nuLyWzBHrXNr7lM8YvZjho3EZMZkQ90QI,19902
220
220
  bpy/ops/material/__init__.pyi,sha256=f0KGtJra_ikDHYZqnncCTPx68-HaFAxmILXiWjJS_ig,1025
221
221
  bpy/ops/mball/__init__.pyi,sha256=WeJtlcvbNyt_RGsLAX2_1j7MxyZ92mW57-ACUxnBC6I,4636
222
- bpy/ops/mesh/__init__.pyi,sha256=KIgiqJlNAyczm7_N9Jf_C2v-qyDdU6DfHdepCowXlfU,140780
223
- bpy/ops/nla/__init__.pyi,sha256=_QN8LML15tNUX5OIdjMGorA0_8lJu2mWwm2wHnQMriM,22313
222
+ bpy/ops/mesh/__init__.pyi,sha256=XONTsEA-ZnUwI1Us-OPTGUasTRP5LkBQF_un2LLTseQ,140802
223
+ bpy/ops/nla/__init__.pyi,sha256=Xdv2C0fqmBcr8iHpXSg1zotehn9IwVlc_ab5adOJkOM,22313
224
224
  bpy/ops/node/__init__.pyi,sha256=-ShkC7hZR9jCIG06Y7pW-EPtts-lJhPw7LnJQj-Dzx4,56637
225
225
  bpy/ops/object/__init__.pyi,sha256=NL74wdHvl9y3Sgo_pMUkualBQvhHja8YIxwGtw1PRRA,187382
226
226
  bpy/ops/outliner/__init__.pyi,sha256=8J3MQ3qmoqlQNtSa8d8uN8o0mmzCNoY7Jc9H-l3Q5Xc,33247
@@ -237,7 +237,7 @@ bpy/ops/rigidbody/__init__.pyi,sha256=uV6UQMykgJYrOtuAKyTURNBs9Pncxb3fsLCTm6X8bN
237
237
  bpy/ops/scene/__init__.pyi,sha256=ZNXODpbsts3fQ18kfOykTQetWng1R7ip4LPsiqmR4F8,18273
238
238
  bpy/ops/screen/__init__.pyi,sha256=wzeP_aViQAhQi_mRZnVsiDs5CtNhJ3i746bv_V9bwP0,24924
239
239
  bpy/ops/script/__init__.pyi,sha256=W_jD0mvJZHtBqp1q8GGR7UrFY8VEN_ORymc_ZvsV0u0,1440
240
- bpy/ops/sculpt/__init__.pyi,sha256=qQ4VoH2QdhPFSJLhqcy5AX_ibp4rvwt0hZ5uvMZdeJs,34542
240
+ bpy/ops/sculpt/__init__.pyi,sha256=Qjsd2hVTZYNiGQMBaGAgj5ls4Mv404TR6bsD1Q3uegI,34542
241
241
  bpy/ops/sculpt_curves/__init__.pyi,sha256=GWcQmCf7s6Zco6Mx5qUN7Y4aYlv1O-sfSCDh8Qc4zDo,2948
242
242
  bpy/ops/sequencer/__init__.pyi,sha256=F9XHqONU6nmF0BM0nQctcpsBWCpyiZP6w0iEPrJt9N4,82020
243
243
  bpy/ops/sound/__init__.pyi,sha256=UMK1uJBLcqTyuUfw11PhFL5Nt3US8BeLOWxMy2PKeC0,18620
@@ -257,7 +257,7 @@ bpy/ops/workspace/__init__.pyi,sha256=tmMtCUDpiKHZQn1hSZmvE2zNGVlygB1p-i0Ax5GytU
257
257
  bpy/ops/world/__init__.pyi,sha256=B_xqAaFXTmjP9tF2yHu5-Y1nUj881orKVWndfcaEh3Y,390
258
258
  bpy/path/__init__.pyi,sha256=JdAATG1YvG3YPT3N8efWnwmPlxVR_xpojqcyxL_eCOY,6278
259
259
  bpy/props/__init__.pyi,sha256=vdhM_8tw-TFNMAPrs7aPEVULxwGbIPnf0v6GkNL_l-U,23440
260
- bpy/types/__init__.pyi,sha256=3OQjy82JQ4bU1SgSrtlYLAL7IhTRPWEAcgpPN2GMXrI,3247859
260
+ bpy/types/__init__.pyi,sha256=JqEIr_TCcS_PUCof_xn_6uo0f3RrLlwVCy4RBJUzokg,3250666
261
261
  bpy/utils/__init__.pyi,sha256=bT0NbmiolU8QUn9ZB2O9monMi_k7nPJ1ru6iCURdxhA,11458
262
262
  bpy/utils/previews/__init__.pyi,sha256=0vWcQrvQ0xgzxF8AAUu2XVRZgkEGqqoQBk8ovUVF0u4,3035
263
263
  bpy/utils/units/__init__.pyi,sha256=_vftjWBslN88fC2G93Hict7Kdr3PSzm0lrSL96_wsRc,2230
@@ -337,7 +337,7 @@ rna_xml/__init__.pyi,sha256=12yOlLxfl-1hZ6MN5TCak3gGdgz4TknNjZ4OuoJE7x4,578
337
337
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
338
338
  sys_info/__init__.pyi,sha256=5cKQiE7NFvOTsjdqB7pO7uflClATfF-90sCEeo9JOO8,110
339
339
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
340
- fake_bpy_module-20240329.dist-info/METADATA,sha256=L1wzVtmKrfDgMRN8Q0u7b51nyvLi9mPPFsmEQI4t9A4,7008
341
- fake_bpy_module-20240329.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
342
- fake_bpy_module-20240329.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
343
- fake_bpy_module-20240329.dist-info/RECORD,,
340
+ fake_bpy_module-20240331.dist-info/METADATA,sha256=rjjb6P0MUYLyHxJo8FcNT9ReLtbm1l_5MlLrU-qeUPU,7008
341
+ fake_bpy_module-20240331.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
342
+ fake_bpy_module-20240331.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
343
+ fake_bpy_module-20240331.dist-info/RECORD,,