2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 14:18:53 +01:00
<class name= "ShaderMaterial" inherits= "Material" version= "4.0" 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-28 14:53:15 +02:00
A material that uses a custom [Shader] program.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2018-05-26 04:08:34 +02: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 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_shader_parameter" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Variant" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "param" type= "StringName" />
2017-09-12 22:42:36 +02:00
<description >
2018-05-28 14:53:15 +02:00
Returns the current value set for this material of a uniform in the shader.
2017-09-12 22:42:36 +02:00
</description>
</method>
2022-08-27 11:22:43 +02:00
<method name= "set_shader_parameter" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "param" type= "StringName" />
<param index= "1" name= "value" type= "Variant" />
2017-09-12 22:42:36 +02:00
<description >
2021-10-05 14:24:34 +02:00
Changes the value set for this material of a uniform in the shader.
2022-08-10 04:00:19 +02:00
[b]Note:[/b] [param param] 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-07-15 20:42:47 +02:00
<member name= "shader" type= "Shader" setter= "set_shader" getter= "get_shader" >
2018-05-28 14:53:15 +02:00
The [Shader] program used to render this material.
2018-01-11 23:38:35 +01:00
</member>
</members>
2017-09-12 22:42:36 +02:00
</class>