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

@@ -1623,6 +1623,62 @@ class IMAGE_PT_uv_cursor(bpy.types.Panel):
1623
1623
  :param context:
1624
1624
  """
1625
1625
 
1626
+ class IMAGE_PT_uv_sculpt_curve(bpy.types.Panel):
1627
+ bl_context: typing.Any
1628
+ bl_label: typing.Any
1629
+ bl_region_type: typing.Any
1630
+ bl_rna: typing.Any
1631
+ bl_space_type: typing.Any
1632
+ id_data: typing.Any
1633
+
1634
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1635
+ """
1636
+
1637
+ :return: The RNA type or default when not found.
1638
+ :rtype: bpy.types.Struct
1639
+ """
1640
+
1641
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1642
+ """
1643
+
1644
+ :return: The class or default when not found.
1645
+ :rtype: typing.Any
1646
+ """
1647
+
1648
+ def draw(self, context):
1649
+ """
1650
+
1651
+ :param context:
1652
+ """
1653
+
1654
+ class IMAGE_PT_uv_sculpt_options(bpy.types.Panel):
1655
+ bl_context: typing.Any
1656
+ bl_label: typing.Any
1657
+ bl_region_type: typing.Any
1658
+ bl_rna: typing.Any
1659
+ bl_space_type: typing.Any
1660
+ id_data: typing.Any
1661
+
1662
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1663
+ """
1664
+
1665
+ :return: The RNA type or default when not found.
1666
+ :rtype: bpy.types.Struct
1667
+ """
1668
+
1669
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1670
+ """
1671
+
1672
+ :return: The class or default when not found.
1673
+ :rtype: typing.Any
1674
+ """
1675
+
1676
+ def draw(self, context):
1677
+ """
1678
+
1679
+ :param context:
1680
+ """
1681
+
1626
1682
  class IMAGE_PT_view_display(bpy.types.Panel):
1627
1683
  bl_category: typing.Any
1628
1684
  bl_label: typing.Any
@@ -1956,59 +2012,3 @@ class IMAGE_PT_paint_settings_advanced(bpy.types.Panel, ImagePaintPanel):
1956
2012
 
1957
2013
  :param context:
1958
2014
  """
1959
-
1960
- class IMAGE_PT_uv_sculpt_curve(bpy.types.Panel, ImagePaintPanel):
1961
- bl_context: typing.Any
1962
- bl_label: typing.Any
1963
- bl_region_type: typing.Any
1964
- bl_rna: typing.Any
1965
- bl_space_type: typing.Any
1966
- id_data: typing.Any
1967
-
1968
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
1969
- """
1970
-
1971
- :return: The RNA type or default when not found.
1972
- :rtype: bpy.types.Struct
1973
- """
1974
-
1975
- def bl_rna_get_subclass_py(self) -> typing.Any:
1976
- """
1977
-
1978
- :return: The class or default when not found.
1979
- :rtype: typing.Any
1980
- """
1981
-
1982
- def draw(self, context):
1983
- """
1984
-
1985
- :param context:
1986
- """
1987
-
1988
- class IMAGE_PT_uv_sculpt_options(bpy.types.Panel, ImagePaintPanel):
1989
- bl_context: typing.Any
1990
- bl_label: typing.Any
1991
- bl_region_type: typing.Any
1992
- bl_rna: typing.Any
1993
- bl_space_type: typing.Any
1994
- id_data: typing.Any
1995
-
1996
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
1997
- """
1998
-
1999
- :return: The RNA type or default when not found.
2000
- :rtype: bpy.types.Struct
2001
- """
2002
-
2003
- def bl_rna_get_subclass_py(self) -> typing.Any:
2004
- """
2005
-
2006
- :return: The class or default when not found.
2007
- :rtype: typing.Any
2008
- """
2009
-
2010
- def draw(self, context):
2011
- """
2012
-
2013
- :param context:
2014
- """
bpy/types/__init__.pyi CHANGED
@@ -40208,15 +40208,15 @@ database.
40208
40208
  * Action.slots
40209
40209
  * ActionChannelBags.new
40210
40210
  * ActionConstraint.action_slot
40211
- * ActionConstraint.action_slots
40211
+ * ActionConstraint.action_suitable_slots
40212
40212
  * ActionKeyframeStrip.key_insert
40213
40213
  * ActionSlots.active
40214
40214
  * ActionSlots.new
40215
40215
  * ActionSlots.remove
40216
40216
  * AnimData.action_slot
40217
- * AnimData.action_slots
40217
+ * AnimData.action_suitable_slots
40218
40218
  * NlaStrip.action_slot
40219
- * NlaStrip.action_slots
40219
+ * NlaStrip.action_suitable_slots
40220
40220
 
40221
40221
  :columns: 2
40222
40222
 
@@ -112916,13 +112916,7 @@ class ActionConstraint(Constraint, bpy_struct):
112916
112916
  :type: int
112917
112917
  """
112918
112918
 
112919
- action_slot_name: str
112920
- """ The name of the action slot. The slot identifies which sub-set of the Action is considered to be for this constraint, and its name is used to find the right slot when assigning an Action.
112921
-
112922
- :type: str
112923
- """
112924
-
112925
- action_slots: bpy_prop_collection[ActionSlot]
112919
+ action_suitable_slots: bpy_prop_collection[ActionSlot]
112926
112920
  """ The list of action slots suitable for this NLA strip
112927
112921
 
112928
112922
  :type: bpy_prop_collection[ActionSlot]
@@ -112946,6 +112940,12 @@ class ActionConstraint(Constraint, bpy_struct):
112946
112940
  :type: int
112947
112941
  """
112948
112942
 
112943
+ last_slot_identifier: str
112944
+ """ The identifier of the most recently assigned action slot. The slot identifies which sub-set of the Action is considered to be for this constraint, and its identifier is used to find the right slot when assigning an Action.
112945
+
112946
+ :type: str
112947
+ """
112948
+
112949
112949
  max: float
112950
112950
  """ Maximum value for target channel range
112951
112951
 
@@ -113299,7 +113299,7 @@ This is used, for example, on a ActionKeyframeStrip to look up the ActionChannel
113299
113299
  :type: int
113300
113300
  """
113301
113301
 
113302
- name: str
113302
+ identifier: str
113303
113303
  """ 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
113304
113304
 
113305
113305
  :type: str
@@ -113659,13 +113659,7 @@ class AnimData(bpy_struct):
113659
113659
  :type: int
113660
113660
  """
113661
113661
 
113662
- action_slot_name: str
113663
- """ The name of the action slot. The slot identifies which sub-set of the Action is considered to be for this data-block, and its name is used to find the right slot when assigning an Action.
113664
-
113665
- :type: str
113666
- """
113667
-
113668
- action_slots: bpy_prop_collection[ActionSlot]
113662
+ action_suitable_slots: bpy_prop_collection[ActionSlot]
113669
113663
  """ The list of slots in this animation data-block
113670
113664
 
113671
113665
  :type: bpy_prop_collection[ActionSlot]
@@ -113683,6 +113677,12 @@ class AnimData(bpy_struct):
113683
113677
  :type: AnimDataDrivers
113684
113678
  """
113685
113679
 
113680
+ last_slot_identifier: str
113681
+ """ The identifier of the most recently assigned action slot. The slot identifies which sub-set of the Action is considered to be for this data-block, and its identifier is used to find the right slot when assigning an Action.
113682
+
113683
+ :type: str
113684
+ """
113685
+
113686
113686
  nla_tracks: NlaTracks
113687
113687
  """ NLA Tracks (i.e. Animation Layers)
113688
113688
 
@@ -176723,13 +176723,7 @@ class NlaStrip(bpy_struct):
176723
176723
  :type: int
176724
176724
  """
176725
176725
 
176726
- action_slot_name: str
176727
- """ The name of the action slot. The slot identifies which sub-set of the Action is considered to be for this strip, and its name is used to find the right slot when assigning an Action.
176728
-
176729
- :type: str
176730
- """
176731
-
176732
- action_slots: bpy_prop_collection[ActionSlot]
176726
+ action_suitable_slots: bpy_prop_collection[ActionSlot]
176733
176727
  """ The list of action slots suitable for this NLA strip
176734
176728
 
176735
176729
  :type: bpy_prop_collection[ActionSlot]
@@ -176813,6 +176807,12 @@ class NlaStrip(bpy_struct):
176813
176807
  :type: float
176814
176808
  """
176815
176809
 
176810
+ last_slot_identifier: str
176811
+ """ The identifier of the most recently assigned action slot. The slot identifies which sub-set of the Action is considered to be for this strip, and its identifier is used to find the right slot when assigning an Action.
176812
+
176813
+ :type: str
176814
+ """
176815
+
176816
176816
  modifiers: bpy_prop_collection[FModifier]
176817
176817
  """ Modifiers affecting all the F-Curves in the referenced Action
176818
176818
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20241126
3
+ Version: 20241128
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
@@ -157,7 +157,7 @@ bl_ui/space_console/__init__.pyi,sha256=jHE-NegnXq5WiuRTy89jw6hkYwLAjwEJryGzPJ7G
157
157
  bl_ui/space_dopesheet/__init__.pyi,sha256=1GCQ2DNekJvyEknCS-MxR3ISnR7vBU_E_lM9jEoTz04,17342
158
158
  bl_ui/space_filebrowser/__init__.pyi,sha256=mFlZd3CLqrkdD-_nftH3A8f1hVHwHeGUvWBFEpIIoaM,19466
159
159
  bl_ui/space_graph/__init__.pyi,sha256=7XFWtjx8rwzqzsIpnXcZbVgHHp1Xa6gr-GSxy5f7MhI,10909
160
- bl_ui/space_image/__init__.pyi,sha256=eqQqC5XkVstR52N9PV40ffbsAsAIb0MVY0nplrep5r8,44621
160
+ bl_ui/space_image/__init__.pyi,sha256=HO1Je2i9wtBtwirMt8LvXsj3uiMGjHLI8ML2S1zCLqY,44587
161
161
  bl_ui/space_info/__init__.pyi,sha256=u0Bz7_HxRJrOKh0Ae7M0PvcA_H0_qI9dkcN_MW2SJa0,3285
162
162
  bl_ui/space_nla/__init__.pyi,sha256=uT7nGRBlJlDS-wYZGGGuMs17DK-_XsYoa1qkop7ZVyM,9535
163
163
  bl_ui/space_node/__init__.pyi,sha256=OnpafsiQblbl9V6zaxCO7H0i-i9BsSH_XmtjvS84nUA,18798
@@ -275,7 +275,7 @@ bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJ
275
275
  bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
276
276
  bpy/path/__init__.pyi,sha256=b_M-IUy-VEWMDZJH0bP9P-HHcLLcQo59S1dARRQrP9E,5064
277
277
  bpy/props/__init__.pyi,sha256=TfulJGBHgbMIc1aadTzLWiL6Q2NQdeO9Q4_ePasNesU,30717
278
- bpy/types/__init__.pyi,sha256=6uNrdU2G2Oo6M9ny3NDKbylOWFedwOkSlHIYY0wW8Jo,5366645
278
+ bpy/types/__init__.pyi,sha256=aGOXDygnPusHigMLHSqEPzol09vEgy2DTZkZWadwXzA,5366822
279
279
  bpy/typing/__init__.pyi,sha256=u2XKjd6ZB1Wjt7JwabxexZdswEZLYR2jQpxzzp6AThg,138679
280
280
  bpy/utils/__init__.pyi,sha256=XXoE6J8aW13NQ-2FvnFORXyNVUFfO8hSno-xfgJ6ZNI,13078
281
281
  bpy/utils/previews/__init__.pyi,sha256=XEThA7jxMWet1sPTJ3mmngM6LdAdKiIVSZOKbCsbvzw,2217
@@ -358,7 +358,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
358
358
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
359
359
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
360
360
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
- fake_bpy_module-20241126.dist-info/METADATA,sha256=gBNfb3zHpn5Fq6s0ouVJ1wRwAvRC_p7tOLrINGWYMSc,7289
362
- fake_bpy_module-20241126.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
363
- fake_bpy_module-20241126.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
364
- fake_bpy_module-20241126.dist-info/RECORD,,
361
+ fake_bpy_module-20241128.dist-info/METADATA,sha256=Xt9J8av39NhKLrd3dOTdDkOA70_ndc7Dy5ANKzri6Ow,7289
362
+ fake_bpy_module-20241128.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
363
+ fake_bpy_module-20241128.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
364
+ fake_bpy_module-20241128.dist-info/RECORD,,