Selaa lähdekoodia

Merge pull request #30763 from Calinou/editor-add-version-info

Display version information in the editor at all times
Rémi Verschelde 6 vuotta sitten
vanhempi
commit
e4ec59b6ae
2 muutettua tiedostoa jossa 8 lisäystä ja 0 poistoa
  1. 7 0
      editor/editor_node.cpp
  2. 1 0
      editor/editor_node.h

+ 7 - 0
editor/editor_node.cpp

@@ -6254,6 +6254,13 @@ EditorNode::EditorNode() {
 	bottom_panel_hb_editors = memnew(HBoxContainer);
 	bottom_panel_hb_editors->set_h_size_flags(Control::SIZE_EXPAND_FILL);
 	bottom_panel_hb->add_child(bottom_panel_hb_editors);
+
+	version_label = memnew(Label);
+	version_label->set_text(VERSION_FULL_CONFIG);
+	// Fade out the version label to be less prominent, but still readable
+	version_label->set_self_modulate(Color(1, 1, 1, 0.6));
+	bottom_panel_hb->add_child(version_label);
+
 	bottom_panel_raise = memnew(ToolButton);
 	bottom_panel_raise->set_icon(gui_base->get_icon("ExpandBottomDock", "EditorIcons"));
 

+ 1 - 0
editor/editor_node.h

@@ -431,6 +431,7 @@ private:
 	HBoxContainer *bottom_panel_hb;
 	HBoxContainer *bottom_panel_hb_editors;
 	VBoxContainer *bottom_panel_vb;
+	Label *version_label;
 	ToolButton *bottom_panel_raise;
 
 	void _bottom_panel_raise_toggled(bool);