You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
For the time being we don't support writing a description for those, preferring
having all details in the method's description.
Using self-closing tags saves half the lines, and prevents contributors from
thinking that they should write the argument or return documentation there.
(cherry picked from commit 7adf4cc9b5)
72 lines
2.2 KiB
XML
72 lines
2.2 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<class name="VisualScriptLists" inherits="VisualScriptNode" version="3.3">
|
|
<brief_description>
|
|
A Visual Script virtual class for in-graph editable nodes.
|
|
</brief_description>
|
|
<description>
|
|
A Visual Script virtual class that defines the shape and the default behavior of the nodes that have to be in-graph editable nodes.
|
|
</description>
|
|
<tutorials>
|
|
</tutorials>
|
|
<methods>
|
|
<method name="add_input_data_port">
|
|
<return type="void" />
|
|
<argument index="0" name="type" type="int" enum="Variant.Type" />
|
|
<argument index="1" name="name" type="String" />
|
|
<argument index="2" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="add_output_data_port">
|
|
<return type="void" />
|
|
<argument index="0" name="type" type="int" enum="Variant.Type" />
|
|
<argument index="1" name="name" type="String" />
|
|
<argument index="2" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="remove_input_data_port">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="remove_output_data_port">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="set_input_data_port_name">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<argument index="1" name="name" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="set_input_data_port_type">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<argument index="1" name="type" type="int" enum="Variant.Type" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="set_output_data_port_name">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<argument index="1" name="name" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="set_output_data_port_type">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<argument index="1" name="type" type="int" enum="Variant.Type" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
</methods>
|
|
<constants>
|
|
</constants>
|
|
</class>
|