2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-03-16 23:01:02 +01:00
<class name= "ScriptEditor" inherits= "PanelContainer" version= "3.5" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 22:42:36 +02:00
<brief_description >
2020-03-03 19:21:21 +01:00
Godot editor's script editor.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2020-04-14 22:09:21 +02:00
[b]Note:[/b] This class shouldn't be instantiated directly. Instead, access the singleton using [method EditorInterface.get_script_editor].
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
2017-11-15 20:35:18 +01:00
<method name= "can_drop_data_fw" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "point" type= "Vector2" />
<argument index= "1" name= "data" type= "Variant" />
<argument index= "2" name= "from" type= "Control" />
2017-11-15 20:35:18 +01:00
<description >
</description>
</method>
<method name= "drop_data_fw" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "point" type= "Vector2" />
<argument index= "1" name= "data" type= "Variant" />
<argument index= "2" name= "from" type= "Control" />
2017-11-15 20:35:18 +01:00
<description >
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_current_script" >
2021-07-30 15:28:05 +02:00
<return type= "Script" />
2017-09-12 22:42:36 +02:00
<description >
Returns a [Script] that is currently active in editor.
</description>
</method>
2017-11-15 20:35:18 +01:00
<method name= "get_drag_data_fw" >
2021-07-30 15:28:05 +02:00
<return type= "Variant" />
<argument index= "0" name= "point" type= "Vector2" />
<argument index= "1" name= "from" type= "Control" />
2017-11-15 20:35:18 +01:00
<description >
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_open_scripts" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Array" />
2017-09-12 22:42:36 +02:00
<description >
Returns an array with all [Script] objects which are currently open in editor.
</description>
</method>
2019-04-09 22:07:13 +02:00
<method name= "goto_line" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "line_number" type= "int" />
2019-04-09 22:07:13 +02:00
<description >
Goes to the specified line in the current script.
</description>
</method>
2017-12-16 20:34:16 +01:00
<method name= "open_script_create_dialog" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "base_name" type= "String" />
<argument index= "1" name= "base_path" type= "String" />
2017-12-16 20:34:16 +01:00
<description >
2020-09-18 23:27:40 +02:00
Opens the script create dialog. The script will extend [code]base_name[/code]. The file extension can be omitted from [code]base_path[/code]. It will be added based on the selected scripting language.
2017-12-16 20:34:16 +01:00
</description>
</method>
2020-06-25 11:59:31 +02:00
<method name= "reload_scripts" >
<return type= "void" />
<description >
Reload all currently opened scripts from disk in case the file contents are newer.
</description>
</method>
2017-09-12 22:42:36 +02:00
</methods>
<signals >
<signal name= "editor_script_changed" >
2021-07-30 15:28:05 +02:00
<argument index= "0" name= "script" type= "Script" />
2017-09-12 22:42:36 +02:00
<description >
Emitted when user changed active script. Argument is a freshly activated [Script].
</description>
</signal>
<signal name= "script_close" >
2021-07-30 15:28:05 +02:00
<argument index= "0" name= "script" type= "Script" />
2017-09-12 22:42:36 +02:00
<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>