You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
Add create new script button to script editor menu
This commit is contained in:
@@ -74,17 +74,17 @@ bool ScriptCreateDialog::_validate(const String& p_string) {
|
||||
void ScriptCreateDialog::_class_name_changed(const String& p_name) {
|
||||
|
||||
if (!_validate(parent_name->get_text())) {
|
||||
error_label->set_text("INVALID PARENT CLASS NAME");
|
||||
error_label->set_text("Invaild parent class name");
|
||||
error_label->add_color_override("font_color",Color(1,0.4,0.0,0.8));
|
||||
} else if (class_name->is_editable()) {
|
||||
if (class_name->get_text()=="") {
|
||||
error_label->set_text("Valid Chars: a-z A-Z 0-9 _");
|
||||
error_label->add_color_override("font_color",Color(1,1,1,0.6));
|
||||
} else if (!_validate(class_name->get_text())) {
|
||||
error_label->set_text("INVALID CLASS NAME");
|
||||
error_label->set_text("Invalid class name");
|
||||
error_label->add_color_override("font_color",Color(1,0.2,0.2,0.8));
|
||||
} else {
|
||||
error_label->set_text("Name is Valid");
|
||||
error_label->set_text("Valid Name");
|
||||
error_label->add_color_override("font_color",Color(0,1.0,0.8,0.8));
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user