mirror of
https://github.com/godotengine/godot.git
synced 2024-11-13 23:52:41 +00:00
90 lines
2.3 KiB
XML
90 lines
2.3 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<class name="ScriptEditor" inherits="PanelContainer" category="Core" version="3.1-dev">
|
|
<brief_description>
|
|
</brief_description>
|
|
<description>
|
|
</description>
|
|
<tutorials>
|
|
</tutorials>
|
|
<demos>
|
|
</demos>
|
|
<methods>
|
|
<method name="can_drop_data_fw" qualifiers="const">
|
|
<return type="bool">
|
|
</return>
|
|
<argument index="0" name="point" type="Vector2">
|
|
</argument>
|
|
<argument index="1" name="data" type="Variant">
|
|
</argument>
|
|
<argument index="2" name="from" type="Control">
|
|
</argument>
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="drop_data_fw">
|
|
<return type="void">
|
|
</return>
|
|
<argument index="0" name="point" type="Vector2">
|
|
</argument>
|
|
<argument index="1" name="data" type="Variant">
|
|
</argument>
|
|
<argument index="2" name="from" type="Control">
|
|
</argument>
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="get_current_script">
|
|
<return type="Script">
|
|
</return>
|
|
<description>
|
|
Returns a [Script] that is currently active in editor.
|
|
</description>
|
|
</method>
|
|
<method name="get_drag_data_fw">
|
|
<return type="Variant">
|
|
</return>
|
|
<argument index="0" name="point" type="Vector2">
|
|
</argument>
|
|
<argument index="1" name="from" type="Control">
|
|
</argument>
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="get_open_scripts" qualifiers="const">
|
|
<return type="Array">
|
|
</return>
|
|
<description>
|
|
Returns an array with all [Script] objects which are currently open in editor.
|
|
</description>
|
|
</method>
|
|
<method name="open_script_create_dialog">
|
|
<return type="void">
|
|
</return>
|
|
<argument index="0" name="base_name" type="String">
|
|
</argument>
|
|
<argument index="1" name="base_path" type="String">
|
|
</argument>
|
|
<description>
|
|
</description>
|
|
</method>
|
|
</methods>
|
|
<signals>
|
|
<signal name="editor_script_changed">
|
|
<argument index="0" name="script" type="Object">
|
|
</argument>
|
|
<description>
|
|
Emitted when user changed active script. Argument is a freshly activated [Script].
|
|
</description>
|
|
</signal>
|
|
<signal name="script_close">
|
|
<argument index="0" name="script" type="Object">
|
|
</argument>
|
|
<description>
|
|
Emitted when editor is about to close the active script. Argument is a [Script] that is going to be closed.
|
|
</description>
|
|
</signal>
|
|
</signals>
|
|
<constants>
|
|
</constants>
|
|
</class>
|