2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-08-05 18:51:38 +02:00
<class name= "Shader" inherits= "Resource" version= "3.6" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
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 >
2021-12-10 11:29:38 +01:00
<link > $DOCS_URL/tutorials/shaders/index.html</link>
<link > $DOCS_URL/tutorials/shaders/introduction_to_shaders.html</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
<method name= "get_default_texture_param" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Texture" />
<argument index= "0" name= "param" type= "String" />
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.
[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" >
2021-07-30 15:28:05 +02:00
<return type= "int" enum= "Shader.Mode" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "name" type= "String" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "param" type= "String" />
<argument index= "1" name= "texture" type= "Texture" />
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].
[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>
2020-09-08 14:20:53 +02:00
<member name= "custom_defines" type= "String" setter= "set_custom_defines" getter= "get_custom_defines" default= """" >
2020-01-19 08:14:10 +01:00
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.
[b]Note:[/b] Custom defines are not validated by the Godot shader parser, so care should be taken when using them.
</member>
2018-01-11 23:38:35 +01:00
</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>
</constants>
</class>