2019-07-15 20:42:47 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 02:03:48 +01:00
<class name= "VisualShaderNodeCompare" inherits= "VisualShaderNode" version= "4.0" >
2019-07-15 20:42:47 +02:00
<brief_description >
2020-01-23 08:31:45 +01:00
A comparison function for common types within the visual shader graph.
2019-07-15 20:42:47 +02:00
</brief_description>
<description >
2020-01-23 08:31:45 +01:00
Compares [code]a[/code] and [code]b[/code] of [member type] by [member function]. Returns a boolean scalar. Translates to [code]if[/code] instruction in shader code.
2019-07-15 20:42:47 +02:00
</description>
<tutorials >
</tutorials>
<methods >
</methods>
<members >
<member name= "condition" type= "int" setter= "set_condition" getter= "get_condition" enum= "VisualShaderNodeCompare.Condition" default= "0" >
2020-01-23 08:31:45 +01:00
Extra condition which is applied if [member type] is set to [constant CTYPE_VECTOR].
2019-07-15 20:42:47 +02:00
</member>
<member name= "function" type= "int" setter= "set_function" getter= "get_function" enum= "VisualShaderNodeCompare.Function" default= "0" >
2020-01-23 08:31:45 +01:00
A comparison function. See [enum Function] for options.
2019-07-15 20:42:47 +02:00
</member>
2020-01-23 08:31:45 +01:00
<member name= "type" type= "int" setter= "set_comparison_type" getter= "get_comparison_type" enum= "VisualShaderNodeCompare.ComparisonType" default= "0" >
The type to be used in the comparison. See [enum ComparisonType] for options.
2019-07-15 20:42:47 +02:00
</member>
</members>
<constants >
2020-01-23 08:31:45 +01:00
<constant name= "CTYPE_SCALAR" value= "0" enum= "ComparisonType" >
A floating-point scalar.
2019-07-15 20:42:47 +02:00
</constant>
2020-02-29 14:22:57 +01:00
<constant name= "CTYPE_SCALAR_INT" value= "1" enum= "ComparisonType" >
An integer scalar.
</constant>
<constant name= "CTYPE_VECTOR" value= "2" enum= "ComparisonType" >
2020-01-23 08:31:45 +01:00
A 3D vector type.
2019-07-15 20:42:47 +02:00
</constant>
2020-02-29 14:22:57 +01:00
<constant name= "CTYPE_BOOLEAN" value= "3" enum= "ComparisonType" >
2020-01-23 08:31:45 +01:00
A boolean type.
2019-07-15 20:42:47 +02:00
</constant>
2020-02-29 14:22:57 +01:00
<constant name= "CTYPE_TRANSFORM" value= "4" enum= "ComparisonType" >
2020-01-23 08:31:45 +01:00
A transform ([code]mat4[/code]) type.
2019-07-15 20:42:47 +02:00
</constant>
<constant name= "FUNC_EQUAL" value= "0" enum= "Function" >
2020-01-23 08:31:45 +01:00
Comparison for equality ([code]a == b[/code]).
2019-07-15 20:42:47 +02:00
</constant>
<constant name= "FUNC_NOT_EQUAL" value= "1" enum= "Function" >
2020-01-23 08:31:45 +01:00
Comparison for inequality ([code]a != b[/code]).
2019-07-15 20:42:47 +02:00
</constant>
<constant name= "FUNC_GREATER_THAN" value= "2" enum= "Function" >
2020-01-23 08:31:45 +01:00
Comparison for greater than ([code]a > b[/code]). Cannot be used if [member type] set to [constant CTYPE_BOOLEAN] or [constant CTYPE_TRANSFORM].
2019-07-15 20:42:47 +02:00
</constant>
<constant name= "FUNC_GREATER_THAN_EQUAL" value= "3" enum= "Function" >
2020-01-23 08:31:45 +01:00
Comparison for greater than or equal ([code]a > = b[/code]). Cannot be used if [member type] set to [constant CTYPE_BOOLEAN] or [constant CTYPE_TRANSFORM].
2019-07-15 20:42:47 +02:00
</constant>
<constant name= "FUNC_LESS_THAN" value= "4" enum= "Function" >
2020-01-23 08:31:45 +01:00
Comparison for less than ([code]a < b[/code]). Cannot be used if [member type] set to [constant CTYPE_BOOLEAN] or [constant CTYPE_TRANSFORM].
2019-07-15 20:42:47 +02:00
</constant>
<constant name= "FUNC_LESS_THAN_EQUAL" value= "5" enum= "Function" >
2020-02-26 12:27:56 +01:00
Comparison for less than or equal ([code]a < = b[/code]). Cannot be used if [member type] set to [constant CTYPE_BOOLEAN] or [constant CTYPE_TRANSFORM].
2019-07-15 20:42:47 +02:00
</constant>
<constant name= "COND_ALL" value= "0" enum= "Condition" >
2020-01-23 08:31:45 +01:00
The result will be true if all of component in vector satisfy the comparison condition.
2019-07-15 20:42:47 +02:00
</constant>
<constant name= "COND_ANY" value= "1" enum= "Condition" >
2020-01-23 08:31:45 +01:00
The result will be true if any of component in vector satisfy the comparison condition.
2019-07-15 20:42:47 +02:00
</constant>
</constants>
</class>