2018-06-30 05:08:28 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 02:03:48 +01:00
<class name= "ScriptCreateDialog" inherits= "ConfirmationDialog" version= "4.0" >
2018-06-30 05:08:28 +02:00
<brief_description >
The Editor's popup dialog for creating new [Script] files.
</brief_description>
<description >
2020-03-31 11:56:58 +02:00
The [ScriptCreateDialog] creates script files according to a given template for a given scripting language. The standard use is to configure its fields prior to calling one of the [method Window.popup] methods.
2020-11-28 00:33:15 +01:00
[codeblocks]
[gdscript]
2018-06-30 05:08:28 +02:00
func _ready():
2020-11-28 00:33:15 +01:00
var dialog = ScriptCreateDialog.new();
dialog.config("Node", "res://new_node.gd") # For in-engine types.
dialog.config("\"res://base_node.gd\"", "res://derived_node.gd") # For script types.
2018-12-14 09:37:19 +01:00
dialog.popup_centered()
2020-11-28 00:33:15 +01:00
[/gdscript]
[csharp]
public override void _Ready()
{
var dialog = new ScriptCreateDialog();
dialog.Config("Node", "res://NewNode.cs"); // For in-engine types.
dialog.Config("\"res://BaseNode.cs\"", "res://DerivedNode.cs"); // For script types.
dialog.PopupCentered();
}
[/csharp]
[/codeblocks]
2018-06-30 05:08:28 +02:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "config" >
<return type= "void" >
</return>
<argument index= "0" name= "inherits" type= "String" >
</argument>
<argument index= "1" name= "path" type= "String" >
</argument>
2018-10-07 15:52:07 +02:00
<argument index= "2" name= "built_in_enabled" type= "bool" default= "true" >
</argument>
2020-01-08 23:43:55 +01:00
<argument index= "3" name= "load_enabled" type= "bool" default= "true" >
</argument>
2018-06-30 05:08:28 +02:00
<description >
Prefills required fields to configure the ScriptCreateDialog for use.
</description>
</method>
</methods>
2019-09-03 12:44:58 +02:00
<members >
2019-09-24 13:34:03 +02:00
<member name= "dialog_hide_on_ok" type= "bool" setter= "set_hide_on_ok" getter= "get_hide_on_ok" override= "true" default= "false" />
2020-03-31 11:56:58 +02:00
<member name= "title" type= "String" setter= "set_title" getter= "get_title" override= "true" default= ""Attach Node Script"" />
2019-09-03 12:44:58 +02:00
</members>
2018-06-30 05:08:28 +02:00
<signals >
<signal name= "script_created" >
2018-08-31 21:12:35 +02:00
<argument index= "0" name= "script" type= "Script" >
2018-06-30 05:08:28 +02:00
</argument>
<description >
Emitted when the user clicks the OK button.
</description>
</signal>
</signals>
<constants >
</constants>
</class>