VisualShaderNodeTransformFunc.xml 1021 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="VisualShaderNodeTransformFunc" inherits="VisualShaderNode" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
  3. <brief_description>
  4. Computes a [Transform] function within the visual shader graph.
  5. </brief_description>
  6. <description>
  7. Computes an inverse or transpose function on the provided [Transform].
  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="VisualShaderNodeTransformFunc.Function" default="0">
  15. The function to be computed. See [enum Function] for options.
  16. </member>
  17. </members>
  18. <constants>
  19. <constant name="FUNC_INVERSE" value="0" enum="Function">
  20. Perform the inverse operation on the [Transform] matrix.
  21. </constant>
  22. <constant name="FUNC_TRANSPOSE" value="1" enum="Function">
  23. Perform the transpose operation on the [Transform] matrix.
  24. </constant>
  25. </constants>
  26. </class>