2020-02-25 15:50:49 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
2023-03-01 01:44:37 +01:00
|
|
|
<class name="VisualShaderNodeIntFunc" inherits="VisualShaderNode" version="4.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
|
2020-02-25 15:50:49 +01:00
|
|
|
<brief_description>
|
2020-02-26 12:27:56 +01:00
|
|
|
A scalar integer function to be used within the visual shader graph.
|
2020-02-25 15:50:49 +01:00
|
|
|
</brief_description>
|
|
|
|
<description>
|
2020-02-26 12:27:56 +01:00
|
|
|
Accept an integer scalar ([code]x[/code]) to the input port and transform it according to [member function].
|
2020-02-25 15:50:49 +01:00
|
|
|
</description>
|
|
|
|
<tutorials>
|
|
|
|
</tutorials>
|
|
|
|
<members>
|
2021-01-18 10:23:04 +01:00
|
|
|
<member name="function" type="int" setter="set_function" getter="get_function" enum="VisualShaderNodeIntFunc.Function" default="2">
|
2020-02-26 12:27:56 +01:00
|
|
|
A function to be applied to the scalar. See [enum Function] for options.
|
2020-02-25 15:50:49 +01:00
|
|
|
</member>
|
|
|
|
</members>
|
|
|
|
<constants>
|
|
|
|
<constant name="FUNC_ABS" value="0" enum="Function">
|
2020-02-26 12:27:56 +01:00
|
|
|
Returns the absolute value of the parameter. Translates to [code]abs(x)[/code] in the Godot Shader Language.
|
2020-02-25 15:50:49 +01:00
|
|
|
</constant>
|
2021-01-18 10:23:04 +01:00
|
|
|
<constant name="FUNC_NEGATE" value="1" enum="Function">
|
2020-02-26 12:27:56 +01:00
|
|
|
Negates the [code]x[/code] using [code]-(x)[/code].
|
2020-02-25 15:50:49 +01:00
|
|
|
</constant>
|
2021-01-18 10:23:04 +01:00
|
|
|
<constant name="FUNC_SIGN" value="2" enum="Function">
|
2020-02-26 12:27:56 +01:00
|
|
|
Extracts the sign of the parameter. Translates to [code]sign(x)[/code] in the Godot Shader Language.
|
2020-02-25 15:50:49 +01:00
|
|
|
</constant>
|
2021-12-03 09:35:38 +01:00
|
|
|
<constant name="FUNC_BITWISE_NOT" value="3" enum="Function">
|
|
|
|
Returns the result of bitwise [code]NOT[/code] operation on the integer. Translates to [code]~a[/code] in the Godot Shader Language.
|
|
|
|
</constant>
|
|
|
|
<constant name="FUNC_MAX" value="4" enum="Function">
|
2021-08-14 12:38:22 +02:00
|
|
|
Represents the size of the [enum Function] enum.
|
|
|
|
</constant>
|
2020-02-25 15:50:49 +01:00
|
|
|
</constants>
|
|
|
|
</class>
|