diff options
author | Micky <micheledevita2@gmail.com> | 2024-03-01 00:59:28 +0100 |
---|---|---|
committer | Micky <micheledevita2@gmail.com> | 2024-03-01 15:32:38 +0100 |
commit | c54e09a5a304c1578689f5b98cfee41c24d95848 (patch) | |
tree | 04462c423e8f592708c07b3e3d68932ea1b64019 /doc/classes/VisualShaderNodeIf.xml | |
parent | 7d2ca2d8ac49cde9767e00b70f9eaf1920eb266d (diff) | |
download | redot-engine-c54e09a5a304c1578689f5b98cfee41c24d95848.tar.gz |
Overhaul some "uncommon" wording in class reference
Diffstat (limited to 'doc/classes/VisualShaderNodeIf.xml')
-rw-r--r-- | doc/classes/VisualShaderNodeIf.xml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/classes/VisualShaderNodeIf.xml b/doc/classes/VisualShaderNodeIf.xml index 82799bb5fd..f3d76a4ac3 100644 --- a/doc/classes/VisualShaderNodeIf.xml +++ b/doc/classes/VisualShaderNodeIf.xml @@ -1,10 +1,13 @@ <?xml version="1.0" encoding="UTF-8" ?> <class name="VisualShaderNodeIf" inherits="VisualShaderNode" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd"> <brief_description> - Outputs a 3D vector based on the result of a floating point comparison within the visual shader graph. + Outputs a 3D vector based on the result of a floating-point comparison within the visual shader graph. </brief_description> <description> - This visual shader node has six input ports. Port 1 and 2 provide the two floating point numbers [code]a[/code] and [code]b[/code] that will be compared. Port 3 is the tolerance, which allows similar floating point number to be considered equal. Ports 4 to 6 are the possible outputs, returned if [code]a == b[/code], [code]a > b[/code], or [code]a < b[/code] respectively. + This visual shader node has six input ports: + - Port [b]1[/b] and [b]2[/b] provide the two floating-point numbers [code]a[/code] and [code]b[/code] that will be compared. + - Port [b]3[/b] is the tolerance, which allows similar floating-point numbers to be considered equal. + - Ports [b]4[/b], [b]5[/b], and [b]6[/b] are the possible outputs, returned if [code]a == b[/code], [code]a > b[/code], or [code]a < b[/code] respectively. </description> <tutorials> </tutorials> |