2017-09-12 20:42:36 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 01:03:48 +00:00
<class name= "ShaderMaterial" inherits= "Material" version= "4.0" >
2017-09-12 20:42:36 +00:00
<brief_description >
2018-05-28 12:53:15 +00:00
A material that uses a custom [Shader] program.
2017-09-12 20:42:36 +00:00
</brief_description>
<description >
2018-05-26 02:08:34 +00:00
A material that uses a custom [Shader] program to render either items to screen or process particles. You can create multiple materials for the same shader but configure different values for the uniforms defined in the shader.
2017-09-12 20:42:36 +00:00
</description>
<tutorials >
2020-01-29 01:48:10 +00:00
<link > https://docs.godotengine.org/en/latest/tutorials/shading/index.html</link>
2017-09-12 20:42:36 +00:00
</tutorials>
<methods >
<method name= "get_shader_param" qualifiers= "const" >
<return type= "Variant" >
</return>
<argument index= "0" name= "param" type= "String" >
</argument>
<description >
2018-05-28 12:53:15 +00:00
Returns the current value set for this material of a uniform in the shader.
2017-09-12 20:42:36 +00:00
</description>
</method>
2018-09-15 01:13:47 +00:00
<method name= "property_can_revert" >
<return type= "bool" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
<description >
2020-01-13 22:08:42 +00:00
Returns [code]true[/code] if the property identified by [code]name[/code] can be reverted to a default value.
2018-09-15 01:13:47 +00:00
</description>
</method>
<method name= "property_get_revert" >
<return type= "Variant" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
<description >
2020-01-13 22:08:42 +00:00
Returns the default value of the material property with given [code]name[/code].
2018-09-15 01:13:47 +00:00
</description>
</method>
2017-09-12 20:42:36 +00:00
<method name= "set_shader_param" >
<return type= "void" >
</return>
<argument index= "0" name= "param" type= "String" >
</argument>
<argument index= "1" name= "value" type= "Variant" >
</argument>
<description >
2020-01-21 00:28:03 +00:00
Changes the value set for this material of a uniform in the shader. [b]Note:[/b] [code]param[/code] must match the name of the uniform in the code exactly.
2017-09-12 20:42:36 +00:00
</description>
</method>
</methods>
2018-01-11 22:38:35 +00:00
<members >
2019-07-15 18:42:47 +00:00
<member name= "shader" type= "Shader" setter= "set_shader" getter= "get_shader" >
2018-05-28 12:53:15 +00:00
The [Shader] program used to render this material.
2018-01-11 22:38:35 +00:00
</member>
</members>
2017-09-12 20:42:36 +00:00
<constants >
</constants>
</class>