2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 02:03:48 +01:00
<class name= "Shader" inherits= "Resource" version= "4.0" >
2017-09-12 22:42:36 +02:00
<brief_description >
2018-05-26 04:08:34 +02:00
A custom shader program.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2020-01-21 01:28:03 +01:00
This class allows you to define a custom shader program that can be used by a [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.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2020-08-05 14:43:40 +02:00
<link title= "Shading tutorial index" > https://docs.godotengine.org/en/latest/tutorials/shading/index.html</link>
<link title= "What are shaders?" > https://docs.godotengine.org/en/latest/tutorials/shading/your_first_shader/what_are_shaders.html</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
<method name= "get_default_texture_param" qualifiers= "const" >
2020-02-12 09:59:06 +01:00
<return type= "Texture2D" >
2017-09-12 22:42:36 +02:00
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "param" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-01-21 01:28:03 +01:00
Returns the texture that is set as default for the specified parameter.
[b]Note:[/b] [code]param[/code] must match the name of the uniform in the code exactly.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_mode" qualifiers= "const" >
<return type= "int" enum= "Shader.Mode" >
</return>
<description >
2020-01-23 11:14:14 +01:00
Returns the shader mode for the shader, either [constant MODE_CANVAS_ITEM], [constant MODE_SPATIAL] or [constant MODE_PARTICLES].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "has_param" qualifiers= "const" >
<return type= "bool" >
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "name" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-01-21 01:28:03 +01:00
Returns [code]true[/code] if the shader has this param defined as a uniform in its code.
[b]Note:[/b] [code]param[/code] must match the name of the uniform in the code exactly.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_default_texture_param" >
<return type= "void" >
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "param" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
2020-02-12 09:59:06 +01:00
<argument index= "1" name= "texture" type= "Texture2D" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-01-21 01:28:03 +01:00
Sets the default texture to be used with a texture uniform. The default is used if a texture is not set in the [ShaderMaterial].
[b]Note:[/b] [code]param[/code] must match the name of the uniform in the code exactly.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
2018-01-11 23:38:35 +01:00
<members >
2019-06-29 12:38:01 +02:00
<member name= "code" type= "String" setter= "set_code" getter= "get_code" default= """" >
2020-01-21 01:28:03 +01:00
Returns the shader's code as the user has written it, not the full generated code used internally.
2018-01-11 23:38:35 +01:00
</member>
</members>
2017-09-12 22:42:36 +02:00
<constants >
2017-11-24 23:16:30 +01:00
<constant name= "MODE_SPATIAL" value= "0" enum= "Mode" >
2020-01-21 01:28:03 +01:00
Mode used to draw all 3D objects.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "MODE_CANVAS_ITEM" value= "1" enum= "Mode" >
2020-01-21 01:28:03 +01:00
Mode used to draw all 2D objects.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "MODE_PARTICLES" value= "2" enum= "Mode" >
2020-01-21 01:28:03 +01:00
Mode used to calculate particle information on a per-particle basis. Not used for drawing.
2017-09-12 22:42:36 +02:00
</constant>
2020-03-20 01:32:19 +01:00
<constant name= "MODE_SKY" value= "3" enum= "Mode" >
Mode used for drawing skies. Only works with shaders attached to [Sky] objects.
</constant>
2017-09-12 22:42:36 +02:00
</constants>
</class>