diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2018-05-04 11:20:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-04 11:20:16 +0200 |
commit | ffb6f8f1ca6ae1991fa0e4d6d28d56952ccfc359 (patch) | |
tree | 96747fb7a3f644f01b47fd8aaca6c10e48bcb05a /modules/gdscript/gdscript_editor.cpp | |
parent | f9733b5ceecb5ef0cb39052d3c82f9c700e74beb (diff) | |
parent | 093b069bf6540e66352669b490d6577008992828 (diff) | |
download | redot-engine-ffb6f8f1ca6ae1991fa0e4d6d28d56952ccfc359.tar.gz |
Merge pull request #18406 from YeldhamDev/script_templates_period
Changed periods in the script templates
Diffstat (limited to 'modules/gdscript/gdscript_editor.cpp')
-rw-r--r-- | modules/gdscript/gdscript_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp index b38b30d4b8..87e1276492 100644 --- a/modules/gdscript/gdscript_editor.cpp +++ b/modules/gdscript/gdscript_editor.cpp @@ -61,7 +61,7 @@ Ref<Script> GDScriptLanguage::get_template(const String &p_class_name, const Str "# var b = \"textvar\"\n\n" + "func _ready():\n" + "%TS%# Called when the node is added to the scene for the first time.\n" + - "%TS%# Initialization here\n" + + "%TS%# Initialization here.\n" + "%TS%pass\n\n" + "#func _process(delta):\n" + "#%TS%# Called every frame. Delta is time since last frame.\n" + |