2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-03-01 01:44:37 +01:00
<class name= "Shader" inherits= "Resource" version= "4.1" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 22:42:36 +02:00
<brief_description >
2023-06-22 18:56:08 +02:00
A shader implemented in the Godot shading language.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2023-06-22 18:56:08 +02:00
A custom shader program implemented in the Godot shading language, saved with the [code].gdshader[/code] extension.
This class is used by a [ShaderMaterial] and allows you to write your own custom behavior for rendering visual items 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 >
2021-11-15 10:43:07 +01:00
<link title= "Shaders documentation index" > $DOCS_URL/tutorials/shaders/index.html</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
2022-08-27 11:22:43 +02:00
<method name= "get_default_texture_parameter" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Texture2D" />
2022-08-27 11:22:43 +02:00
<param index= "0" name= "name" type= "StringName" />
2022-08-06 20:11:48 +02:00
<param index= "1" name= "index" type= "int" default= "0" />
2017-09-12 22:42:36 +02:00
<description >
2020-01-21 01:28:03 +01:00
Returns the texture that is set as default for the specified parameter.
2022-08-27 11:22:43 +02:00
[b]Note:[/b] [param name] must match the name of the uniform in the code exactly.
2022-08-10 04:00:19 +02:00
[b]Note:[/b] If the sampler array is used use [param index] to access the specified texture.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_mode" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "int" enum= "Shader.Mode" />
2017-09-12 22:42:36 +02:00
<description >
2023-06-22 18:56:08 +02:00
Returns the shader mode for the shader.
2017-09-12 22:42:36 +02:00
</description>
</method>
2023-01-21 10:24:45 +01:00
<method name= "get_shader_uniform_list" >
<return type= "Array" />
<param index= "0" name= "get_groups" type= "bool" default= "false" />
2017-09-12 22:42:36 +02:00
<description >
2023-01-21 10:24:45 +01:00
Get the list of shader uniforms that can be assigned to a [ShaderMaterial], for use with [method ShaderMaterial.set_shader_parameter] and [method ShaderMaterial.get_shader_parameter]. The parameters returned are contained in dictionaries in a similar format to the ones returned by [method Object.get_property_list].
If argument [param get_groups] is true, parameter grouping hints will be provided.
2017-09-12 22:42:36 +02:00
</description>
</method>
2022-08-27 11:22:43 +02:00
<method name= "set_default_texture_parameter" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2022-08-27 11:22:43 +02:00
<param index= "0" name= "name" type= "StringName" />
2022-08-06 20:11:48 +02:00
<param index= "1" name= "texture" type= "Texture2D" />
<param index= "2" name= "index" type= "int" default= "0" />
2017-09-12 22:42:36 +02:00
<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].
2022-08-27 11:22:43 +02:00
[b]Note:[/b] [param name] must match the name of the uniform in the code exactly.
2022-08-10 04:00:19 +02:00
[b]Note:[/b] If the sampler array is used use [param index] to access the specified texture.
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>
2021-10-03 13:28:55 +02:00
<constant name= "MODE_FOG" value= "4" enum= "Mode" >
Mode used for setting the color and density of volumetric fog effect.
</constant>
2017-09-12 22:42:36 +02:00
</constants>
</class>