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

@@ -1693,6 +1693,239 @@ class AddPresetCloth(AddPresetBase):
1693
1693
  """
1694
1694
  ...
1695
1695
 
1696
+ class AddPresetColorManagementWhiteBalance(AddPresetBase):
1697
+ """Add or remove a white balance preset"""
1698
+
1699
+ bl_idname: typing.Any
1700
+ bl_label: typing.Any
1701
+ bl_options: typing.Any
1702
+ bl_rna: typing.Any
1703
+ id_data: typing.Any
1704
+ preset_defines: typing.Any
1705
+ preset_menu: typing.Any
1706
+ preset_subdir: typing.Any
1707
+ preset_values: typing.Any
1708
+
1709
+ def as_filename(self, name):
1710
+ """
1711
+
1712
+ :param name:
1713
+ """
1714
+ ...
1715
+
1716
+ def as_keywords(self, ignore=()):
1717
+ """Return a copy of the properties as a dictionary
1718
+
1719
+ :param ignore:
1720
+ """
1721
+ ...
1722
+
1723
+ def as_pointer(self) -> int:
1724
+ """Returns the memory address which holds a pointer to Blender's internal data
1725
+
1726
+ :return: int (memory address).
1727
+ :rtype: int
1728
+ """
1729
+ ...
1730
+
1731
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1732
+ """
1733
+
1734
+ :return: The RNA type or default when not found.
1735
+ :rtype: bpy.types.Struct
1736
+ """
1737
+ ...
1738
+
1739
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1740
+ """
1741
+
1742
+ :return: The class or default when not found.
1743
+ :rtype: typing.Any
1744
+ """
1745
+ ...
1746
+
1747
+ def check(self, _context):
1748
+ """
1749
+
1750
+ :param _context:
1751
+ """
1752
+ ...
1753
+
1754
+ def driver_add(self) -> bpy.types.FCurve:
1755
+ """Adds driver(s) to the given property
1756
+
1757
+ :return: The driver(s) added.
1758
+ :rtype: bpy.types.FCurve
1759
+ """
1760
+ ...
1761
+
1762
+ def driver_remove(self) -> bool:
1763
+ """Remove driver(s) from the given property
1764
+
1765
+ :return: Success of driver removal.
1766
+ :rtype: bool
1767
+ """
1768
+ ...
1769
+
1770
+ def execute(self, context):
1771
+ """
1772
+
1773
+ :param context:
1774
+ """
1775
+ ...
1776
+
1777
+ def get(self):
1778
+ """Returns the value of the custom property assigned to key or default
1779
+ when not found (matches Python's dictionary function of the same name).
1780
+
1781
+ """
1782
+ ...
1783
+
1784
+ def id_properties_clear(self):
1785
+ """
1786
+
1787
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
1788
+ """
1789
+ ...
1790
+
1791
+ def id_properties_ensure(self):
1792
+ """
1793
+
1794
+ :return: the parent group for an RNA struct's custom IDProperties.
1795
+ """
1796
+ ...
1797
+
1798
+ def id_properties_ui(self):
1799
+ """
1800
+
1801
+ :return: Return an object used to manage an IDProperty's UI data.
1802
+ """
1803
+ ...
1804
+
1805
+ def invoke(self, context, _event):
1806
+ """
1807
+
1808
+ :param context:
1809
+ :param _event:
1810
+ """
1811
+ ...
1812
+
1813
+ def is_property_hidden(self) -> bool:
1814
+ """Check if a property is hidden.
1815
+
1816
+ :return: True when the property is hidden.
1817
+ :rtype: bool
1818
+ """
1819
+ ...
1820
+
1821
+ def is_property_overridable_library(self) -> bool:
1822
+ """Check if a property is overridable.
1823
+
1824
+ :return: True when the property is overridable.
1825
+ :rtype: bool
1826
+ """
1827
+ ...
1828
+
1829
+ def is_property_readonly(self) -> bool:
1830
+ """Check if a property is readonly.
1831
+
1832
+ :return: True when the property is readonly (not writable).
1833
+ :rtype: bool
1834
+ """
1835
+ ...
1836
+
1837
+ def is_property_set(self) -> bool:
1838
+ """Check if a property is set, use for testing operator properties.
1839
+
1840
+ :return: True when the property has been set.
1841
+ :rtype: bool
1842
+ """
1843
+ ...
1844
+
1845
+ def items(self):
1846
+ """Returns the items of this objects custom properties (matches Python's
1847
+ dictionary function of the same name).
1848
+
1849
+ :return: custom property key, value pairs.
1850
+ """
1851
+ ...
1852
+
1853
+ def keyframe_delete(self) -> bool:
1854
+ """Remove a keyframe from this properties fcurve.
1855
+
1856
+ :return: Success of keyframe deletion.
1857
+ :rtype: bool
1858
+ """
1859
+ ...
1860
+
1861
+ def keyframe_insert(self) -> bool:
1862
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
1863
+
1864
+ :return: Success of keyframe insertion.
1865
+ :rtype: bool
1866
+ """
1867
+ ...
1868
+
1869
+ def keys(self):
1870
+ """Returns the keys of this objects custom properties (matches Python's
1871
+ dictionary function of the same name).
1872
+
1873
+ :return: custom property keys.
1874
+ """
1875
+ ...
1876
+
1877
+ def path_from_id(self) -> str:
1878
+ """Returns the data path from the ID to this object (string).
1879
+
1880
+ :return: The path from `bpy.types.bpy_struct.id_data`
1881
+ to this struct and property (when given).
1882
+ :rtype: str
1883
+ """
1884
+ ...
1885
+
1886
+ def path_resolve(self):
1887
+ """Returns the property from the path, raise an exception when not found."""
1888
+ ...
1889
+
1890
+ def poll_message_set(self):
1891
+ """Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function."""
1892
+ ...
1893
+
1894
+ def pop(self):
1895
+ """Remove and return the value of the custom property assigned to key or default
1896
+ when not found (matches Python's dictionary function of the same name).
1897
+
1898
+ """
1899
+ ...
1900
+
1901
+ def property_overridable_library_set(self) -> bool:
1902
+ """Define a property as overridable or not (only for custom properties!).
1903
+
1904
+ :return: True when the overridable status of the property was successfully set.
1905
+ :rtype: bool
1906
+ """
1907
+ ...
1908
+
1909
+ def property_unset(self):
1910
+ """Unset a property, will use default value afterward."""
1911
+ ...
1912
+
1913
+ def type_recast(self):
1914
+ """Return a new instance, this is needed because types
1915
+ such as textures can be changed at runtime.
1916
+
1917
+ :return: a new instance of this object with the type initialized again.
1918
+ """
1919
+ ...
1920
+
1921
+ def values(self):
1922
+ """Returns the values of this objects custom properties (matches Python's
1923
+ dictionary function of the same name).
1924
+
1925
+ :return: custom property values.
1926
+ """
1927
+ ...
1928
+
1696
1929
  class AddPresetEEVEERaytracing(AddPresetBase):
1697
1930
  """Add or remove an EEVEE ray-tracing preset"""
1698
1931
 
@@ -757,7 +757,6 @@ class EEVEE_MATERIAL_PT_displacement(MaterialButtonsPanel, bpy_types._GenericUI)
757
757
  bl_region_type: typing.Any
758
758
  bl_rna: typing.Any
759
759
  bl_space_type: typing.Any
760
- bl_translation_context: typing.Any
761
760
  id_data: typing.Any
762
761
 
763
762
  def append(self, draw_func):