VisualScriptLists.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="VisualScriptLists" inherits="VisualScriptNode" version="4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../doc/class.xsd">
  3. <brief_description>
  4. A Visual Script virtual class for in-graph editable nodes.
  5. </brief_description>
  6. <description>
  7. A Visual Script virtual class that defines the shape and the default behavior of the nodes that have to be in-graph editable nodes.
  8. </description>
  9. <tutorials>
  10. </tutorials>
  11. <methods>
  12. <method name="add_input_data_port">
  13. <return type="void" />
  14. <param index="0" name="type" type="int" enum="Variant.Type" />
  15. <param index="1" name="name" type="String" />
  16. <param index="2" name="index" type="int" />
  17. <description>
  18. Adds an input port to the Visual Script node.
  19. </description>
  20. </method>
  21. <method name="add_output_data_port">
  22. <return type="void" />
  23. <param index="0" name="type" type="int" enum="Variant.Type" />
  24. <param index="1" name="name" type="String" />
  25. <param index="2" name="index" type="int" />
  26. <description>
  27. Adds an output port to the Visual Script node.
  28. </description>
  29. </method>
  30. <method name="remove_input_data_port">
  31. <return type="void" />
  32. <param index="0" name="index" type="int" />
  33. <description>
  34. Removes an input port from the Visual Script node.
  35. </description>
  36. </method>
  37. <method name="remove_output_data_port">
  38. <return type="void" />
  39. <param index="0" name="index" type="int" />
  40. <description>
  41. Removes an output port from the Visual Script node.
  42. </description>
  43. </method>
  44. <method name="set_input_data_port_name">
  45. <return type="void" />
  46. <param index="0" name="index" type="int" />
  47. <param index="1" name="name" type="String" />
  48. <description>
  49. Sets the name of an input port.
  50. </description>
  51. </method>
  52. <method name="set_input_data_port_type">
  53. <return type="void" />
  54. <param index="0" name="index" type="int" />
  55. <param index="1" name="type" type="int" enum="Variant.Type" />
  56. <description>
  57. Sets the type of an input port.
  58. </description>
  59. </method>
  60. <method name="set_output_data_port_name">
  61. <return type="void" />
  62. <param index="0" name="index" type="int" />
  63. <param index="1" name="name" type="String" />
  64. <description>
  65. Sets the name of an output port.
  66. </description>
  67. </method>
  68. <method name="set_output_data_port_type">
  69. <return type="void" />
  70. <param index="0" name="index" type="int" />
  71. <param index="1" name="type" type="int" enum="Variant.Type" />
  72. <description>
  73. Sets the type of an output port.
  74. </description>
  75. </method>
  76. </methods>
  77. </class>