VisualShaderNodeIs.xml 1.1 KB

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="VisualShaderNodeIs" inherits="VisualShaderNode" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
  3. <brief_description>
  4. A boolean comparison operator to be used within the visual shader graph.
  5. </brief_description>
  6. <description>
  7. Returns the boolean result of the comparison between [code]INF[/code] or [code]NaN[/code] and a scalar parameter.
  8. </description>
  9. <tutorials>
  10. </tutorials>
  11. <methods>
  12. </methods>
  13. <members>
  14. <member name="function" type="int" setter="set_function" getter="get_function" enum="VisualShaderNodeIs.Function" default="0">
  15. The comparison function. See [enum Function] for options.
  16. </member>
  17. </members>
  18. <constants>
  19. <constant name="FUNC_IS_INF" value="0" enum="Function">
  20. Comparison with [code]INF[/code] (Infinity).
  21. </constant>
  22. <constant name="FUNC_IS_NAN" value="1" enum="Function">
  23. Comparison with [code]NaN[/code] (Not a Number; denotes invalid numeric results, e.g. division by zero).
  24. </constant>
  25. </constants>
  26. </class>