Clean up GDScript template

(cherry picked from commit 00e743b76a)
This commit is contained in:
Răzvan Cosmin Rădulescu 2016-09-05 19:15:08 +02:00 committed by Rémi Verschelde
parent 4a9461fded
commit c4f79716d3

View file

@ -47,16 +47,14 @@ void GDScriptLanguage::get_string_delimiters(List<String> *p_delimiters) const {
String GDScriptLanguage::get_template(const String& p_class_name, const String& p_base_class_name) const {
String _template = String()+
"\nextends %BASE%\n\n"+
"# member variables here, example:\n"+
"# var a=2\n"+
"# var b=\"textvar\"\n\n"+
"extends %BASE%\n\n"+
"# class member variables go here, for example:\n"+
"# var a = 2\n"+
"# var b = \"textvar\"\n\n"+
"func _ready():\n"+
"\t# Called every time the node is added to the scene.\n"+
"\t# Initialization here\n"+
"\tpass\n"+
"\n"+
"\n";
"\tpass\n";
return _template.replace("%BASE%",p_base_class_name);
}