VisualScriptLists.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="VisualScriptLists" inherits="VisualScriptNode" version="3.4">
  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. </return>
  15. <argument index="0" name="type" type="int" enum="Variant.Type">
  16. </argument>
  17. <argument index="1" name="name" type="String">
  18. </argument>
  19. <argument index="2" name="index" type="int">
  20. </argument>
  21. <description>
  22. Adds an input port to the Visual Script node.
  23. </description>
  24. </method>
  25. <method name="add_output_data_port">
  26. <return type="void">
  27. </return>
  28. <argument index="0" name="type" type="int" enum="Variant.Type">
  29. </argument>
  30. <argument index="1" name="name" type="String">
  31. </argument>
  32. <argument index="2" name="index" type="int">
  33. </argument>
  34. <description>
  35. Adds an output port to the Visual Script node.
  36. </description>
  37. </method>
  38. <method name="remove_input_data_port">
  39. <return type="void">
  40. </return>
  41. <argument index="0" name="index" type="int">
  42. </argument>
  43. <description>
  44. Removes an input port from the Visual Script node.
  45. </description>
  46. </method>
  47. <method name="remove_output_data_port">
  48. <return type="void">
  49. </return>
  50. <argument index="0" name="index" type="int">
  51. </argument>
  52. <description>
  53. Removes an output port from the Visual Script node.
  54. </description>
  55. </method>
  56. <method name="set_input_data_port_name">
  57. <return type="void">
  58. </return>
  59. <argument index="0" name="index" type="int">
  60. </argument>
  61. <argument index="1" name="name" type="String">
  62. </argument>
  63. <description>
  64. Sets the name of an input port.
  65. </description>
  66. </method>
  67. <method name="set_input_data_port_type">
  68. <return type="void">
  69. </return>
  70. <argument index="0" name="index" type="int">
  71. </argument>
  72. <argument index="1" name="type" type="int" enum="Variant.Type">
  73. </argument>
  74. <description>
  75. Sets the type of an input port.
  76. </description>
  77. </method>
  78. <method name="set_output_data_port_name">
  79. <return type="void">
  80. </return>
  81. <argument index="0" name="index" type="int">
  82. </argument>
  83. <argument index="1" name="name" type="String">
  84. </argument>
  85. <description>
  86. Sets the name of an output port.
  87. </description>
  88. </method>
  89. <method name="set_output_data_port_type">
  90. <return type="void">
  91. </return>
  92. <argument index="0" name="index" type="int">
  93. </argument>
  94. <argument index="1" name="type" type="int" enum="Variant.Type">
  95. </argument>
  96. <description>
  97. Sets the type of an output port.
  98. </description>
  99. </method>
  100. </methods>
  101. <constants>
  102. </constants>
  103. </class>