VisualScriptIterator.xml 823 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="VisualScriptIterator" inherits="VisualScriptNode" category="Core" version="3.0.alpha.custom_build">
  3. <brief_description>
  4. Steps through items in a given input.
  5. </brief_description>
  6. <description>
  7. This node steps through each item in a given input. Input can be any sequence data type, such as an [Array] or [String]. When each item has been processed, execution passed out the [code]exit[/code] Sequence port.
  8. [b]Input Ports:[/b]
  9. - Sequence: [code]for (elem) in (input)[/code]
  10. - Data (variant): [code]input[/code]
  11. [b]Output Ports:[/b]
  12. - Sequence: [code]each[/code]
  13. - Sequence: [code]exit[/code]
  14. - Data (variant): [code]elem[/code]
  15. </description>
  16. <tutorials>
  17. </tutorials>
  18. <demos>
  19. </demos>
  20. <methods>
  21. </methods>
  22. <constants>
  23. </constants>
  24. </class>