:github_url: hide .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. .. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. .. XML source: https://github.com/godotengine/godot/tree/4.1/modules/noise/doc_classes/NoiseTexture2D.xml. .. _class_NoiseTexture2D: NoiseTexture2D ============== **Inherits:** :ref:`Texture2D` **<** :ref:`Texture` **<** :ref:`Resource` **<** :ref:`RefCounted` **<** :ref:`Object` A texture filled with noise generated by a :ref:`Noise` object. .. rst-class:: classref-introduction-group Description ----------- Uses :ref:`FastNoiseLite` or other libraries to fill the texture data of your desired size. **NoiseTexture2D** can also generate normal map textures. The class uses :ref:`Thread`\ s to generate the texture data internally, so :ref:`Texture2D.get_image` may return ``null`` if the generation process has not completed yet. In that case, you need to wait for the texture to be generated before accessing the image and the generated byte data: :: var texture = NoiseTexture2D.new() texture.noise = FastNoiseLite.new() await texture.changed var image = texture.get_image() var data = image.get_data() .. rst-class:: classref-reftable-group Properties ---------- .. table:: :widths: auto +---------------------------------+---------------------------------------------------------------------------------+----------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`as_normal_map` | ``false`` | +---------------------------------+---------------------------------------------------------------------------------+----------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`bump_strength` | ``8.0`` | +---------------------------------+---------------------------------------------------------------------------------+----------------------------------------------------------------------------------------+ | :ref:`Gradient` | :ref:`color_ramp` | | +---------------------------------+---------------------------------------------------------------------------------+----------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`generate_mipmaps` | ``true`` | +---------------------------------+---------------------------------------------------------------------------------+----------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`height` | ``512`` | +---------------------------------+---------------------------------------------------------------------------------+----------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`in_3d_space` | ``false`` | +---------------------------------+---------------------------------------------------------------------------------+----------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`invert` | ``false`` | +---------------------------------+---------------------------------------------------------------------------------+----------------------------------------------------------------------------------------+ | :ref:`Noise` | :ref:`noise` | | +---------------------------------+---------------------------------------------------------------------------------+----------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`normalize` | ``true`` | +---------------------------------+---------------------------------------------------------------------------------+----------------------------------------------------------------------------------------+ | :ref:`bool` | resource_local_to_scene | ``false`` (overrides :ref:`Resource`) | +---------------------------------+---------------------------------------------------------------------------------+----------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`seamless` | ``false`` | +---------------------------------+---------------------------------------------------------------------------------+----------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`seamless_blend_skirt` | ``0.1`` | +---------------------------------+---------------------------------------------------------------------------------+----------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`width` | ``512`` | +---------------------------------+---------------------------------------------------------------------------------+----------------------------------------------------------------------------------------+ .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Property Descriptions --------------------- .. _class_NoiseTexture2D_property_as_normal_map: .. rst-class:: classref-property :ref:`bool` **as_normal_map** = ``false`` .. rst-class:: classref-property-setget - void **set_as_normal_map** **(** :ref:`bool` value **)** - :ref:`bool` **is_normal_map** **(** **)** If ``true``, the resulting texture contains a normal map created from the original noise interpreted as a bump map. .. rst-class:: classref-item-separator ---- .. _class_NoiseTexture2D_property_bump_strength: .. rst-class:: classref-property :ref:`float` **bump_strength** = ``8.0`` .. rst-class:: classref-property-setget - void **set_bump_strength** **(** :ref:`float` value **)** - :ref:`float` **get_bump_strength** **(** **)** Strength of the bump maps used in this texture. A higher value will make the bump maps appear larger while a lower value will make them appear softer. .. rst-class:: classref-item-separator ---- .. _class_NoiseTexture2D_property_color_ramp: .. rst-class:: classref-property :ref:`Gradient` **color_ramp** .. rst-class:: classref-property-setget - void **set_color_ramp** **(** :ref:`Gradient` value **)** - :ref:`Gradient` **get_color_ramp** **(** **)** A :ref:`Gradient` which is used to map the luminance of each pixel to a color value. .. rst-class:: classref-item-separator ---- .. _class_NoiseTexture2D_property_generate_mipmaps: .. rst-class:: classref-property :ref:`bool` **generate_mipmaps** = ``true`` .. rst-class:: classref-property-setget - void **set_generate_mipmaps** **(** :ref:`bool` value **)** - :ref:`bool` **is_generating_mipmaps** **(** **)** Determines whether mipmaps are generated for this texture. Enabling this results in less texture aliasing in the distance, at the cost of increasing memory usage by roughly 33% and making the noise texture generation take longer. \ **Note:** :ref:`generate_mipmaps` requires mipmap filtering to be enabled on the material using the **NoiseTexture2D** to have an effect. .. rst-class:: classref-item-separator ---- .. _class_NoiseTexture2D_property_height: .. rst-class:: classref-property :ref:`int` **height** = ``512`` .. rst-class:: classref-property-setget - void **set_height** **(** :ref:`int` value **)** - :ref:`int` **get_height** **(** **)** Height of the generated texture (in pixels). .. rst-class:: classref-item-separator ---- .. _class_NoiseTexture2D_property_in_3d_space: .. rst-class:: classref-property :ref:`bool` **in_3d_space** = ``false`` .. rst-class:: classref-property-setget - void **set_in_3d_space** **(** :ref:`bool` value **)** - :ref:`bool` **is_in_3d_space** **(** **)** Determines whether the noise image is calculated in 3D space. May result in reduced contrast. .. rst-class:: classref-item-separator ---- .. _class_NoiseTexture2D_property_invert: .. rst-class:: classref-property :ref:`bool` **invert** = ``false`` .. rst-class:: classref-property-setget - void **set_invert** **(** :ref:`bool` value **)** - :ref:`bool` **get_invert** **(** **)** If ``true``, inverts the noise texture. White becomes black, black becomes white. .. rst-class:: classref-item-separator ---- .. _class_NoiseTexture2D_property_noise: .. rst-class:: classref-property :ref:`Noise` **noise** .. rst-class:: classref-property-setget - void **set_noise** **(** :ref:`Noise` value **)** - :ref:`Noise` **get_noise** **(** **)** The instance of the :ref:`Noise` object. .. rst-class:: classref-item-separator ---- .. _class_NoiseTexture2D_property_normalize: .. rst-class:: classref-property :ref:`bool` **normalize** = ``true`` .. rst-class:: classref-property-setget - void **set_normalize** **(** :ref:`bool` value **)** - :ref:`bool` **is_normalized** **(** **)** If ``true``, the noise image coming from the noise generator is normalized to the range ``0.0`` to ``1.0``. Turning normalization off can affect the contrast and allows you to generate non repeating tileable noise textures. .. rst-class:: classref-item-separator ---- .. _class_NoiseTexture2D_property_seamless: .. rst-class:: classref-property :ref:`bool` **seamless** = ``false`` .. rst-class:: classref-property-setget - void **set_seamless** **(** :ref:`bool` value **)** - :ref:`bool` **get_seamless** **(** **)** If ``true``, a seamless texture is requested from the :ref:`Noise` resource. \ **Note:** Seamless noise textures may take longer to generate and/or can have a lower contrast compared to non-seamless noise depending on the used :ref:`Noise` resource. This is because some implementations use higher dimensions for generating seamless noise. \ **Note:** The default :ref:`FastNoiseLite` implementation uses the fallback path for seamless generation. If using a :ref:`width` or :ref:`height` lower than the default, you may need to increase :ref:`seamless_blend_skirt` to make seamless blending more effective. .. rst-class:: classref-item-separator ---- .. _class_NoiseTexture2D_property_seamless_blend_skirt: .. rst-class:: classref-property :ref:`float` **seamless_blend_skirt** = ``0.1`` .. rst-class:: classref-property-setget - void **set_seamless_blend_skirt** **(** :ref:`float` value **)** - :ref:`float` **get_seamless_blend_skirt** **(** **)** Used for the default/fallback implementation of the seamless texture generation. It determines the distance over which the seams are blended. High values may result in less details and contrast. See :ref:`Noise` for further details. \ **Note:** If using a :ref:`width` or :ref:`height` lower than the default, you may need to increase :ref:`seamless_blend_skirt` to make seamless blending more effective. .. rst-class:: classref-item-separator ---- .. _class_NoiseTexture2D_property_width: .. rst-class:: classref-property :ref:`int` **width** = ``512`` .. rst-class:: classref-property-setget - void **set_width** **(** :ref:`int` value **)** - :ref:`int` **get_width** **(** **)** Width of the generated texture (in pixels). .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)` .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)` .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)` .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)` .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)` .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)` .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`