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

@@ -43,6 +43,12 @@ class SCENE_PT_animation(
43
43
  :rtype: typing.Any
44
44
  """
45
45
 
46
+ def draw(self, context):
47
+ """
48
+
49
+ :param context:
50
+ """
51
+
46
52
  class SCENE_PT_audio(SceneButtonsPanel, bpy.types.Panel):
47
53
  bl_context: typing.Any
48
54
  bl_label: typing.Any
bpy/props/__init__.pyi CHANGED
@@ -607,9 +607,10 @@ def PointerProperty(
607
607
  :param override: Enumerator in `rna_enum_property_override_flag_items`.
608
608
  :type override: set[bpy._typing.rna_enums.PropertyOverrideFlagItems]
609
609
  :param tags: Enumerator of tags that are defined by parent class.
610
- :param poll: function to be called to determine whether an item is valid for this property.
611
- The function must take 2 values (self, object) and return Bool.
612
- Note that the poll return value will be checked only when assigning an item from the UI, but it is still possible to assign an "invalid" item to the property directly.
610
+ :param poll: Function that determines whether an item is valid for this property.
611
+ The function must take 2 values (self, object) and return a boolean.
612
+
613
+ The return value will be checked only when assigning an item from the UI, but it is still possible to assign an "invalid" item to the property directly.
613
614
  :type poll: collections.abc.Callable[[bpy.types.bpy_struct, bpy.types.ID], bool] | None
614
615
  :param update: Function to be called when this value is modified,
615
616
  This function must take 2 values (self, context) and return None.
bpy/types/__init__.pyi CHANGED
@@ -19834,7 +19834,10 @@ Property types used in class declarations are all in bpy.props
19834
19834
 
19835
19835
  --------------------
19836
19836
 
19837
+ * ImageStrip.retiming_keys
19837
19838
  * MovieStrip.retiming_keys
19839
+ * SceneStrip.retiming_keys
19840
+ * SoundStrip.retiming_keys
19838
19841
 
19839
19842
  :columns: 2
19840
19843
 
@@ -78736,8 +78739,11 @@ FileHandler
78736
78739
 
78737
78740
  --------------------
78738
78741
 
78742
+ * ImageStrip.retiming_keys
78739
78743
  * MovieStrip.retiming_keys
78740
78744
  * RetimingKeys.add
78745
+ * SceneStrip.retiming_keys
78746
+ * SoundStrip.retiming_keys
78741
78747
 
78742
78748
  :columns: 2
78743
78749
 
@@ -114041,63 +114047,30 @@ class XrUserPaths(bpy_prop_collection[XrUserPath], bpy_struct):
114041
114047
  class bpy_prop_collection_idprop:
114042
114048
  """built-in class used for user defined collections."""
114043
114049
 
114044
- def find(self, key: str | None) -> int:
114045
- """Returns the index of a key in a collection or -1 when not found
114046
- (matches Python's string find function of the same name).
114047
-
114048
- :param key: The identifier for the collection member.
114049
- :type key: str | None
114050
- :return: index of the key.
114051
- :rtype: int
114052
- """
114050
+ def add(self) -> typing.Any:
114051
+ """This is a function to add a new item to a collection.
114053
114052
 
114054
- def foreach_get(self, attr, seq):
114055
- """This is a function to give fast access to attributes within a collection.
114056
-
114057
- :param attr:
114058
- :param seq:
114059
- """
114060
-
114061
- def foreach_set(self, attr, seq):
114062
- """This is a function to give fast access to attributes within a collection.
114063
-
114064
- :param attr:
114065
- :param seq:
114066
- """
114067
-
114068
- def get(self, key: str | None, default: typing.Any | None = None):
114069
- """Returns the value of the item assigned to key or default when not found
114070
- (matches Python's dictionary function of the same name).
114071
-
114072
- :param key: The identifier for the collection member.
114073
- :type key: str | None
114074
- :param default: Optional argument for the value to return if
114075
- key is not found.
114076
- :type default: typing.Any | None
114053
+ :return: A newly created item.
114054
+ :rtype: typing.Any
114077
114055
  """
114078
114056
 
114079
- def items(self) -> list[tuple[str, bpy_struct]]:
114080
- """Return the identifiers of collection members
114081
- (matching Python's dict.items() functionality).
114082
-
114083
- :return: (key, value) pairs for each member of this collection.
114084
- :rtype: list[tuple[str, bpy_struct]]
114085
- """
114057
+ def clear(self):
114058
+ """This is a function to remove all items from a collection."""
114086
114059
 
114087
- def keys(self) -> list[str]:
114088
- """Return the identifiers of collection members
114089
- (matching Python's dict.keys() functionality).
114060
+ def move(self, src_index: int | None, dst_index: int | None):
114061
+ """This is a function to move an item in a collection.
114090
114062
 
114091
- :return: the identifiers for each member of this collection.
114092
- :rtype: list[str]
114063
+ :param src_index: Source item index.
114064
+ :type src_index: int | None
114065
+ :param dst_index: Destination item index.
114066
+ :type dst_index: int | None
114093
114067
  """
114094
114068
 
114095
- def values(self) -> list[bpy_struct]:
114096
- """Return the values of collection
114097
- (matching Python's dict.values() functionality).
114069
+ def remove(self, index: int | None):
114070
+ """This is a function to remove an item from a collection.
114098
114071
 
114099
- :return: The members of this collection.
114100
- :rtype: list[bpy_struct]
114072
+ :param index: Index of the item to be removed.
114073
+ :type index: int | None
114101
114074
  """
114102
114075
 
114103
114076
  class wmOwnerIDs(bpy_prop_collection[wmOwnerID], bpy_struct):
@@ -114869,7 +114842,31 @@ This is used, for example, on a ActionKeyframeStrip to look up the ActionChannel
114869
114842
  :type: int
114870
114843
  """
114871
114844
 
114872
- id_root: typing.Literal[
114845
+ identifier: str
114846
+ """ 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
114847
+
114848
+ :type: str
114849
+ """
114850
+
114851
+ name_display: str
114852
+ """ 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
114853
+
114854
+ :type: str
114855
+ """
114856
+
114857
+ select: bool
114858
+ """ Selection state of the slot
114859
+
114860
+ :type: bool
114861
+ """
114862
+
114863
+ show_expanded: bool
114864
+ """ Expanded state of the slot
114865
+
114866
+ :type: bool
114867
+ """
114868
+
114869
+ target_id_type: typing.Literal[
114873
114870
  "ACTION",
114874
114871
  "ARMATURE",
114875
114872
  "BRUSH",
@@ -114911,41 +114908,17 @@ This is used, for example, on a ActionKeyframeStrip to look up the ActionChannel
114911
114908
  "WORLD",
114912
114909
  "UNSPECIFIED",
114913
114910
  ]
114914
- """ Type of data-block that can be animated by this slot
114911
+ """ Type of data-block that this slot is intended to animate
114915
114912
 
114916
114913
  :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']
114917
114914
  """
114918
114915
 
114919
- id_root_icon: int
114916
+ target_id_type_icon: int
114920
114917
  """
114921
114918
 
114922
114919
  :type: int
114923
114920
  """
114924
114921
 
114925
- identifier: str
114926
- """ 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
114927
-
114928
- :type: str
114929
- """
114930
-
114931
- name_display: str
114932
- """ 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
114933
-
114934
- :type: str
114935
- """
114936
-
114937
- select: bool
114938
- """ Selection state of the slot
114939
-
114940
- :type: bool
114941
- """
114942
-
114943
- show_expanded: bool
114944
- """ Expanded state of the slot
114945
-
114946
- :type: bool
114947
- """
114948
-
114949
114922
  @classmethod
114950
114923
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
114951
114924
  """
@@ -117339,6 +117312,24 @@ class BlendData(bpy_struct):
117339
117312
  :rtype: typing.Any
117340
117313
  """
117341
117314
 
117315
+ def file_path_map(
117316
+ self,
117317
+ subset: collections.abc.Sequence | None = None,
117318
+ key_types: set[str] | None = None,
117319
+ include_libraries: bool | None = False,
117320
+ ) -> dict:
117321
+ """Returns a mapping of all ID data-blocks in current bpy.data to a set of all file paths used by them.For list of valid set members for key_types, see: `bpy.types.KeyingSetPath.id_type`.
117322
+
117323
+ :param subset: When given, only these data-blocks and their used file paths will be included as keys/values in the map.
117324
+ :type subset: collections.abc.Sequence | None
117325
+ :param key_types: When given, filter the keys mapped by ID types. Ignored if subset is also given.
117326
+ :type key_types: set[str] | None
117327
+ :param include_libraries: Include library file paths of linked data. False by default.
117328
+ :type include_libraries: bool | None
117329
+ :return: dictionary of `bpy.types.ID` instances, with sets of file path strings as their values.
117330
+ :rtype: dict
117331
+ """
117332
+
117342
117333
  def orphans_purge(self):
117343
117334
  """Remove (delete) all IDs with no user.
117344
117335
 
@@ -151173,6 +151164,12 @@ class GeometryNodeInputNamedLayerSelection(
151173
151164
  class GeometryNodeInputNormal(GeometryNode, NodeInternal, Node, bpy_struct):
151174
151165
  """Retrieve a unit length vector indicating the direction pointing away from the geometry at each element"""
151175
151166
 
151167
+ legacy_corner_normals: bool
151168
+ """ Always use face normals for the face corner domain, matching old behavior of the node
151169
+
151170
+ :type: bool
151171
+ """
151172
+
151176
151173
  @classmethod
151177
151174
  def is_registered_node_type(cls) -> bool:
151178
151175
  """True if a registered node type
@@ -165586,6 +165583,12 @@ class ImageStrip(Strip, bpy_struct):
165586
165583
  :type: StripProxy
165587
165584
  """
165588
165585
 
165586
+ retiming_keys: RetimingKeys
165587
+ """
165588
+
165589
+ :type: RetimingKeys
165590
+ """
165591
+
165589
165592
  stereo_3d_format: Stereo3dFormat
165590
165593
  """ Settings for stereo 3D
165591
165594
 
@@ -198372,6 +198375,12 @@ class SceneStrip(Strip, bpy_struct):
198372
198375
  :type: StripProxy
198373
198376
  """
198374
198377
 
198378
+ retiming_keys: RetimingKeys
198379
+ """
198380
+
198381
+ :type: RetimingKeys
198382
+ """
198383
+
198375
198384
  scene: Scene | None
198376
198385
  """ Scene that this sequence uses
198377
198386
 
@@ -208188,6 +208197,12 @@ class SoundStrip(Strip, bpy_struct):
208188
208197
  :type: float
208189
208198
  """
208190
208199
 
208200
+ retiming_keys: RetimingKeys
208201
+ """
208202
+
208203
+ :type: RetimingKeys
208204
+ """
208205
+
208191
208206
  show_waveform: bool
208192
208207
  """ Display the audio waveform inside the strip
208193
208208
 
bpy/utils/__init__.pyi CHANGED
@@ -197,12 +197,13 @@ def register_class(
197
197
  | bpy.types.RenderEngine
198
198
  | bpy.types.AssetShelf
199
199
  | bpy.types.FileHandler
200
+ | bpy.types.PropertyGroup
200
201
  ],
201
202
  ):
202
203
  """Register a subclass of a Blender type class.
203
204
 
204
205
  :param cls: Registerable Blender class type.
205
- :type cls: type[bpy.types.Panel | bpy.types.UIList | bpy.types.Menu | bpy.types.Header | bpy.types.Operator | bpy.types.KeyingSetInfo | bpy.types.RenderEngine | bpy.types.AssetShelf | bpy.types.FileHandler]
206
+ :type cls: type[bpy.types.Panel | bpy.types.UIList | bpy.types.Menu | bpy.types.Header | bpy.types.Operator | bpy.types.KeyingSetInfo | bpy.types.RenderEngine | bpy.types.AssetShelf | bpy.types.FileHandler | bpy.types.PropertyGroup]
206
207
  """
207
208
 
208
209
  def register_classes_factory(classes):
@@ -385,6 +386,7 @@ def unregister_class(
385
386
  | bpy.types.RenderEngine
386
387
  | bpy.types.AssetShelf
387
388
  | bpy.types.FileHandler
389
+ | bpy.types.PropertyGroup
388
390
  ],
389
391
  ):
390
392
  """Unload the Python class from blender.
@@ -392,7 +394,7 @@ def unregister_class(
392
394
  :param cls: Blender type class,
393
395
  see `bpy.utils.register_class` for classes which can
394
396
  be registered.
395
- :type cls: type[bpy.types.Panel | bpy.types.UIList | bpy.types.Menu | bpy.types.Header | bpy.types.Operator | bpy.types.KeyingSetInfo | bpy.types.RenderEngine | bpy.types.AssetShelf | bpy.types.FileHandler]
397
+ :type cls: type[bpy.types.Panel | bpy.types.UIList | bpy.types.Menu | bpy.types.Header | bpy.types.Operator | bpy.types.KeyingSetInfo | bpy.types.RenderEngine | bpy.types.AssetShelf | bpy.types.FileHandler | bpy.types.PropertyGroup]
396
398
  """
397
399
 
398
400
  def unregister_cli_command(handle):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: fake-bpy-module
3
- Version: 20250119
3
+ Version: 20250121
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
@@ -147,7 +147,7 @@ bl_ui/properties_physics_rigidbody/__init__.pyi,sha256=mihnVbJEe3H_xDQlmCNz_oI09
147
147
  bl_ui/properties_physics_rigidbody_constraint/__init__.pyi,sha256=GzRt03C-kNNLxnQHCV4VKIGl0JITScWRyadNWcaVQo8,11342
148
148
  bl_ui/properties_physics_softbody/__init__.pyi,sha256=YU3C0AeOCWqB9f9YjVSH8F4FmAlBQN-yjzAu60ynsgk,11590
149
149
  bl_ui/properties_render/__init__.pyi,sha256=9W1lg0hQZ-6kK808v4bRMB5wQ9vE5LORtBJ3434YE6g,33878
150
- bl_ui/properties_scene/__init__.pyi,sha256=NaTdJK2mIrAwjp5sJFo98ipm4Uvk6C1pSFCofA_bF_c,12508
150
+ bl_ui/properties_scene/__init__.pyi,sha256=3r2nEsJ7Y1xqzVnz5kLVdlBw1zl1krHKrvyuhvcGXiA,12587
151
151
  bl_ui/properties_texture/__init__.pyi,sha256=8d7ZCVj0-wZLdtj3Fzan96sCP4p_TZg0C_NoQILGo-A,21060
152
152
  bl_ui/properties_view_layer/__init__.pyi,sha256=TovT-zfWqw63JTXntcJbzKJ_72lSMfQI6BVuyEcPYK4,9243
153
153
  bl_ui/properties_workspace/__init__.pyi,sha256=ssIg71Vro4yRSS2302fKnsWRhyjBZtSyY59dOg71z1w,3463
@@ -276,9 +276,9 @@ bpy/ops/wm/__init__.pyi,sha256=vNXQGtWFHxjk_ft3OeWStjne67NsOtRXjBtFWbP-jOA,21593
276
276
  bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHCU,1983
277
277
  bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
278
278
  bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
279
- bpy/props/__init__.pyi,sha256=rxpq9_AeVaMNXJ1MBAowRzLYjBzsYxNx5Ox5qWLLu5w,35255
280
- bpy/types/__init__.pyi,sha256=vzSfD8AZUbTkStttsa5q4xYCaZssIJNP0kvL5FHLxqU,5419086
281
- bpy/utils/__init__.pyi,sha256=W8fgPt7oHxCR2uDha7NOXE4gDLlKXUwDUjyEwcjRsAI,14645
279
+ bpy/props/__init__.pyi,sha256=ZldUQ1MIMYkmYB0PpIP7HwwzMGpVB4rM3KeZOqV54sU,35236
280
+ bpy/types/__init__.pyi,sha256=c0UFd9moZtaP386PM5880JICDMgFRt-kc0uG_dmS8so,5419377
281
+ bpy/utils/__init__.pyi,sha256=0xYpOGROz80lrcCe4nko-nEkU-lsKJV09rjES5JIu7I,14765
282
282
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
283
283
  bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
284
284
  bpy_extras/__init__.pyi,sha256=wejK55NeAEGsAzM9psNhBokX9H0DBihwOdNQ5XlCHB4,968
@@ -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-20250119.dist-info/METADATA,sha256=gmIdmZPPgG77cmKHRhgEapjejokv-BD1RvZLJiHHQNg,7289
363
- fake_bpy_module-20250119.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
364
- fake_bpy_module-20250119.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
365
- fake_bpy_module-20250119.dist-info/RECORD,,
362
+ fake_bpy_module-20250121.dist-info/METADATA,sha256=o4-NCwdl4YvJU4QwDyqcIRiAZ9PacR0ImxfT50I_lpk,7289
363
+ fake_bpy_module-20250121.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
364
+ fake_bpy_module-20250121.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
365
+ fake_bpy_module-20250121.dist-info/RECORD,,