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

bpy/ops/ui/__init__.pyi CHANGED
@@ -179,6 +179,18 @@ def editsource(
179
179
  :type undo: bool | None
180
180
  """
181
181
 
182
+ def eyedropper_bone(
183
+ override_context: bpy.types.Context | dict[str, typing.Any] = None,
184
+ execution_context: int | str | None = None,
185
+ undo: bool | None = None,
186
+ ):
187
+ """Sample a bone from the 3D View or the Outliner to store in a property
188
+
189
+ :type override_context: bpy.types.Context | dict[str, typing.Any]
190
+ :type execution_context: int | str | None
191
+ :type undo: bool | None
192
+ """
193
+
182
194
  def eyedropper_color(
183
195
  override_context: bpy.types.Context | dict[str, typing.Any] = None,
184
196
  execution_context: int | str | None = None,
bpy/types/__init__.pyi CHANGED
@@ -112510,20 +112510,67 @@ class ActionSlot(bpy_struct):
112510
112510
  :type: int
112511
112511
  """
112512
112512
 
112513
- idtype_icon: int
112513
+ id_root: typing.Literal[
112514
+ "ACTION",
112515
+ "ARMATURE",
112516
+ "BRUSH",
112517
+ "CACHEFILE",
112518
+ "CAMERA",
112519
+ "COLLECTION",
112520
+ "CURVE",
112521
+ "CURVES",
112522
+ "FONT",
112523
+ "GREASEPENCIL",
112524
+ "GREASEPENCIL_V3",
112525
+ "IMAGE",
112526
+ "KEY",
112527
+ "LATTICE",
112528
+ "LIBRARY",
112529
+ "LIGHT",
112530
+ "LIGHT_PROBE",
112531
+ "LINESTYLE",
112532
+ "MASK",
112533
+ "MATERIAL",
112534
+ "MESH",
112535
+ "META",
112536
+ "MOVIECLIP",
112537
+ "NODETREE",
112538
+ "OBJECT",
112539
+ "PAINTCURVE",
112540
+ "PALETTE",
112541
+ "PARTICLE",
112542
+ "POINTCLOUD",
112543
+ "SCENE",
112544
+ "SCREEN",
112545
+ "SOUND",
112546
+ "SPEAKER",
112547
+ "TEXT",
112548
+ "TEXTURE",
112549
+ "VOLUME",
112550
+ "WINDOWMANAGER",
112551
+ "WORKSPACE",
112552
+ "WORLD",
112553
+ "UNSPECIFIED",
112554
+ ]
112555
+ """ Type of data-block that can be animated by this slot
112556
+
112557
+ :type: typing.Literal['ACTION','ARMATURE','BRUSH','CACHEFILE','CAMERA','COLLECTION','CURVE','CURVES','FONT','GREASEPENCIL','GREASEPENCIL_V3','IMAGE','KEY','LATTICE','LIBRARY','LIGHT','LIGHT_PROBE','LINESTYLE','MASK','MATERIAL','MESH','META','MOVIECLIP','NODETREE','OBJECT','PAINTCURVE','PALETTE','PARTICLE','POINTCLOUD','SCENE','SCREEN','SOUND','SPEAKER','TEXT','TEXTURE','VOLUME','WINDOWMANAGER','WORKSPACE','WORLD','UNSPECIFIED']
112558
+ """
112559
+
112560
+ id_root_icon: int
112514
112561
  """
112515
112562
 
112516
112563
  :type: int
112517
112564
  """
112518
112565
 
112519
112566
  name: str
112520
- """ Used when connecting an Action to a data-block, to find the correct slot handle
112567
+ """ Used when connecting an Action to a data-block, to find the correct slot handle. This is the display name, prefixed by two characters determined by the slot's ID type
112521
112568
 
112522
112569
  :type: str
112523
112570
  """
112524
112571
 
112525
112572
  name_display: str
112526
- """ Name of the slot for showing in the interface. It is the name, without the first two characters that identify what kind of data-block it animates.
112573
+ """ Name of the slot, for display in the user interface. This name combined with the slot's data-block type is unique within its Action
112527
112574
 
112528
112575
  :type: str
112529
112576
  """
@@ -118700,7 +118747,7 @@ class BrushGpencilSettings(bpy_struct):
118700
118747
  """
118701
118748
 
118702
118749
  use_settings_outline: bool
118703
- """ Convert stroke to perimeter
118750
+ """ Convert stroke to outline
118704
118751
 
118705
118752
  :type: bool
118706
118753
  """
@@ -217708,12 +217755,24 @@ class ThemeUserInterface(bpy_struct):
217708
217755
  :type: mathutils.Color
217709
217756
  """
217710
217757
 
217711
- editor_outline: mathutils.Color
217712
- """ Color of the outline of the editors and their round corners
217758
+ editor_border: mathutils.Color
217759
+ """ Color of the border between editors
217713
217760
 
217714
217761
  :type: mathutils.Color
217715
217762
  """
217716
217763
 
217764
+ editor_outline: bpy_prop_array[float]
217765
+ """ Color of the outline of each editor, except the active one
217766
+
217767
+ :type: bpy_prop_array[float]
217768
+ """
217769
+
217770
+ editor_outline_active: bpy_prop_array[float]
217771
+ """ Color of the outline of the active editor
217772
+
217773
+ :type: bpy_prop_array[float]
217774
+ """
217775
+
217717
217776
  gizmo_a: mathutils.Color
217718
217777
  """
217719
217778
 
bpy/typing/__init__.pyi CHANGED
@@ -2314,7 +2314,7 @@ type ObjectModifierTypeItems = typing.Literal[
2314
2314
  "GREASE_PENCIL_SIMPLIFY", # Simplify.Simplify stroke reducing number of points.
2315
2315
  "GREASE_PENCIL_SUBDIV", # Subdivide.Grease Pencil subdivide modifier.
2316
2316
  "GREASE_PENCIL_ENVELOPE", # Envelope.Create an envelope shape.
2317
- "GREASE_PENCIL_OUTLINE", # Outline.Convert stroke to perimeter.
2317
+ "GREASE_PENCIL_OUTLINE", # Outline.Convert stroke to outline.
2318
2318
  "ARMATURE", # Armature.Deform the shape using an armature object.
2319
2319
  "CAST", # Cast.Shift the shape towards a predefined primitive.
2320
2320
  "CURVE", # Curve.Bend the mesh using a curve object.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240926
3
+ Version: 20240927
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
@@ -266,7 +266,7 @@ bpy/ops/text/__init__.pyi,sha256=xgNPzOtwwfsqars7bS3BCjbUVxChtJN4ijtFlM5-TAA,271
266
266
  bpy/ops/text_editor/__init__.pyi,sha256=X6OO2EJlcXLI2V0wUpY0CYN3wWbmex9UyzbAjkKFQFA,787
267
267
  bpy/ops/texture/__init__.pyi,sha256=ciao77HW4AR82KnWyCTGia2cvrt6tofSGvO-q-h6IoA,1654
268
268
  bpy/ops/transform/__init__.pyi,sha256=xWPwqPz6ezRWj2ojVFl0NY_HgWf4GbHfAQYSafW3FiY,61028
269
- bpy/ops/ui/__init__.pyi,sha256=zwkmBabYbVOrWjW8v89Gw6EzrwpQ0nBk3powj1qDo-8,17092
269
+ bpy/ops/ui/__init__.pyi,sha256=Ryul8H-SjXhABn5aOYmbHXsMQ3jgwA7hoA6WIji_eY8,17497
270
270
  bpy/ops/uilist/__init__.pyi,sha256=1j1BOk3jU2UMPG118gnlNAWvG0mny4q6niyUcDmX1HI,2044
271
271
  bpy/ops/uv/__init__.pyi,sha256=x9IoLW6Axs_mucbfMq0TrMtTmoQcad7gUir0XcIVHSE,52020
272
272
  bpy/ops/view2d/__init__.pyi,sha256=9y-7TbxjffVQRn9mYm3M-M2FtytOnsAFLTqTPoWJHMw,8941
@@ -276,8 +276,8 @@ bpy/ops/workspace/__init__.pyi,sha256=49b-pV7pbv_RQgq0i7WMkXE3p-qiHB79I8JLbG1W6h
276
276
  bpy/ops/world/__init__.pyi,sha256=btAfDpAw4qQBryoGByhcX-FUkNvh26J45diTP1w-3-s,918
277
277
  bpy/path/__init__.pyi,sha256=lXSqQ4p4zukM_-6TaN4v7lNWFVY0xbYGMkOVLpkbpsI,5444
278
278
  bpy/props/__init__.pyi,sha256=jUUCk6C-K0f8Qt8-ln9GB_IH0NteN6meCPjr2spyhq4,29439
279
- bpy/types/__init__.pyi,sha256=rwwbB70nkRRGRnEpPUZGT8Ld-nI06Vg2Ix51xjS_hd4,5347249
280
- bpy/typing/__init__.pyi,sha256=1k3-uNpFvUJGzsM0ocpLLbdFxdph3q-ltxLfw9I0rLE,137925
279
+ bpy/types/__init__.pyi,sha256=-ZDlk_4XNuZQMlWKYIZP5ibMRxZ9lqEGTOKTXSVSYvk,5348900
280
+ bpy/typing/__init__.pyi,sha256=2TnLHG2P9MWmi3IfeuY5CkgX4KITEtQg_1ACdkPunWw,137923
281
281
  bpy/utils/__init__.pyi,sha256=AEb3oVPPh_gqLyKORj6rsxDPWvXIHjqp_eME3z98GcM,13117
282
282
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
283
283
  bpy/utils/units/__init__.pyi,sha256=r9G6UXferw_5pDijn-FmpyhYSnEng3_y-5apdkPAKl0,2631
@@ -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-20240926.dist-info/METADATA,sha256=EQ75KyR2aSmNGqJOP8TSXazVFOCzbBW3E9rHwjskVmo,7289
363
- fake_bpy_module-20240926.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
364
- fake_bpy_module-20240926.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
365
- fake_bpy_module-20240926.dist-info/RECORD,,
362
+ fake_bpy_module-20240927.dist-info/METADATA,sha256=jOdVnQSMZNO7-HRAJ06_yrfiq_h6FP4ZBwxM3Bym-4s,7289
363
+ fake_bpy_module-20240927.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
364
+ fake_bpy_module-20240927.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
365
+ fake_bpy_module-20240927.dist-info/RECORD,,