VisualScriptCondition.xml 923 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="VisualScriptCondition" inherits="VisualScriptNode" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../doc/class.xsd">
  3. <brief_description>
  4. A Visual Script node which branches the flow.
  5. </brief_description>
  6. <description>
  7. A Visual Script node that checks a [bool] input port. If [code]true[/code], it will exit via the "true" sequence port. If [code]false[/code], it will exit via the "false" sequence port. After exiting either, it exits via the "done" port. Sequence ports may be left disconnected.
  8. [b]Input Ports:[/b]
  9. - Sequence: [code]if (cond) is[/code]
  10. - Data (boolean): [code]cond[/code]
  11. [b]Output Ports:[/b]
  12. - Sequence: [code]true[/code]
  13. - Sequence: [code]false[/code]
  14. - Sequence: [code]done[/code]
  15. </description>
  16. <tutorials>
  17. </tutorials>
  18. <methods>
  19. </methods>
  20. <constants>
  21. </constants>
  22. </class>