123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- :github_url: hide
- .. DO NOT EDIT THIS FILE!!!
- .. Generated automatically from Godot engine sources.
- .. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
- .. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/Shader.xml.
- .. _class_Shader:
- Shader
- ======
- **Inherits:** :ref:`Resource<class_Resource>` **<** :ref:`Reference<class_Reference>` **<** :ref:`Object<class_Object>`
- **Inherited By:** :ref:`VisualShader<class_VisualShader>`
- A custom shader program.
- .. rst-class:: classref-introduction-group
- Description
- -----------
- This class allows you to define a custom shader program that can be used by a :ref:`ShaderMaterial<class_ShaderMaterial>`. Shaders allow you to write your own custom behavior for rendering objects or updating particle information. For a detailed explanation and usage, please see the tutorials linked below.
- .. rst-class:: classref-introduction-group
- Tutorials
- ---------
- - :doc:`../tutorials/shaders/index`
- - :doc:`../tutorials/shaders/introduction_to_shaders`
- .. rst-class:: classref-reftable-group
- Properties
- ----------
- .. table::
- :widths: auto
- +-----------------------------+-------------------------------------------------------------+--------+
- | :ref:`String<class_String>` | :ref:`code<class_Shader_property_code>` | ``""`` |
- +-----------------------------+-------------------------------------------------------------+--------+
- | :ref:`String<class_String>` | :ref:`custom_defines<class_Shader_property_custom_defines>` | ``""`` |
- +-----------------------------+-------------------------------------------------------------+--------+
- .. rst-class:: classref-reftable-group
- Methods
- -------
- .. table::
- :widths: auto
- +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`Texture<class_Texture>` | :ref:`get_default_texture_param<class_Shader_method_get_default_texture_param>` **(** :ref:`String<class_String>` param **)** |const| |
- +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`Mode<enum_Shader_Mode>` | :ref:`get_mode<class_Shader_method_get_mode>` **(** **)** |const| |
- +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`has_param<class_Shader_method_has_param>` **(** :ref:`String<class_String>` name **)** |const| |
- +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_default_texture_param<class_Shader_method_set_default_texture_param>` **(** :ref:`String<class_String>` param, :ref:`Texture<class_Texture>` texture **)** |
- +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Enumerations
- ------------
- .. _enum_Shader_Mode:
- .. rst-class:: classref-enumeration
- enum **Mode**:
- .. _class_Shader_constant_MODE_SPATIAL:
- .. rst-class:: classref-enumeration-constant
- :ref:`Mode<enum_Shader_Mode>` **MODE_SPATIAL** = ``0``
- Mode used to draw all 3D objects.
- .. _class_Shader_constant_MODE_CANVAS_ITEM:
- .. rst-class:: classref-enumeration-constant
- :ref:`Mode<enum_Shader_Mode>` **MODE_CANVAS_ITEM** = ``1``
- Mode used to draw all 2D objects.
- .. _class_Shader_constant_MODE_PARTICLES:
- .. rst-class:: classref-enumeration-constant
- :ref:`Mode<enum_Shader_Mode>` **MODE_PARTICLES** = ``2``
- Mode used to calculate particle information on a per-particle basis. Not used for drawing.
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Property Descriptions
- ---------------------
- .. _class_Shader_property_code:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **code** = ``""``
- .. rst-class:: classref-property-setget
- - void **set_code** **(** :ref:`String<class_String>` value **)**
- - :ref:`String<class_String>` **get_code** **(** **)**
- Returns the shader's code as the user has written it, not the full generated code used internally.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Shader_property_custom_defines:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **custom_defines** = ``""``
- .. rst-class:: classref-property-setget
- - void **set_custom_defines** **(** :ref:`String<class_String>` value **)**
- - :ref:`String<class_String>` **get_custom_defines** **(** **)**
- Returns the shader's custom defines. Custom defines can be used in Godot to add GLSL preprocessor directives (e.g: extensions) required for the shader logic.
- \ **Note:** Custom defines are not validated by the Godot shader parser, so care should be taken when using them.
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Method Descriptions
- -------------------
- .. _class_Shader_method_get_default_texture_param:
- .. rst-class:: classref-method
- :ref:`Texture<class_Texture>` **get_default_texture_param** **(** :ref:`String<class_String>` param **)** |const|
- Returns the texture that is set as default for the specified parameter.
- \ **Note:** ``param`` must match the name of the uniform in the code exactly.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Shader_method_get_mode:
- .. rst-class:: classref-method
- :ref:`Mode<enum_Shader_Mode>` **get_mode** **(** **)** |const|
- Returns the shader mode for the shader, either :ref:`MODE_CANVAS_ITEM<class_Shader_constant_MODE_CANVAS_ITEM>`, :ref:`MODE_SPATIAL<class_Shader_constant_MODE_SPATIAL>` or :ref:`MODE_PARTICLES<class_Shader_constant_MODE_PARTICLES>`.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Shader_method_has_param:
- .. rst-class:: classref-method
- :ref:`bool<class_bool>` **has_param** **(** :ref:`String<class_String>` name **)** |const|
- Returns ``true`` if the shader has this param defined as a uniform in its code.
- \ **Note:** ``param`` must match the name of the uniform in the code exactly.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Shader_method_set_default_texture_param:
- .. rst-class:: classref-method
- void **set_default_texture_param** **(** :ref:`String<class_String>` param, :ref:`Texture<class_Texture>` texture **)**
- Sets the default texture to be used with a texture uniform. The default is used if a texture is not set in the :ref:`ShaderMaterial<class_ShaderMaterial>`.
- \ **Note:** ``param`` must match the name of the uniform in the code exactly.
- .. |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.)`
- .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
|