mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Add create new script button to script editor menu
This commit is contained in:
parent
c2e2f2e0ae
commit
8f83f6c675
3 changed files with 21 additions and 8 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue