2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 14:18:53 +01:00
<class name= "ScriptEditor" inherits= "PanelContainer" version= "4.0" 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 >
2020-07-15 08:43:21 +02:00
<method name= "get_current_editor" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "ScriptEditorBase" />
2020-07-15 08:43:21 +02:00
<description >
2020-10-11 18:07:33 +02:00
Returns the [ScriptEditorBase] object that the user is currently editing.
2020-07-15 08:43:21 +02:00
</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>
2020-07-15 08:43:21 +02:00
<method name= "get_open_script_editors" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Array" />
2020-07-15 08:43:21 +02:00
<description >
2020-10-11 18:07:33 +02:00
Returns an array with all [ScriptEditorBase] objects which are currently open in editor.
2020-07-15 08:43:21 +02:00
</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-07-15 08:43:21 +02:00
<method name= "register_syntax_highlighter" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "syntax_highlighter" type= "EditorSyntaxHighlighter" />
2020-07-15 08:43:21 +02:00
<description >
2020-10-11 18:07:33 +02:00
Registers the [EditorSyntaxHighlighter] to the editor, the [EditorSyntaxHighlighter] will be available on all open scripts.
[b]Note:[/b] Does not apply to scripts that are already opened.
2020-07-15 08:43:21 +02:00
</description>
</method>
<method name= "unregister_syntax_highlighter" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "syntax_highlighter" type= "EditorSyntaxHighlighter" />
2020-07-15 08:43:21 +02:00
<description >
2020-10-11 18:07:33 +02:00
Unregisters the [EditorSyntaxHighlighter] from the editor.
[b]Note:[/b] The [EditorSyntaxHighlighter] will still be applied to scripts that are already opened.
2020-07-15 08:43:21 +02:00
</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>
</class>